Working with models

How to access the real model

The “real model” enables access to more detailed information such as the room data and heating system of the building in the IES project. The real model is always the first item of the models property of the VEProject class.

import iesve
currentproject = iesve.VEProject.get_current_project()
realmodel = currentproject.models[0]
  • currentproject is an instance of the VEProject class.

  • realmodel is an instance of the VEModel class.