Errors using log_field #363
Samantha Pullen (SamanthaPullen)
started this conversation in
LFRic
Replies: 1 comment 3 replies
|
Are you trying to print out an integer field? That's the only thing I can think of. The code is falling over trying to write out the actual values which is deep down in the Fortran libs, nothing we've written. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have been (successfully until now) using the LFRic core subroutine log_field (https://code.metoffice.gov.uk/trac/lfric/browser/LFRic/trunk/infrastructure/source/utilities/log_field_mod.f90) to print out field values during LFRic_Apps development work. Since trying to use it in my LFRic_Apps vn2.1 branch I am getting floating point exception run-time errors: https://cylchub/services/cylc-review/view/samantha.pullen?&suite=vn2.1_multifile_iau%2Frun17&no_fuzzy_time=0&path=log/job/1/run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-64bit-crun0/01/job.err
In my PET log the field values start being printed out (and look like valid theta field values).
I am specifying its use by:
use log_field_mod, only : log_fieldand using it by:
call log_field( theta, LOG_LEVEL_INFO )Can anyone advise on what I am doing wrong?
All reactions