diff options
Diffstat (limited to '1964/CH5/EX5.36/ex5_36.sce')
-rwxr-xr-x | 1964/CH5/EX5.36/ex5_36.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1964/CH5/EX5.36/ex5_36.sce b/1964/CH5/EX5.36/ex5_36.sce new file mode 100755 index 000000000..8239c99e9 --- /dev/null +++ b/1964/CH5/EX5.36/ex5_36.sce @@ -0,0 +1,11 @@ +//Chapter-5, Example 5.36, Page 198
+//=============================================================================
+clc
+clear
+//INPUT DATA
+L=40*10^-3;//inductance in henry
+C=0.01*10^-6;//capacitance in uf
+//CALCULATIONS
+fr=1/(2*%pi*sqrt(L*C));//resonant frequency
+mprintf("Thus resonant frequency is %d hz\n",fr);
+//=================================END OF PROGRAM======================================================================================================
|