blob: 086b52896a0ad7f3c376e9cb50fcf2926afd41d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//chapter23
//example23.3
//page510
rating=50 // ampere square second
Is=100 // A
t_max=rating/Is^2
printf("maximum allowable duration of surge = %.3f s or %.3f ms\n",t_max,t_max*1000)
|