How do I check with PyDPF if a particular result is available for a time-step in my results file?

Member, Moderator, Employee Posts: 481
100 Answers 250 Likes 100 Comments Second Anniversary
✭✭✭✭

How do I check with PyDPF if a particular result is available for a time-step in my results file?

Comments

  • Member, Moderator, Employee Posts: 481
    100 Answers 250 Likes 100 Comments Second Anniversary
    ✭✭✭✭
    edited March 31

    You need to scope all the time-steps in your Time scoping. DPF returns a fields container with Fields for all time-steps but where results are absent the elementary count is 0. The following code can be used as an example:

    1. from ansys.dpf import core as dpf
    2.  
    3. rst = r"\Path\to\file.rst"
    4.  
    5. dpf.start_local_server(ansys_path=r"C:\Program Files\ANSYS Inc\v222")
    6. print(dpf.SERVER.info)
    7. model = dpf.Model(rst)
    8.  
    9. ds = dpf.DataSources(rst)
    10. ts = dpf.Scoping()
    11. ts.ids = range(1, model.metadata.time_freq_support.n_sets + 1)
    12.  
    13. stress = dpf.operators.result.stress(data_sources=ds, time_scoping=ts)
    14. stress_fc = stress.outputs.fields_container.get_data()
    15.  
    16. def check_if_result_exists_at_time(fc, time_index):
    17. if fc[time_index].elementary_data_count > 0:
    18. return True
    19. return False
    20.  
    21. time_index = 2
    22. res_bol = check_if_result_exists_at_time(stress_fc, time_index)
    23. print(f"Stress result at time-step {time_index}: {res_bol}")

Welcome!

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