-
Notifications
You must be signed in to change notification settings - Fork 3
calpufmods
Helen Burns edited this page May 1, 2019
·
2 revisions
- If using a 100m resolution, increase
mxnx
andmxny
to901
and541
respectively in params.puf - In params.puf, change
mxnz
from12
to27
andmxrec
from10000
to20000
. - In calpuff.for, near the end of subroutine
comp
(e.g. just after the call to FOGOUT), insert the following lines of code to write out the hourly concentrations to individual file:
do ispec=1,nspec
write ( infile ,10000 ) ispec , nn
10000 format (’concrec’ ,I2.2,I4.4, ’.dat’)
open (50,file=infile)
do i=1,nrec
write (50, *) chirec(i,ispec)
end do
end do
close (50)
- Also add
character*150 infile
to the declarations of this subroutine.