We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there is more than one waypoint for a duct this block in dump.f90 will cause an error:
IF (DUCT(N)%N_WAYPOINTS > 0) THEN WRITE(MYSTR,'(1X,3F12.5)') (DUCT(N)%WAYPOINT_XYZ(NN,1),DUCT(N)%WAYPOINT_XYZ(NN,2),& DUCT(N)%WAYPOINT_XYZ(NN,3),NN=1,DUCT(N)%N_WAYPOINTS); CALL ADDSTR ENDIF
Putting the loop around the write rather than in the write appears to fix the problem.
The text was updated successfully, but these errors were encountered:
FDS Source: Fix issue firemodels#14421 by moving loop outside of write
d8360d4
Merge pull request #14422 from drjfloyd/master
869d893
FDS Source: Fix issue #14421 by moving loop outside of write
drjfloyd
No branches or pull requests
If there is more than one waypoint for a duct this block in dump.f90 will cause an error:
Putting the loop around the write rather than in the write appears to fix the problem.
The text was updated successfully, but these errors were encountered: