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 /608/CH15/EX15.04 | |
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 '608/CH15/EX15.04')
-rwxr-xr-x | 608/CH15/EX15.04/15_04.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/608/CH15/EX15.04/15_04.sce b/608/CH15/EX15.04/15_04.sce new file mode 100755 index 000000000..c67f74ba3 --- /dev/null +++ b/608/CH15/EX15.04/15_04.sce @@ -0,0 +1,11 @@ +//Problem 15.04: A capacitor has a reactance of 40 ohms when operated on a 50 Hz supply. Determine the value of its capacitance.
+
+//initializing the variables:
+Z = 40; // in ohms
+f = 50; // in Hz
+
+//calculation:
+C = 1/(2*%pi*f1*Z)
+
+printf("\n\n Result \n\n")
+printf("\n Capacitance,C = %.2E F ", C)
\ No newline at end of file |