SlideShare a Scribd company logo
1 of 24
Uniform open channel flows
Prof. Dr. Andreas Malcherek
The fundamental problem of open channel flows
Euroluftbild.de, Grahn
For a given discharge Q the water level h needs to be determined!
Hydraulic diameter of open channels
Example: Rectangular cross section
Rivers are wide open channels
Wide rectangular cross section
The momentum balance for a pipe
Momentum balance for an uniform open channel
Same water depth everywhere
Stationary conditions
MATLAB Program
• function riverflow
• rho=1000;
• h=1.5; %Water depth within the river
• B=50; % Width of the river
• A=B*h;
• U= B+2*h;
• dhyd=4*A/U;
• z1=20; % Upper height of the river
• z2=0; % Loweder height of the river
• L=10000; % Length of the river
• J=(z1-z2)/L; % Slope
• Ks=0.03; %Roughness of the river bed
•
• [T v]=ode45(@RHS,[0 1000],0);
• plot(T,v*A,'Color',[0 0 0],'LineWidth',2)
• xlabel('Time[s]','FontWeight','bold')
• ylabel('Discharge[m^3/s]','FontWeight','bold')
• grid on
•
• function dvdt=RHS(t,v)
• Re=v*dhyd/nu;
• lambda=colebrook_white(Re,Ks/dhyd);
• dvdt=(p1-p2)/(rho*L)+g*(z1-z2)/L-lambda/8*U/A*v*abs(v);
• end
• end
7
Open channel and river slopes
Example: Weser river in
Germany: At the source
z1=123m, at the mouth z0=0
m, lenght 300km
Balance between driving force and friction
Discharge
The friction coefficient for open channel flows
Roughness of open channel beds
d
l
d
D
Grain Roughness
Ripple and dune roughness







 D
D

r
r
r
r
r
s
k
l

20  
d
d
e
k d
d
d
s
l
 /
25
1
77
.
0 D


D

d
l
d
D
Rectangular channel
Bh
A 
Given: Q, ks, J B, l
B
2h
4Bh
dhyd


Rectangular channel
4gJB3h3 - ʎQ2h-
ʎ
2
Q2B = 0
Solving roots of polynomials in MATLAB
g=9.81;
B=10;
Q=8;
J=0.001;
lambda=0.03;
poly=[4*g*B^3 0 -lambda –Q^2];
h=max(real(roots(poly)));
4gJB3h3 - ʎQ2h-
ʎ
2
Q2B = 0
Polynomials in MATLAB
Discharge characteristics of the river
Manning formula
Mannings coefficient
Calculation with Manning formula
Trapezoida channels
2
mh
Bh
A 

 
B
m
1
2h
mh
Bh
4
d
2
2
hyd




Rectangular
profile for m=0
Trapezkanäle
2g
Q
I
1
λ
)
)A(h
(h
d
2
So
2
N
N
hyd 
    2g
Q
I
1
λ
mh
Bh
B
m
1
2h
mh
Bh
4 2
So
2
2
N
N
2
N
2
N
N





   
B
m
1
2h
2g
Q
I
1
λ
mh
Bh
4 2
N
2
So
3
2
N
N 



Normal water depth in trapezoidal channel
 
B
2h
2g
Q
I
1
λ
h
4B N
2
So
3
N
3


B=100m
Iso=1:10000
Ks=6mm

More Related Content

Similar to Fundamentals of uniform open channel flows

6. Flow Through uc Channels (CE).pdf
6. Flow Through uc Channels (CE).pdf6. Flow Through uc Channels (CE).pdf
6. Flow Through uc Channels (CE).pdfRakeshKumar660472
 
Non equilibrium equation for unsteady radial flow
Non equilibrium equation for unsteady radial flowNon equilibrium equation for unsteady radial flow
Non equilibrium equation for unsteady radial flowAbhishek Gupta
 
UNIFORM FLOW OCF.pptx
UNIFORM FLOW OCF.pptxUNIFORM FLOW OCF.pptx
UNIFORM FLOW OCF.pptxreenarana28
 
economic channel section
economic channel sectioneconomic channel section
economic channel sectionVaibhav Pathak
 
Modeling dispersion under unsteady groundwater flow conditions
Modeling dispersion under unsteady groundwater flow conditionsModeling dispersion under unsteady groundwater flow conditions
Modeling dispersion under unsteady groundwater flow conditionsAmro Elfeki
 
UNIT 1 UNIFORM FLOW.pptx
UNIT 1 UNIFORM FLOW.pptxUNIT 1 UNIFORM FLOW.pptx
UNIT 1 UNIFORM FLOW.pptxreenarana28
 
Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes MAULIKM1
 
CH2 Hydraulics and hydrology of HP.pptx
CH2 Hydraulics and hydrology of HP.pptxCH2 Hydraulics and hydrology of HP.pptx
CH2 Hydraulics and hydrology of HP.pptxDawit Girma
 
Ce 3205-lecture-08-spillways
Ce 3205-lecture-08-spillwaysCe 3205-lecture-08-spillways
Ce 3205-lecture-08-spillwayssaibabu48
 
C2VSim Workshop 5 - C2VSim Surface Water Representation
C2VSim Workshop 5 - C2VSim Surface Water RepresentationC2VSim Workshop 5 - C2VSim Surface Water Representation
C2VSim Workshop 5 - C2VSim Surface Water RepresentationCharlie Brush
 
Unit i basic concept of isentropic flow
Unit   i basic concept of isentropic flowUnit   i basic concept of isentropic flow
Unit i basic concept of isentropic flowsureshkcet
 
DSD-INT 2018 Floodplain Circulation Dynamics - van der Steeg
DSD-INT 2018 Floodplain Circulation Dynamics - van der SteegDSD-INT 2018 Floodplain Circulation Dynamics - van der Steeg
DSD-INT 2018 Floodplain Circulation Dynamics - van der SteegDeltares
 
FluidMech_2014_5.ppt
FluidMech_2014_5.pptFluidMech_2014_5.ppt
FluidMech_2014_5.pptgemadogelgalu
 
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).ppt
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).pptFluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).ppt
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).pptna9er98dallah3
 

