Changeset 958 for palm/trunk/SCRIPTS


Ignore:
Timestamp:
Jul 23, 2012 8:59:48 AM (12 years ago)
Author:
hoffmann
Message:

minor changes in palmplot pr

Location:
palm/trunk/SCRIPTS/NCL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/NCL/.ncl.config.default

    r951 r958  
    823823      ; example: var = ",u,v,w,w*pt*,w"+dq+"pt"+dq+",wpt,"
    824824      ;
    825       ; default:   "all" (all available variables are plotted)
     825      ; default:   ",cross_profiles," (profiles are plotted together according
     826      ;                                to the d3par parameter cross_profiles)
    826827      ;***************************************************
    827828      if (.not. isvar("var"))then
     
    10491050      ; data type: integer
    10501051      ;
    1051       ; default:   -1
     1052      ; default:   -1      (profiles are plotted according
     1053      ;                     to the d3par parameter profile_columns)
    10521054      ;***************************************************
    10531055      if (.not. isvar("no_columns"))then         
     
    10651067      ; data type: integer
    10661068      ;
    1067       ; default:   -1
     1069      ; default:   -1      (profiles are plotted according
     1070      ;                     to the d3par parameter profile_rows)
    10681071      ;***************************************************
    10691072      if (.not. isvar("no_rows"))then   
  • palm/trunk/SCRIPTS/NCL/profiles.ncl

    r957 r958  
    314314
    315315   if ((.not. cross_check) .AND. (var .EQ. ",cross_profiles,")) then
     316       print(" ")
     317       print("cross_profiles is not defined in the NetCDF header."+\
     318             "Using var='all' instead.")
     319       print(" ")
    316320       var="all"
    317321   end if
     
    332336      no_rows = firstfile@no_rows
    333337   else if ((no_rows .EQ. -1) .AND. .not. isatt(firstfile,"no_rows")) then
     338       print(" ")
     339       print("no_rows is not defined in the NetCDF header."+\
     340             "Using no_rows=3 instead.")
     341       print(" ")
    334342      no_rows = 3
    335343   end if
     
    339347      no_columns = firstfile@no_columns
    340348   else if ((no_columns .EQ. -1) .AND. .not. isatt(firstfile,"no_columns")) then
     349       print(" ")
     350       print("no_columns is not defined in the NetCDF header."+\
     351             "Using no_columns=2 instead.")
     352       print(" ")
    341353      no_columns = 2
    342354   end if
     
    374386      do com_i = 0, max_com_i
    375387         if(number_comb_all(com_i) .GT. 3) then
     388            print(" ")
     389            print("Currently, it is not possible to plot more than three"+\
     390                  "profiles together. Hence, they are split to a maximum"+\
     391                  "of three profiles per coordinate plane.")
     392            print(" ")
    376393            c_var_all_temp = c_var_all
    377394            number_comb_all_temp = number_comb_all
Note: See TracChangeset for help on using the changeset viewer.