summaryrefslogtreecommitdiff
path: root/3636/CH12/EX12.1/Ex12_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH12/EX12.1/Ex12_1.sce')
-rw-r--r--3636/CH12/EX12.1/Ex12_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3636/CH12/EX12.1/Ex12_1.sce b/3636/CH12/EX12.1/Ex12_1.sce
new file mode 100644
index 000000000..d57a8245c
--- /dev/null
+++ b/3636/CH12/EX12.1/Ex12_1.sce
@@ -0,0 +1,14 @@
+clear;
+clc;
+l=100 //length of resistor in micro-m
+w=10 //width of resistor in micro-m
+R=0.9 //sheet resistance in k-ohm/n
+End_points=0.65*2 //Total contribution of two end points
+
+//Calculation
+Total_squares=l/w
+T=Total_squares+End_points //Total effective sqaures
+Reff=T*R
+
+format("v",8)
+disp(Reff,"Effective Resistance (k-ohm)= ")