-
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
mxnxandmxnyto901and541respectively in params.puf - In params.puf, change
mxnzfrom12to27andmxrecfrom10000to20000. - 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 infileto the declarations of this subroutine.