blob: b11b918e8358512ea62e55caab4128cfe9873e23 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//resistance
//given
clc
l=11d-3
d=0.2d-6
w=8d-3
delta_s=6.17d+7
Rp=l/(w*d*delta_s)//resistance
Rp=round(Rp*1000)/1000///rounding off decimals
disp(Rp,'the resistance for the given parameter in ohm')//ohm
|