Skip to content

Commit

Permalink
Merge pull request #17 from vincentcasseau/main
Browse files Browse the repository at this point in the history
FastS: dtype fix in _createConvergenceHistory in i8
  • Loading branch information
vincentcasseau authored Oct 21, 2024
2 parents f57b8da + 090a2cb commit e564218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fast/FastS/FastS/PyTree.py
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@ def _createConvergenceHistory(t, nrec):
if model == 'nsspalart' or model =='NSTurbulent': neq = 6
c = Internal.createUniqueChild(z, 'ZoneConvergenceHistory',
'ConvergenceHistory_t', value=curIt)
tmp = numpy.zeros((nrec), numpy.int32)
tmp = numpy.zeros((nrec), dtype=Internal.E_NpyInt)
Internal.createChild(c, 'IterationNumber', 'DataArray_t', tmp)
for var in varsR:
tmp = numpy.zeros((nrec*neq), numpy.float64)
Expand Down

0 comments on commit e564218

Please sign in to comment.