summaryrefslogtreecommitdiff
path: root/509/CH11/EX11.2/11_2.sci
diff options
context:
space:
mode:
Diffstat (limited to '509/CH11/EX11.2/11_2.sci')
-rw-r--r--509/CH11/EX11.2/11_2.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/509/CH11/EX11.2/11_2.sci b/509/CH11/EX11.2/11_2.sci
new file mode 100644
index 000000000..3f16e867d
--- /dev/null
+++ b/509/CH11/EX11.2/11_2.sci
@@ -0,0 +1,11 @@
+//Chapter 11 Example 2//
+clc
+clear
+// capacitance value of pin to earth=c,capacitance of top unit=c1//
+c=1;
+c1=5;// let us assume to be//
+// since voltage across c2 same as c1//
+c2=c+c1;
+printf("\n So capacitance across the second unit c2 = %.fC \n",c2);
+c3=2*c+c2;// since capacitance across c3=c2+2 times capicatnce of c//
+printf("\n So capacitance across the third unit c3 = %.fC \n",c3); \ No newline at end of file