blob: 219717becfa87473c44064311f12ac19bd753eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Variable declaration
Vh=37*10**-6
thick=1*10**-3
width=5
Iy=20*10**-3
Bz=0.5
//Calculations
Rh=(Vh*width*thick)/(width*Iy*Bz)
//Result
printf('Rh = %0.3f *10**-6 C**-1 m**3 \n',(Rh*10**6))
|