Changeset db712a8 in flexpart.git for src/netcdf_output_mod.f90


Ignore:
Timestamp:
Mar 3, 2016, 12:34:56 PM (8 years ago)
Author:
Espen Sollum ATMOS <eso@…>
Branches:
master, 10.4.1_pesei, GFS_025, bugfixes+enhancements, dev, release-10, release-10.4.1, scaling-bug, univie
Children:
38b7917
Parents:
b0434e1
Message:

Completed handling of nested wind fields with cloud water (for wet deposition).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/netcdf_output_mod.f90

    r6a678e3 rdb712a8  
    7979  implicit none
    8080
     81  private
     82
     83  public :: writeheader_netcdf,concoutput_surf_nest_netcdf,concoutput_netcdf,&
     84       &concoutput_nest_netcdf,concoutput_surf_netcdf
     85
    8186!  include 'netcdf.inc'
    8287
     
    97102  real,parameter :: eps=nxmax/3.e5
    98103
    99   private:: writemetadata, output_units, nf90_err
     104!  private:: writemetadata, output_units, nf90_err
    100105
    101106  ! switch output of release point information on/off
     
    628633
    629634  ! volume
    630   call nf90_err(nf90_put_var(ncid, volID, volume(:,:,:)))
     635  if (lnest) then
     636    call nf90_err(nf90_put_var(ncid, volID, volumen(:,:,:)))
     637  else
     638    call nf90_err(nf90_put_var(ncid, volID, volume(:,:,:)))
     639  end if
    631640
    632641  ! area
    633   call nf90_err(nf90_put_var(ncid, areaID, area(:,:)))
     642  if (lnest) then
     643    call nf90_err(nf90_put_var(ncid, areaID, arean(:,:)))
     644  else
     645    call nf90_err(nf90_put_var(ncid, areaID, area(:,:)))
     646  end if
    634647
    635648  if (write_releases.eqv..true.) then
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG