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 /728/CH8/EX8.7/Ex8_7.txt | |
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 '728/CH8/EX8.7/Ex8_7.txt')
-rwxr-xr-x | 728/CH8/EX8.7/Ex8_7.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/728/CH8/EX8.7/Ex8_7.txt b/728/CH8/EX8.7/Ex8_7.txt new file mode 100755 index 000000000..25bf11dfb --- /dev/null +++ b/728/CH8/EX8.7/Ex8_7.txt @@ -0,0 +1,16 @@ +//Caption:Calculate (i)-efficiency of reflex klystron ,(ii)-total output power in mW, (iii)-power delivered to load
+//Exa:8.7
+clc;
+clear;
+close;
+P_dc_in=40;//in mW
+ratio=0.278;//V_1/V_o;
+n=1;
+X=ratio*(2*n*%pi-%pi/2);
+J=2.35;
+eff=ratio*J*100;//in percentage
+P_out= 8.91*P_dc_in/100;
+P_load=3.564*80/100;
+disp(eff,'Effeciency (in percentage) =');
+disp(P_out,'Total power output (in mW) =');
+disp(P_load,'Power delivered to load (in mW) =');
\ No newline at end of file |