summaryrefslogtreecommitdiff
path: root/3250/CH5/EX5.2/Ex5_2.sce
blob: 819ffb42e9ee72b7fd59f769a34f8fc1ff5b4130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clc 
// Given that
N  =25 // No. of bridges per cm^2
r = 0.1 // Radius of bridge in mm
rho = 2e-5 // Resistivity of the material in ohm-cm
v= 5 // Applied voltage in V
// Sample Problem 2 on page no. 288
printf("\n # PROBLEM 5.2 # \n")
Rc = 0.85*rho/(N*%pi*r*0.1)
Q = (v^2)/Rc
printf("\n Rate of heat generated per unit area = %e W/cm^2",Q)
// Answer in the book is given as 1.136e5 W/cm^2