-
Notifications
You must be signed in to change notification settings - Fork 400
New issue
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
Feature/fix latent heat and longwave coupler fields #695
Changes from 5 commits
e7ae469
0df4654
f8d30cc
e13589a
99b187a
0e059d1
c95a9ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -249,7 +249,7 @@ vic_cesm_put_data() | |
|
||
// latent heat flux | ||
// CESM units: W m-2 | ||
l2x_vic[i].l2x_Fall_lat += -1 * AreaFactor * energy.AtmosLatent; | ||
l2x_vic[i].l2x_Fall_lat += AreaFactor * energy.AtmosLatent; | ||
|
||
// sensible heat flux | ||
// CESM units: W m-2 | ||
|
@@ -258,7 +258,7 @@ vic_cesm_put_data() | |
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does VIC have different sign conventions for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They are the same in |
||
// upward longwave heat flux | ||
// CESM units: W m-2 | ||
l2x_vic[i].l2x_Fall_lwup += AreaFactor * | ||
l2x_vic[i].l2x_Fall_lwup += -1 * AreaFactor * | ||
(force[i].longwave[NR] - | ||
energy.NetLongAtmos); | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there was a merge conflict here that I corrected via github, this does't look quite right though. Can you check/fix this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be all fixed now.