blob: 36d3a776c079dcb99ed2764ea4f9aea728387ae6 (
plain)
1
2
3
4
5
6
|
//find the specific resistance of the material
L =12 //meter
A=0.01*10^-4 //m^2
R=0.2 //ohm
p=R*A/L //specific resistance
disp('value of specific resistance='+string(p)+' ohm -meter')
|