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 /2891/CH2/EX2.19 | |
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 '2891/CH2/EX2.19')
-rwxr-xr-x | 2891/CH2/EX2.19/Ex2_19.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2891/CH2/EX2.19/Ex2_19.sce b/2891/CH2/EX2.19/Ex2_19.sce new file mode 100755 index 000000000..20c725a57 --- /dev/null +++ b/2891/CH2/EX2.19/Ex2_19.sce @@ -0,0 +1,14 @@ +// Exa 2.19
+clc;
+clear;
+close;
+// given : E=5*sin(10^8*t+4*x)az // equation of electric field
+A=5 // amplitude of the electric field
+omega=10^8 // angular frequency in radians/sec
+f=omega/(2*%pi) // frequency in Hz
+Beta=4 // phase constant in rad/m
+v_0=3*10^8 // speed of light in m/s
+lambda=v_0/f // wavelength in m
+disp(f/10^6,"frequency in MHz:")
+disp(Beta,"phase constant in rad/m:")
+disp(lambda,"wavelength in m:")
|