How to include deformation scaling into a plot created by Python Result? By default it is unscaled

Member, Moderator, Employee Posts: 248
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭

By Adjusting Deformation scaling in Mechanical, one could scale the Deformed shape for any standard result. But, this doesn't seem to work for Python Result (scaling is greyed out).

Answers

  • Member, Moderator, Employee Posts: 248
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    edited August 2024

    One would just need to add the below line to the default code when one inserts Python result to deform the plot based on Deformation scaling.

    dpf_workflow.SetOutputWarpField(u)

    1. def post_started(sender, analysis):# Do not edit this line
    2. define_dpf_workflow(analysis)
    3.  
    4. # Uncomment this function to enable retrieving results from the table/chart
    5. # def table_retrieve_result(value):# Do not edit this line
    6. # import mech_dpf
    7. # import Ans.DataProcessing as dpf
    8. # wf = dpf.Workflow(this.WorkflowId)
    9. # wf.Connect('contour_selector', value)
    10. # this.Evaluate()
    11.  
    12. def define_dpf_workflow(analysis):
    13. import mech_dpf
    14. import Ans.DataProcessing as dpf
    15. mech_dpf.setExtAPI(ExtAPI)
    16. dataSource = dpf.DataSources(analysis.ResultFileName)
    17. u = dpf.operators.result.displacement()
    18. nrm = dpf.operators.math.norm_fc()
    19. # timeScop = dpf.Scoping()
    20. # timeScop.Ids = [1]
    21. # u.inputs.time_scoping.Connect(timeScop)
    22. u.inputs.data_sources.Connect(dataSource)
    23. nrm.Connect(u)
    24. dpf_workflow = dpf.Workflow()
    25. dpf_workflow.Add(u)
    26. dpf_workflow.Add(nrm)
    27. dpf_workflow.SetOutputWarpField(u)
    28. # dpf_workflow.SetInputName(u, 0, 'time')
    29. # dpf_workflow.Connect('time', timeScop)
    30. dpf_workflow.SetOutputContour(nrm)
    31. dpf_workflow.Record('wf_id', False)
    32. this.WorkflowId = dpf_workflow.GetRecordedId()

Welcome!

It looks like you're new here. Sign in or register to get started.