blob: b813781a2b660514e92b066b2092df77f694f051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.15
//Given Data Set in the Problem(SI Units)
dist=20/100
u_vertex=120/100
visc=8.5/10
y=poly(0,"y")
a=poly(0,"a")
b=poly(0,"b")
c=poly(0,"c")
c=2
a=2
b-2
u=a*y^2+b*y+c
s=poly(0,'s')
|