Skip to content

Commit

Permalink
Remove Area/Volume conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzovecchietti committed Apr 26, 2024
1 parent cda07f3 commit 1d3f633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/modules/PostProcessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5408,7 +5408,7 @@ def get_field_summary_data(self, setup=None, variation=None, intrinsics="", pand
if pd is None:
raise ImportError("pandas package is needed.")
df = pd.DataFrame.from_dict(out_dict)
for col in ["Min", "Max", "Mean", "Stdev", "Area/Volume", "Total"]:
for col in ["Min", "Max", "Mean", "Stdev", "Total"]:
if col in df.columns:
df[col] = df[col].astype(float)
return df
Expand Down

0 comments on commit 1d3f633

Please sign in to comment.