Importing IDF constructions file
Good evening, I'm new to Openstudio and I would like to import an idf file with constructions and materials that are defined in an excel file, I created a little python program that generates the idf file containing the list of constructions and materials as follows:
Construction,
Name,
Material 1,
...,
Material n;
Material,
Material 1 name,
Roughness,
Thickness,
Conductivity,
Density,
SpecHeat;
...
I'm currently using the SketchUp plugin and when trying to import the idf file from Extensions > Openstudio > Import > Import EnergyPlus Idf Constructions the various constructions and materials are not imported. Am I missing something? I tried adding the version of EnergyPlus (Version, 22.2;) before the list of constructions and materials in the idf file but the situation doesn't change.
@itsphilae Have you tried ending the first line with a comma instead of a colon? i.e.
Construction,
instead ofConstruction:
. Commas are used to separate input fields in EnergyPlus, starting with the first line of text that sets the object type that you're defining.my bad, it was a typo in the question, I actually used commas, let me edit the question real quickly