Subversion Repositories public iLand

Rev

Rev 214 | Rev 234 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 214 Rev 226
Line 13... Line 13...
13
    double temperature; // average day °C
13
    double temperature; // average day °C
14
    double temp_delayed; // temperature delayed (after Maekela, 2008) for response calculations
14
    double temp_delayed; // temperature delayed (after Maekela, 2008) for response calculations
15
    double preciptitation; // sum of day [mm]
15
    double preciptitation; // sum of day [mm]
16
    double radiation; // sum of day (MJ/m2)
16
    double radiation; // sum of day (MJ/m2)
17
    double vpd; // average of day [kPa]
17
    double vpd; // average of day [kPa]
-
 
18
    static double co2; // ambient CO2 content in ppm
18
    QString toString() const { return QString("%1.%2.%3").arg(day).arg(month).arg(year); }
19
    QString toString() const { return QString("%1.%2.%3").arg(day).arg(month).arg(year); }
19
    bool isValid() const  { return (year>=0); }
20
    bool isValid() const  { return (year>=0); }
20
};
21
};
21
22
22
/// Sun handles calculations of day lengths, etc.
23
/// Sun handles calculations of day lengths, etc.