Method: EnergyPlus::StatFile#deltaDB

Defined in:
lib/energyplus/StatFile.rb

#deltaDBObject

max - min of the mean monthly dry bulbs



70
71
72
73
74
75
76
77
78
# File 'lib/energyplus/StatFile.rb', line 70

def deltaDB
  if not @monthlyDB.empty? then
    deltaT = @monthlyDB.max-@monthlyDB.min
  else
    deltaT = ""
  end

  return deltaT
end