Unisim Design provides some old-fashion API via a COM interface to handle usc files. This interface works only on Windows and more info can be found here (a free registration is required). The Usc class of pyfas exposes in python a minimal subset of API.
The available methods are:
To load a specific usc file the correct path and filename have to be provided:
usc_path = '../../pyfas/test/test_files/'
fname = 'test_case.usc'
usc = fa.Usc(usc_path+fname)
Profiles can be extracted with the extract_profiles method: the pipeline name is required
Stripcharts can be extracted with the extract_stripchart method: the defaul stripchart name is overall
With run_until the simulation is started until the specified endtime (in minures) is reached.