Similar to Fundamentals of uniform open channel flows (20)

6. Flow Through uc Channels (CE).pdf
6. Flow Through uc Channels (CE).pdf6. Flow Through uc Channels (CE).pdf
6. Flow Through uc Channels (CE).pdf
 
Non equilibrium equation for unsteady radial flow
Non equilibrium equation for unsteady radial flowNon equilibrium equation for unsteady radial flow
Non equilibrium equation for unsteady radial flow
 
UNIFORM FLOW OCF.pptx
UNIFORM FLOW OCF.pptxUNIFORM FLOW OCF.pptx
UNIFORM FLOW OCF.pptx
 
Chapter 4 Fetter Principles of groundwater flow
Chapter 4 Fetter Principles of groundwater flowChapter 4 Fetter Principles of groundwater flow
Chapter 4 Fetter Principles of groundwater flow
 
economic channel section
economic channel sectioneconomic channel section
economic channel section
 
Lecture 1.pptx
Lecture 1.pptxLecture 1.pptx
Lecture 1.pptx
 
Hydrology.pdf
Hydrology.pdfHydrology.pdf
Hydrology.pdf
 
Modeling dispersion under unsteady groundwater flow conditions
Modeling dispersion under unsteady groundwater flow conditionsModeling dispersion under unsteady groundwater flow conditions
Modeling dispersion under unsteady groundwater flow conditions
 
UNIT 1 UNIFORM FLOW.pptx
UNIT 1 UNIFORM FLOW.pptxUNIT 1 UNIFORM FLOW.pptx
UNIT 1 UNIFORM FLOW.pptx
 
Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes
 
CH2 Hydraulics and hydrology of HP.pptx
CH2 Hydraulics and hydrology of HP.pptxCH2 Hydraulics and hydrology of HP.pptx
CH2 Hydraulics and hydrology of HP.pptx
 
Ce 3205-lecture-08-spillways
Ce 3205-lecture-08-spillwaysCe 3205-lecture-08-spillways
Ce 3205-lecture-08-spillways
 
CHAPTER NO 2
CHAPTER NO 2 CHAPTER NO 2
CHAPTER NO 2
 
3.uniform flow.pptx
3.uniform flow.pptx3.uniform flow.pptx
3.uniform flow.pptx
 
C2VSim Workshop 5 - C2VSim Surface Water Representation
C2VSim Workshop 5 - C2VSim Surface Water RepresentationC2VSim Workshop 5 - C2VSim Surface Water Representation
C2VSim Workshop 5 - C2VSim Surface Water Representation
 
Unit i basic concept of isentropic flow
Unit   i basic concept of isentropic flowUnit   i basic concept of isentropic flow
Unit i basic concept of isentropic flow
 
DSD-INT 2018 Floodplain Circulation Dynamics - van der Steeg
DSD-INT 2018 Floodplain Circulation Dynamics - van der SteegDSD-INT 2018 Floodplain Circulation Dynamics - van der Steeg
DSD-INT 2018 Floodplain Circulation Dynamics - van der Steeg
 
Groundwater hydrology
Groundwater hydrologyGroundwater hydrology
Groundwater hydrology
 
FluidMech_2014_5.ppt
FluidMech_2014_5.pptFluidMech_2014_5.ppt
FluidMech_2014_5.ppt
 
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).ppt
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).pptFluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).ppt
Fluidmnhggffhyrfytftydtdtdtre65Mech_2014_5 (2).ppt
 

Recently uploaded

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 

Recently uploaded (20)

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 

Fundamentals of uniform open channel flows