summaryrefslogtreecommitdiff
path: root/3515/CH5/EX5.4/Ex_5_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH5/EX5.4/Ex_5_4.sce')
-rw-r--r--3515/CH5/EX5.4/Ex_5_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3515/CH5/EX5.4/Ex_5_4.sce b/3515/CH5/EX5.4/Ex_5_4.sce
new file mode 100644
index 000000000..7733b24cf
--- /dev/null
+++ b/3515/CH5/EX5.4/Ex_5_4.sce
@@ -0,0 +1,14 @@
+// Exa 5.4
+format('v',6);
+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 : ")