Fortran Program for Regional-Residual Separation by Finite Element Method

Total Page:16

File Type:pdf, Size:1020Kb

Fortran Program for Regional-Residual Separation by Finite Element Method Appendix I 259 Appendix I Fortran Program for Regional-Residual Separation by Finite Element Method C AG-BOUGUER,GN-REGIONAL,D-RESIDUAL C PROGRAM FOR SEPARATION OF REGIONAL & RESIDUAL USING FEM METHOD C PROGRAM NEEDS THE GRAVITY VALUES ALSO IN ADDITION TO THE A(I)& B(I)VALUES DIMENSION G(12),X(12),Y(12) DIMENSION A(200000),B(200000),GN(200000),AG(200000),D(200000) OPEN(UNIT=3,FILE=‘F1-8.DAT’, STATUS=‘OLD’) OPEN(UNIT=4,FILE=‘A1.DAT’, STATUS=‘NEW’) OPEN(UNIT=11,FILE=‘A2.DAT’, STATUS=‘NEW’) OPEN(UNIT=12,FILE=‘A3.DAT’, STATUS=‘NEW’) OPEN(UNIT=13,FILE=‘A4.DAT’, STATUS=‘NEW’) READ (3,*) N,NN WRITE (*,*)‘GIVE OUTPUT DATA FILE NAME AS UNIT 4’ WRITE (4,*)‘NUMBER OF NODES{A(I)& B(I)} AND DATA(8 or 12) POINTS’ WRITE (4,*)N,NN WRITE (4,*)‘INPUT VALUES X,Y,AND GRAVITY DATA’ DO 10 I=1,NN READ (3,*) X(I),Y(I),G(I) 10 WRITE (4,*) X(I),Y(I),G(I) WRITE (4,*)‘INPUT VALUES OF A(I) & B(I)’ DO 20 I=1,N READ (3,*) A(I),B(I),AG(I) 20 WRITE (4,*)A(I),B(I),AG(I) WRITE (4,*)‘OUTPUT X , Y , REGIONAL GRAVITY & RESIDUAL VALUES’ DO 100 I=1,N A1=1+A(I) A2=1-A(I) AA=1-A(I)*A(I) K. Mallick et al., Bouguer Gravity Regional and Residual Separation: Application to Geology 259 and Environment, DOI 10.1007/978-94-007-0406-0, © Capital Publishing Company 2012 260 Bouguer Gravity Regional and Residual Separation B1=1+B(I) B2=1-B(I) BB=1-B(I)*B(I) C1=(9*AA)/32 C2=(9*BB)/32 C3=(-10+9*(2-AA-BB))/32 AN1=0.25*A2*B2*(A2+B2-3) AN3=0.25*A1*B2*(B2-A2-1) AN5=0.25*A1*B1*(1-A2-B2) AN7=0.25*A2*B1*(A2-B2-1) AN2=0.5*AA*B2 AN6=0.5*AA*B1 AN4=0.5*BB*A1 AN8=0.5*BB*A2 T1=AN1*G(1)+AN2*G(2)+AN3*G(3)+AN4*G(4) GN(I)=T1+AN5*G(5)+AN6*G(6)+AN7*G(7)+AN8*G(8) T2=AN1*X(1)+AN2*X(2)+AN3*X(3)+AN4*X(4) A(I)=T2+AN5*X(5)+AN6*X(6)+AN7*X(7)+AN8*X(8) T3=AN1*Y(1)+AN2*Y(2)+AN3*Y(3)+AN4*Y(4) B(I)=T3+AN5*Y(5)+AN6*Y(6)+AN7*Y(7)+AN8*Y(8) D(I)=AG(I)-GN(I) WRITE (4,*) A(I),B(I),GN(I),D(I) 100 CONTINUE WRITE (*,*)‘GIVE THE FILE NAME FOR STORING GRAVITY VALUES’ WRITE (11,*)‘VALUES FOR X,Y AND THE MEASURED GRAVITY VALUES’ DO 101 I=1,N 101 WRITE (11,*)A(I),B(I),AG(I) WRITE (*,*)‘GIVE FILE NAME FOR STORING REGIONAL GRAVITY VALUES’ WRITE (12,*)‘VALUES FOR X,Y AND THE CALCULATED REGIONAL VALUES’ DO 102 I=1,N 102 WRITE (12,*)A(I),B(I),GN(I) WRITE (*,*)‘GIVE FILE NAME FOR STORING RESIDUAL GRAVITY VALUES’ WRITE (13,*)‘VALUES FOR X,Y AND THE RESIDUAL VALUES’ DO 103 I=1,N 103 WRITE (13,*)A(I),B(I),D(I) SUMAG2=0.0 SUMDAG=0.0 SUMGNAG=0.0 SUMAG=0.0 SUMDGN=0.0 Appendix I 261 SUMD2=0.0 SUMGN2=0.0 SUMD=0.0 SUMGN=0.0 DO 110 I=1,N SUMAG2=SUMAG2+AG(I)*AG(I) SUMDAG=SUMDAG+D(I)*AG(I) SUMGNAG=SUMGNAG+GN(I)*AG(I) SUMAG=SUMAG+AG(I) SUMDGN=SUMDGN+D(I)*GN(I) SUMD2=SUMD2+D(I)*D(I) SUMGN2=SUMGN2+GN(I)*GN(I) SUMD=SUMD+D(I) SUMGN=SUMGN+GN(I) 110 CONTINUE NR1=SUMGNAG-(SUMAG*SUMGN/N) DR1=(SUMGN2-(SUMGN*SUMGN/N))*(SUMAG2-(SUMAG*SUMAG/ N)) DR1=SQRT(DR1) R1=NR1/DR1 NR2=SUMDAG-(SUMD*SUMAG/N) DR2=(SUMD2-(SUMD*SUMD/N))*(SUMAG2-(SUMAG*SUMAG/N)) DR2=SQRT(DR2) R2=NR2/DR2 NR3=SUMDGN-(SUMD*SUMGN/N) DR3=(SUMD2-(SUMD*SUMD/N))*(SUMGN2-(SUMGN*SUMGN/N)) DR3=SQRT(DR3) R3=NR3/DR3 WRITE (*,*) ‘R BET. BOU-REG,BOU-RES, REG-RES=’ WRITE (*,*)R1,R2,R3 WRITE (4,*)‘R BET. BOU-REG,BOU-RES,REG-RES’ WRITE (4,*)R1,R2,R3 WRITE (4,*)‘VALUES OF BOUGUER REGIONAL RESIDUAL’ DO 111 I=1,N 111 WRITE (4,*)AG(I),GN(I),D(I) STOP END 262 Bouguer Gravity Regional and Residual Separation Appendix II C++ Program for Regional-Residual Separation by Finite Element Method /* C++ Program for separation of regional and residual using FEM method */ /* Program needs Gravity values in addition to A[i] & B[i] values */ #include<iostream.h> #include<fstream.h> #include<stdlib.h> #include<conio.h> #include<math.h> class gravity { int i,N,NN; float A1,A2,AA,B1,B2,BB,NR1,NR2,NR3; float AN1,AN2,AN3,AN4,AN5,AN6,AN7,AN8,T1,T2,T3; float X[8],Y[8],G[8],A[800],B[800],AG[800],GN[800],D[800]; float SUMDAG,SUMAG,SUMGN2,SUMGNAG,SUMGN,SUMAG2,SUMD,SUMD2,SUMDGN; double DR1,DR2,DR3,R1,R2,R3; public: void gcalc(); }; void gravity::gcalc() { ifstream fin; ofstream fout,fout1,fout2,fout3; /* Opening the file for reading */ 262 AppendixAppendix III 263 fin.open(“f1-8.DAT”); if(!fin) { cout<<“\n Cannot Open File!!!!”; } /* Creating output files A1,A2,A3,A4 */ fout.open(“8A1.DAT”); if(!fout) { cout<<“\n Cannot open [A1.DAT] File!!!!”; } fout1.open(“8A2.DAT”); if(!fout1) { cout<<“\n Cannot open [A2.DAT] File!!!!”; } fout2.open(“8A3.DAT”); if(!fout2) { cout<<“\n Cannot open [A3.DAT] File!!!!”; } fout3.open(“8A4.DAT”); if(!fout3) { cout<<“\n Cannot open [A4.DAT] File!!!!”; } fin>>N>>NN; cout<<“\n GIVE OUTPUT DATA FILE NAME AS UNIT 4”; fout<<“ NO OF NODES {A[i] & B[i]} AND DATA (8 OR 12) POINTS”; fout<<N<<“\t”<<NN; fout<<“\n INPUT VALUES X, Y AND GRAVITY DATA”; for(i=0;i<NN;i++) { fin>>X[i]>>Y[i]>>G[i]; fout<<“\n”<<X[i]<<“\t”<<Y[i]<<“\t”<<G[i]; } fout<<“\n INPUT VALUES OF A[i] AND B[i] and AG[i]”; for(i=0;i<N;i++) 264 Bouguer Gravity Regional and Residual Separation { fin>>A[i]>>B[i]>>AG[i]; fout<<“\n”<<A[i]<<“\t”<<B[i]<<“\t”<<AG[i]; } fout<<“\n OUTPUT X,Y, REGIONAL GRAVITY AND RESIDUAL VALUES”; /* Calculating Zeeta , Eeta Coefficients */ for(i=0;i<N;i++) { A1=1+A[i]; A2=1-A[i]; AA=1-A[i]*A[i]; B1=1+B[i]; B2=1-B[i]; BB=1-B[i]*B[i]; AN1=0.25*A2*B2*(A2+B2-3); AN3=0.25*A1*B2*(B2-A2-1); AN5=0.25*A1*B1*(1-A2-B2); AN7=0.25*A2*B1*(A2-B2-1); AN2=0.5*AA*B2; AN6=0.5*AA*B1; AN4=0.5*BB*A1; AN8=0.5*BB*A2; T1=AN1*G[0]+AN2*G[1]+AN3*G[2]+AN4*G[3]; GN[i]=T1+AN5*G[4]+AN6*G[5]+AN7*G[6]+AN8*G[7]; T2=AN1*X[0]+AN2*X[1]+AN3*X[2]+AN4*X[3]; A[i]=T2+AN5*X[4]+AN6*X[5]+AN7*X[6]+AN8*X[7]; T3=AN1*Y[0]+AN2*Y[1]+AN3*Y[2]+AN4*Y[3]; B[i]=T3+AN5*Y[4]+AN6*Y[5]+AN7*Y[6]+AN8*Y[7]; D[i]=AG[i]-GN[i]; // Calculating Residual values fout<<“\n”<<A[i]<<“\t”<<B[i]<<“\t”<<GN[i]<<“\t”<<D[i]; } cout<<“\n GIVE THE FILE NAME FOR STORING GRAVITY VALUES”; fout1<<“\n VALUES FOR X,Y AND MEASURED GRAVITY VALUES”; for(i=0;i<N;i++) { fout1<<“\n”<<A[i]<<“\t”<<B[i]<<“\t”<<AG[i]; } AppendixAppendix III 265 cout<<“\n GIVE FILE NAME FOR STORING REGIONAL GRAVITY VALUES”; fout2<<“\n VALUES FOR X,Y AND CALCULATED REGIONAL VALUES”; for(i=0;i<N;i++) { fout2<<“\n”<<A[i]<<“\t”<<B[i]<<“\t”<<GN[i]; } cout<<“\n GIVE FILE NAME FOR STORING RESIDUAL GRAVITY VALUES”; fout3<<“\n VALUES FOR X,Y AND RESIDUAL VALUES”; for(i=0;i<N;i++) { fout3<<“\n”<<A[i]<<“\t”<<B[i]<<“\t”<<D[i]; } /* Calculating the correlation coefficients */ SUMAG2=0.0; SUMDAG=0.0; SUMGNAG=0.0; SUMAG=0.0; SUMDGN=0.0; SUMD2=0.0; SUMGN2=0.0; SUMD=0.0; SUMGN=0.0; for(i=0;i<N;i++) { SUMAG2=SUMAG2+AG[i]*AG[i]; SUMDAG=SUMDAG+D[i]*AG[i]; SUMGNAG=SUMGNAG+GN[i]*AG[i]; SUMAG=SUMAG+AG[i]; SUMDGN=SUMDGN+D[i]*GN[i]; SUMD2=SUMD2+D[i]*D[i]; SUMGN2=SUMGN2+GN[i]*GN[i]; SUMD=SUMD+D[i]; SUMGN=SUMGN+GN[i]; } NR1=SUMGNAG-(SUMAG*SUMGN/N); DR1=(SUMGN2-(SUMGN*SUMGN/N))*(SUMAG2-(SUMAG*SUMAG/ 266 Bouguer Gravity Regional and Residual Separation N)); DR1=sqrt(DR1); R1=NR1/DR1; NR2=SUMDAG-(SUMD*SUMAG/N); DR2=(SUMD2-(SUMD*SUMD/N))*(SUMAG2-(SUMAG*SUMAG/N)); DR2=sqrt(DR2); R2=NR2/DR2; NR3=SUMDGN-(SUMD*SUMGN/N); DR3=(SUMD2-(SUMD*SUMD/N))*(SUMGN2-(SUMGN*SUMGN/N)); DR3=sqrt(DR3); R3=NR3/DR3; cout<<“\n”<<“ R BET, BOU-REG, BOU-RES, REG-RES”; cout<<“\n”<<R1<<“\t”<<R2<<“\t”<<R3; fout<<“\n R BET, BOU-REG, BOU-RES, REG-RES”; fout<<“\n”<<R1<<“\t”<<R2<<“\t”<<R3; fout<<“\n VALUES OF BOUGUER REGIONAL RESIDUAL”; for(i=0;i<=N;i++) { fout<<“\n”<<AG[i]<<“\t”<<GN[i]<<“\t”<<D[i]; } cout<<“\n PROGRAM TERMINATED”; getch(); fin.close(); fout.close(); fout1.close(); fout2.close(); fout3.close(); } /* end function gcalc*/ void main() { clrscr(); gravity gr; /* Creating Object of the class gravity */ gr.gcalc(); /* Calling the Calc function of the class gravity */ } /* end main */ References 267 References Abdoh, A., Cowan, D.
Recommended publications
  • Korba District, Chhattisgarh 2012-2013
    For official use GOVERNMENT OF INDIA MINISTY OF WATER RESOURCES CENTRAL GROUND WATER BOARD GROUND WATER BROCHURE OF KORBA DISTRICT, CHHATTISGARH 2012-2013 Pondi-uprora Katghora Pali K o r b a Kartala Regional Director North Central Chhattisgarh Region, Reena Apartment, IInd Floor, NH-43, Pachpedi Naka, Raipur-492001 (C.G.) Ph. No. 0771-2413903, 2413689 E-mail: rdnccr- [email protected] ACKNOWLEDGEMENT The author is grateful to Shri Sushil Gupta, Chairman, Central Ground Water Board for giving this opportunity to prepare the ‘Ground Water Brochure’ of Korba district, Chhattisgarh. The author is thankful to Shri K.C.Naik, Regional Director, Central Ground Water Board, NCCR, Raipur for his guidance and constant encouragement for the preparation of this brochure. The author is also thankful to Shri S .K. Verma, Sr Hydrogeologist (Scientist ‘C’) for his valuable comments and guidance. A. K. PATRE Scientist ‘C’ 1 GROUND WATER BROCHURE OF KORBA DISTRICT DISTRICT AT A GLANCE I. General 1. Geographical area : 7145.44 sq.km 2. Villages : 717 3. Development blocks : 5 nos 4. Population (2011) : 1206563 5. Average annual rainfall : 1329 mm 6. Major Physiographic unit : Northern Hilly and part of Chhattisharh Plain 7. Major Drainage : Hasdo, Teti, Son and Mand rivers 8. Forest area : 1866.07 sq. km II. Major Soil 1) Alfisols : Red gravelly, red sandy and red loamy 2) Ultisols : Lateritic soil, Red and yellow soil 3) Vertisols : Medium grey black soil III. Principal crops 1) Paddy : 109207 ha. 2) Wheat : 670 ha. 3) Pulses : 9556 ha. IV. Irrigation 1) Net area sown : 1314.68 sq. km 2) Gross Sown area : 1421.32 sq.
    [Show full text]
  • Gover Rnme Nt of Odish Ha
    Government of Odisha OUTCOME BUDGET 2013-14 Rural Development Department Hon’ble Chief Minister Odisha taking review of departmental activities of DoRD on 1st March 2013 ………………………….Outcome budget of 2012-13 Sl. Page No. No. CONTENTS 1. EXECUTIVE SUMMARY I-VII 2. 1-16 CHAPTER-I Introduction Outcome Budget, 2013-14 3. 17-109 CHAPTER-II Statement (Plan & Non-Plan) 4. Reform Measures & 110 -112 CHAPTER-III Policy Initiatives 5. Past performance of 113-119 CHAPTER-IV programmes and schemes 6. 120-126 CHAPTER- V Financial Review 7. Gender and SC/ST 127 CHAPTER-VI Budgeting EXECUTIVE SUMMARY The Outcome Budget of Department of Rural Development (DoRD) broadly indicates physical dimensions of the financial outlays reflecting the expected intermediate output. The Outcome budget will be a tool to monitor not just the immediate physical "outputs" that are more readily measurable but also the "outcomes" which are the end objectives. 2. The Outcome Budget 2013-14 broadly consists of the following chapters: • Chapter-I:Brief introduction of the functions, organizational set up, list of major programmes/schemes implemented by the Department, its mandate, goals and policy frame work. • Chapter-II:Tabular format(s)/statements indicating the details of financial outlays, projected physical outputs and projected outcomes for 2013-14 under Plan and Non-Plan. • Chapter-III:The details of reform measures and policy initiatives taken by the Department during the course of the year. • Chapter-IV:Write-up on the past performance for the year 2011-12 and 2012-13 (up to December, 2012). • Chapter-V:Actual of the year preceding the previous year, Budget Estimates and Revised Estimates of the previous year, Budget Estimates of the Current Financial year.
    [Show full text]
  • Green Energy Corridor and Grid Strengthening Project
    Initial Environmental Examination (Draft) September 2015 IND: Green Energy Corridor and Grid Strengthening Project Prepared by Power Grid Corporation of India Limited for the Asian Development Bank. This initial environmental examination is a document of the borrower. The views expressed herein do not necessarily represent those of ADB's Board of Directors, Management, or staff, and may be preliminary in nature. Your attention is directed to the “terms of use” section on ADB’s website. In preparing any country program or strategy, financing any project, or by making any designation of or reference to a particular territory or geographic area in this document, the Asian Development Bank does not intend to make any judgments as to the legal or other status of any territory or area. Initial Environmental Examination (Draft) for Project 44426-016 (IND): Green Energy Corridor and Grid Strengthening Project 03 September 2015 Prepared by Power Grid Corporation of India Ltd. for the Asian Development Bank The initial environmental examination is a document of the borrower. The views expressed herein do not necessarily represent those of ADB’s Board of Directors, Management, or staff, and may be preliminary in nature. Table of Contents S.No. Page No. EXECUTIVE SUMMARY 1 1.0 INTRODUCTION 3 1.1 BACKGROUND 3 1.2 THE PROJECT 3 2.0 POLICY, LEGAL AND ADMINISTRATIVE FRAMEWORK 6 2.1 NATIONAL ENVIRONMENTAL REQUIREMENTS 6 2.2 POWERGRID’S ENVIRONMENTAL AND SOCIAL AND POLICY AND 8 PROCEDURES (ESPP) 2.3 ASIAN DEVELOPMENT BANK’S ENVIRONMENTAL REQUIREMENTS 9
    [Show full text]
  • Annual Report 2018-2019
    ANNUAL REPORT 2018-2019 STATE POLLUTION CONTROL BOARD, ODISHA A/118, Nilakantha Nagar, Unit-Viii Bhubaneswar SPCB, Odisha (350 Copies) Published By: State Pollution Control Board, Odisha Bhubaneswar – 751012 Printed By: Semaphore Technologies Private Limited 3, Gokul Baral Street, 1st Floor Kolkata-700012, Ph. No.- +91 9836873211 Highlights of Activities Chapter-I 01 Introduction Chapter-II 05 Constitution of the State Board Chapter-III 07 Constitution of Committees Chapter-IV 12 Board Meeting Chapter-V 13 Activities Chapter-VI 136 Legal Matters Chapter-VII 137 Finance and Accounts Chapter-VIII 139 Other Important Activities Annexures - 170 (I) Organisational Chart (II) Rate Chart for Sampling & Analysis of 171 Env. Samples 181 (III) Staff Strength CONTENTS Annual Report 2018-19 Highlights of Activities of the State Pollution Control Board, Odisha he State Pollution Control Board (SPCB), Odisha was constituted in July, 1983 and was entrusted with the responsibility of implementing the Environmental Acts, particularly the TWater (Prevention and Control of Pollution) Act, 1974, the Water (Prevention and Control of Pollution) Cess Act, 1977, the Air (Prevention and Control of Pollution) Act, 1981 and the Environment (Protection) Act, 1986. Several Rules addressing specific environmental problems like Hazardous Waste Management, Bio-Medical Waste Management, Solid Waste Management, E-Waste Management, Plastic Waste Management, Construction & Demolition Waste Management, Environmental Impact Assessment etc. have been brought out under the Environment (Protection) Act. The SPCB also executes and ensures proper implementation of the environmental policies of the Union and the State Government. The activities of the SPCB broadly cover the following: Planning comprehensive programs towards prevention, control or abatement of pollution and enforcing the environmental laws.
    [Show full text]
  • Pledge for Disaster Preparedness
    THE VOLUNTEER PLEDGE I shall serve as a volunteer, to the best of my ability, the depressed, the underprivileged, and the needy, with true voluntary spirit, equality and democratic fervour. I shall develop such judgement, affection and patience, that my voluntary service will heal ill feelings and distress. I hereby pledge myself to compassion, kindness and empathy, that will enter into the joys and sorrows of all whom are needy, afflicted or erring. I shall never lose faith in the value of every human being, and the capacity of human beings to change their ways of life and thinking. I pledge myself to work for loyalty with other fellow volunteers. I also pledge to work to extend such loyalty to all the men and women, who have the responsibility of serving humanity. I shall look not back but forward, till this goal is achieved in true voluntary spirit. Let the spirit of volunteering extend to all the people, to end suffering, inequity and sadness. This is all I ask. This manual has been compiled by: Yashwant P. Raj Paul IYV Volunteer With contributions from Rita Missal & Saroj Kumar Jha CONTENTS Foreword 2 Introduction 3 Role of Orissa Emergency Volunteer Corps 4 What is Expected of a Volunteer 4 Procedures 4 How Volunteers Can Help after a Disaster 4 Non-discrimination in Disaster Management 5 Do’s and Don’ts 5 Coping Emotionally and Helping Others Cope 6 Additional Tips for Volunteers 6 Overview of a Natural Disaster Experience 6 Developing an Emergency Plan with the Community 7 Volunteer Emergency Survival Kit 8 Response During Different
    [Show full text]
  • Inner Front.Pmd
    BUREAU’S HIGHER SECONDARY (+2) GEOLOGY (PART-II) (Approved by The Council of Higher Secondary Education, Odisha, Bhubaneswar) BOARD OF WRITERS (SECOND EDITION) Dr. Ghanashyam Lenka Dr. Shreerup Goswami Prof. of Geology (Retd.) Professor of Geology Khallikote Autonomous College, Berhampur Sambalpur University, Jyoti Vihar, Burla Dr. Hrushikesh Sahoo Dr. Sudhir Kumar Dash Emeritus Professor of Geology Reader in Geology Utkal University, Vani Vihar, Bhubaneswar Sundargarh Autonomous College, Sundargarh Dr. Rabindra Nath Hota Dr. Nabakishore Sahoo Professor of Geology Reader in Geology Utkal University, Vani Vihar, Bhubaneswar Khallikote Autonomous College, Berhampur Dr. Manoj Kumar Pattanaik Lecturer in Geology Khallikote Autonomous College, Berhampur BOARD OF WRITERS (FIRST EDITION) Dr. Satyananda Acharya Mr. Premananda Ray Prof. of Geology (Retd.) Reader in Geology (Retd.) Utkal University, Vani Vihar, Bhubaneswar Utkal University, Vani Vihar, Bhubaneswar Mr. Anil Kumar Paul Dr. Hrushikesh Sahoo Reader in Geology (Retd.) Professor of Geology Utkal University, Vani Vihar, Bhubaneswar Utkal University, Vani Vihar, Bhubaneswar Dr. Rabindra Nath Hota Reader in Geology, Utkal University, Vani Vihar, Bhubaneswar REVIEWER Dr. Satyananda Acharya Professor of Geology (Retd) Former Vice Chancellor of Utkal University, Vani Vihar, Bhubaneswar Published by THE ODISHA STATE BUREAU OF TEXTBOOK PREPARATION AND PRODUCTION Pustak Bhawan, Bhubaneswar Published by: The Odisha State Bureau of Textbook Preparation and Production, Pustak Bhavan, Bhubaneswar, Odisha, India First Edition - 2011 / 1000 Copies Second Edition - 2017 / 2000 Copies Publication No. - 194 ISBN - 978-81-8005-382-5 @ All rights reserved by the Odisha State Bureau of Textbook Preparation and Production, Pustak Bhavan, Bhubaneswar, Odisha. No part of this publication may be reproduced in any form or by any means without the written permission from the Publisher.
    [Show full text]
  • Inter State Agreements
    ORISSA STATE WATER PLAN 2 0 0 4 INTER STATE AGGREMENTS Orissa State Water Plan 9 INTER STATE AGREEMENTS Orissa State has inter state agreements with neighboring states of West Bengal, Jharkhand ( formerly Bihar),Chattisgarh (Formerly Madhya Pradesh) and Andhra Pradesh on Planning & Execution of Irrigation Projects. The Basin wise details of such Projects are briefly discussed below:- (i) Mahanadi Basin: Hirakud Dam Project: Hirakud Dam was completed in the year 1957 by Government of India and there was no bipartite agreement between Government of Orissa and Government of M.P. at that point of time. However the issues concerning the interest of both the states are discussed in various meetings:- Minutes of the meeting of Madhya Pradesh and ORISSA officers of Irrigation & Electricity Departments held at Pachmarhi on 15.6.73. IBB DIVERSION SCHEME: 3. Secretary, Irrigation & Power, Orissa pointed out that Madhya Pradesh is constructing a diversion weir on Ib river. This river is a source of water supply to the Orient Paper Mill at Brajrajnagar as well as to Sundergarh, a District town in Orissa State. Government of Orissa apprehends that the summer flows in Ib river will get reduced at the above two places due to diversion in Madhya Pradesh. Madhya Pradesh Officers explained that this work was taken up as a scarcity work in 1966- 77 and it is tapping a catchment of 174 Sq. miles only in Madhya Pradesh. There is no live storage and Orissa should have no apprehensions as regards the availability of flows at the aforesaid two places. It was decided that the flow data as maintained by Madhya Pradesh at the Ib weir site and by Orissa at Brajrajnagar and Sundergarh should be exchanged and studied.
    [Show full text]
  • IEE: India: Sambalpur-Titlagarh Doubling Subproject, Railway
    Initial Environmental Examination March 2011 India: Railway Sector Investment Program Sambalpur-Titlagarh Doubling Subproject Prepared by Ministry of Railway for the Asian Development Bank. CURRENCY EQUIVALENTS (as of 15 March 2011) Currency unit – Indian rupee (Rs) Rs1.00 = $0.22222 Rs 45.00 $1.00 = ABBREVIATIONS ACF Assistant Conservator of Forest ADB Asian Development Bank EIA environmental impact assessment EMoP environment monitoring plan EMP environment management plan ESDU Environment and Social Development Unit GIS geographic information system GOI Government of India GHG greenhouse gases HFL highest flood level IBS Intermittent Block Station ICAR Indian Council of Agricultural Research IEE initial environmental examination IS Indian Standard IUCN International Union for Conservation of Nature Jn. junction (The term used by Indian Railways for the Stations where two or more lines meet) LHS Left Hand Side MoEF Ministry of Environment and Forests MOR Ministry of Railways NAAQS National Ambient Air Quality Standard NE northeast NGO non-governmental organization NH national highway NSDP National Strategic Development Program NOx oxides of nitrogen PF protected forest PHC public health centre PIU project implementation unit PPEs personal protective equipments PMC Project Management Consultant PWD Public Works Department RDSO Research Design and Standards Organization R&R resettlement and rehabilitation RF reserved forest RHS right hand side RoB road over bridge RoW right of way RSPM respirable suspended particulate matter RuB road
    [Show full text]
  • Ramnagar Block Summary PART a Sr. No. Features Details Location
    Ramnagar Block Summary PART A Features Details Sr. No. 1. Location Coal Block Ramnagar Latitude 22° 19' 19" N-22° 20' 38" N (Provisional) Longitude 83° 5' 58" E-83° 9' 8" E (Provisional) Topo Sheet No. 64 N/3 Coalfield Mand-Raigarh Villages Chainpur,Ramnagar,Sithra villages Tehsil/Taluka Korba, Dharamjaygarh District Raigarh State Chhattisgarh Connectivity with 2. Block Nearest Rail Head Kharsia Railway station is the nearest railhead The block is round 20 km from Dharamjaygarh on Dharamjaygarh-Kharsia Road road. The block is connected by all weather tar road from Amapali (12km from Dharamjaygarh on Dharamjaygarh - Raigarh Road) to Bojia village. Airport 3. Area Geological Block Area 9.36 sq km (As per shape file. Refer note below) Forest Area 2.72 sq.km ( As per FSI Map) Non-Forest Area 6.64 sq.km Climate and 4. Topography Average Annual Rainfall 53 cm.Monsoon active in July to Septmeber Temperature (Min. — Max.) 4-5 ℃ in January to 49 ℃ in end of May Local Surface Kopar Nala forms the southern boundary of the block. The stream is fed by Drainage springs of adjoining Mar Pahar hill range and check dams. The stream is a Channels tributary to the Mand River flowing from north to south. Rivers 5. Exploration Status Regionally Explored Exploration Agency GSI Total Number of 6 Boreholes; 3823.25m Boreholes with (MSK -3,4 & MCN-3,4,5 & 7) meterage Borehole Density Approx. 0.9 boreholes per sq km General Dip of Seams Low southerly dip of 2° to 6° General Strike Direction NW - SE to WNW - ESE strike Faults 6.
    [Show full text]
  • Geography of World and India
    MPPSCADDA 1 GEOGRAPHY OF WORLD AND INDIA CONTENT WORLD GEOGRAPHY ❖ ❖ ❖ ❖ ❖ ❖ ❖ ❖ ❖ INDIAN GEOGRAPHY ❖ ❖ ❖ ❖ ❖ ❖ 2 MPPSCADDA 3 GEOGRAPHY WORLD 1. UNIVERSE INTRODUCTION TO GEOGRAPHY • The word ‘Geography’ is a combination of two Greek words "geo" means Earth and "graphy" means write about. • Geography as a subject not only deals with the features and patterns of surface of Earth, it also tries to scientifically explain the inter-relationship between man and nature. • In the second century, Greek scholar Eratosthenes (Father of Geography) adopted the term 'Geography'. BRANCHES OF GEOGRAPHY Physical Geography Human Geography Bio - Geography Cultural Geography Climatology Economic Geography Geomorphology Historical Geography Glaciology Political Geography Oceanography Population Geography Biogeography Social Geography Pedology Settlement Geography PHYSICAL GEOGRAPHY It deals with the physical environment and various processes that bring about changes in the physical environment on the Earth's surface. It includes: 1. Bio-Geography: The study of the geographic distribution of organisms. 2. Climatology: The study of climate or weather conditions averaged over a period of time. 3. Geomorphology or Physiographic: The scientific study of landforms and processes that shape them. 4. Glaciology: The study of glaciers and ice sheets. 5. Oceanography: The study of all aspects of the ocean including temperature, ocean current, salinity, fauna and flora, etc. 6. Pedology: The study of various types of Soils. 4 HUMAN GEOGRAPHY Human geography deals with the perspective of human and its functions as well as its interaction with the environment. It studies people, communities and cultures with an emphasis on relations of land across space. It includes: 1. Cultural Geography: The study of the spatial variations among cultural groups and spatial functioning of the society.
    [Show full text]
  • Government of India Ministry of Mines
    Government of India Ministry of Mines REPORT OF THE WORKING GROUP ON MINERAL EXPLORATION & DEVELOPMENT (OTHER THAN COAL & LIGNITE) FOR THE TWELFTH FIVE YEAR PLAN SUB GROUP – I ON SURVEY AND MINERAL EXPLORATION October, 2011 REPORT OF THE WORKING GROUP ON MINERAL EXPLORATION & DEVELOPMENT (OTHER THAN COAL & LIGNITE) FOR THE TWELFTH FIVE YEAR PLAN (SUB GROUP – I ON SURVEY AND MINERAL EXPLORATION) CONTENTS Chapter Title Page Nos. Foreword i – iv Executive Summary v – xi Chapter – I Introduction 1 – 18 1.1.0 Preamble 1 – 3 1.2.0 Geoscientific database for mineral prognostication in India 3 – 5 1.3.0 Exploration and Regulatory Agencies 6 – 9 1.4.0 Thrust of Exploration and priorities accorded in plan periods 9 – 14 (1947-2005) till the Xth Plan 1.5.0 Present Status 14 – 16 1.6.0 Thrust Areas 16 – 18 Chapter – II Review of performance during Eleventh Plan 19 – 45 2.1.0 Preamble 19 – 23 2.2.0 Thrust Areas during XI Five Year Plan 23 – 25 2.3.0 Mission-I Baseline Geoscience data generation target and 25 – 28 achievement of GSI 2.4.0 Mission-II - Mineral Resources Assessment 28 – 33 2.5.0 Regional Mineral Survey Prognostication by central 7 State 33 – 37 Agencies other than GSI 2.6.0 Research and Development 37 – 38 2.7.0 Technology Infusion 38 – 40 2.8.0 Training of Human Resources 40 – 41 2.9.0 Status of Initiatives introduced during XI Plan period 42 – 43 2.10.0 Dissemination of Survey and Exploration Data 44 – 45 2.11.0 Conclusion 45 46 – 67 Chapter – III Review of National Mineral Inventory (Item No.
    [Show full text]
  • Ircon International Limited
    IRCON INTERNATIONAL LIMITED DETAILED PROJECT REPORT‐CHHAL (CERL) CONSTRUCTION OF NEW COAL SIDING TAKING OFF FROM CHHAL STATION IN RAIGARH DISTRICT IN BILASPUR DIVISION OF SEC RAILWAY December ‐ 2018 Consultant HOWE ENGINEERING PROJECTS (INDIA) PVT. LTD. Office Address: Office No. 1003B, 10th Floor, BPTP Park, Centra, Sector‐30 NH‐8, Gurugram, Gurgaon, Haryana ‐ 122001 Telephone: 0124‐4740850, GST Regn. Number: 06AADCH4100N1ZS Registered Office: E‐102, Sanskar Appartment, Opp Karnavati Club, SG Highway, Satellite, Ahmedabad 380 015 Tel + 91 (79) 2555 6500, Fax + 91 (79) 2555 5603, www.howeindia.com CIN: U74140GJ2013PTC086504 Date: December 2018 Doc. No.: I‐527_IRCON_CERL_DPR_CHHAL Page 1 of 60 TABLE OF CONTENTS CHAPTER PAGE TITLE NO. NOS. 0 TABLE OF CONTENTS 1 to 1 I GENESIS OF THE PROPOSITION AND PROFILE OVERVIEW 2 to 11 OF THE ASSIGNMENT II PROJECT AT A GLANCE 12 to 16 III ANALYSIS & ASSESMENT OF COAL TRAFFIC 17 to 32 IV TOPOGRAPHY SURVEY 33 to 34 V CIVIL ENGINEERING (ALIGNMENT, BRIDGES & ROAD CROSSINGS AND OTHER 35 to 43 DETAILS) VI SYSTEM OF OPERATION 44 to 48 VII GEOTECHNICAL INVESTIGATION 49 to 49 VIII LAND PLANS 50 to 50 IX ELECTRICAL ENGINEERING 51 to 54 X SIGNAL AND TELECOMMUNICATION (S&T) ENGINEERING 55 to 55 XI MECHANICAL ENGINEERING 56 to 56 XII COST ESTIMATES 57 to 59 XIII LIST OF ANNEXURES 60 to 60 Detailed Project Report of Chhal (CERL) Date: December 2018 Doc. No.: I‐527_IRCON_CERL_DPR_CHHAL Page 2 of 60 CHAPTER ‐ 1: GENESIS OF THE PROPOSITION AND PROFILE OVERVIEW OF THE ASSIGNMENT INTRODUCTION: Bulk cargo, be it dry or liquid, like coal and crude oil play a crucial role in the economic development.
    [Show full text]