More bugs ... in ./src/physics/cam/microp_aero.F90

All,

Compiling CESM 1.0.4 on a Cray XE6 using Cray 8.0 compiler
release find an undeclared function in the above named routine:

microp_aero.F90

Here is some 'diff' output showing my suggested correction
to this one:


1417,1418c1417,1418
< real(r8) function derf(x)
< implicit real(r8) (a - h, o - z)
---
> function derf(x)
> implicit real (a - h, o - z)

The top two lines are the corrections and the bottom two are
the original. I have made this change to get things to compile.

If for some reason this change is not acceptable, let me know.

Richard Walsh
Parallel Applications and Systems Manager
CUNY HPC Center, Staten Island, NY
 

eaton

CSEG and Liaisons
Thanks for the report. In the current CAM code this module has been extensively rewritten and now makes use of a generic erf from a utility module to replace the local derf that was in microp_aero.F90.
 
Back
Top