summaryrefslogtreecommitdiff
path: root/2459/CH23/EX23.2/Ex23_2.sce
blob: 163b56b86ad3f06894d10b2e01a2cd3dc60d63a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//chapter23
//example23.2
//page510

t=12d-3 // sec
I=50 // A
fuse_rating=I^2*t

if fuse_rating < 90 
     printf("rating = %.3f ampere square second which is less than maximum \nrating so device will not be destroyed \n",fuse_rating)
else printf("rating = %.3f ampere square second which is more than maximum \nrating so device may get damaged \n",fuse_rating)
    
end