sensotwin.lifetime_extrapolation.simulation.processSimulation
1def simulate_process(fvc: float, time_data: list, temperature_data: list, defect_list: list, working_directory: str) -> list: 2 """Simulate Process. 3 4 Args: 5 fvc: percent fibre volume content 0%-100% 6 time_data: list of float time values for temperature timeline (hours) 7 temperature_data: list of float temperature values for temperature timeline (°C) 8 defect_list: list of defect dictionaries 9 working_directory: relative path to write output files 10 11 Returns: 12 list of relative file paths of rlevant output files 13 """ 14 return [ 15 "Inputs/CCX_TEMPLATE.inp" 16 ]
def
simulate_process( fvc: float, time_data: list, temperature_data: list, defect_list: list, working_directory: str) -> list:
4def simulate_process(fvc: float, time_data: list, temperature_data: list, defect_list: list, working_directory: str) -> list: 5 """Simulate Process. 6 7 Args: 8 fvc: percent fibre volume content 0%-100% 9 time_data: list of float time values for temperature timeline (hours) 10 temperature_data: list of float temperature values for temperature timeline (°C) 11 defect_list: list of defect dictionaries 12 working_directory: relative path to write output files 13 14 Returns: 15 list of relative file paths of rlevant output files 16 """ 17 return [ 18 "Inputs/CCX_TEMPLATE.inp" 19 ]
Simulate Process.
Args: fvc: percent fibre volume content 0%-100% time_data: list of float time values for temperature timeline (hours) temperature_data: list of float temperature values for temperature timeline (°C) defect_list: list of defect dictionaries working_directory: relative path to write output files
Returns: list of relative file paths of rlevant output files