viktor.external.dsheetpiling
DSheetPilingAnalysis
- class viktor.external.dsheetpiling.DSheetPilingAnalysis(input_file)¶
Bases:
viktor.external.external_program.ExternalProgram
DSheetPilingAnalysis can be used to perform an analysis using DSheetpiling on a third-party worker. To start an analysis call the method
execute()
, with an appropriate timeout (in seconds). To retrieve the results call the methodget_output_file()
, afterexecute()
.Note: the input for the BytesIO object should be of type bytes. You can convert a string to bytes by calling the method
encode()
. Default encoding is ‘utf-8’.Usage:
input_file = BytesIO("dsheetpiling input file body".encode('utf-8')) dsheetpiling_analysis = DSheetPilingAnalysis(input_file=input_file) dsheetpiling_analysis.execute(timeout=10) output_file = dsheetpiling_analysis.get_output_file()
Exceptions which can be raised during calculation: -
viktor.errors.ExecutionError
: generic error. Error message provides more information- Parameters
input_file (
BytesIO
) – BytesIO object with the body of the .shi input file.
- get_output_file(extension='.shd')¶
Method can be used to retrieve the results generated by running an external analysis. Call method
execute()
first andget_output_file()
afterwards.- Parameters
extension (
str
) – extension of the file you want to return; one of: ‘.shd’, ‘.shs’, ‘.shl’, ‘.sho’, ‘.error.log’, ‘.err’- Return type
Optional
[BytesIO
]