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 /3417/CH12/EX12.6.1 | |
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 '3417/CH12/EX12.6.1')
-rw-r--r-- | 3417/CH12/EX12.6.1/Ex12_6_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3417/CH12/EX12.6.1/Ex12_6_1.sce b/3417/CH12/EX12.6.1/Ex12_6_1.sce new file mode 100644 index 000000000..c2b0d6a75 --- /dev/null +++ b/3417/CH12/EX12.6.1/Ex12_6_1.sce @@ -0,0 +1,14 @@ +//Ex12.6.1.;calculate open circuit voltage and maximum power output
+B=2;//flux density;unit=Wb/m^2
+u=10^3;//average gas velocity;unit=m/second
+d=0.50;//distance between plates;unit=m
+E0=B*u*d;//Open ccircuit voltage
+printf(" Open ccircuit voltage E0=%f Volts",E0);
+//Generator resistance; Rg=d/sigma*A
+sigma=10;//Gaseous conductivity;unit=Mho/m
+A=0.25;//Plate Area;unit=m^2
+Rg=d/(sigma*A);
+printf("\n Generator resistance Rg=%f Ohm",Rg);
+//Maximum power
+Maximum_power=(E0^2)/(4*Rg);
+printf("\n Maximum_power=%f watts",Maximum_power);
|