Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

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.
 
Top