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 /181/CH2/EX2.6 | |
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 '181/CH2/EX2.6')
-rwxr-xr-x | 181/CH2/EX2.6/example2_6.sce | 22 | ||||
-rwxr-xr-x | 181/CH2/EX2.6/example2_6.txt | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/181/CH2/EX2.6/example2_6.sce b/181/CH2/EX2.6/example2_6.sce new file mode 100755 index 000000000..9bec91b26 --- /dev/null +++ b/181/CH2/EX2.6/example2_6.sce @@ -0,0 +1,22 @@ +// Compute decrease in capacitance
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 2-6 in page 87
+
+clear; clc; close;
+
+// Given data
+V=6.5; // Incresed bias voltage in V
+lambda=(20*sqrt(5)); // Constant of calculation
+
+// Calculation
+C_T=lambda/sqrt(V);
+
+printf("Transition capacitance of abrupt junction at 6.5 V = %0.2f pF\n",C_T);
+printf("This corresponds to a decrese of 2.46 pF");
+
+// Result
+// Transition capacitance = 17.54 pF
+// This corresponds to a decrese of 2.46 pF
\ No newline at end of file diff --git a/181/CH2/EX2.6/example2_6.txt b/181/CH2/EX2.6/example2_6.txt new file mode 100755 index 000000000..05d78eae3 --- /dev/null +++ b/181/CH2/EX2.6/example2_6.txt @@ -0,0 +1,2 @@ +Transition capacitance of abrupt junction at 6.5 V = 17.54 pF
+This corresponds to a decrese of 2.46 pF
\ No newline at end of file |