Changeset 4702 for palm/trunk/SOURCE


Ignore:
Timestamp:
Sep 27, 2020 6:39:00 PM (4 years ago)
Author:
maronga
Message:

removed unused variable in indoor model and updated urban_environment test cases

File:
1 edited

Legend:

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

    r4701 r4702  
    2525! -----------------
    2626! $Id$
     27! Removed unused variable indoor_wall_window_temperature
     28!
     29! 4701 2020-09-27 11:02:15Z maronga
    2730! Heat transfer for wall and windows back to USM separated into q_wall and q_win (instead q_wall_win).
    2831! Heat flow direction revised (heat flow positive from outside to inside).
     
    463466!< Based on a Crank-Nicholson scheme with a timestep of a hour.
    464467!--------------------------------------------------------------------------------------------------!
    465  SUBROUTINE im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature,  &
     468 SUBROUTINE im_calc_temperatures ( i, j, k, indoor_wall_temperature,  &
    466469                                   near_facade_temperature, phi_hc_nd_dummy, theta_m_t_prev )
    467470
     
    470473    INTEGER(iwp) ::  k
    471474
    472     REAL(wp) ::  indoor_wall_window_temperature  !< weighted temperature of innermost wall/window layer
    473475    REAL(wp) ::  indoor_wall_temperature   !< temperature of innermost wall layer evtl in im_calc_temperatures einfÃŒgen
    474476    REAL(wp) ::  near_facade_temperature
     
    13671369             phi_hc_nd = 0.0_wp
    13681370
    1369              CALL  im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1371             CALL  im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    13701372                                          near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) )
    13711373!
     
    13961398                phi_hc_nd    = phi_hc_nd_10
    13971399
    1398                 CALL  im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1400                CALL  im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    13991401                                             near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) )
    14001402                theta_air_10 = theta_air                                                !< temperature with 10 W/m2 of heating
     
    14251427!
    14261428!--             Calculate the temperature with phi_hc_nd_ac (new)
    1427                 CALL  im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1429                CALL  im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    14281430                                             near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) )
    14291431                theta_air_ac = theta_air
     
    15981600!--          section C.4.1 Picture C.2 zone 3)
    15991601             phi_hc_nd = 0.0_wp
    1600              CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1602             CALL im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    16011603                                         near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) )
    16021604!
     
    16271629                phi_hc_nd    = phi_hc_nd_10
    16281630
    1629                 CALL  im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1631                CALL  im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    16301632                                             near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) )
    16311633
     
    16581660!
    16591661!--             Calculate the temperature with phi_hc_nd_ac (new)
    1660                 CALL  im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, indoor_wall_temperature, &
     1662                CALL  im_calc_temperatures ( i, j, k, indoor_wall_temperature, &
    16611663                                             near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) )
    16621664                theta_air_ac = theta_air
Note: See TracChangeset for help on using the changeset viewer.