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 /1616/CH2/EX2.5/ex2_5.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 '1616/CH2/EX2.5/ex2_5.sce')
-rw-r--r-- | 1616/CH2/EX2.5/ex2_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1616/CH2/EX2.5/ex2_5.sce b/1616/CH2/EX2.5/ex2_5.sce new file mode 100644 index 000000000..34289df0a --- /dev/null +++ b/1616/CH2/EX2.5/ex2_5.sce @@ -0,0 +1,16 @@ +//ex2.5 from the previous problem find instantaneous voltage in -X direction + + +//at x=0 and t=0 v(t)=8.66V +vt=8.66; +o=30*3.142/180; +V=vt/cos(o); +//at x=1 and t=100nSec +w=2e9*%pi; +t=100e-9; +b=28.2; +x=1; +a=2.23; +vt1=V*exp(a*x)*cos(o+w*t+b*x); +disp('the votage at x=1m & t=100nsec is= '+string(vt1)+'V'); + |