diff options
Diffstat (limited to '806/CH8/EX8.3')
-rw-r--r-- | 806/CH8/EX8.3/83.sce | 13 | ||||
-rw-r--r-- | 806/CH8/EX8.3/83.txt | 22 |
2 files changed, 35 insertions, 0 deletions
diff --git a/806/CH8/EX8.3/83.sce b/806/CH8/EX8.3/83.sce new file mode 100644 index 000000000..90666a4f9 --- /dev/null +++ b/806/CH8/EX8.3/83.sce @@ -0,0 +1,13 @@ +clc
+pathname=get_absolute_file_path('83.sce')
+filename=pathname+filesep()+'83.sci'
+exec(filename)
+diary('C:\users\Bhavesh\desktop\scilab\83.txt')
+disp("A source with strength 0.2m^3/s and a vortex with strength 1 m^2/s are located at the origin.Determine the equations for velocity potential and stream function.What are the velocity components at x=1 m,y=0.5 m?")
+disp("Solution:")
+r=sqrt(x^2+y^2)
+Vr=1/(10*%pi*r)
+Vt=1/(2*%pi*r)
+disp("m/s",Vr,"Vr=")
+disp("m/s",Vt,"Vt=")
+diary(0)
diff --git a/806/CH8/EX8.3/83.txt b/806/CH8/EX8.3/83.txt new file mode 100644 index 000000000..44a79db57 --- /dev/null +++ b/806/CH8/EX8.3/83.txt @@ -0,0 +1,22 @@ +
+ A source with strength 0.2m^3/s and a v
+ ortex with strength 1 m^2/s are lo
+ cated at the origin.Determine the
+ equations for velocity potential a
+ nd stream function.What are the ve
+ locity components at x=1 m,y=0.5 m
+ ?
+
+ Solution:
+
+ Vr=
+
+ 0.0284705
+
+ m/s
+
+ Vt=
+
+ 0.1423525
+
+ m/s
|