Skip to content

Commit

Permalink
Bug fix: Edit comment for Vdotout saved to Fun()
Browse files Browse the repository at this point in the history
src/gen.c
- Change the comment for Vdotout that is added to subroutine Fun().
  This fixes a copy-and-paste typo.

Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
  • Loading branch information
yantosca committed May 13, 2022
1 parent dcc0495 commit 0081e6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gen.c
Original file line number Diff line number Diff line change
Expand Up @@ -816,10 +816,10 @@ int F_VAR, FSPLIT_VAR;
Assign( Elm( Vdot, i ), sum );
}

// Add code to return equation rates via optional argument Aout
// Add code to return time derivative of variable species (Vdotout)
// -- Bob Yantosca (03 May 2022)
NewLines(1);
fprintf(functionFile, " !### Use Vdotout to return equation rates\n");
fprintf(functionFile, " !### Use Vdotout to return time deriv. of variable species\n");
fprintf(functionFile, " IF ( PRESENT( Vdotout ) ) Vdotout = Vdot\n");

} else {
Expand Down

0 comments on commit 0081e6d

Please sign in to comment.