I want to change Output Control (Analysis Settings) to **Time **and value is **0.01 **in WB LS-DYNA
Below is my code.
- Implicit_Analysis = ExtAPI.DataModel.Project.Model.Analyses[0]
- solver = Implicit_Analysis.Solver
- CaculateResultTemp = solver.Properties['Output Controls/Calculate Results At']
- CaculateResultTemp.Value= r'Time'
- solver.Properties['Output Controls/Time'].Value = 0.01
- ExtAPI.DataModel.Tree.Refresh()
After execute the Calculate Results will success change to Time but value will not show in WB
After Execute (Issue)

Expect (Correct)

Please help me to correct the code
Thanks