Changeset 1450


Ignore:
Timestamp:
Aug 21, 2014 7:31:51 AM (10 years ago)
Author:
heinze
Message:

bugfixes for large_scale forcing and nudging

Location:
palm/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/subjob

    r1443 r1450  
    2323# Current revisions:
    2424# ------------------
    25 #
     25# HLRN-III (lccrayb): testq queue adjusted to mpp1testq
    2626#
    2727# Former revisions:
     
    344344        (ibmku)   queue=s4; remote_addres=133.5.4.129; submcom=/usr/local/bin/llsubmit;;
    345345        (ibms)    queue=p_normal; remote_addres=150.183.5.101; submcom=/usr/lpp/LoadL/full/bin/llsubmit;;
    346         (lccrayb) queue=testq; remote_addres=130.73.233.1; submcom=/opt/moab/7.2.6/bin/msub;;
     346        (lccrayb) queue=mpp1testq; remote_addres=130.73.233.1; submcom=/opt/moab/7.2.6/bin/msub;;
    347347        (lccrayh) queue=mpp1testq; remote_addres=130.75.4.1; submcom=/opt/moab/7.2.6/bin/msub;;
    348348        (lccrayf) queue=small; remote_addres=86.50.166.21; submcom=/opt/slurm/default/bin/sbatch;;
  • palm/trunk/SOURCE/flow_statistics.f90

    r1397 r1450  
    2121! Current revisions:
    2222! -----------------
    23 !
     23! bugfix: calculate fac only for simulated_time >= 0.0
    2424!
    2525! Former revisions:
     
    10121012!--    Collect current large scale advection and subsidence tendencies for
    10131013!--    data output
    1014        IF ( large_scale_forcing )  THEN
     1014       IF ( large_scale_forcing  .AND.  ( simulated_time .GT. 0.0_wp ) )  THEN
    10151015!
    10161016!--       Interpolation in time of LSF_DATA
     
    27682768!--    Collect current large scale advection and subsidence tendencies for
    27692769!--    data output
    2770        IF ( large_scale_forcing )  THEN
     2770       IF ( large_scale_forcing  .AND.  ( simulated_time .GT. 0.0_wp ) )  THEN
    27712771!
    27722772!--       Interpolation in time of LSF_DATA
  • palm/trunk/SOURCE/modules.f90

    r1432 r1450  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! ntnudge from 100 to 1000 increased to allow longer simulations
    2323!
    2424! Former revisions:
     
    576576                     maximum_parallel_io_streams = -1, max_pr_user = 0, &
    577577                     mgcycles = 0, mg_cycles = -1, mg_switch_to_pe0_level = 0, mid, &
    578                      nlsf = 1000, ntnudge = 100, netcdf_data_format = 2, ngsrb = 2, &
     578                     nlsf = 1000, ntnudge = 1000, netcdf_data_format = 2, ngsrb = 2, &
    579579                     nr_timesteps_this_run = 0, &
    580580                     nsor = 20, nsor_ini = 100, n_sor, normalizing_region = 0, &
Note: See TracChangeset for help on using the changeset viewer.