latom.reader.reader

@authors: Alberto FOSSA’ Giuliana Elena MICELI

Functions

CaseReader(filename[, pre_load])

Return a CaseReader for the given file.

Classes

Reader(db[, case_id, db_exp])

Reader class loads and displays stored simulations using an OpenMDAO CaseReader class instance.

class latom.reader.reader.Reader(db, case_id='final', db_exp=None)[source]

Bases: object

Reader class loads and displays stored simulations using an OpenMDAO CaseReader class instance.

Parameters
  • db (str) – Full path of the database where the solution is stored

  • case_id (str, optional) – Case identifier, initial to load the first iteration, final to load the final solution. Default is final

  • db_exp (str or None, optional) – Full path of the database where the explicit simulation is stored or None. Default is None

Variables
  • case_reader (CaseReader) – OpenMDAO CaseReader class instance for the implicit solution

  • case_id (str) – Case identifier, initial to load the first iteration, final to load the final solution.

  • case (Case or None) – OpenMDAO Case class instance identified by case_id within the case_reader object

  • case_reader_exp (CaseReader or None) – OpenMDAO CaseReader class instance for the explicit simulation or None

  • case – OpenMDAO Case class instance identified by case_id within the case_reader_exp object or None