diff options
Diffstat (limited to '3876/CH3/EX3.4/Ex3_4.sce')
-rw-r--r-- | 3876/CH3/EX3.4/Ex3_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH3/EX3.4/Ex3_4.sce b/3876/CH3/EX3.4/Ex3_4.sce new file mode 100644 index 000000000..fc11da87a --- /dev/null +++ b/3876/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,17 @@ +//Chapter 3 Liquids + +clc; +clear; + +//Initialisation of Variables +n2= 10.05*10**-3 //poise +d1= 0.879 //gms cm^-3 +t= 88 //sec +d2= 1 //gms cm^-3 +t1= 120 //sec + +//Calculations +n1= d1*t/(d2*t1) + +//Results +mprintf("Relative Viscosity= %.3f",n1); |