Changeset 4702 for palm/trunk/SOURCE/indoor_model_mod.f90
- Timestamp:
- Sep 27, 2020 6:39:00 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/indoor_model_mod.f90
r4701 r4702 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Removed unused variable indoor_wall_window_temperature 28 ! 29 ! 4701 2020-09-27 11:02:15Z maronga 27 30 ! Heat transfer for wall and windows back to USM separated into q_wall and q_win (instead q_wall_win). 28 31 ! Heat flow direction revised (heat flow positive from outside to inside). … … 463 466 !< Based on a Crank-Nicholson scheme with a timestep of a hour. 464 467 !--------------------------------------------------------------------------------------------------! 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, & 466 469 near_facade_temperature, phi_hc_nd_dummy, theta_m_t_prev ) 467 470 … … 470 473 INTEGER(iwp) :: k 471 474 472 REAL(wp) :: indoor_wall_window_temperature !< weighted temperature of innermost wall/window layer473 475 REAL(wp) :: indoor_wall_temperature !< temperature of innermost wall layer evtl in im_calc_temperatures einfÃŒgen 474 476 REAL(wp) :: near_facade_temperature … … 1367 1369 phi_hc_nd = 0.0_wp 1368 1370 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, & 1370 1372 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) ) 1371 1373 ! … … 1396 1398 phi_hc_nd = phi_hc_nd_10 1397 1399 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, & 1399 1401 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) ) 1400 1402 theta_air_10 = theta_air !< temperature with 10 W/m2 of heating … … 1425 1427 ! 1426 1428 !-- 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, & 1428 1430 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_h(fa) ) 1429 1431 theta_air_ac = theta_air … … 1598 1600 !-- section C.4.1 Picture C.2 zone 3) 1599 1601 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, & 1601 1603 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) ) 1602 1604 ! … … 1627 1629 phi_hc_nd = phi_hc_nd_10 1628 1630 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, & 1630 1632 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) ) 1631 1633 … … 1658 1660 ! 1659 1661 !-- 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, & 1661 1663 near_facade_temperature, phi_hc_nd, buildings(nb)%theta_m_t_prev_v(fa) ) 1662 1664 theta_air_ac = theta_air
Note: See TracChangeset
for help on using the changeset viewer.