summaryrefslogtreecommitdiff
path: root/1052/CH33
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1052/CH33
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1052/CH33')
-rwxr-xr-x1052/CH33/EX33.1/331.sce7
-rwxr-xr-x1052/CH33/EX33.10/3310.sce14
-rwxr-xr-x1052/CH33/EX33.12/3312.sce9
-rwxr-xr-x1052/CH33/EX33.2/332.sce12
-rwxr-xr-x1052/CH33/EX33.5/335.sce17
-rwxr-xr-x1052/CH33/EX33.6/336.sce20
-rwxr-xr-x1052/CH33/EX33.7/337.sce10
-rwxr-xr-x1052/CH33/EX33.8/338.sce12
-rwxr-xr-x1052/CH33/EX33.9/339.sce14
9 files changed, 115 insertions, 0 deletions
diff --git a/1052/CH33/EX33.1/331.sce b/1052/CH33/EX33.1/331.sce
new file mode 100755
index 000000000..20bcad120
--- /dev/null
+++ b/1052/CH33/EX33.1/331.sce
@@ -0,0 +1,7 @@
+clc;
+//Example 33.1 page no 524
+printf("Example 33.1 page no 524\n\n")
+//unit conversion of viscosity of blood
+meu_cp=1.25//vicosity of blood in cp
+meu_e=meu_cp*6.72e-4//viscosity in english unit,lb/ft.s
+printf("\n viscosity meu_e=%f lb/ft.s",meu_e)
diff --git a/1052/CH33/EX33.10/3310.sce b/1052/CH33/EX33.10/3310.sce
new file mode 100755
index 000000000..e5f0a86d9
--- /dev/null
+++ b/1052/CH33/EX33.10/3310.sce
@@ -0,0 +1,14 @@
+clc;
+//Example 33.10
+//page no 532
+printf("Example 33.10 page no 532\n\n");
+//the flow of blood from the arota to the atrium is reprsented by a vessel
+meu=1.1*6.72e-4//viscosity of blood
+L=0.3//length of vessel,mile
+g_c=32.2//grav. acc
+rho=62.4//density of blood
+D=2.53/30.48//diameter of vessel,ft
+P_drop=32*meu*(19/30.48)*5280*L/(rho*D^2*g_c)
+printf("\n pressure drop P_drop=%f ft*lbf/lb",P_drop)
+//snice the model is resonable from the fluid dynamics perspective
+
diff --git a/1052/CH33/EX33.12/3312.sce b/1052/CH33/EX33.12/3312.sce
new file mode 100755
index 000000000..2fc600efc
--- /dev/null
+++ b/1052/CH33/EX33.12/3312.sce
@@ -0,0 +1,9 @@
+clc;
+//Example 33.12
+//page no 534
+printf("\n Example 33.12 page no 534\n\n")
+//estimation of power generated by human heart
+P_drop=60//pressure drop in the circulatory system,mmHg
+q=0.0033//volumetric flow rate,ft^3/s
+hp=(q*P_drop*14.7*(144/760))//power generated
+printf("\npower generated hp=%f hp",hp);//calculation error in book
diff --git a/1052/CH33/EX33.2/332.sce b/1052/CH33/EX33.2/332.sce
new file mode 100755
index 000000000..0c01ff632
--- /dev/null
+++ b/1052/CH33/EX33.2/332.sce
@@ -0,0 +1,12 @@
+clc;
+//Example 33.2 page no 525
+printf("Example 33.2 page no 525\n\n");
+//unit conversion of poressure given in mmHg into various units
+P=80//pressure given in mmHg
+P1=P*(29.92/760)//pressure , in Hg
+P2=P*(33.91/760)//pressure ,ft H2O
+P3=P2*12//pressure ,in H2O
+P4=P*(14.7/760)//pressure ,psia
+P5=P*(2116/760)//pressure ,psfa
+P6=P*(1.013e+5/760)//pressure ,N/m^2
+printf("\n P1=%f inHg\n P2=%f ft H2O\nP3=%f in H2O\n P4=%f psia\nP5=%f psfa\nP6=%f N/m^2",P1,P2,P3,P4,P5,P6);//in book answers are round off after decimal but there are exact answers
diff --git a/1052/CH33/EX33.5/335.sce b/1052/CH33/EX33.5/335.sce
new file mode 100755
index 000000000..a5a415f63
--- /dev/null
+++ b/1052/CH33/EX33.5/335.sce
@@ -0,0 +1,17 @@
+clc;
+//Example 33.5 page no 527
+printf("Example 33.5 page no 527\n\n");
+//an artery branches into two smaller equal area arteries so that velocity is same
+//because q1=q2,volumetric flow rate
+//q1=q2=q/2
+//because s1=s2,cross sectional area
+//s1=s2=s/2
+//let the values
+q=1//flow rate at inlet artery
+q1=q/2//flow rate at outlet artery
+s=1//area of inlet artery
+s1=s/2//area of outlet artery
+//v=q/s
+D_r=sqrt(q/q1)//ratio of diameters
+printf("\n ratio of diameters D_r=%f ",D_r);
+
diff --git a/1052/CH33/EX33.6/336.sce b/1052/CH33/EX33.6/336.sce
new file mode 100755
index 000000000..e0308141c
--- /dev/null
+++ b/1052/CH33/EX33.6/336.sce
@@ -0,0 +1,20 @@
+clc;
+//Example 33.6
+//page no 528
+printf("Example 33.6 page no 528\n\n");
+//a blood vessel branches into three openings
+//we have to find the velocity in 3 rd opening
+a=0.2//cross sectional area of inlet 1,m^2
+v=5//velocity inlet 1,mm/s
+a1=0.08//area of branch1,m^2
+v1=7//velocity in branch2,mm/s
+a2=0.025//area of branch,m^2
+v2=12//velocity in branch,mm/s
+a3=0.031//area of branch,m^2
+q=a*v//flow rate at inlet
+q1=a1*v1//flow rate at branch 1
+q2=a2*v2//flow rate at branch 2
+q3=q-q1-q2//flow rate in branch 3
+v3=q3/a3//velocity in branch 3
+printf("\n velocity v3=%f mm/s",v3);
+
diff --git a/1052/CH33/EX33.7/337.sce b/1052/CH33/EX33.7/337.sce
new file mode 100755
index 000000000..cf4c1e150
--- /dev/null
+++ b/1052/CH33/EX33.7/337.sce
@@ -0,0 +1,10 @@
+clc;
+//Example 33.7
+//page no 531
+printf("Example 33.7 page no 531\n\n");
+//blood flowing through the arota
+D=2.5//diameter of arota
+S=%pi*D^2/4//cross sectional area,cm^2
+q=93.3//volumeric flow rate,cm^3/s
+v=q/S//flow velocity
+printf("\n flow velocity v=%f cm/s",v);
diff --git a/1052/CH33/EX33.8/338.sce b/1052/CH33/EX33.8/338.sce
new file mode 100755
index 000000000..da228dba0
--- /dev/null
+++ b/1052/CH33/EX33.8/338.sce
@@ -0,0 +1,12 @@
+clc;
+//Example 33.8
+//page no 531
+printf("Example 33.8 page no 531\n\n");
+//one of the auther of this book is 74 year old ,we have to determine the no. of times that the the auther's heart has to beat to date
+Y=74//age in year
+d=365//days
+h=24//hours
+m=60//minutes
+b=80//heart beats per minutes
+T=Y*d*h*m*b// no. of times heart beats
+printf("\n no.of times heart beats T=%f ",T);
diff --git a/1052/CH33/EX33.9/339.sce b/1052/CH33/EX33.9/339.sce
new file mode 100755
index 000000000..6892920a9
--- /dev/null
+++ b/1052/CH33/EX33.9/339.sce
@@ -0,0 +1,14 @@
+clc;
+//Example 33.9
+//page no 531
+printf("\n Example 33.9 page no 531\n\n");
+//refer to example no 33.8
+Y=74//age in year
+d=365//days
+h=24//hours
+m=60//minutes
+b=80//heart beats per minutes
+T=Y*d*h*m*b// no. of times heart beats
+v=70//volume of blood discharge with each blood,ml
+V=T*v//volume of blood that has circulated through the auther's system over his lifetime
+printf("\n Volume of blood V=%f ml",V);