Skip to content

Commit

Permalink
temperature is missing from the list of Ascent variables (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfavre authored Feb 12, 2025
1 parent bfff56a commit a0053b2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main/src/ascent_adaptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ void Execute(DataType& d, long startIndex, long endIndex)
addField(mesh, "vz", get<"vz">(d).data(), startIndex, endIndex);
addField(mesh, "kx", get<"kx">(d).data(), startIndex, endIndex);
addField(mesh, "xm", get<"xm">(d).data(), startIndex, endIndex);
addField(mesh, "Temperature", get<"temp">(d).data(), startIndex, endIndex);
addField(mesh, "Mass", get<"m">(d).data(), startIndex, endIndex);
addField(mesh, "Smoothing Length", get<"h">(d).data(), startIndex, endIndex);
addField(mesh, "Density", get<"rho">(d).data(), startIndex, endIndex);
Expand Down

0 comments on commit a0053b2

Please sign in to comment.