00001 00009 #ifndef _OCCUPANTLOAD_H 00010 #define _OCCUPANTLOAD_H 00011 #include "residential.h" 00012 00013 class occupantload 00014 { 00015 00016 public: 00017 int number_of_occupants; 00018 double occupancy_fraction; 00019 double heatgain_per_person; 00020 double total_occupant_load; 00021 00022 public: 00023 static CLASS *oclass; 00024 static occupantload *defaults; 00025 00026 occupantload(MODULE *module); 00027 ~occupantload(); 00028 int create(); 00029 int init(OBJECT *parent); 00030 TIMESTAMP sync(TIMESTAMP t0, TIMESTAMP t1); 00031 00032 }; 00033 00034 #endif // _OCCUPANTLOAD_H 00035