blob: f1c13142cb34028e4a778d50bf45c2612bbe6ab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 3 Liquids
clc;
clear;
//Initialisation of Variables
d= 0.789 //gram per cc
r= 0.010 //cm
h= 5.76 //cm
g= 980.7 // cm /sec^2
//Calculations
R= d*h*r*g/2
//Results
mprintf("Surface Tension = %.1f dynes per cm",R);
|