summaryrefslogtreecommitdiff
path: root/377/CH10/EX10.6/10_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '377/CH10/EX10.6/10_6.sce')
-rw-r--r--377/CH10/EX10.6/10_6.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/377/CH10/EX10.6/10_6.sce b/377/CH10/EX10.6/10_6.sce
new file mode 100644
index 000000000..ff85f560e
--- /dev/null
+++ b/377/CH10/EX10.6/10_6.sce
@@ -0,0 +1,13 @@
+W=2*10^-6;
+Dp=1.25*10^-3;
+Tp=10^-6;
+Lp=sqrt(Dp*Tp);
+a=(W^2)/(2*(Lp^2)); //to prove a<<1
+printf('\n The value of (W^2)/(2*(Lp^2)) is %f which is <<1',a);
+W=2*10^-6;
+We=1*10^-6;
+c=1/0.0010;
+d=1/0.000010;
+disp("γ=1/(1+((σn*W)/(σp*We)))");
+b=1/(1+((c*W)/(d*We))); //say γ=b
+printf('\n The value of γ is %f',b); \ No newline at end of file