Ignore:
Timestamp:
Feb 15, 2019 6:38:58 PM (5 years ago)
Author:
suehring
Message:

Coupling of indoor model to atmosphere; output of indoor temperatures and waste heat; enable restarts with indoor model; bugfix plant transpiration; bugfix - missing calculation of 10cm temperature

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/time_integration.f90

    r3742 r3744  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! Call indoor model after first timestep
    2323!
    2424! Former revisions:
     
    14131413!--    If required, calculate indoor temperature, waste heat, heat flux
    14141414!--    through wall, etc.
    1415 !--    dt_indoor steers the frequency of the indoor model calculations
     1415!--    dt_indoor steers the frequency of the indoor model calculations.
     1416!--    Note, at first timestep indoor model is called, in order to provide
     1417!--    a waste heat flux.
    14161418       IF ( indoor_model )  THEN
    14171419
    14181420          time_indoor = time_indoor + dt_3d
    14191421
    1420           IF ( time_indoor >= dt_indoor )  THEN
     1422          IF ( time_indoor >= dt_indoor  .OR.  current_timestep_number == 0 )  &
     1423          THEN
    14211424
    14221425             time_indoor = time_indoor - dt_indoor
Note: See TracChangeset for help on using the changeset viewer.