# Example three, a box enclosure with one wall and the media # temperature unknown. All other walls have known properties # (i.e. temperature, emissivity, and reflectivity). Mode(Temperature) # Model Mode is either temperature or view Bundle(0.001) # Bundle energy Model(1) # Number of enclosures in the model # This is Box one , X = 1, Y = 5, Z = 5 meters # Note, ':' ';' and ',' can be used to separate data Box(1;1,5,5) # For wall numbering, think of yourself as being inside of the box. #Bottom Wall(1;temp,100,.5,.5,0) # Left wall 1 meter long 5 meters high # temp = 100 K, emis = 1.0, Diffuse scattering Wall(2;temp,100,1.0,0,0) # Back wall, 5 meters by 5 meters. # temp = 50 K, emis = 0.7, Diffuse scattering Wall(3;temp,50,0.7,.3,0) # Top wall 1 meter long 5 meters high Wall(4;temp,70,1.0,0,0) # Right wall 1 meter long 5 meters high Wall(5;temp,100,0.6,.4,0) # Front wall with an unknown temperature # Emissivity = 0.4, Diffuse scattering, 5X5 grid Wall(6;unknown,5,5,.4,.6,0) # Iterate a maximum of 30 times or to a sent/receive ratio of 0.8 % # update factor = 1.0, and iterate to a net flux of 0.0 watts Iterate(30,0.8,1.0, 0,0,0,0,0 0,0,0,0,0 0,0,0,0,0 0,0,0,0,0 0,0,0,0,0) # The temperature of the media is unknown. Ke = 0.7, omega = 0.5 # Isotropic scatter. Media(1;unknown,3,3,3,0.7,0.5,isotropic) # Iterate a maximum of 30 times or to a sent/receive ratio of 0.9 % # update factor = 1.0, and iterate to a net flux of # 0.0 watts/m/m/m/element # except the center element which is emitting 20 watts/m/m/m Iterate(30,0.9,1.0, 0,0,0 0,0,0 0,0,0 0,0,0 0,20,0 0,0,0 0,0,0 0,0,0 0,0,0)