diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH2/EX2.26/ch2_ex_26.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH2/EX2.26/ch2_ex_26.sce')
-rw-r--r-- | 1445/CH2/EX2.26/ch2_ex_26.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/1445/CH2/EX2.26/ch2_ex_26.sce b/1445/CH2/EX2.26/ch2_ex_26.sce new file mode 100644 index 000000000..2bc21dc90 --- /dev/null +++ b/1445/CH2/EX2.26/ch2_ex_26.sce @@ -0,0 +1,31 @@ +//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT +//Example 26 // read it as example 25 in the book on page 2.79 + +disp("CHAPTER 2"); +disp("EXAMPLE 26"); + +//VARIABLE INITIALIZATION +A=100 //Amplitude in Amps +f=25 //frquency in Hz +a1=20 //svalue in Amps to be achieved in certain time +a2=100 //in Amps + +//SOLUTION +//i=Isinwt +//solution (a) +//RAmplitude at 1/600 second after it becomes zero +w=f*2*%pi; //angular speed +t1=(asin(a1/A))/w; +disp("SOLUTION (a)"); +disp(sprintf("The time to reach value %f A is %3f sec", a1,t1)); +disp(" "); +//solution (b) +//since wave will pass in -ve direction after half period +t2=(asin(a2/A))/w; +disp("SOLUTION (a)"); +disp(sprintf("The time to reach value %f A is %3f sec", a2,t2)); +disp(" "); +// +//END + + |