CSVDataset#

class pyaedt.application.Variables.CSVDataset(csv_file=None, separator=None, units_dict=None, append_dict=None, valid_solutions=True, invalid_solutions=False)[source]#

Reads in a CSV file and extracts data, which can be augmented with constant values.

Parameters:
csv_filestr, optional

Input file consisting of delimited data with the first line as the header. The CSV value includes the header and data, which supports AEDT units information such as "1.23Wb". You can also augment the data with constant values.

separatorstr, optional

Value to use for the delimiter. The default is``None`` in which case a comma is assumed.

units_dictdict, optional

Dictionary consisting of {Variable Name: unit} to rescale the data if it is not in the desired unit system.

append_dictdict, optional

Dictionary consisting of {New Variable Name: value} to add variables with constant values to all data points. This dictionary is used to add multiple sweeps to one result file.

valid_solutionsbool, optional

The default is True.

invalid_solutionsbool, optional

The default is False.

Methods

CSVDataset.next()

Yield the next row.

Attributes

CSVDataset.data

Data.

CSVDataset.header

Header.

CSVDataset.number_of_columns

Number of columns.

CSVDataset.number_of_rows

Number of rows.

CSVDataset.path

Path.