Solutions to Exo3
- A window has been added on the north wall of the building, cf.
tipee_limos_eplus/examples/Practical_learning_exercices/Exo3/Solution/cabin.idf. This was done by copying and existing window and changing its name and vertices positions. - A new variable has been created in
tipee_limos_eplus/examples/Practical_learning_exercices/Exo3/Solutiondesign_space_cabin.pycalledX4_actandX4. The location is not optimized, only the material is. The material of this window is independent from that ofX1which describes windows potentially changed on the east and west walls. Note that the cost, the environmental footprint, ... , associated to the work for that specific window should in practice be different from that of theX1_actwindows. - There are actually 2 ways to do this, one more user-oriented, another more programmer oriented.
- User oriented: set all options that create printouts to True and read the files in the output directory. More precisely:
- In file
main_Exo3.py:(...) n_iters=1 n_uncs=1 (...) Simuls = SetAndRunSimulations( duration=duration, root_path=root_path, run_dir=run_dir, epw_path=epw_path, idf_path=idf_path, services_path=json_path, output_step=output_step, save_idf=True, # Uncomment to save idf files save_csv=True, # Uncomment to save csv result files debug=True, del_wks=False)
- In file
- Execute
main_Exo3.pyand the results can be found inoutputs/cabin_Exo3/cabin_iteration_0/cabin_iteration_0.idfandoutputs/cabin_Exo3/uncertain_design.csv. This last file contains only the design variables. - Programmer's way :
- User oriented: set all options that create printouts to True and read the files in the output directory. More precisely: