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 /2681/CH7/EX7.12 | |
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 '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
|