- Timestamp:
- Oct 30, 2018 1:13:34 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/bulk_cloud_model_mod.f90
r3445 r3452 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix for profiles output 28 ! 29 ! 3445 2018-10-29 12:23:02Z schwenkel 27 30 ! Minor bugfix and use of subroutine for supersaturation calculation in case 28 31 ! of cache version … … 736 739 CALL message( 'check_parameters', 'PA0358', 1, 2, 0, 6, 0 ) 737 740 ENDIF 738 pr_index = 89741 pr_index = 123 739 742 dopr_index(var_count) = pr_index 740 743 dopr_unit = '1/m3' … … 763 766 ' cloud_scheme = saturation_adjust' 764 767 CALL message( 'check_parameters', 'PA0422', 1, 2, 0, 6, 0 ) 765 ENDIF 768 ENDIF 766 769 pr_index = 76 767 770 dopr_index(var_count) = pr_index … … 769 772 unit = dopr_unit 770 773 hom(:,2,pr_index,:) = SPREAD( zu, 2, statistic_regions+1 ) 771 772 774 CASE ( 'qc' ) 773 775 pr_index = 75 … … 785 787 CALL message( 'check_parameters', 'PA0358', 1, 2, 0, 6, 0 ) 786 788 ENDIF 787 pr_index = 74 4789 pr_index = 74 788 790 dopr_index(var_count) = pr_index 789 791 dopr_unit = 'kg/kg' … … 795 797 796 798 END SELECT 797 798 799 799 800 END SUBROUTINE bcm_check_data_output_pr -
palm/trunk/SOURCE/check_parameters.f90
r3448 r3452 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix for profiles output 28 ! 29 ! 3448 2018-10-29 18:14:31Z kanani 27 30 ! Add biometeorology 28 31 ! … … 2914 2917 2915 2918 CASE DEFAULT 2916 2919 unit = 'illegal' 2917 2920 ! 2918 2921 !-- Check for other modules 2919 IF ( unit == 'illegal' .AND. bulk_cloud_model) THEN2922 IF ( unit == 'illegal' .AND. bulk_cloud_model ) THEN 2920 2923 CALL bcm_check_data_output_pr( data_output_pr(i), i, unit, & 2921 2924 dopr_unit(i) ) … … 2937 2940 ENDIF 2938 2941 2939 CALL lsm_check_data_output_pr( data_output_pr(i), i, unit, & 2942 IF ( unit == 'illegal' ) THEN 2943 CALL lsm_check_data_output_pr( data_output_pr(i), i, unit, & 2940 2944 dopr_unit(i) ) 2941 2945 ENDIF 2942 2946 IF ( unit == 'illegal' ) THEN 2943 2947 CALL ocean_check_data_output_pr( data_output_pr(i), i, unit, & -
palm/trunk/SOURCE/flow_statistics.f90
r3298 r3452 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix for profiles output 28 ! 29 ! 3298 2018-10-02 12:21:11Z kanani 27 30 ! - Minor formatting (kanani) 28 31 ! - Added .AND. max_pr_cs > 0 before MPI_ALLREDUCE call (forkel) … … 1881 1884 sums(k,116) = sums(k,116) / ngp_2dh_s_inner(k,sr) 1882 1885 sums(k,118:pr_palm-2) = sums(k,118:pr_palm-2) / ngp_2dh_s_inner(k,sr) 1886 sums(k,123) = sums(k,123) * ngp_2dh_s_inner(k,sr) / ngp_2dh(sr) 1883 1887 ENDIF 1884 1888 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.