Ignore:
Timestamp:
Oct 7, 2015 11:56:08 PM (9 years ago)
Author:
knoop
Message:

Code annotations made doxygen readable

File:
1 edited

Legend:

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

    r1354 r1682  
    1  MODULE impact_of_latent_heat_mod
    2 
     1!> @file impact_of_latent_heat.f90
    32!--------------------------------------------------------------------------------!
    43! This file is part of PALM.
     
    2019! Current revisions:
    2120! -----------------
    22 !
     21! Code annotations made doxygen readable
    2322!
    2423! Former revisions:
     
    4645! Description:
    4746! ------------
    48 ! Calculate the impact of latent heat due to precipitation
    49 ! (simplified Kessler scheme)
     47!> Calculate the impact of latent heat due to precipitation
     48!> (simplified Kessler scheme)
    5049!------------------------------------------------------------------------------!
     50 MODULE impact_of_latent_heat_mod
     51 
    5152
    5253    PRIVATE
     
    6263
    6364!------------------------------------------------------------------------------!
    64 ! Call for all grid points
     65! Description:
     66! ------------
     67!> Call for all grid points
    6568!------------------------------------------------------------------------------!
    6669    SUBROUTINE impact_of_latent_heat
     
    7982       IMPLICIT NONE
    8083
    81        INTEGER(iwp) ::  i  !:
    82        INTEGER(iwp) ::  j  !:
    83        INTEGER(iwp) ::  k  !:
     84       INTEGER(iwp) ::  i  !<
     85       INTEGER(iwp) ::  j  !<
     86       INTEGER(iwp) ::  k  !<
    8487       
    85        REAL(wp) ::  dqdt_precip  !:
     88       REAL(wp) ::  dqdt_precip  !<
    8689
    8790 
     
    105108
    106109!------------------------------------------------------------------------------!
    107 ! Call for grid point i,j
     110! Description:
     111! ------------
     112!> Call for grid point i,j
    108113!------------------------------------------------------------------------------!
    109114    SUBROUTINE impact_of_latent_heat_ij( i, j )
     
    122127       IMPLICIT NONE
    123128
    124        INTEGER(iwp) ::  i  !:
    125        INTEGER(iwp) ::  j  !:
    126        INTEGER(iwp) ::  k  !:
     129       INTEGER(iwp) ::  i  !<
     130       INTEGER(iwp) ::  j  !<
     131       INTEGER(iwp) ::  k  !<
    127132       
    128        REAL(wp) ::  dqdt_precip  !:
     133       REAL(wp) ::  dqdt_precip  !<
    129134
    130135
Note: See TracChangeset for help on using the changeset viewer.