diff options
Diffstat (limited to '2681/CH7/EX7.12')
-rwxr-xr-x | 2681/CH7/EX7.12/Ex7_12.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2681/CH7/EX7.12/Ex7_12.sce b/2681/CH7/EX7.12/Ex7_12.sce new file mode 100755 index 000000000..b79cd7554 --- /dev/null +++ b/2681/CH7/EX7.12/Ex7_12.sce @@ -0,0 +1,10 @@ +//resistance per square
+//given
+clc
+l=30d-3//metre
+t=0.1d-6//metre
+Rp=0.3//ohm
+delta_s=4.1d+7//mho/m
+w=l/(Rp*t*delta_s)//metre
+w=round(w*1000)/1000///rounding off decimals
+disp(t*1d+6, w*1000,l*1d+3 ,'the design parameter of planer resistor are in mm and um')//millimetre
|