diff options
Diffstat (limited to '3428/CH22/EX14.22.3/Ex14_22_3.sce')
-rw-r--r-- | 3428/CH22/EX14.22.3/Ex14_22_3.sce | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3428/CH22/EX14.22.3/Ex14_22_3.sce b/3428/CH22/EX14.22.3/Ex14_22_3.sce index c6fda3f7e..ff8281422 100644 --- a/3428/CH22/EX14.22.3/Ex14_22_3.sce +++ b/3428/CH22/EX14.22.3/Ex14_22_3.sce @@ -2,8 +2,8 @@ //To calculate the height to which liquid B rises.
clc;
//(y_B/y_A)=(h_B*d_B)/(h_A*d_A)
-h_A=0.01
+h_A=0.01 //m
d=1/2 //d=d_A/d_B
y=1/2 //y=y_A/y_B
-h_B=h_A*d*y
+h_B=h_A*d*y //m
disp(h_B,'The height to which liquid B rises(m)')
|