ThermoPyle.ThermoFluid(fluid='Water', xvar='T', yvar='P', zvar='S', numPoints=[217, 217], colorMap='viridis')[source]¶A class that will contain the data requested. Call the class with these arguments
| Parameters: |
|---|
vars¶a list of xvar, yvar, zvar
| Type: | List[Text] |
|---|
data¶The data for the given fluid
| Type: | pandas.DataFrame |
|---|
units¶the units for xvar, yvar, zvar, in that order.
| Type: | List[Text] |
|---|
meta¶a PMap containing metadata related to the current fluid.
| Type: | pyrsistent._pmap.PMap |
|---|
add_column(variables)[source]¶Adds a column to the dataframe
| Return type: | None |
|---|
copy()[source]¶Returns a copy of itself
| Return type: | ~ThermoFluid |
|---|