.. _user_guide_post_processing: ****************** Load a result file ****************** The :class:`Simulation ` object is a central element of PyDPF-Post. This object is the entry point for loading the contents of a result file. On Windows ---------- This code loads a result file on Windows: .. code:: python >>> from ansys.dpf import post >>> from ansys.dpf.post import examples >>> simulation = post.load_simulation('C:/Users/user/file.rst') On Linux -------- This code loads a result file on Linux: .. code:: python >>> simulation = post.load_simulation('/home/user/file.rst') For a more detailed example on interacting with the :class:`Simulation ` object, see :ref:`ref_basics`.