diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3487/CH1/EX1.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3487/CH1/EX1.4')
-rw-r--r-- | 3487/CH1/EX1.4/Ex1_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3487/CH1/EX1.4/Ex1_4.sce b/3487/CH1/EX1.4/Ex1_4.sce new file mode 100644 index 000000000..6d8b71e40 --- /dev/null +++ b/3487/CH1/EX1.4/Ex1_4.sce @@ -0,0 +1,14 @@ +//Chapter 1,Example 1.4 Page 53 +// Determine (pd)min Vbmin +clc +clear +A = 12 +B = 365 +e = 2.718 +ghama = 0.02 +K = 51 +pd = (e/A)*log(1+(1/ghama)) +Vbmin = (B/A)*e*log(K) +printf (" (pd)min = %f Vbmin = %f Volts",pd,Vbmin) + +//Answers may vary due to round of error |