summaryrefslogtreecommitdiff
path: root/3515/CH5/EX5.4/Ex_5_4.sce
blob: 7733b24cf39e5180507d6c9345483e461f527dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 : ")