diff options
Diffstat (limited to '1397/CH2/EX2.5/2_5.sce')
-rwxr-xr-x | 1397/CH2/EX2.5/2_5.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1397/CH2/EX2.5/2_5.sce b/1397/CH2/EX2.5/2_5.sce new file mode 100755 index 000000000..5d8e3a282 --- /dev/null +++ b/1397/CH2/EX2.5/2_5.sce @@ -0,0 +1,8 @@ +//clc();
+clear;
+//To determine the capacitance
+new=10^6; //frequency of ultrasonics in Hz
+L=1; //Inductance in Henry
+A=4*(%pi^2)*(new^2)*L;
+C=10^12/A;
+printf("the capacitance to produce ultrasonic waves is %f PF",C);
|