First time here? Check our help page!
2

Error in importing idf file into OpenStudio

I have a file already created in idf format. I am trying to import it into Openstudio, and it works correctly in EnergyPlus. However, it shows an error saying "Finding Construction Layer in workspace failed." then no wall, floor etc. thickness and material is shown in model. How can it be imported as a same model in existing idf file?

link text

image description

image description

Mumine Gercek's avatar
25
Mumine Gercek
asked 2015-11-11 15:13:09 -0500
Julien Marrec's avatar
29.7k
Julien Marrec
updated 2015-11-13 04:47:49 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Can you share the IDF file and specify the version of OpenStudio?

Yixing Chen's avatar Yixing Chen (2015-11-12 12:41:18 -0500) edit

I added the link of IDF file to my question, and photos of the error lists that are shown

Mumine Gercek's avatar Mumine Gercek (2015-11-13 02:05:58 -0500) edit

I put the pictures in your original question as they get resized... this was unreadable. But really you should copy the text from the console and post it here instead of putting questions...

As you'll see above, all of your errors are exactly the same type, so no need to paste 50 iterations of it

Julien Marrec's avatar Julien Marrec (2015-11-13 04:44:29 -0500) edit

It looks like you might have a construction in your idf that references a non-existent material, does your idf run in EnergyPlus without a similar warning? Also, it seems like you might have duplicate surfaces or something in your idf, where did you get this idf from?

macumber's avatar macumber (2015-11-13 12:26:09 -0500) edit

Actually i created this idf file in DesignBuilder, and in EnergyPlus i dont get any warnings similar to this, it works correctly, then i can get logical results. I entered all layers into walls floors etc. and all of them can be seen also in EnergyPlus.

Mumine Gercek's avatar Mumine Gercek (2015-11-14 11:45:13 -0500) edit
add a comment see more comments

1 Answer

1

Currently, OpenStudio can't read all the IDF objects. For example, it can read the geometry from IDF file and it can't read most of the HVAC systems. So far as I know, all the energy modeling tools with good user interface can only handle part of the IDF objects.

So the messages you received is informative. They are not "Errors". You can follow the information to export the untranslated objects.

I checked two BuildingSurface:Detailed for the same wall. They have same coordinates. So the two BuildingSurface:Detailed objects show in the same zone, while the nearby zone shows "missing wall".

     ! Block 2, Hol, Partition - 3.913 m2 (Block 2, Yasam10), Surface Area: 3.9132
     BuildingSurface:Detailed,                      !- Surface
            Block2:Hol_Partition_41_0_0,                !- Surface name
            Wall, Balatcik_BolmeDuvar_UnitelerArasi,    !- Class and Construction Name
            Block2:Hol,                                 !- Zone Name
            Surface, Block2:Yasam10_Partition_6_0_10049,   !- Outside Face Environment
            NoSun,                                      !- Sun Exposure
            NoWind,                                     !- Wind Exposure
            0,                                          !- View Factor to Ground
            4,                                          !- Number vertices
             2.0222122255,-4.9760001718, 19.09753871,   !- Vertex 1
             2.0213437487,-3.3280264607, 19.09753871,   !- Vertex 2
             2.0213437487,-3.3280264607, 21.47207749,   !- Vertex 3
             2.0222122255,-4.9760001718, 21.47207749;   !- Vertex 4

     ! Block 2, Hol, Partition - 3.913 m2 (Block 2, Yasam10), Surface Area: 3.9132 <Other side>
     BuildingSurface:Detailed,                      !- Surface reverse definition
            Block2:Yasam10_Partition_6_0_10049,         !- Surface name
            Wall, Balatcik_BolmeDuvar_UnitelerArasi_Rev,!- Class and Construction Name
            Block2:Yasam10,                             !- Zone Name
            Surface, Block2:Hol_Partition_41_0_0,       !- Outside Face Environment
            NoSun,                                      !- Sun Exposure
            NoWind,                                     !- Wind Exposure
            0,                                          !- View Factor to Ground
            4,                                          !- Number vertices
             2.0213437487,-3.3280264607, 19.09753871,   !- Vertex 1
             2.0222122255,-4.9760001718, 19.09753871,   !- Vertex 2
             2.0222122255,-4.9760001718, 21.47207749,   !- Vertex 3
             2.0213437487,-3.3280264607, 21.47207749;   !- Vertex 4
Yixing Chen's avatar
921
Yixing Chen
answered 2015-11-13 12:05:00 -0500, updated 2015-11-13 13:30:23 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments