From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 181/CH2/EX2.6/example2_6.sce | 22 ++++++++++++++++++++++ 181/CH2/EX2.6/example2_6.txt | 2 ++ 2 files changed, 24 insertions(+) create mode 100755 181/CH2/EX2.6/example2_6.sce create mode 100755 181/CH2/EX2.6/example2_6.txt (limited to '181/CH2/EX2.6') 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 -- cgit