-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DailyEmisOut = T #105
Comments
The documentation refers to a new feature on the next release (hopefully before the end of March 2022).
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
As far as I can tell all 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 |
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? |
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. |
Hi,
I would like to output hourly and daily biogenic emissions. 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. I assume in the config_emep.nml as in the Config_module.f90 I cannot find this option. When I add this option to config_emep.nml I receive this error pointing exactly to the newly included option:Is it possible to output other biogenic emissions but "Emis_mgm2_BioNatC5H8" and "Emis_mgm2_BioNatTERP"?
Thank you for any help,
Heidi
The text was updated successfully, but these errors were encountered: