Hi,
Is there a way to change status of a from IsSolved == True to False. I know it can be done using ClearGeneratedData() on that result, but it also removes any files that were created along with it in the Solver directory. I have a separate object under Solution tree that controls some of the input for that result. During OnStartPost, script creates a .json file that consist of:
- RST data from all time steps (obtained using DPF) - principal stress, shear stress, shell thickness and more.
- Inputs from Excel spreadsheets selected in solution object.
I've learned that it greatly shortens the calculation time if I create the input json before Result Evaluation - especially with larger RST files. I can then modify different parameters of that result without the need to read any input from RST again. And I need that json file with all the input for additional, manual post processing checks and verifications.
I want to force user to re-evaluate the selected results after changing input parameters without clearing all generated data. The json should only be updated with the changed Excel input, the RST data should remain unchanged since the Solution is not affected.