|
Contact Resistance
|
Previous Top Next |
| F1 = -K1*dn(T) = -(T2-T1)/R
|
| F2 = -K2*dn(T) = -(T1-T2)/R = -F1
|
| div(-K*grad(T)) = H
|
| Natural(T) = -K*dn(T),
|
| CONTACT(T) = -JUMP(T)/R
|
| TITLE 'Contact Resistance on a heated blob'
|
| VARIABLES
|
| Phi { the temperature }
|
| DEFINITIONS
|
| K = 1 { default conductivity }
|
| R = 0.5 { blob radius }
|
| H = 0 { internal heat source }
|
| Res = 0.5 { contact resistance }
|
| EQUATIONS
|
| Div(-k*grad(phi)) = H
|
|
|
| BOUNDARIES
|
| REGION 1 'box'
|
| START(-1,-1)
|
| VALUE(Phi)=0 { cold outer walls }
|
| LINE TO (1,-1) TO (1,1) TO (-1,1) TO CLOSE
|
| REGION 2 'blob' { the embedded blob }
|
| H = 1 { heat generation in the blob }
|
| START 'ring' (R,0)
|
| CONTACT(phi) = -JUMP(phi)/Res
|
| ARC(CENTER=0,0) ANGLE=360 TO CLOSE
|
| PLOTS
|
| CONTOUR(Phi)
|
| SURFACE(Phi)
|
| VECTOR(-k*grad(Phi))
|
| ELEVATION(Phi) FROM (0,-1) to (0,1)
|
| ELEVATION(Normal(-k*grad(Phi))) ON 'ring'
|
| END
|