summaryrefslogtreecommitdiff
path: root/260/CH1/EX1.3/1_03.sce
diff options
context:
space:
mode:
Diffstat (limited to '260/CH1/EX1.3/1_03.sce')
-rw-r--r--260/CH1/EX1.3/1_03.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/260/CH1/EX1.3/1_03.sce b/260/CH1/EX1.3/1_03.sce
new file mode 100644
index 000000000..b6af9334c
--- /dev/null
+++ b/260/CH1/EX1.3/1_03.sce
@@ -0,0 +1,12 @@
+//Eg No. 1.3
+//Pg No. 12
+clc ;
+clear ;
+close ;
+deff('v = f(R,T,M)','v = sqrt(8*R*T/(3.14159*M))')
+R = 8.314*(10^7)
+M = input('Enter the value of M')
+T = input ('Enter the value of T')
+v = f(R,M,T)
+disp('v = ')
+disp(v) \ No newline at end of file