Giter VIP home page Giter VIP logo

Comments (4)

avaldebe avatar avaldebe commented on September 14, 2024

In https://emep-ctm.readthedocs.io/en/latest/Output.html it is described that to output emissions the option DailyEmisOut = T need to be set.

The documentation refers to a new feature on the next release (hopefully before the end of March 2022).

HourlyEmisOut = T, which is available on the current open source version of the model, will enable hourly emission output.
If you also want daily emission output, and can not wait for the next release, you need to modify Derived_mod.f90 line 695 as follows:

  do  ind = 1, size(EMIS_FILE)
    dname = "Emis_mgm2_" // trim(EMIS_FILE(ind))
    if(HourlyEmisOut)then
       call AddNewDeriv( dname, "TotEmis", "-", "-", "mg/m2", &
-           ind , -99, T,  1.0e6,  F,  'YMH' )
+           ind , -99, T,  1.0e6,  F,  'YMDH' )
    else
       call AddNewDeriv( dname, "TotEmis", "-", "-", "mg/m2", &
            ind , -99, T,  1.0e6,  F,  'YM' )
    endif
  end do ! ind

Is it possible to output other biogenic emissions but "Emis_mgm2_BioNatC5H8" and "Emis_mgm2_BioNatTERP"?

As far as I can tell all EMIS_BioNat are written out.
If you want daily and hourly EMIS_BioNat output you need to modify Derived_mod.f90 line 683 as follows:

  do  ind = 1, NEMIS_BioNat
    if(EMIS_BioNat(ind)(1:5)=="ASH_L")cycle   ! skip ASH_LxxByy for AshInversion
    dname = "Emis_mgm2_BioNat" // trim(EMIS_BioNat(ind) )
    if(MasterProc) write(*,'(a,i4,a)') dtxt//'NatEmis ', ind, trim(dname)
    call AddNewDeriv( dname, "NatEmis", "-", "-", "mg/m2", &
-                ind , -99, T ,    1.0e6,     F, 'YM' )
+                ind , -99, T ,    1.0e6,     F, 'YMDH' )
  end do

from emep-ctm.

ln-x avatar ln-x commented on September 14, 2024

Hi, thank you for your reply. I tried setting "HourlyEmisOut = T", but no hourly emissions were output in the " *hourInst.nc file ".

from emep-ctm.

avaldebe avatar avaldebe commented on September 14, 2024

Hi, thank you for your reply. I tried setting "HourlyEmisOut = T", but no hourly emissions were output in the " *hourInst.nc file ".

Did you also made the changes I wrote on my previous message?

from emep-ctm.

ln-x avatar ln-x commented on September 14, 2024

Hi, sorry - I understood your message that way, that I can use "HourlyEmisOut = T" already in the current version without adapting the source code and recompiling. I thought the recompiliation is only needed for Daily output. So I tried without adapting the source code and recompiling.

from emep-ctm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.