!Building methodsFor: 'Spec'!

SpecInstances

	#(#room1	#Room	#amountOfHeat: 0
						#heatCapacity: 1250.0
						#interval: 10000
						#temperature: 25
						#thermalResistance: 0
						#timeOfLastComputation: 0
						#volume: 50)

	#(#room2	#Room	#amountOfHeat: 0
						#heatCapacity: 1250.0
						#interval: 10000
						#temperature: 5
						#thermalResistance: 0
						#timeOfLastComputation: 0
						#volume: 75)

	#(#wall1		#Wall	#area: 10
						#thermalResistance: 1.125)

	#(#wall2		#Wall	#area: 10
						#thermalResistance: 1.125)

	#(#radiator1	#Radiator	#temperature: 40)

	#(#surface1	#Surface	#area: 5
							#thermalResistance: 0.9)

SpecRelations

	#(#wall1		#fromRoom:	#room1)
	#(#wall1		#intoRoom:	#room2)

	#(#wall2		#fromRoom:	#room2)
	#(#wall2		#intoRoom:	#room1)

	#(#surface1	#Radiator:	#radiator1)
	#(#surface1	#Room:		#room1)

To increase readability of this file, some HTML tags have been included

(click here for the original file)