- Timestamp:
- Apr 26, 2016 1:49:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pmc_interface_mod.f90
r1883 r1892 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! bugfix: pt is not set as a data array in case that the temperature equation is 23 ! switched off with neutral = .TRUE. 23 24 ! 24 25 ! Former revisions: … … 107 108 ONLY: coupling_char, dt_3d, dz, humidity, message_string, & 108 109 nest_bound_l, nest_bound_r, nest_bound_s, nest_bound_n, & 109 nest_domain, passive_scalar, simulated_time, topography,&110 volume_flow110 nest_domain, neutral, passive_scalar, simulated_time, & 111 topography, volume_flow 111 112 112 113 USE cpulog, & … … 808 809 CALL pmc_clientinit 809 810 ! 810 !-- Here and only herethe arrays are defined, which actualy will be811 !-- Here AND ONLY HERE the arrays are defined, which actualy will be 811 812 !-- exchanged between client and server. 812 !-- Please check, if the arrays are in the list of possible exchange arrays 813 !-- If a variable is removed, it only has to be removed from here. 814 !-- Please check, if the arrays are in the list of POSSIBLE exchange arrays 813 815 !-- in subroutines: 814 816 !-- pmci_set_array_pointer (for server arrays) … … 818 820 CALL pmc_set_dataarray_name( 'coarse', 'w' ,'fine', 'w', ierr ) 819 821 CALL pmc_set_dataarray_name( 'coarse', 'e' ,'fine', 'e', ierr ) 820 CALL pmc_set_dataarray_name( 'coarse', 'pt' ,'fine', 'pt', ierr ) 822 IF ( .NOT. neutral ) THEN 823 CALL pmc_set_dataarray_name( 'coarse', 'pt' ,'fine', 'pt', ierr ) 824 ENDIF 821 825 IF ( humidity .OR. passive_scalar ) THEN 822 826 CALL pmc_set_dataarray_name( 'coarse', 'q' ,'fine', 'q', ierr ) 823 827 ENDIF 824 828 825 !826 !-- Update this list appropritely and also in create_client_arrays and in827 !-- pmci_set_array_pointer.828 !-- If a variable is removed, it only has to be removed from here.829 829 CALL pmc_set_dataarray_name( lastentry = .TRUE. ) 830 830
Note: See TracChangeset
for help on using the changeset viewer.