blob: abe4b015cb82c3ac0dee63f4f855bcdfc8c25f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear
//Given
a=30 //degree
b=45 //degree
u=4*%pi*10**-7
//Calculation
//
m=(2*tan(a*3.14/180.0))/(tan(b*3.14/180.0))
//Result
printf("\n Ratio of number of turns of the tangent galvanometers %0.3f ",m)
|