From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2510/CH3/EX3.6/Ex3_6.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2510/CH3/EX3.6/Ex3_6.sce (limited to '2510/CH3/EX3.6') diff --git a/2510/CH3/EX3.6/Ex3_6.sce b/2510/CH3/EX3.6/Ex3_6.sce new file mode 100755 index 000000000..4886b70c5 --- /dev/null +++ b/2510/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,16 @@ +//Variable declaration: +SG = 0.8 //Specific Gravity +AV = 0.02 //Absolute Viscosity (cP) +cP = 1 //Viscosity of centipoise (cP) +VcP = 6.72 * 10**-4 //Pound per feet.sec in a centipoise (lb/ft.s) +pR = 62.43 //Reference density (lb/ft^3) + +//Calculations: +u = AV*VcP/cP //Viscosity of gas (lb/ft.s) +p = SG*pR //Density of gas (lb/ft^3) +v = u/p //Kinematic viscosity of gas (ft^2/s) + +//Result: +disp("Kinematic viscosity of gas is:") +disp(v/10**-7) +disp ("x 10**-7 ft^2/s") -- cgit