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/CH10/EX10.13/10_13.sce | |
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/CH10/EX10.13/10_13.sce')
-rwxr-xr-x | 608/CH10/EX10.13/10_13.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/608/CH10/EX10.13/10_13.sce b/608/CH10/EX10.13/10_13.sce new file mode 100755 index 000000000..85f3b1448 --- /dev/null +++ b/608/CH10/EX10.13/10_13.sce @@ -0,0 +1,11 @@ +//Problem 10.13: The current input to a system is 5 mA and the current output is 20 mA. Find the decibel current ratio assuming the input and load resistances of the system are equal.
+
+//initializing the variables:
+I2 = 0.020; // in ampere
+I1 = 0.005; // in ampere
+
+//calculation:
+X = 20*log10(I2/I1)
+
+printf("\n\n Result \n\n")
+printf("\n decibel current ratio = %.0f dB\n",X)
\ No newline at end of file |