diff options
Diffstat (limited to '2702/CH5/EX5.4/Ex_5_4.sce')
-rw-r--r-- | 2702/CH5/EX5.4/Ex_5_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2702/CH5/EX5.4/Ex_5_4.sce b/2702/CH5/EX5.4/Ex_5_4.sce new file mode 100644 index 000000000..ae76d150b --- /dev/null +++ b/2702/CH5/EX5.4/Ex_5_4.sce @@ -0,0 +1,13 @@ +// Exa 5.4
+clc;
+clear;
+close;
+// Given data
+dAf_by_Af= 0.2/100;
+dA_by_A= 150/2000;
+A=2000;
+// Formula dAf_by_Af = 1/(1+Bita*A) * dA_by_A
+Bita= dA_by_A/(A*dAf_by_Af )-1/A;
+Af= A/(1+Bita*A);
+disp(Bita*100,"Value of Bita in percent is ")
+disp(Af,"Value of Af is : ")
|