Developing Releases Bugfixes: Difference between revisions
From UKCA
(Created page with "This page contains a listing of all the bugfixes required for the Developing releases.") |
No edit summary |
||
Line 1: | Line 1: | ||
This page contains a listing of all the bugfixes required for the [[Developing releases]]. |
This page contains a listing of all the bugfixes required for the [[Developing releases]]. |
||
==Fast-JX== |
|||
The calculation of mass in <tt>ukca_fastjx.F90</tt> is incorrect. This will affect '''low-top''' models more, but will also affect high-top models. |
|||
The line |
|||
dm_3d(:,:,(model_levels+1)) = pz_3d(:,:,model_levels+1)/g |
|||
should be replaced with |
|||
dm_3d(:,:,(model_levels+1)) = pz_3d(:,:,model_levels)/g |
|||
See branch |
|||
fcm:um_br/dev/luke/vn8.4_FJX_dm_3d_bugfix |
|||
at revision '''r13624'''. |
Revision as of 12:11, 26 November 2013
This page contains a listing of all the bugfixes required for the Developing releases.
Fast-JX
The calculation of mass in ukca_fastjx.F90 is incorrect. This will affect low-top models more, but will also affect high-top models.
The line
dm_3d(:,:,(model_levels+1)) = pz_3d(:,:,model_levels+1)/g
should be replaced with
dm_3d(:,:,(model_levels+1)) = pz_3d(:,:,model_levels)/g
See branch
fcm:um_br/dev/luke/vn8.4_FJX_dm_3d_bugfix
at revision r13624.