diff --git a/IFCtoLBD-Desktop_Java_12_win10_installation.zip b/IFCtoLBD-Desktop_Java_12_win10_installation.zip deleted file mode 100644 index 61596350..00000000 Binary files a/IFCtoLBD-Desktop_Java_12_win10_installation.zip and /dev/null differ diff --git a/IFCtoLBD-Desktop_Java_8.jar b/IFCtoLBD-Desktop_Java_8.jar deleted file mode 100644 index 8b8540f2..00000000 Binary files a/IFCtoLBD-Desktop_Java_8.jar and /dev/null differ diff --git a/IFCtoLBD-Desktop_Java_8_win10_installation.zip b/IFCtoLBD-Desktop_Java_8_win10_installation.zip deleted file mode 100644 index 4876948e..00000000 Binary files a/IFCtoLBD-Desktop_Java_8_win10_installation.zip and /dev/null differ diff --git a/IFCtoLBDGeometry/pom.xml b/IFCtoLBDGeometry/pom.xml index 4f5ae099..f9752681 100644 --- a/IFCtoLBDGeometry/pom.xml +++ b/IFCtoLBDGeometry/pom.xml @@ -74,5 +74,5 @@ - 2.3 + 2.6 \ No newline at end of file diff --git a/IFCtoLBDGeometry/src/main/java/de/rwth_aachen/dc/lbd/IFCBoundingBoxes.java b/IFCtoLBDGeometry/src/main/java/de/rwth_aachen/dc/lbd/IFCBoundingBoxes.java index 75fb37a2..4b82d7a1 100644 --- a/IFCtoLBDGeometry/src/main/java/de/rwth_aachen/dc/lbd/IFCBoundingBoxes.java +++ b/IFCtoLBDGeometry/src/main/java/de/rwth_aachen/dc/lbd/IFCBoundingBoxes.java @@ -32,33 +32,33 @@ public BoundingBox getBoundingBox(String guid) { BoundingBox boundingBox = null; IfcOpenShellEntityInstance renderEngineInstance; - renderEngineInstance = renderEngineModel.getInstancesByGuid().get(guid); + renderEngineInstance = renderEngineModel.getInstanceFromGUID(guid); if (renderEngineInstance == null) { return null; } IfcGeomServerClientEntity geometry = renderEngineInstance.generateGeometry(); - if (geometry != null && geometry.getIndices().length > 0) { - boundingBox = new BoundingBox(); - double[] tranformationMatrix = new double[16]; - if (renderEngineInstance.getTransformationMatrix() != null) { - tranformationMatrix = renderEngineInstance.getTransformationMatrix(); - tranformationMatrix = Matrix.changeOrientation(tranformationMatrix); - } else { - Matrix.setIdentityM(tranformationMatrix, 0); - } - - float[] vertices=geometry.getPositions(); - for (int i = 0; i < geometry.getPositions().length; i+=3) { - processExtends(boundingBox, tranformationMatrix, vertices[i],vertices[i+1],vertices[i+2]); - } - } + if (geometry != null && geometry.getIndices().length > 0) { + boundingBox = new BoundingBox(); + double[] tranformationMatrix = new double[16]; + if (renderEngineInstance.getTransformationMatrix() != null) { + tranformationMatrix = renderEngineInstance.getTransformationMatrix(); + tranformationMatrix = Matrix.changeOrientation(tranformationMatrix); + } else { + Matrix.setIdentityM(tranformationMatrix, 0); + } + + float[] vertices = geometry.getPositions(); + for (int i = 0; i < geometry.getPositions().length; i += 3) { + processExtends(boundingBox, tranformationMatrix, vertices[i], vertices[i + 1], vertices[i + 2]); + } + } return boundingBox; } private IfcOpenShellModel getRenderEngineModel(File ifcFile) throws RenderEngineException, IOException { String ifcGeomServerLocation = OperatingSystemCopyOf_IfcGeomServer.getIfcGeomServer(); - System.out.println("ifcGeomServerLocation: "+ifcGeomServerLocation); + System.out.println("ifcGeomServerLocation: " + ifcGeomServerLocation); Path ifcGeomServerLocationPath = Paths.get(ifcGeomServerLocation); IfcOpenShellEngine ifcOpenShellEngine = new IfcOpenShellEngine(ifcGeomServerLocationPath, false, false); System.out.println("init"); @@ -66,22 +66,22 @@ private IfcOpenShellModel getRenderEngineModel(File ifcFile) throws RenderEngine System.out.println("init done"); FileInputStream ifcFileInputStream = new FileInputStream(ifcFile); - System.out.println("ifcFile: "+ifcFile); + System.out.println("ifcFile: " + ifcFile); IfcOpenShellModel model = ifcOpenShellEngine.openModel(ifcFileInputStream); System.out.println("IfcOpenShell opens ifc: " + ifcFile.getAbsolutePath()); - + model.generateGeneralGeometry(); return model; } - private void processExtends(BoundingBox boundingBox, double[] transformationMatrix, double x, double y, double z) { - double[] result = new double[4]; - Matrix.multiplyMV(result, 0, transformationMatrix, 0, new double[] { x, y, z, 1 }, 0); - x = result[0]; - y = result[1]; - z = result[2]; - Point3d point = new Point3d(x / 1000, y / 1000, z / 1000); - boundingBox.add(point); - } + private void processExtends(BoundingBox boundingBox, double[] transformationMatrix, double x, double y, double z) { + double[] result = new double[4]; + Matrix.multiplyMV(result, 0, transformationMatrix, 0, new double[] { x, y, z, 1 }, 0); + x = result[0]; + y = result[1]; + z = result[2]; + Point3d point = new Point3d(x / 1000, y / 1000, z / 1000); + boundingBox.add(point); + } } \ No newline at end of file diff --git a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcGeomServerClient.java b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcGeomServerClient.java index 7cf07469..01d426a9 100644 --- a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcGeomServerClient.java +++ b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcGeomServerClient.java @@ -751,7 +751,14 @@ public IfcGeomServerClientEntity getNext() throws RenderEngineException { askForMore(); return e.getEntity(); - } catch (IOException e) { + } + // JO 2020 + catch (java.io.EOFException e) { + // Do nothing.The file is read! + return null; + } + catch (IOException e) { + e.printStackTrace(); terminate(); return null; } diff --git a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEngine.java b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEngine.java index c36568f6..11cafeeb 100644 --- a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEngine.java +++ b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEngine.java @@ -47,7 +47,9 @@ import java.io.InputStream; import java.nio.file.Path; +import org.bimserver.plugins.renderengine.RenderEngine; import org.bimserver.plugins.renderengine.RenderEngineException; +import org.bimserver.plugins.renderengine.RenderEngineModel; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEnginePlugin.java b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEnginePlugin.java index 1d76b181..0d2c821c 100644 --- a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEnginePlugin.java +++ b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellEnginePlugin.java @@ -53,7 +53,9 @@ import org.bimserver.models.store.StoreFactory; import org.bimserver.plugins.PluginConfiguration; import org.bimserver.plugins.PluginContext; +import org.bimserver.plugins.renderengine.RenderEngine; import org.bimserver.plugins.renderengine.RenderEngineException; +import org.bimserver.plugins.renderengine.RenderEnginePlugin; import org.bimserver.plugins.renderengine.VersionInfo; import org.bimserver.shared.exceptions.PluginException; import org.slf4j.Logger; diff --git a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellModel.java b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellModel.java index c8c86d56..6009e59a 100644 --- a/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellModel.java +++ b/IFCtoLBDGeometry/src/main/java/org/ifcopenshell/IfcOpenShellModel.java @@ -48,9 +48,15 @@ import java.io.IOException; import java.io.InputStream; +import java.util.Collection; import java.util.HashMap; +import org.bimserver.plugins.renderengine.EntityNotFoundException; import org.bimserver.plugins.renderengine.RenderEngineException; +import org.bimserver.plugins.renderengine.RenderEngineFilter; +import org.bimserver.plugins.renderengine.RenderEngineInstance; +import org.bimserver.plugins.renderengine.RenderEngineModel; +import org.bimserver.plugins.renderengine.RenderEngineSettings; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -60,8 +66,8 @@ public class IfcOpenShellModel { private InputStream ifcInputStream; private HashMap instancesById; - private HashMap instancesByGuid; - + private HashMap instancesByGUID; + private IfcGeomServerClient client; public IfcOpenShellModel(IfcGeomServerClient client, InputStream ifcInputStream) throws RenderEngineException, IOException { @@ -92,17 +98,19 @@ public void close() throws RenderEngineException { public void generateGeneralGeometry() throws RenderEngineException { // We keep track of instances ourselves instancesById = new HashMap(); - instancesByGuid = new HashMap(); + instancesByGUID = new HashMap(); final double t0 = (double) System.nanoTime(); while (client.hasNext()) { IfcGeomServerClientEntity next = client.getNext(); - // Store the instance in our dictionary + if(next==null) // JO 2020 + break; IfcOpenShellEntityInstance instance = new IfcOpenShellEntityInstance(next); + System.out.println("GEN GEOM: "+next.getGuid()); + // Store the instance in our dictionary instancesById.put(next.getId(), instance); - instancesByGuid.put(next.getGuid(), instance); - System.out.println(next.getGuid()); + instancesByGUID.put(next.getGuid(), instance); } final double t1 = (double) System.nanoTime(); @@ -110,7 +118,7 @@ public void generateGeneralGeometry() throws RenderEngineException { LOGGER.debug(String.format("Took %.2f seconds to obtain representations for %d entities", (t1-t0) / 1.E9, instancesById.size())); } - public IfcOpenShellEntityInstance getInstanceFromExpressId(int oid) throws RenderEngineException { + public IfcOpenShellEntityInstance getInstanceFromExpressId(int oid) { if ( instancesById.containsKey(oid) ) { return instancesById.get(oid); } else { @@ -121,9 +129,11 @@ public IfcOpenShellEntityInstance getInstanceFromExpressId(int oid) throws Rende return null; } } - - public HashMap getInstancesByGuid() { - return instancesByGuid; + public IfcOpenShellEntityInstance getInstanceFromGUID(String guid) { + if ( instancesByGUID.containsKey(guid) ) { + return instancesByGUID.get(guid); + } else { + return null; + } } - } \ No newline at end of file diff --git a/IFCtoLBD_OpenAPI.war b/IFCtoLBD_OpenAPI.war deleted file mode 100644 index dbe5b524..00000000 Binary files a/IFCtoLBD_OpenAPI.war and /dev/null differ diff --git a/IFCtoLBD_OpenAPI/.settings/org.eclipse.wst.common.component b/IFCtoLBD_OpenAPI/.settings/org.eclipse.wst.common.component index d4ce5d37..d31619b7 100644 --- a/IFCtoLBD_OpenAPI/.settings/org.eclipse.wst.common.component +++ b/IFCtoLBD_OpenAPI/.settings/org.eclipse.wst.common.component @@ -3,7 +3,10 @@ - + + uses + + uses diff --git a/IFCtoLBD_OpenAPI/pom.xml b/IFCtoLBD_OpenAPI/pom.xml index c37f371a..50321335 100644 --- a/IFCtoLBD_OpenAPI/pom.xml +++ b/IFCtoLBD_OpenAPI/pom.xml @@ -5,7 +5,7 @@ 4.0.0 de.rwth-aachen.dc.ifctolbd IFCtoLBD_OpenAPI - 2.4 + 2.6 war IFCtoLBD OpenAPI Interface @@ -128,7 +128,7 @@ io.github.jyrkioraskari IFCtoLBD - 2.4 + 2.6 diff --git a/IFCtoLBD_Python/jars/FastInfoset-1.2.16.jar b/IFCtoLBD_Python/jars/FastInfoset-1.2.16.jar new file mode 100644 index 00000000..6e91f1ce Binary files /dev/null and b/IFCtoLBD_Python/jars/FastInfoset-1.2.16.jar differ diff --git a/IFCtoLBD_Python/jars/IFCtoLBD-2.4.jar b/IFCtoLBD_Python/jars/IFCtoLBD-2.4.jar deleted file mode 100644 index 7726a6b6..00000000 Binary files a/IFCtoLBD_Python/jars/IFCtoLBD-2.4.jar and /dev/null differ diff --git a/IFCtoLBD_Python/jars/IFCtoLBD-2.6.jar b/IFCtoLBD_Python/jars/IFCtoLBD-2.6.jar new file mode 100644 index 00000000..a88e54be Binary files /dev/null and b/IFCtoLBD_Python/jars/IFCtoLBD-2.6.jar differ diff --git a/IFCtoLBD_Python/jars/IFCtoRDF-0.5J-SNAPSHOT.jar b/IFCtoLBD_Python/jars/IFCtoRDF-0.5J-SNAPSHOT.jar deleted file mode 100644 index 91802d73..00000000 Binary files a/IFCtoLBD_Python/jars/IFCtoRDF-0.5J-SNAPSHOT.jar and /dev/null differ diff --git a/IFCtoLBD_Python/jars/ST4-4.0.8.jar b/IFCtoLBD_Python/jars/ST4-4.0.8.jar new file mode 100644 index 00000000..144828ba Binary files /dev/null and b/IFCtoLBD_Python/jars/ST4-4.0.8.jar differ diff --git a/IFCtoLBD_Python/jars/aether-api-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-api-1.0.2.v20150114.jar new file mode 100644 index 00000000..c8adbaa2 Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-api-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-connector-basic-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-connector-basic-1.0.2.v20150114.jar new file mode 100644 index 00000000..b5d7735a Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-connector-basic-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-impl-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-impl-1.0.2.v20150114.jar new file mode 100644 index 00000000..f7643151 Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-impl-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-spi-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-spi-1.0.2.v20150114.jar new file mode 100644 index 00000000..59c0935d Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-spi-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-transport-file-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-transport-file-1.0.2.v20150114.jar new file mode 100644 index 00000000..d37626f6 Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-transport-file-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-transport-http-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-transport-http-1.0.2.v20150114.jar new file mode 100644 index 00000000..c778db61 Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-transport-http-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/aether-util-1.0.2.v20150114.jar b/IFCtoLBD_Python/jars/aether-util-1.0.2.v20150114.jar new file mode 100644 index 00000000..fce3fff8 Binary files /dev/null and b/IFCtoLBD_Python/jars/aether-util-1.0.2.v20150114.jar differ diff --git a/IFCtoLBD_Python/jars/antlr-2.7.7.jar b/IFCtoLBD_Python/jars/antlr-2.7.7.jar new file mode 100644 index 00000000..5e5f14b3 Binary files /dev/null and b/IFCtoLBD_Python/jars/antlr-2.7.7.jar differ diff --git a/IFCtoLBD_Python/jars/antlr-3.5.2.jar b/IFCtoLBD_Python/jars/antlr-3.5.2.jar new file mode 100644 index 00000000..12b61401 Binary files /dev/null and b/IFCtoLBD_Python/jars/antlr-3.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/antlr-complete-3.5.2.jar b/IFCtoLBD_Python/jars/antlr-complete-3.5.2.jar new file mode 100644 index 00000000..260de763 Binary files /dev/null and b/IFCtoLBD_Python/jars/antlr-complete-3.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/antlr-runtime-3.5.2.jar b/IFCtoLBD_Python/jars/antlr-runtime-3.5.2.jar new file mode 100644 index 00000000..d48e3e86 Binary files /dev/null and b/IFCtoLBD_Python/jars/antlr-runtime-3.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/aopalliance-1.0.jar b/IFCtoLBD_Python/jars/aopalliance-1.0.jar new file mode 100644 index 00000000..578b1a0c Binary files /dev/null and b/IFCtoLBD_Python/jars/aopalliance-1.0.jar differ diff --git a/IFCtoLBD_Python/jars/buildingsmartlibrary-1.0.13.jar b/IFCtoLBD_Python/jars/buildingsmartlibrary-1.0.13.jar new file mode 100644 index 00000000..96c53e88 Binary files /dev/null and b/IFCtoLBD_Python/jars/buildingsmartlibrary-1.0.13.jar differ diff --git a/IFCtoLBD_Python/jars/cdi-api-1.0.jar b/IFCtoLBD_Python/jars/cdi-api-1.0.jar new file mode 100644 index 00000000..fe240f6f Binary files /dev/null and b/IFCtoLBD_Python/jars/cdi-api-1.0.jar differ diff --git a/IFCtoLBD_Python/jars/commonj.sdo-2.1.1.jar b/IFCtoLBD_Python/jars/commonj.sdo-2.1.1.jar new file mode 100644 index 00000000..7c85ca19 Binary files /dev/null and b/IFCtoLBD_Python/jars/commonj.sdo-2.1.1.jar differ diff --git a/IFCtoLBD_Python/jars/commons-lang-2.6.jar b/IFCtoLBD_Python/jars/commons-lang-2.6.jar new file mode 100644 index 00000000..98467d3a Binary files /dev/null and b/IFCtoLBD_Python/jars/commons-lang-2.6.jar differ diff --git a/IFCtoLBD-Desktop_Java_12.jar b/IFCtoLBD_Python/jars/fastutil-8.2.2.jar similarity index 50% rename from IFCtoLBD-Desktop_Java_12.jar rename to IFCtoLBD_Python/jars/fastutil-8.2.2.jar index 5648dfd4..2ef21da0 100644 Binary files a/IFCtoLBD-Desktop_Java_12.jar and b/IFCtoLBD_Python/jars/fastutil-8.2.2.jar differ diff --git a/IFCtoLBD_Python/jars/gmbal-4.0.0.jar b/IFCtoLBD_Python/jars/gmbal-4.0.0.jar new file mode 100644 index 00000000..9932c84b Binary files /dev/null and b/IFCtoLBD_Python/jars/gmbal-4.0.0.jar differ diff --git a/IFCtoLBD_Python/jars/guice-4.0-no_aop.jar b/IFCtoLBD_Python/jars/guice-4.0-no_aop.jar new file mode 100644 index 00000000..6b09fa0f Binary files /dev/null and b/IFCtoLBD_Python/jars/guice-4.0-no_aop.jar differ diff --git a/IFCtoLBD_Python/jars/gunit-3.5.2.jar b/IFCtoLBD_Python/jars/gunit-3.5.2.jar new file mode 100644 index 00000000..27e81170 Binary files /dev/null and b/IFCtoLBD_Python/jars/gunit-3.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/ha-api-3.1.12.jar b/IFCtoLBD_Python/jars/ha-api-3.1.12.jar new file mode 100644 index 00000000..b76d9a76 Binary files /dev/null and b/IFCtoLBD_Python/jars/ha-api-3.1.12.jar differ diff --git a/IFCtoLBD_Python/jars/hamcrest-core-1.1.jar b/IFCtoLBD_Python/jars/hamcrest-core-1.1.jar new file mode 100644 index 00000000..e5149be7 Binary files /dev/null and b/IFCtoLBD_Python/jars/hamcrest-core-1.1.jar differ diff --git a/IFCtoLBD_Python/jars/httpmime-4.5.7.jar b/IFCtoLBD_Python/jars/httpmime-4.5.7.jar new file mode 100644 index 00000000..b4c5e303 Binary files /dev/null and b/IFCtoLBD_Python/jars/httpmime-4.5.7.jar differ diff --git a/IFCtoLBD_Python/jars/ifcplugins-0.0.99.jar b/IFCtoLBD_Python/jars/ifcplugins-0.0.99.jar new file mode 100644 index 00000000..29818648 Binary files /dev/null and b/IFCtoLBD_Python/jars/ifcplugins-0.0.99.jar differ diff --git a/IFCtoLBD_Python/jars/istack-commons-runtime-3.0.8.jar b/IFCtoLBD_Python/jars/istack-commons-runtime-3.0.8.jar new file mode 100644 index 00000000..8f37e950 Binary files /dev/null and b/IFCtoLBD_Python/jars/istack-commons-runtime-3.0.8.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.activation-api-1.2.1.jar b/IFCtoLBD_Python/jars/jakarta.activation-api-1.2.1.jar new file mode 100644 index 00000000..bbfb52ff Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.activation-api-1.2.1.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.annotation-api-1.3.4.jar b/IFCtoLBD_Python/jars/jakarta.annotation-api-1.3.4.jar new file mode 100644 index 00000000..be216be9 Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.annotation-api-1.3.4.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.jws-api-1.1.1.jar b/IFCtoLBD_Python/jars/jakarta.jws-api-1.1.1.jar new file mode 100644 index 00000000..498d1295 Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.jws-api-1.1.1.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.mail-api-1.6.3.jar b/IFCtoLBD_Python/jars/jakarta.mail-api-1.6.3.jar new file mode 100644 index 00000000..9eed7395 Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.mail-api-1.6.3.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.persistence-api-2.2.2.jar b/IFCtoLBD_Python/jars/jakarta.persistence-api-2.2.2.jar new file mode 100644 index 00000000..fd4bbd9b Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.persistence-api-2.2.2.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.xml.bind-api-2.3.2.jar b/IFCtoLBD_Python/jars/jakarta.xml.bind-api-2.3.2.jar new file mode 100644 index 00000000..b16236d5 Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.xml.bind-api-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.xml.soap-api-1.4.1.jar b/IFCtoLBD_Python/jars/jakarta.xml.soap-api-1.4.1.jar new file mode 100644 index 00000000..832765ce Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.xml.soap-api-1.4.1.jar differ diff --git a/IFCtoLBD_Python/jars/jakarta.xml.ws-api-2.3.2.jar b/IFCtoLBD_Python/jars/jakarta.xml.ws-api-2.3.2.jar new file mode 100644 index 00000000..af82d8aa Binary files /dev/null and b/IFCtoLBD_Python/jars/jakarta.xml.ws-api-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/java-getopt-1.0.13.jar b/IFCtoLBD_Python/jars/java-getopt-1.0.13.jar new file mode 100644 index 00000000..237ce912 Binary files /dev/null and b/IFCtoLBD_Python/jars/java-getopt-1.0.13.jar differ diff --git a/IFCtoLBD_Python/jars/javassist-3.24.1-GA.jar b/IFCtoLBD_Python/jars/javassist-3.24.1-GA.jar new file mode 100644 index 00000000..3c7686d7 Binary files /dev/null and b/IFCtoLBD_Python/jars/javassist-3.24.1-GA.jar differ diff --git a/IFCtoLBD_Python/jars/javax.inject-1.jar b/IFCtoLBD_Python/jars/javax.inject-1.jar new file mode 100644 index 00000000..b2a9d0bf Binary files /dev/null and b/IFCtoLBD_Python/jars/javax.inject-1.jar differ diff --git a/IFCtoLBD_Python/jars/javax.json-1.0.4.jar b/IFCtoLBD_Python/jars/javax.json-1.0.4.jar new file mode 100644 index 00000000..09967d81 Binary files /dev/null and b/IFCtoLBD_Python/jars/javax.json-1.0.4.jar differ diff --git a/IFCtoLBD_Python/jars/javax.servlet-api-3.1.0.jar b/IFCtoLBD_Python/jars/javax.servlet-api-3.1.0.jar new file mode 100644 index 00000000..6b14c3d2 Binary files /dev/null and b/IFCtoLBD_Python/jars/javax.servlet-api-3.1.0.jar differ diff --git a/IFCtoLBD_Python/jars/jaxb-jxc-2.3.2.jar b/IFCtoLBD_Python/jars/jaxb-jxc-2.3.2.jar new file mode 100644 index 00000000..6f02d95e Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxb-jxc-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jaxb-runtime-2.3.2.jar b/IFCtoLBD_Python/jars/jaxb-runtime-2.3.2.jar new file mode 100644 index 00000000..62f87196 Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxb-runtime-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jaxb-xjc-2.3.2.jar b/IFCtoLBD_Python/jars/jaxb-xjc-2.3.2.jar new file mode 100644 index 00000000..6e630040 Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxb-xjc-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jaxws-eclipselink-plugin-2.3.2.jar b/IFCtoLBD_Python/jars/jaxws-eclipselink-plugin-2.3.2.jar new file mode 100644 index 00000000..071782b5 Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxws-eclipselink-plugin-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jaxws-rt-2.3.2.jar b/IFCtoLBD_Python/jars/jaxws-rt-2.3.2.jar new file mode 100644 index 00000000..12945f98 Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxws-rt-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jaxws-tools-2.3.2.jar b/IFCtoLBD_Python/jars/jaxws-tools-2.3.2.jar new file mode 100644 index 00000000..3c7ab378 Binary files /dev/null and b/IFCtoLBD_Python/jars/jaxws-tools-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/jsr250-api-1.0.jar b/IFCtoLBD_Python/jars/jsr250-api-1.0.jar new file mode 100644 index 00000000..c1f29bf8 Binary files /dev/null and b/IFCtoLBD_Python/jars/jsr250-api-1.0.jar differ diff --git a/IFCtoLBD_Python/jars/junit-4.10.jar b/IFCtoLBD_Python/jars/junit-4.10.jar new file mode 100644 index 00000000..954851e6 Binary files /dev/null and b/IFCtoLBD_Python/jars/junit-4.10.jar differ diff --git a/IFCtoLBD_Python/jars/management-api-3.2.1.jar b/IFCtoLBD_Python/jars/management-api-3.2.1.jar new file mode 100644 index 00000000..f31e725f Binary files /dev/null and b/IFCtoLBD_Python/jars/management-api-3.2.1.jar differ diff --git a/IFCtoLBD_Python/jars/maven-aether-provider-3.3.9.jar b/IFCtoLBD_Python/jars/maven-aether-provider-3.3.9.jar new file mode 100644 index 00000000..9f081209 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-aether-provider-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-artifact-3.3.9.jar b/IFCtoLBD_Python/jars/maven-artifact-3.3.9.jar new file mode 100644 index 00000000..eaf7d4db Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-artifact-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-builder-support-3.3.9.jar b/IFCtoLBD_Python/jars/maven-builder-support-3.3.9.jar new file mode 100644 index 00000000..905c6ae7 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-builder-support-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-core-3.3.9.jar b/IFCtoLBD_Python/jars/maven-core-3.3.9.jar new file mode 100644 index 00000000..337f62a6 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-core-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-model-3.3.9.jar b/IFCtoLBD_Python/jars/maven-model-3.3.9.jar new file mode 100644 index 00000000..cb0e15c3 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-model-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-model-builder-3.3.9.jar b/IFCtoLBD_Python/jars/maven-model-builder-3.3.9.jar new file mode 100644 index 00000000..c2e36413 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-model-builder-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-plugin-api-3.3.9.jar b/IFCtoLBD_Python/jars/maven-plugin-api-3.3.9.jar new file mode 100644 index 00000000..4418b5cf Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-plugin-api-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-repository-metadata-3.3.9.jar b/IFCtoLBD_Python/jars/maven-repository-metadata-3.3.9.jar new file mode 100644 index 00000000..d1129e06 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-repository-metadata-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-settings-3.3.9.jar b/IFCtoLBD_Python/jars/maven-settings-3.3.9.jar new file mode 100644 index 00000000..b3e2dc21 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-settings-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/maven-settings-builder-3.3.9.jar b/IFCtoLBD_Python/jars/maven-settings-builder-3.3.9.jar new file mode 100644 index 00000000..dd2d4007 Binary files /dev/null and b/IFCtoLBD_Python/jars/maven-settings-builder-3.3.9.jar differ diff --git a/IFCtoLBD_Python/jars/mimepull-1.9.11.jar b/IFCtoLBD_Python/jars/mimepull-1.9.11.jar new file mode 100644 index 00000000..99a4aba0 Binary files /dev/null and b/IFCtoLBD_Python/jars/mimepull-1.9.11.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.commands-3.9.700.jar b/IFCtoLBD_Python/jars/org.eclipse.core.commands-3.9.700.jar new file mode 100644 index 00000000..b6de50e7 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.commands-3.9.700.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.contenttype-3.7.800.jar b/IFCtoLBD_Python/jars/org.eclipse.core.contenttype-3.7.800.jar new file mode 100644 index 00000000..21ff456c Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.contenttype-3.7.800.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.expressions-3.7.0.jar b/IFCtoLBD_Python/jars/org.eclipse.core.expressions-3.7.0.jar new file mode 100644 index 00000000..c43c3792 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.expressions-3.7.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.filesystem-1.7.700.jar b/IFCtoLBD_Python/jars/org.eclipse.core.filesystem-1.7.700.jar new file mode 100644 index 00000000..7a5f80e8 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.filesystem-1.7.700.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.jobs-3.10.800.jar b/IFCtoLBD_Python/jars/org.eclipse.core.jobs-3.10.800.jar new file mode 100644 index 00000000..040e6f48 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.jobs-3.10.800.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.13.800.jar b/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.13.800.jar new file mode 100644 index 00000000..b973bccf Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.13.800.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.8.101.v20130717-0806.jar b/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.8.101.v20130717-0806.jar new file mode 100644 index 00000000..e38ec8a9 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.resources-3.8.101.v20130717-0806.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.runtime-3.19.0.jar b/IFCtoLBD_Python/jars/org.eclipse.core.runtime-3.19.0.jar new file mode 100644 index 00000000..e064a076 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.runtime-3.19.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.core.variables-3.4.800.jar b/IFCtoLBD_Python/jars/org.eclipse.core.variables-3.4.800.jar new file mode 100644 index 00000000..b3608b92 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.core.variables-3.4.800.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.debug.core-3.16.0.jar b/IFCtoLBD_Python/jars/org.eclipse.debug.core-3.16.0.jar new file mode 100644 index 00000000..dea92858 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.debug.core-3.16.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.emf.codegen-2.14.0.jar b/IFCtoLBD_Python/jars/org.eclipse.emf.codegen-2.14.0.jar new file mode 100644 index 00000000..c6b94b99 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.emf.codegen-2.14.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.emf.codegen.ecore-2.15.0.jar b/IFCtoLBD_Python/jars/org.eclipse.emf.codegen.ecore-2.15.0.jar new file mode 100644 index 00000000..f7f449e4 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.emf.codegen.ecore-2.15.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.emf.common-2.15.0.jar b/IFCtoLBD_Python/jars/org.eclipse.emf.common-2.15.0.jar new file mode 100644 index 00000000..a7e307df Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.emf.common-2.15.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.emf.ecore-2.15.0.jar b/IFCtoLBD_Python/jars/org.eclipse.emf.ecore-2.15.0.jar new file mode 100644 index 00000000..82d658e3 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.emf.ecore-2.15.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.emf.ecore.xmi-2.15.0.jar b/IFCtoLBD_Python/jars/org.eclipse.emf.ecore.xmi-2.15.0.jar new file mode 100644 index 00000000..47aafcbb Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.emf.ecore.xmi-2.15.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.equinox.app-1.5.0.jar b/IFCtoLBD_Python/jars/org.eclipse.equinox.app-1.5.0.jar new file mode 100644 index 00000000..cb455ab0 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.equinox.app-1.5.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.equinox.common-3.13.0.jar b/IFCtoLBD_Python/jars/org.eclipse.equinox.common-3.13.0.jar new file mode 100644 index 00000000..d30595d7 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.equinox.common-3.13.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.equinox.preferences-3.8.0.jar b/IFCtoLBD_Python/jars/org.eclipse.equinox.preferences-3.8.0.jar new file mode 100644 index 00000000..7d5185e0 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.equinox.preferences-3.8.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.equinox.registry-3.9.0.jar b/IFCtoLBD_Python/jars/org.eclipse.equinox.registry-3.9.0.jar new file mode 100644 index 00000000..1e095c0e Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.equinox.registry-3.9.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.14.0.v20171206-0802.jar b/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.14.0.v20171206-0802.jar new file mode 100644 index 00000000..406c66af Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.14.0.v20171206-0802.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.23.0.jar b/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.23.0.jar new file mode 100644 index 00000000..6890a5d1 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.jdt.core-3.23.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.jdt.debug-3.16.0.jar b/IFCtoLBD_Python/jars/org.eclipse.jdt.debug-3.16.0.jar new file mode 100644 index 00000000..fb975bf3 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.jdt.debug-3.16.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.jdt.launching-3.18.0.jar b/IFCtoLBD_Python/jars/org.eclipse.jdt.launching-3.18.0.jar new file mode 100644 index 00000000..2c7808ce Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.jdt.launching-3.18.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.osgi-3.16.0.jar b/IFCtoLBD_Python/jars/org.eclipse.osgi-3.16.0.jar new file mode 100644 index 00000000..e7ec07e7 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.osgi-3.16.0.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.persistence.asm-2.7.4.jar b/IFCtoLBD_Python/jars/org.eclipse.persistence.asm-2.7.4.jar new file mode 100644 index 00000000..f31d43b8 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.persistence.asm-2.7.4.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.persistence.core-2.7.4.jar b/IFCtoLBD_Python/jars/org.eclipse.persistence.core-2.7.4.jar new file mode 100644 index 00000000..3094d09b Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.persistence.core-2.7.4.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.persistence.moxy-2.7.4.jar b/IFCtoLBD_Python/jars/org.eclipse.persistence.moxy-2.7.4.jar new file mode 100644 index 00000000..6e659285 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.persistence.moxy-2.7.4.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.persistence.sdo-2.7.4.jar b/IFCtoLBD_Python/jars/org.eclipse.persistence.sdo-2.7.4.jar new file mode 100644 index 00000000..72659953 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.persistence.sdo-2.7.4.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.sisu.inject-0.3.2.jar b/IFCtoLBD_Python/jars/org.eclipse.sisu.inject-0.3.2.jar new file mode 100644 index 00000000..f9251b1a Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.sisu.inject-0.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.sisu.plexus-0.3.2.jar b/IFCtoLBD_Python/jars/org.eclipse.sisu.plexus-0.3.2.jar new file mode 100644 index 00000000..e82b9bca Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.sisu.plexus-0.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/org.eclipse.text-3.10.300.jar b/IFCtoLBD_Python/jars/org.eclipse.text-3.10.300.jar new file mode 100644 index 00000000..985deca9 Binary files /dev/null and b/IFCtoLBD_Python/jars/org.eclipse.text-3.10.300.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-asm-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-asm-4.0.1.jar new file mode 100644 index 00000000..f60d38f0 Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-asm-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-basic-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-basic-4.0.1.jar new file mode 100644 index 00000000..54bf19b3 Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-basic-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-basic-tools-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-basic-tools-4.0.1.jar new file mode 100644 index 00000000..09e7b2c2 Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-basic-tools-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-dynamic-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-dynamic-4.0.1.jar new file mode 100644 index 00000000..b65a6c4e Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-dynamic-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-tf-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-tf-4.0.1.jar new file mode 100644 index 00000000..f8fded7a Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-tf-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/pfl-tf-tools-4.0.1.jar b/IFCtoLBD_Python/jars/pfl-tf-tools-4.0.1.jar new file mode 100644 index 00000000..3f60376b Binary files /dev/null and b/IFCtoLBD_Python/jars/pfl-tf-tools-4.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-cipher-1.4.jar b/IFCtoLBD_Python/jars/plexus-cipher-1.4.jar new file mode 100644 index 00000000..9227205c Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-cipher-1.4.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-classworlds-2.5.2.jar b/IFCtoLBD_Python/jars/plexus-classworlds-2.5.2.jar new file mode 100644 index 00000000..2560b3ff Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-classworlds-2.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-component-annotations-1.6.jar b/IFCtoLBD_Python/jars/plexus-component-annotations-1.6.jar new file mode 100644 index 00000000..22e433d9 Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-component-annotations-1.6.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-interpolation-1.21.jar b/IFCtoLBD_Python/jars/plexus-interpolation-1.21.jar new file mode 100644 index 00000000..8a681ef3 Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-interpolation-1.21.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-sec-dispatcher-1.3.jar b/IFCtoLBD_Python/jars/plexus-sec-dispatcher-1.3.jar new file mode 100644 index 00000000..9dc9f64b Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-sec-dispatcher-1.3.jar differ diff --git a/IFCtoLBD_Python/jars/plexus-utils-3.0.22.jar b/IFCtoLBD_Python/jars/plexus-utils-3.0.22.jar new file mode 100644 index 00000000..24997661 Binary files /dev/null and b/IFCtoLBD_Python/jars/plexus-utils-3.0.22.jar differ diff --git a/IFCtoLBD_Python/jars/pluginbase-1.5.182.jar b/IFCtoLBD_Python/jars/pluginbase-1.5.182.jar new file mode 100644 index 00000000..11499e7b Binary files /dev/null and b/IFCtoLBD_Python/jars/pluginbase-1.5.182.jar differ diff --git a/IFCtoLBD_Python/jars/policy-2.7.6.jar b/IFCtoLBD_Python/jars/policy-2.7.6.jar new file mode 100644 index 00000000..56b0e31c Binary files /dev/null and b/IFCtoLBD_Python/jars/policy-2.7.6.jar differ diff --git a/IFCtoLBD_Python/jars/protobuf-java-2.6.1.jar b/IFCtoLBD_Python/jars/protobuf-java-2.6.1.jar new file mode 100644 index 00000000..0fcd8089 Binary files /dev/null and b/IFCtoLBD_Python/jars/protobuf-java-2.6.1.jar differ diff --git a/IFCtoLBD_Python/jars/saaj-impl-1.5.1.jar b/IFCtoLBD_Python/jars/saaj-impl-1.5.1.jar new file mode 100644 index 00000000..fb57675e Binary files /dev/null and b/IFCtoLBD_Python/jars/saaj-impl-1.5.1.jar differ diff --git a/IFCtoLBD_Python/jars/sdo-eclipselink-plugin-2.3.2.jar b/IFCtoLBD_Python/jars/sdo-eclipselink-plugin-2.3.2.jar new file mode 100644 index 00000000..6bf266f8 Binary files /dev/null and b/IFCtoLBD_Python/jars/sdo-eclipselink-plugin-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/shared-1.5.182.jar b/IFCtoLBD_Python/jars/shared-1.5.182.jar new file mode 100644 index 00000000..64eaa282 Binary files /dev/null and b/IFCtoLBD_Python/jars/shared-1.5.182.jar differ diff --git a/IFCtoLBD_Python/jars/slf4j-api-1.6.2.jar b/IFCtoLBD_Python/jars/slf4j-api-1.6.2.jar new file mode 100644 index 00000000..621f5149 Binary files /dev/null and b/IFCtoLBD_Python/jars/slf4j-api-1.6.2.jar differ diff --git a/IFCtoLBD_Python/jars/slf4j-api-1.7.6.jar b/IFCtoLBD_Python/jars/slf4j-api-1.7.6.jar deleted file mode 100644 index 19aaf376..00000000 Binary files a/IFCtoLBD_Python/jars/slf4j-api-1.7.6.jar and /dev/null differ diff --git a/IFCtoLBD_Python/jars/stax-api-1.0.1.jar b/IFCtoLBD_Python/jars/stax-api-1.0.1.jar new file mode 100644 index 00000000..d9a16651 Binary files /dev/null and b/IFCtoLBD_Python/jars/stax-api-1.0.1.jar differ diff --git a/IFCtoLBD_Python/jars/stax-ex-1.8.1.jar b/IFCtoLBD_Python/jars/stax-ex-1.8.1.jar new file mode 100644 index 00000000..a200db53 Binary files /dev/null and b/IFCtoLBD_Python/jars/stax-ex-1.8.1.jar differ diff --git a/IFCtoLBD_Python/jars/stax2-api-4.1.jar b/IFCtoLBD_Python/jars/stax2-api-4.1.jar new file mode 100644 index 00000000..118ed33c Binary files /dev/null and b/IFCtoLBD_Python/jars/stax2-api-4.1.jar differ diff --git a/IFCtoLBD_Python/jars/streambuffer-1.5.7.jar b/IFCtoLBD_Python/jars/streambuffer-1.5.7.jar new file mode 100644 index 00000000..efc9a680 Binary files /dev/null and b/IFCtoLBD_Python/jars/streambuffer-1.5.7.jar differ diff --git a/IFCtoLBD_Python/jars/stringtemplate-3.2.1.jar b/IFCtoLBD_Python/jars/stringtemplate-3.2.1.jar new file mode 100644 index 00000000..d0e11b71 Binary files /dev/null and b/IFCtoLBD_Python/jars/stringtemplate-3.2.1.jar differ diff --git a/IFCtoLBD_Python/jars/txw2-2.3.2.jar b/IFCtoLBD_Python/jars/txw2-2.3.2.jar new file mode 100644 index 00000000..0d5ac012 Binary files /dev/null and b/IFCtoLBD_Python/jars/txw2-2.3.2.jar differ diff --git a/IFCtoLBD_Python/jars/vecmath-1.5.2.jar b/IFCtoLBD_Python/jars/vecmath-1.5.2.jar new file mode 100644 index 00000000..55fc1632 Binary files /dev/null and b/IFCtoLBD_Python/jars/vecmath-1.5.2.jar differ diff --git a/IFCtoLBD_Python/jars/woodstox-core-5.1.0.jar b/IFCtoLBD_Python/jars/woodstox-core-5.1.0.jar new file mode 100644 index 00000000..e34f2923 Binary files /dev/null and b/IFCtoLBD_Python/jars/woodstox-core-5.1.0.jar differ diff --git a/IFCtoLBD_Python/jars/xmlbeans-2.6.0.jar b/IFCtoLBD_Python/jars/xmlbeans-2.6.0.jar new file mode 100644 index 00000000..d1b66271 Binary files /dev/null and b/IFCtoLBD_Python/jars/xmlbeans-2.6.0.jar differ diff --git a/IFCtoRDF/src/main/java/be/ugent/IfcSpfParser.java b/IFCtoRDF/src/main/java/be/ugent/IfcSpfParser.java index 0de29553..eb71d707 100644 --- a/IFCtoRDF/src/main/java/be/ugent/IfcSpfParser.java +++ b/IFCtoRDF/src/main/java/be/ugent/IfcSpfParser.java @@ -1,11 +1,21 @@ package be.ugent; -import com.buildingsmart.tech.ifcowl.vo.IFCVO; +import java.io.BufferedReader; +import java.io.DataInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.Stack; + import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.io.*; -import java.util.*; +import com.buildingsmart.tech.ifcowl.vo.IFCVO; public class IfcSpfParser { @@ -16,7 +26,7 @@ public class IfcSpfParser { private static final Logger LOG = LoggerFactory.getLogger(RDFWriter.class); - public IfcSpfParser(InputStream inputStream){ + public IfcSpfParser(InputStream inputStream) { this.inputStream = inputStream; } @@ -65,73 +75,73 @@ private void parseIfcLineStatement(String line) { char ch = line.charAt(i); switch (state) { case 0: - if (ch == '=') { - ifcvo.setLineNum(toLong(sb.toString())); - sb.setLength(0); - state++; - continue; - } else if (Character.isDigit(ch)) - sb.append(ch); + if (ch == '=') { + ifcvo.setLineNum(toLong(sb.toString())); + sb.setLength(0); + state++; + continue; + } else if (Character.isDigit(ch)) + sb.append(ch); break; case 1: // ( - if (ch == '(') { - ifcvo.setName(sb.toString()); - sb.setLength(0); - state++; - continue; - } else if (ch == ';') { - ifcvo.setName(sb.toString()); - sb.setLength(0); - state = Integer.MAX_VALUE; - } else if (!Character.isWhitespace(ch)) - sb.append(ch); + if (ch == '(') { + ifcvo.setName(sb.toString()); + sb.setLength(0); + state++; + continue; + } else if (ch == ';') { + ifcvo.setName(sb.toString()); + sb.setLength(0); + state = Integer.MAX_VALUE; + } else if (!Character.isWhitespace(ch)) + sb.append(ch); break; case 2: // (... line started and doing (... - if (ch == '\'') { - state++; - } - if (ch == '(') { - listStack.push(current); - LinkedList tmp = new LinkedList<>(); + if (ch == '\'') { + state++; + } + if (ch == '(') { + listStack.push(current); + LinkedList tmp = new LinkedList<>(); + if (sb.toString().trim().length() > 0) + current.add(sb.toString().trim()); + sb.setLength(0); + current.add(tmp); + current = tmp; + clCount++; + } else if (ch == ')') { + if (clCount == 0) { if (sb.toString().trim().length() > 0) current.add(sb.toString().trim()); sb.setLength(0); - current.add(tmp); - current = tmp; - clCount++; - } else if (ch == ')') { - if (clCount == 0) { - if (sb.toString().trim().length() > 0) - current.add(sb.toString().trim()); - sb.setLength(0); - state = Integer.MAX_VALUE; // line is done - continue; - } else { - if (sb.toString().trim().length() > 0) - current.add(sb.toString().trim()); - sb.setLength(0); - clCount--; - current = listStack.pop(); - } - } else if (ch == ',') { + state = Integer.MAX_VALUE; // line is done + continue; + } else { if (sb.toString().trim().length() > 0) current.add(sb.toString().trim()); - current.add(Character.valueOf(ch)); - sb.setLength(0); - } else { - sb.append(ch); + clCount--; + current = listStack.pop(); } + } else if (ch == ',') { + if (sb.toString().trim().length() > 0) + current.add(sb.toString().trim()); + current.add(Character.valueOf(ch)); + + sb.setLength(0); + } else { + sb.append(ch); + } break; case 3: // (... - if (ch == '\'') { - state--; - } else { - sb.append(ch); - } + if (ch == '\'') { + state--; + } else { + sb.append(ch); + } break; default: - // Do nothing + // Do nothing } } linemap.put(ifcvo.getLineNum(), ifcvo); @@ -181,8 +191,7 @@ public boolean mapEntries() throws IOException { or = linemap.get(toLong(s.substring(1))); if (or == null) { - LOG.error("*ERROR 6*: Reference to non-existing line number in line: #" - + vo.getLineNum() + "=" + vo.getFullLineAfterNum()); + LOG.error("*ERROR 6*: Reference to non-existing line number in line: #" + vo.getLineNum() + "=" + vo.getFullLineAfterNum()); return false; } vo.getObjectList().set(i, or); @@ -195,8 +204,7 @@ public boolean mapEntries() throws IOException { Object o1 = tmpList.get(j); if (Character.class.isInstance(o)) { if ((Character) o != ',') { - LOG.error("*ERROR 16*: We found a character that is not a comma. " - + "That should not be possible!"); + LOG.error("*ERROR 16*: We found a character that is not a comma. " + "That should not be possible!"); } } else if (String.class.isInstance(o1)) { String s = (String) o1; @@ -209,8 +217,7 @@ public boolean mapEntries() throws IOException { else or = linemap.get(toLong(s.substring(1))); if (or == null) { - LOG.error("*ERROR 7*: Reference to non-existing line number in line: #" - + vo.getLineNum() + " - " + vo.getFullLineAfterNum()); + LOG.error("*ERROR 7*: Reference to non-existing line number in line: #" + vo.getLineNum() + " - " + vo.getFullLineAfterNum()); tmpList.set(j, "-"); return false; } else diff --git a/IFCtoRDF/src/main/java/be/ugent/IfcSpfReader.java b/IFCtoRDF/src/main/java/be/ugent/IfcSpfReader.java index 551f61dd..c5f80c78 100644 --- a/IFCtoRDF/src/main/java/be/ugent/IfcSpfReader.java +++ b/IFCtoRDF/src/main/java/be/ugent/IfcSpfReader.java @@ -70,90 +70,87 @@ public class IfcSpfReader { * without any input parameters for descriptions of runtime parameters. */ public static void main(String[] args) throws IOException { - String[] options = new String[] {"--baseURI", "--dir", "--keep-duplicates"}; - Boolean[] optionValues = new Boolean[] { false, false, false}; - - String timeLog = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime()); - DEFAULT_PATH = "http://linkedbuildingdata.net/ifc/resources" + timeLog + "/"; - - List argsList = new ArrayList<>(Arrays.asList(args)); - for (int i = 0; i < options.length; ++i) { - optionValues[i] = argsList.contains(options[i]); - } - - // State of flags has been stored in optionValues. Remove them from our - // option - // strings in order to make testing the required amount of positional - // arguments easier. - for (String flag : options) { - argsList.remove(flag); - } - - int numRequiredOptions = 0; - if(optionValues[FLAG_DIR]) - numRequiredOptions++; - else - numRequiredOptions = 2; - if(optionValues[FLAG_BASEURI]) - numRequiredOptions++; - - if (argsList.size() != numRequiredOptions) { - LOG.info("Usage:\n" - + " IfcSpfReader [--baseURI ] [--keep-duplicates] \n" - + " IfcSpfReader [--baseURI ] [--keep-duplicates] --dir \n"); - return; - } - - final List inputFiles; - final List outputFiles; - String baseURI = ""; - - if (optionValues[FLAG_DIR]) { - if(optionValues[FLAG_BASEURI]){ - baseURI = argsList.get(0); - inputFiles = showFiles(argsList.get(1)); - outputFiles = null; - } - else{ - baseURI = DEFAULT_PATH; - inputFiles = showFiles(argsList.get(0)); - outputFiles = null; - } - } else { - if(optionValues[FLAG_BASEURI]){ - baseURI = argsList.get(0); - inputFiles = Arrays.asList(new String[] { argsList.get(1) }); - outputFiles = Arrays.asList(new String[] { argsList.get(2) }); - } - else{ - baseURI = DEFAULT_PATH; - inputFiles = Arrays.asList(new String[] { argsList.get(0) }); - outputFiles = Arrays.asList(new String[] { argsList.get(1) }); - } - } - - for (int i = 0; i < inputFiles.size(); ++i) { - final String inputFile = inputFiles.get(i); - final String outputFile; - if (inputFile.endsWith(".ifc")) { - if (outputFiles == null) { - outputFile = inputFile.substring(0, inputFile.length() - 4) + ".ttl"; - } else { - outputFile = outputFiles.get(i); - } - - IfcSpfReader r = new IfcSpfReader(); - - r.removeDuplicates = !optionValues[FLAG_KEEP_DUPLICATES]; - - LOG.info("Converting file: " + inputFile + "\r\n"); - - r.setup(inputFile); - r.convert(inputFile, outputFile, baseURI); - } - } - - } + String[] options = new String[] { "--baseURI", "--dir", "--keep-duplicates" }; + Boolean[] optionValues = new Boolean[] { false, false, false }; + + String timeLog = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime()); + DEFAULT_PATH = "http://linkedbuildingdata.net/ifc/resources" + timeLog + "/"; + + List argsList = new ArrayList<>(Arrays.asList(args)); + for (int i = 0; i < options.length; ++i) { + optionValues[i] = argsList.contains(options[i]); + } + + // State of flags has been stored in optionValues. Remove them from our + // option + // strings in order to make testing the required amount of positional + // arguments easier. + for (String flag : options) { + argsList.remove(flag); + } + + int numRequiredOptions = 0; + if (optionValues[FLAG_DIR]) + numRequiredOptions++; + else + numRequiredOptions = 2; + if (optionValues[FLAG_BASEURI]) + numRequiredOptions++; + + if (argsList.size() != numRequiredOptions) { + LOG.info("Usage:\n" + " IfcSpfReader [--baseURI ] [--keep-duplicates] \n" + + " IfcSpfReader [--baseURI ] [--keep-duplicates] --dir \n"); + return; + } + + final List inputFiles; + final List outputFiles; + String baseURI = ""; + + if (optionValues[FLAG_DIR]) { + if (optionValues[FLAG_BASEURI]) { + baseURI = argsList.get(0); + inputFiles = showFiles(argsList.get(1)); + outputFiles = null; + } else { + baseURI = DEFAULT_PATH; + inputFiles = showFiles(argsList.get(0)); + outputFiles = null; + } + } else { + if (optionValues[FLAG_BASEURI]) { + baseURI = argsList.get(0); + inputFiles = Arrays.asList(new String[] { argsList.get(1) }); + outputFiles = Arrays.asList(new String[] { argsList.get(2) }); + } else { + baseURI = DEFAULT_PATH; + inputFiles = Arrays.asList(new String[] { argsList.get(0) }); + outputFiles = Arrays.asList(new String[] { argsList.get(1) }); + } + } + + for (int i = 0; i < inputFiles.size(); ++i) { + final String inputFile = inputFiles.get(i); + final String outputFile; + if (inputFile.endsWith(".ifc")) { + if (outputFiles == null) { + outputFile = inputFile.substring(0, inputFile.length() - 4) + ".ttl"; + } else { + outputFile = outputFiles.get(i); + } + + IfcSpfReader r = new IfcSpfReader(); + + r.removeDuplicates = !optionValues[FLAG_KEEP_DUPLICATES]; + + LOG.info("Converting file: " + inputFile + "\r\n"); + + r.setup(inputFile); + r.convert(inputFile, outputFile, baseURI); + } + } + + } /** * List all files in a particular directory. @@ -163,58 +160,58 @@ public static void main(String[] args) throws IOException { * @return a {@link java.util.List} of Strings denoting files. */ public static List showFiles(String dir) { - List goodFiles = new ArrayList<>(); + List goodFiles = new ArrayList<>(); - File folder = new File(dir); - File[] listOfFiles = folder.listFiles(); + File folder = new File(dir); + File[] listOfFiles = folder.listFiles(); - for (int i = 0; i < listOfFiles.length; i++) { - if (listOfFiles[i].isFile()) - goodFiles.add(listOfFiles[i].getAbsolutePath()); - else if (listOfFiles[i].isDirectory()) - goodFiles.addAll(showFiles(listOfFiles[i].getAbsolutePath())); - } - return goodFiles; - } + for (int i = 0; i < listOfFiles.length; i++) { + if (listOfFiles[i].isFile()) + goodFiles.add(listOfFiles[i].getAbsolutePath()); + else if (listOfFiles[i].isDirectory()) + goodFiles.addAll(showFiles(listOfFiles[i].getAbsolutePath())); + } + return goodFiles; + } private static String getExpressSchema(String ifcFile) { - try (FileInputStream fstream = new FileInputStream(ifcFile)) { - DataInputStream in = new DataInputStream(fstream); - BufferedReader br = new BufferedReader(new InputStreamReader(in)); - try { - String strLine; - while ((strLine = br.readLine()) != null) { - if (strLine.length() > 0) { - if (strLine.startsWith("FILE_SCHEMA")) { - if (strLine.indexOf("IFC2X3") != -1) - return "IFC2X3_TC1"; - if (strLine.indexOf("IFC4x3") != -1) - return "IFC4x3_RC1"; - if (strLine.indexOf("IFC4X3") != -1) - return "IFC4x3_RC1"; - if (strLine.indexOf("IFC4x3_RC1") != -1) - return "IFC4x3_RC1"; - if (strLine.indexOf("IFC4X3_RC1") != -1) - return "IFC4x3_RC1"; - if (strLine.indexOf("IFC4X1") != -1) - return "IFC4x1"; - if (strLine.indexOf("IFC4x1") != -1) - return "IFC4x1"; - if (strLine.indexOf("IFC4") != -1) - return "IFC4_ADD1"; - else - return ""; - } - } - } - } finally { - br.close(); - } - } catch (IOException e) { - e.printStackTrace(); - } - return ""; - } + try (FileInputStream fstream = new FileInputStream(ifcFile)) { + DataInputStream in = new DataInputStream(fstream); + BufferedReader br = new BufferedReader(new InputStreamReader(in)); + try { + String strLine; + while ((strLine = br.readLine()) != null) { + if (strLine.length() > 0) { + if (strLine.startsWith("FILE_SCHEMA")) { + if (strLine.indexOf("IFC2X3") != -1) + return "IFC2X3_TC1"; + if (strLine.indexOf("IFC4x3") != -1) + return "IFC4x3_RC1"; + if (strLine.indexOf("IFC4X3") != -1) + return "IFC4x3_RC1"; + if (strLine.indexOf("IFC4x3_RC1") != -1) + return "IFC4x3_RC1"; + if (strLine.indexOf("IFC4X3_RC1") != -1) + return "IFC4x3_RC1"; + if (strLine.indexOf("IFC4X1") != -1) + return "IFC4x1"; + if (strLine.indexOf("IFC4x1") != -1) + return "IFC4x1"; + if (strLine.indexOf("IFC4") != -1) + return "IFC4_ADD1"; + else + return ""; + } + } + } + } finally { + br.close(); + } + } catch (IOException e) { + e.printStackTrace(); + } + return ""; + } public static String slurp(InputStream in) throws IOException { StringBuilder out = new StringBuilder(); @@ -241,10 +238,8 @@ public void setup(String ifcFileIn) throws IOException { try { InputStream fis = IfcSpfReader.class.getResourceAsStream("/ent" + exp + ".ser"); - if (fis == null) - fis = IfcSpfReader.class.getResourceAsStream("/resources/ent" + exp + ".ser"); // Eclipse FIX - ObjectInputStream ois = new ObjectInputStream(fis); - + ObjectInputStream ois = new ObjectInputStream(fis); + ent = null; try { ent = (Map) ois.readObject(); @@ -255,11 +250,7 @@ public void setup(String ifcFileIn) throws IOException { } fis = IfcSpfReader.class.getResourceAsStream("/typ" + exp + ".ser"); - - if (fis == null) - fis = IfcSpfReader.class.getResourceAsStream("/resources/typ" + exp + ".ser"); // Eclipse FIX - ois = new ObjectInputStream(fis); typ = null; try { @@ -301,41 +292,39 @@ public void setup(String ifcFileIn) throws IOException { } @SuppressWarnings("unchecked") - public void convert(String ifcFile, String outputFile, String baseURI) throws IOException { - // CONVERSION - OntModel om = null; - - in = null; - HttpOp.setDefaultHttpClient(HttpClientBuilder.create().useSystemProperties().build()); - om = ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM_TRANS_INF); - in = IfcSpfReader.class.getResourceAsStream("/" + exp + ".ttl"); - if (in == null) - in = IfcSpfReader.class.getResourceAsStream("/resources/" + exp + ".ttl"); // Eclipse FIX - - om.read(in, null, "TTL"); - - try { - RDFWriter conv = new RDFWriter(om, new FileInputStream(ifcFile), baseURI, ent, typ, ontURI); - conv.setRemoveDuplicates(removeDuplicates); - conv.setIfcReader(this); - try (FileOutputStream out = new FileOutputStream(outputFile)) { - String s = "# baseURI: " + baseURI; - s += "\r\n# imports: " + ontURI + "\r\n\r\n"; - out.write(s.getBytes()); - LOG.info("Started parsing stream"); - conv.parseModel2Stream(out); - LOG.info("Finished!!"); - } - } catch (FileNotFoundException e1) { - e1.printStackTrace(); - } finally { - try { - in.close(); - } catch (Exception e1) { - e1.printStackTrace(); - } - } - } + public void convert(String ifcFile, String outputFile, String baseURI) throws IOException { + // CONVERSION + OntModel om = null; + + in = null; + HttpOp.setDefaultHttpClient(HttpClientBuilder.create().useSystemProperties().build()); + om = ModelFactory.createOntologyModel(OntModelSpec.OWL_DL_MEM_TRANS_INF); + in = IfcSpfReader.class.getResourceAsStream("/" + exp + ".ttl"); + + om.read(in, null, "TTL"); + + try { + RDFWriter conv = new RDFWriter(om, new FileInputStream(ifcFile), baseURI, ent, typ, ontURI); + conv.setRemoveDuplicates(removeDuplicates); + conv.setIfcReader(this); + try (FileOutputStream out = new FileOutputStream(outputFile)) { + String s = "# baseURI: " + baseURI; + s += "\r\n# imports: " + ontURI + "\r\n\r\n"; + out.write(s.getBytes()); + LOG.info("Started parsing stream"); + conv.parseModel2Stream(out); + LOG.info("Finished!!"); + } + } catch (FileNotFoundException e1) { + e1.printStackTrace(); + } finally { + try { + in.close(); + } catch (Exception e1) { + e1.printStackTrace(); + } + } + } public void setRemoveDuplicates(boolean val) { removeDuplicates = val; diff --git a/IFCtoRDF/src/main/java/be/ugent/RDFWriter.java b/IFCtoRDF/src/main/java/be/ugent/RDFWriter.java index 53eef0d5..cf4c465a 100644 --- a/IFCtoRDF/src/main/java/be/ugent/RDFWriter.java +++ b/IFCtoRDF/src/main/java/be/ugent/RDFWriter.java @@ -54,992 +54,977 @@ public class RDFWriter { - // input variables - private final String baseURI; - private final String ontNS; - private static final String EXPRESS_URI = "https://w3id.org/express"; - private static final String EXPRESS_NS = EXPRESS_URI + "#"; - private static final String LIST_URI = "https://w3id.org/list"; - private static final String LIST_NS = LIST_URI + "#"; - - //data from conversion - private int idCounter = 0; - private Map linemap = new HashMap<>(); - - // EXPRESS basis - private final Map ent; - private final Map typ; - - private StreamRDF ttlWriter; - private InputStream inputStream; - private final OntModel ontModel; - - private IfcSpfReader myIfcReaderStream; - - // for removing duplicates in line entries - private Map listOfUniqueResources = new HashMap<>(); - - // Taking care of avoiding duplicate resources - private Map propertyResourceMap = new HashMap<>(); - private Map resourceMap = new HashMap<>(); - - private boolean removeDuplicates = false; - - private static final Logger LOG = LoggerFactory.getLogger(RDFWriter.class); - - public RDFWriter(OntModel ontModel, InputStream inputStream, String baseURI, Map ent, Map typ, String ontURI) { - this.ontModel = ontModel; - this.inputStream = inputStream; - this.baseURI = baseURI; - this.ent = ent; - this.typ = typ; - this.ontNS = ontURI + "#"; - } - - public void setIfcReader(IfcSpfReader r) { - this.myIfcReaderStream = r; - } - - public void parseModel2Stream(OutputStream out) throws IOException { - // CHANGED: Jena 3.16.0 JO: 2020, added Context.emptyContext - ttlWriter = StreamRDFWriter.getWriterStream(out, RDFFormat.TURTLE_BLOCKS,Context.emptyContext); - ttlWriter.base(baseURI); - ttlWriter.prefix("ifc", ontNS); - ttlWriter.prefix("inst", baseURI); - ttlWriter.prefix("list", LIST_NS); - ttlWriter.prefix("express", EXPRESS_NS); - ttlWriter.prefix("rdf", Namespace.RDF); - ttlWriter.prefix("xsd", Namespace.XSD); - ttlWriter.prefix("owl", Namespace.OWL); - ttlWriter.start(); - - ttlWriter.triple(new Triple(NodeFactory.createURI(baseURI), RDF.type.asNode(), OWL.Ontology.asNode())); - ttlWriter.triple(new Triple(NodeFactory.createURI(baseURI), OWL.imports.asNode(), NodeFactory.createURI(ontNS))); - - IfcSpfParser parser = new IfcSpfParser(inputStream); - - // Read the whole file into a linemap Map object - parser.readModel(); - - LOG.info("Model parsed"); - - if (removeDuplicates) { - parser.resolveDuplicates(); + // input variables + private final String baseURI; + private final String ontNS; + private static final String EXPRESS_URI = "https://w3id.org/express"; + private static final String EXPRESS_NS = EXPRESS_URI + "#"; + private static final String LIST_URI = "https://w3id.org/list"; + private static final String LIST_NS = LIST_URI + "#"; + + // data from conversion + private int idCounter = 0; + private Map linemap = new HashMap<>(); + + // EXPRESS basis + private final Map ent; + private final Map typ; + + private StreamRDF ttlWriter; + private InputStream inputStream; + private final OntModel ontModel; + + private IfcSpfReader myIfcReaderStream; + + // for removing duplicates in line entries + private Map listOfUniqueResources = new HashMap<>(); + + // Taking care of avoiding duplicate resources + private Map propertyResourceMap = new HashMap<>(); + private Map resourceMap = new HashMap<>(); + + private boolean removeDuplicates = false; + + private static final Logger LOG = LoggerFactory.getLogger(RDFWriter.class); + + public RDFWriter(OntModel ontModel, InputStream inputStream, String baseURI, Map ent, Map typ, String ontURI) { + this.ontModel = ontModel; + this.inputStream = inputStream; + this.baseURI = baseURI; + this.ent = ent; + this.typ = typ; + this.ontNS = ontURI + "#"; } - // map entries of the linemap Map object to the ontology Model and make - // new instances in the model - boolean parsedSuccessfully = parser.mapEntries(); - - if (!parsedSuccessfully) - return; - - //recover data from parser - idCounter = parser.getIdCounter(); - linemap = parser.getLinemap(); - - LOG.info("Entries mapped, now creating instances"); - createInstances(); - - // Save memory - linemap.clear(); - linemap = null; - - ttlWriter.finish(); - } - - private void createInstances() throws IOException { - LOG.info("size : "+ ent.entrySet().size()); - for (Map.Entry entry : linemap.entrySet()) { - IFCVO ifcLineEntry = entry.getValue(); - String typeName = ""; - if (ent.containsKey(ifcLineEntry.getName())) - typeName = ent.get(ifcLineEntry.getName()).getName(); - else if (typ.containsKey(ifcLineEntry.getName())) - typeName = typ.get(ifcLineEntry.getName()).getName(); - - OntClass cl = ontModel.getOntClass(ontNS + typeName); - - Resource r = getResource(baseURI + typeName + "_" + ifcLineEntry.getLineNum(), cl); - if (r == null) { - // *ERROR 2 already hit: we can safely stop - return; - } - listOfUniqueResources.put(ifcLineEntry.getFullLineAfterNum(), r); - - LOG.info("-------------------------------"); - LOG.info(r.getLocalName()); - LOG.info("-------------------------------"); - - fillProperties(ifcLineEntry, r); + public void setIfcReader(IfcSpfReader r) { + this.myIfcReaderStream = r; } - // The map is used only to avoid duplicates. - // So, it can be cleared here - propertyResourceMap.clear(); - } - TypeVO typeRemembrance = null; + public void parseModel2Stream(OutputStream out) throws IOException { + // CHANGED: Jena 3.16.0 JO: 2020, added Context.emptyContext + ttlWriter = StreamRDFWriter.getWriterStream(out, RDFFormat.TURTLE_BLOCKS, Context.emptyContext); + ttlWriter.base(baseURI); + ttlWriter.prefix("ifc", ontNS); + ttlWriter.prefix("inst", baseURI); + ttlWriter.prefix("list", LIST_NS); + ttlWriter.prefix("express", EXPRESS_NS); + ttlWriter.prefix("rdf", Namespace.RDF); + ttlWriter.prefix("xsd", Namespace.XSD); + ttlWriter.prefix("owl", Namespace.OWL); + ttlWriter.start(); - private void fillProperties(IFCVO ifcLineEntry, Resource r) throws IOException { + ttlWriter.triple(new Triple(NodeFactory.createURI(baseURI), RDF.type.asNode(), OWL.Ontology.asNode())); + ttlWriter.triple(new Triple(NodeFactory.createURI(baseURI), OWL.imports.asNode(), NodeFactory.createURI(ontNS))); - EntityVO evo = ent.get(ExpressReader.formatClassName(ifcLineEntry.getName())); - TypeVO tvo = typ.get(ExpressReader.formatClassName(ifcLineEntry.getName())); + IfcSpfParser parser = new IfcSpfParser(inputStream); - if (tvo == null && evo == null) { - // This can actually never happen - // Namely, if this is the case, then ERROR 2 should fire first, - // after which the program stops - LOG.error("ERROR 3*: fillProperties 1 - Type nor entity exists: {}", ifcLineEntry.getName() ); - } + // Read the whole file into a linemap Map object + parser.readModel(); + + LOG.info("Model parsed"); - if (evo == null && tvo != null) { - //working with a TYPE - - typeRemembrance = null; - for (Object o : ifcLineEntry.getObjectList()) { - - if (Character.class.isInstance(o)) { - if ((Character) o != ',') { - LOG.error("*ERROR 17*: We found a character that is not a comma. That should not be possible!"); - } - } else if (String.class.isInstance(o)) { - LOG.warn("*WARNING 1*: fillProperties 2: unhandled type property found."); - } else if (IFCVO.class.isInstance(o)) { - LOG.warn("*WARNING 2*: fillProperties 2: unhandled type property found."); - } else if (LinkedList.class.isInstance(o)) { - LOG.info("fillProperties 3 - fillPropertiesHandleListObject(tvo)"); - fillPropertiesHandleListObject(r, tvo, o); + if (removeDuplicates) { + parser.resolveDuplicates(); } - } + + // map entries of the linemap Map object to the ontology Model and make + // new instances in the model + boolean parsedSuccessfully = parser.mapEntries(); + + if (!parsedSuccessfully) + return; + + // recover data from parser + idCounter = parser.getIdCounter(); + linemap = parser.getLinemap(); + + LOG.info("Entries mapped, now creating instances"); + createInstances(); + + // Save memory + linemap.clear(); + linemap = null; + + ttlWriter.finish(); } - if (tvo == null && evo != null) { - //working with an ENTITY - final String subject = evo.getName() + "_" + ifcLineEntry.getLineNum(); - - typeRemembrance = null; - int attributePointer = 0; - for (Object o : ifcLineEntry.getObjectList()) { - - if (Character.class.isInstance(o)) { - if ((Character) o != ',') { - LOG.error("*ERROR 18*: We found a character that is not a comma. That should not be possible!"); - } - } else if (String.class.isInstance(o)) { - LOG.info("fillProperties 4 - fillPropertiesHandleStringObject(evo)"); - attributePointer = fillPropertiesHandleStringObject(r, evo, subject, attributePointer, o); - } else if (IFCVO.class.isInstance(o)) { - LOG.info("fillProperties 5 - fillPropertiesHandleIfcObject(evo)"); - attributePointer = fillPropertiesHandleIfcObject(r, evo, attributePointer, o); - } else if (LinkedList.class.isInstance(o)) { - LOG.info("fillProperties 6 - fillPropertiesHandleListObject(evo)"); - attributePointer = fillPropertiesHandleListObject(r, evo, attributePointer, o); + private void createInstances() throws IOException { + LOG.info("size : " + ent.entrySet().size()); + for (Map.Entry entry : linemap.entrySet()) { + IFCVO ifcLineEntry = entry.getValue(); + String typeName = ""; + if (ent.containsKey(ifcLineEntry.getName())) + typeName = ent.get(ifcLineEntry.getName()).getName(); + else if (typ.containsKey(ifcLineEntry.getName())) + typeName = typ.get(ifcLineEntry.getName()).getName(); + + OntClass cl = ontModel.getOntClass(ontNS + typeName); + + Resource r = getResource(baseURI + typeName + "_" + ifcLineEntry.getLineNum(), cl); + if (r == null) { + // *ERROR 2 already hit: we can safely stop + return; + } + listOfUniqueResources.put(ifcLineEntry.getFullLineAfterNum(), r); + + LOG.info("-------------------------------"); + LOG.info(r.getLocalName()); + LOG.info("-------------------------------"); + + fillProperties(ifcLineEntry, r); } - } + // The map is used only to avoid duplicates. + // So, it can be cleared here + propertyResourceMap.clear(); } - } - // -------------------------------------- - // 6 MAIN FILLPROPERTIES METHODS - // -------------------------------------- + TypeVO typeRemembrance = null; - private int fillPropertiesHandleStringObject(Resource r, EntityVO evo, String subject, int attributePointer, Object o) throws IOException { - if (!((String) o).equals("$") && !((String) o).equals("*")) { + private void fillProperties(IFCVO ifcLineEntry, Resource r) throws IOException { - if (typ.get(ExpressReader.formatClassName((String) o)) == null) { - if ((evo != null) && (evo.getDerivedAttributeList() != null)) { - if (evo.getDerivedAttributeList().size() <= attributePointer) { - LOG.error("*ERROR 4*: Entity in IFC files has more attributes than it is allowed have: " + subject); - attributePointer++; - return attributePointer; - } + EntityVO evo = ent.get(ExpressReader.formatClassName(ifcLineEntry.getName())); + TypeVO tvo = typ.get(ExpressReader.formatClassName(ifcLineEntry.getName())); - final String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); - final String literalString = filterExtras((String) o); + if (tvo == null && evo == null) { + // This can actually never happen + // Namely, if this is the case, then ERROR 2 should fire first, + // after which the program stops + LOG.error("ERROR 3*: fillProperties 1 - Type nor entity exists: {}", ifcLineEntry.getName()); + } - OntProperty p = ontModel.getOntProperty(propURI); - OntResource range = p.getRange(); - if (range.isClass()) { - if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "ENUMERATION"))) { - // Check for ENUM - addEnumProperty(r, p, range, literalString); - } else if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "SELECT"))) { - // Check for SELECT - LOG.info("*OK 25*: found subClass of SELECT Class, now doing nothing with it: " + p + " - " + range.getLocalName() + " - " + literalString); - createLiteralProperty(r, p, range, literalString); - } else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - // Check for LIST - LOG.info("*WARNING 5*: found LIST property (but doing nothing with it): " + subject + " -- " + p + " - " + range.getLocalName() + " - " - + literalString); - } else { - createLiteralProperty(r, p, range, literalString); + if (evo == null && tvo != null) { + // working with a TYPE + + typeRemembrance = null; + for (Object o : ifcLineEntry.getObjectList()) { + + if (Character.class.isInstance(o)) { + if ((Character) o != ',') { + LOG.error("*ERROR 17*: We found a character that is not a comma. That should not be possible!"); + } + } else if (String.class.isInstance(o)) { + LOG.warn("*WARNING 1*: fillProperties 2: unhandled type property found."); + } else if (IFCVO.class.isInstance(o)) { + LOG.warn("*WARNING 2*: fillProperties 2: unhandled type property found."); + } else if (LinkedList.class.isInstance(o)) { + LOG.info("fillProperties 3 - fillPropertiesHandleListObject(tvo)"); + fillPropertiesHandleListObject(r, tvo, o); + } } - } else { - LOG.warn("*WARNING 7*: found other kind of property: " + p + " - " + range.getLocalName()); - } - } else { - LOG.warn("*WARNING 8*: Nothing happened. Not sure if this is good or bad, possible or not."); } - attributePointer++; - } else { - typeRemembrance = typ.get(ExpressReader.formatClassName((String) o)); - } - } else - attributePointer++; - return attributePointer; - } - - private int fillPropertiesHandleIfcObject(Resource r, EntityVO evo, int attributePointer, Object o) throws IOException { - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - - final String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); - EntityVO evorange = ent.get(ExpressReader.formatClassName(((IFCVO) o).getName())); - - OntProperty p = ontModel.getOntProperty(propURI); - OntResource rclass = ontModel.getOntResource(ontNS + evorange.getName()); - - Resource r1 = getResource(baseURI + evorange.getName() + "_" + ((IFCVO) o).getLineNum(), rclass); - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); - LOG.info("*OK 1*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); - } else { - LOG.warn("*WARNING 3*: Nothing happened. Not sure if this is good or bad, possible or not."); - } - attributePointer++; - return attributePointer; - } - - @SuppressWarnings("unchecked") - private int fillPropertiesHandleListObject(Resource r, EntityVO evo, int attributePointer, Object o) throws IOException { - - final LinkedList tmpList = (LinkedList) o; - LinkedList literals = new LinkedList<>(); - LinkedList listRemembranceResources = new LinkedList<>(); - LinkedList ifcVOs = new LinkedList<>(); - - // process list - for (int j = 0; j < tmpList.size(); j++) { - Object o1 = tmpList.get(j); - if (Character.class.isInstance(o1)) { - Character c = (Character) o1; - if (c != ',') { - LOG.error("*ERROR 12*: We found a character that is not a comma. That is odd. Check!"); + + if (tvo == null && evo != null) { + // working with an ENTITY + final String subject = evo.getName() + "_" + ifcLineEntry.getLineNum(); + + typeRemembrance = null; + int attributePointer = 0; + for (Object o : ifcLineEntry.getObjectList()) { + + if (Character.class.isInstance(o)) { + if ((Character) o != ',') { + LOG.error("*ERROR 18*: We found a character that is not a comma. That should not be possible!"); + } + } else if (String.class.isInstance(o)) { + LOG.info("fillProperties 4 - fillPropertiesHandleStringObject(evo)"); + attributePointer = fillPropertiesHandleStringObject(r, evo, subject, attributePointer, o); + } else if (IFCVO.class.isInstance(o)) { + LOG.info("fillProperties 5 - fillPropertiesHandleIfcObject(evo)"); + attributePointer = fillPropertiesHandleIfcObject(r, evo, attributePointer, o); + } else if (LinkedList.class.isInstance(o)) { + LOG.info("fillProperties 6 - fillPropertiesHandleListObject(evo)"); + attributePointer = fillPropertiesHandleListObject(r, evo, attributePointer, o); + } + } } - } else if (String.class.isInstance(o1)) { - TypeVO t = typ.get(ExpressReader.formatClassName((String) o1)); - if (typeRemembrance == null) { - if (t != null) { - typeRemembrance = t; - } else { - literals.add(filterExtras((String) o1)); - } - } else { - if (t != null) { - if (t == typeRemembrance) { - // Ignore and continue with life + } + + // -------------------------------------- + // 6 MAIN FILLPROPERTIES METHODS + // -------------------------------------- + + private int fillPropertiesHandleStringObject(Resource r, EntityVO evo, String subject, int attributePointer, Object o) throws IOException { + if (!((String) o).equals("$") && !((String) o).equals("*")) { + + if (typ.get(ExpressReader.formatClassName((String) o)) == null) { + if ((evo != null) && (evo.getDerivedAttributeList() != null)) { + if (evo.getDerivedAttributeList().size() <= attributePointer) { + LOG.error("*ERROR 4*: Entity in IFC files has more attributes than it is allowed have: " + subject); + attributePointer++; + return attributePointer; + } + + final String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); + final String literalString = filterExtras((String) o); + + OntProperty p = ontModel.getOntProperty(propURI); + OntResource range = p.getRange(); + if (range.isClass()) { + if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "ENUMERATION"))) { + // Check for ENUM + addEnumProperty(r, p, range, literalString); + } else if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "SELECT"))) { + // Check for SELECT + LOG.info("*OK 25*: found subClass of SELECT Class, now doing nothing with it: " + p + " - " + range.getLocalName() + " - " + literalString); + createLiteralProperty(r, p, range, literalString); + } else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + // Check for LIST + LOG.info("*WARNING 5*: found LIST property (but doing nothing with it): " + subject + " -- " + p + " - " + range.getLocalName() + " - " + literalString); + } else { + createLiteralProperty(r, p, range, literalString); + } + } else { + LOG.warn("*WARNING 7*: found other kind of property: " + p + " - " + range.getLocalName()); + } + } else { + LOG.warn("*WARNING 8*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + attributePointer++; } else { - // Panic - LOG.warn("*WARNING 37*: Found two different types in one list. This is worth checking."); + typeRemembrance = typ.get(ExpressReader.formatClassName((String) o)); } - } else { - literals.add(filterExtras((String) o1)); - } - } - } else if (IFCVO.class.isInstance(o1)) { - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + } else + attributePointer++; + return attributePointer; + } - String propURI = evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); - OntProperty p = ontModel.getOntProperty(ontNS + propURI); - OntResource typerange = p.getRange(); + private int fillPropertiesHandleIfcObject(Resource r, EntityVO evo, int attributePointer, Object o) throws IOException { + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - // EXPRESS LISTs - String listvaluepropURI = ontNS + typerange.getLocalName().substring(0, typerange.getLocalName().length() - 5); - OntResource listrange = ontModel.getOntResource(listvaluepropURI); + final String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); + EntityVO evorange = ent.get(ExpressReader.formatClassName(((IFCVO) o).getName())); - if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - LOG.error("*ERROR 22*: Found supposedly unhandled ListOfList, but this should not be possible."); - } else { - fillClassInstanceList(tmpList, typerange, p, r); - j = tmpList.size() - 1; - } - } else { - // EXPRESS SETs - EntityVO evorange = ent.get(ExpressReader.formatClassName(((IFCVO) o1).getName())); + OntProperty p = ontModel.getOntProperty(propURI); OntResource rclass = ontModel.getOntResource(ontNS + evorange.getName()); - Resource r1 = getResource(baseURI + evorange.getName() + "_" + ((IFCVO) o1).getLineNum(), rclass); + Resource r1 = getResource(baseURI + evorange.getName() + "_" + ((IFCVO) o).getLineNum(), rclass); ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); - LOG.info("*OK 5*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); - } + LOG.info("*OK 1*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); } else { - LOG.warn("*WARNING 13*: Nothing happened. Not sure if this is good or bad, possible or not."); + LOG.warn("*WARNING 3*: Nothing happened. Not sure if this is good or bad, possible or not."); } - } else if (LinkedList.class.isInstance(o1)) { - if (typeRemembrance != null) { - LinkedList tmpListInList = (LinkedList) o1; - for (int jj = 0; jj < tmpListInList.size(); jj++) { - Object o2 = tmpListInList.get(jj); - if (Character.class.isInstance(o2)) { - if ((Character) o2 != ',') { - LOG.error("*ERROR 20*: We found a character that is not a comma. That should not be possible"); - } - } else if (String.class.isInstance(o2)) { - literals.add(filterExtras((String) o2)); - } else if (IFCVO.class.isInstance(o2)) { - // Lists of IFC entities - LOG.warn("*WARNING 30: Nothing happened. Not sure if this is good or bad, possible or not."); - } else if (LinkedList.class.isInstance(o2)) { - // this happens only for types that are equivalent - // to lists (e.g. IfcLineIndex in IFC4_ADD1) - // in this case, the elements of the list should be - // treated as new instances that are equivalent to - // the correct lists - LinkedList tmpListInListInList = (LinkedList) o2; - for (int jjj = 0; jjj < tmpListInListInList.size(); jjj++) { - Object o3 = tmpListInListInList.get(jjj); - if (Character.class.isInstance(o3)) { - if ((Character) o3 != ',') { - LOG.error("*ERROR 24*: We found a character that is not a comma. That should not be possible"); - } - } else if (String.class.isInstance(o3)) { - literals.add(filterExtras((String) o3)); + attributePointer++; + return attributePointer; + } + + @SuppressWarnings("unchecked") + private int fillPropertiesHandleListObject(Resource r, EntityVO evo, int attributePointer, Object o) throws IOException { + + final LinkedList tmpList = (LinkedList) o; + LinkedList literals = new LinkedList<>(); + LinkedList listRemembranceResources = new LinkedList<>(); + LinkedList ifcVOs = new LinkedList<>(); + + // process list + for (int j = 0; j < tmpList.size(); j++) { + Object o1 = tmpList.get(j); + if (Character.class.isInstance(o1)) { + Character c = (Character) o1; + if (c != ',') { + LOG.error("*ERROR 12*: We found a character that is not a comma. That is odd. Check!"); + } + } else if (String.class.isInstance(o1)) { + TypeVO t = typ.get(ExpressReader.formatClassName((String) o1)); + if (typeRemembrance == null) { + if (t != null) { + typeRemembrance = t; + } else { + literals.add(filterExtras((String) o1)); + } } else { - LOG.warn("*WARNING 31: Nothing happened. Not sure if this is good or bad, possible or not."); + if (t != null) { + if (t == typeRemembrance) { + // Ignore and continue with life + } else { + // Panic + LOG.warn("*WARNING 37*: Found two different types in one list. This is worth checking."); + } + } else { + literals.add(filterExtras((String) o1)); + } + } + } else if (IFCVO.class.isInstance(o1)) { + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + + String propURI = evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); + OntProperty p = ontModel.getOntProperty(ontNS + propURI); + OntResource typerange = p.getRange(); + + if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + // EXPRESS LISTs + String listvaluepropURI = ontNS + typerange.getLocalName().substring(0, typerange.getLocalName().length() - 5); + OntResource listrange = ontModel.getOntResource(listvaluepropURI); + + if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + LOG.error("*ERROR 22*: Found supposedly unhandled ListOfList, but this should not be possible."); + } else { + fillClassInstanceList(tmpList, typerange, p, r); + j = tmpList.size() - 1; + } + } else { + // EXPRESS SETs + EntityVO evorange = ent.get(ExpressReader.formatClassName(((IFCVO) o1).getName())); + OntResource rclass = ontModel.getOntResource(ontNS + evorange.getName()); + + Resource r1 = getResource(baseURI + evorange.getName() + "_" + ((IFCVO) o1).getLineNum(), rclass); + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); + LOG.info("*OK 5*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); + } + } else { + LOG.warn("*WARNING 13*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } else if (LinkedList.class.isInstance(o1)) { + if (typeRemembrance != null) { + LinkedList tmpListInList = (LinkedList) o1; + for (int jj = 0; jj < tmpListInList.size(); jj++) { + Object o2 = tmpListInList.get(jj); + if (Character.class.isInstance(o2)) { + if ((Character) o2 != ',') { + LOG.error("*ERROR 20*: We found a character that is not a comma. That should not be possible"); + } + } else if (String.class.isInstance(o2)) { + literals.add(filterExtras((String) o2)); + } else if (IFCVO.class.isInstance(o2)) { + // Lists of IFC entities + LOG.warn("*WARNING 30: Nothing happened. Not sure if this is good or bad, possible or not."); + } else if (LinkedList.class.isInstance(o2)) { + // this happens only for types that are equivalent + // to lists (e.g. IfcLineIndex in IFC4_ADD1) + // in this case, the elements of the list should be + // treated as new instances that are equivalent to + // the correct lists + LinkedList tmpListInListInList = (LinkedList) o2; + for (int jjj = 0; jjj < tmpListInListInList.size(); jjj++) { + Object o3 = tmpListInListInList.get(jjj); + if (Character.class.isInstance(o3)) { + if ((Character) o3 != ',') { + LOG.error("*ERROR 24*: We found a character that is not a comma. That should not be possible"); + } + } else if (String.class.isInstance(o3)) { + literals.add(filterExtras((String) o3)); + } else { + LOG.warn("*WARNING 31: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } + + // exception. when a list points to a number of + // linked lists, it could be that there are multiple + // different entities are referenced + // example: #308= + // IFCINDEXEDPOLYCURVE(#309,(IFCLINEINDEX((1,2)),IFCARCINDEX((2,3,4)),IFCLINEINDEX((4,5)),IFCARCINDEX((5,6,7))),.F.); + // in this case, it is better to immediately print + // all relevant entities and properties for each + // case (e.g. IFCLINEINDEX((1,2))), + // and reset typeremembrance for the next case (e.g. + // IFCARCINDEX((4,5))). + + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + + OntClass cl = ontModel.getOntClass(ontNS + typeRemembrance.getName()); + Resource r1 = getResource(baseURI + typeRemembrance.getName() + "_" + idCounter, cl); + idCounter++; + OntResource range = ontModel.getOntResource(ontNS + typeRemembrance.getName()); + + // finding listrange + String[] primTypeArr = typeRemembrance.getPrimarytype().split(" "); + String primType = ontNS + primTypeArr[primTypeArr.length - 1].replace(";", ""); + OntResource listrange = ontModel.getOntResource(primType); + + List literalObjects = new ArrayList<>(); + literalObjects.addAll(literals); + addDirectRegularListProperty(r1, range, listrange, literalObjects, 0); + + // put relevant top list items in a list, which + // can then be parsed at the end of this method + listRemembranceResources.add(r1); + } + + typeRemembrance = null; + literals.clear(); + } else { + LOG.warn("*WARNING 35: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } + } else { + LinkedList tmpListInList = (LinkedList) o1; + for (int jj = 0; jj < tmpListInList.size(); jj++) { + Object o2 = tmpListInList.get(jj); + if (Character.class.isInstance(o2)) { + if ((Character) o2 != ',') { + LOG.error("*ERROR 21*: We found a character that is not a comma. That should not be possible"); + } + } else if (String.class.isInstance(o2)) { + literals.add(filterExtras((String) o2)); + } else if (IFCVO.class.isInstance(o2)) { + ifcVOs.add((IFCVO) o2); + } else if (LinkedList.class.isInstance(o2)) { + LOG.error("*ERROR 19*: Found List of List of List. Code cannot handle that."); + } else { + LOG.warn("*WARNING 32*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + + String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); + OntProperty p = ontModel.getOntProperty(propURI); + OntClass typerange = p.getRange().asClass(); + + if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + String listvaluepropURI = typerange.getLocalName().substring(0, typerange.getLocalName().length() - 5); + OntResource listrange = ontModel.getOntResource(ontNS + listvaluepropURI); + Resource r1 = getResource(baseURI + listvaluepropURI + "_" + idCounter, listrange); + idCounter++; + List objects = new ArrayList<>(); + if (!ifcVOs.isEmpty()) { + objects.addAll(ifcVOs); + OntResource listcontentrange = getListContentType(listrange.asClass()); + addDirectRegularListProperty(r1, listrange, listcontentrange, objects, 1); + } else if (!literals.isEmpty()) { + objects.addAll(literals); + OntResource listcontentrange = getListContentType(listrange.asClass()); + addDirectRegularListProperty(r1, listrange, listcontentrange, objects, 0); + } + listRemembranceResources.add(r1); + } else { + LOG.error("*ERROR 23*: Impossible: found a list that is actually not a list."); + } + } + + literals.clear(); + ifcVOs.clear(); } - } - - // exception. when a list points to a number of - // linked lists, it could be that there are multiple - // different entities are referenced - // example: #308= - // IFCINDEXEDPOLYCURVE(#309,(IFCLINEINDEX((1,2)),IFCARCINDEX((2,3,4)),IFCLINEINDEX((4,5)),IFCARCINDEX((5,6,7))),.F.); - // in this case, it is better to immediately print - // all relevant entities and properties for each - // case (e.g. IFCLINEINDEX((1,2))), - // and reset typeremembrance for the next case (e.g. - // IFCARCINDEX((4,5))). - - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - - OntClass cl = ontModel.getOntClass(ontNS + typeRemembrance.getName()); - Resource r1 = getResource(baseURI + typeRemembrance.getName() + "_" + idCounter, cl); - idCounter++; - OntResource range = ontModel.getOntResource(ontNS + typeRemembrance.getName()); - - // finding listrange - String[] primTypeArr = typeRemembrance.getPrimarytype().split(" "); - String primType = ontNS + primTypeArr[primTypeArr.length - 1].replace(";", ""); - OntResource listrange = ontModel.getOntResource(primType); - - List literalObjects = new ArrayList<>(); - literalObjects.addAll(literals); - addDirectRegularListProperty(r1, range, listrange, literalObjects, 0); - - // put relevant top list items in a list, which - // can then be parsed at the end of this method - listRemembranceResources.add(r1); - } - - typeRemembrance = null; - literals.clear(); - } else { - LOG.warn("*WARNING 35: Nothing happened. Not sure if this is good or bad, possible or not."); - } - } - } else { - LinkedList tmpListInList = (LinkedList) o1; - for (int jj = 0; jj < tmpListInList.size(); jj++) { - Object o2 = tmpListInList.get(jj); - if (Character.class.isInstance(o2)) { - if ((Character) o2 != ',') { - LOG.error("*ERROR 21*: We found a character that is not a comma. That should not be possible"); - } - } else if (String.class.isInstance(o2)) { - literals.add(filterExtras((String) o2)); - } else if (IFCVO.class.isInstance(o2)) { - ifcVOs.add((IFCVO) o2); - } else if (LinkedList.class.isInstance(o2)) { - LOG.error("*ERROR 19*: Found List of List of List. Code cannot handle that."); } else { - LOG.warn("*WARNING 32*: Nothing happened. Not sure if this is good or bad, possible or not."); + LOG.error("*ERROR 11*: We found something that is not an IFC entity, not a list, not a string, and not a character. Check!"); } - } - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + } + // interpret parse + if (!literals.isEmpty()) { String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); OntProperty p = ontModel.getOntProperty(propURI); - OntClass typerange = p.getRange().asClass(); - - if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - String listvaluepropURI = typerange.getLocalName().substring(0, typerange.getLocalName().length() - 5); - OntResource listrange = ontModel.getOntResource(ontNS + listvaluepropURI); - Resource r1 = getResource(baseURI + listvaluepropURI + "_" + idCounter, listrange); - idCounter++; - List objects = new ArrayList<>(); - if (!ifcVOs.isEmpty()) { - objects.addAll(ifcVOs); - OntResource listcontentrange = getListContentType(listrange.asClass()); - addDirectRegularListProperty(r1, listrange, listcontentrange, objects, 1); - } else if (!literals.isEmpty()) { - objects.addAll(literals); - OntResource listcontentrange = getListContentType(listrange.asClass()); - addDirectRegularListProperty(r1, listrange, listcontentrange, objects, 0); - } - listRemembranceResources.add(r1); + OntResource typerange = p.getRange(); + if (typeRemembrance != null) { + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) + addRegularListProperty(r, p, literals, typeRemembrance); + else { + addSinglePropertyFromTypeRemembrance(r, p, literals.getFirst(), typeRemembrance); + if (literals.size() > 1) { + LOG.warn("*WARNING 37*: We are ignoring a number of literal values here."); + } + } + } else { + LOG.warn("*WARNING 15*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + typeRemembrance = null; + } else if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) + addRegularListProperty(r, p, literals, null); + else + for (int i = 0; i < literals.size(); i++) + createLiteralProperty(r, p, typerange, literals.get(i)); } else { - LOG.error("*ERROR 23*: Impossible: found a list that is actually not a list."); + LOG.warn("*WARNING 14*: Nothing happened. Not sure if this is good or bad, possible or not."); } - } + } + if (!listRemembranceResources.isEmpty()) { + if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { + String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); + OntProperty p = ontModel.getOntProperty(propURI); + addListPropertyToGivenEntities(r, p, listRemembranceResources); + } + } - literals.clear(); - ifcVOs.clear(); + attributePointer++; + return attributePointer; + } + + @SuppressWarnings({ "unchecked" }) + private void fillPropertiesHandleListObject(Resource r, TypeVO tvo, Object o) throws IOException { + + final LinkedList tmpList = (LinkedList) o; + LinkedList literals = new LinkedList<>(); + + // process list + for (int j = 0; j < tmpList.size(); j++) { + Object o1 = tmpList.get(j); + if (Character.class.isInstance(o1)) { + Character c = (Character) o1; + if (c != ',') { + LOG.error("*ERROR 13*: We found a character that is not a comma. That is odd. Check!"); + } + } else if (String.class.isInstance(o1)) { + if (typ.get(ExpressReader.formatClassName((String) o1)) != null && typeRemembrance == null) { + typeRemembrance = typ.get(ExpressReader.formatClassName((String) o1)); + } else + literals.add(filterExtras((String) o1)); + } else if (IFCVO.class.isInstance(o1)) { + if ((tvo != null)) { + LOG.warn("*WARNING 16*: found TYPE that is equivalent to a list if IFC entities - below is the code used when this happens for ENTITIES with a list of ENTITIES"); + } else { + LOG.warn("*WARNING 19*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } else if (LinkedList.class.isInstance(o1) && typeRemembrance != null) { + LinkedList tmpListInlist = (LinkedList) o1; + for (int jj = 0; jj < tmpListInlist.size(); jj++) { + Object o2 = tmpListInlist.get(jj); + if (String.class.isInstance(o2)) { + literals.add(filterExtras((String) o2)); + } else { + LOG.warn("*WARNING 18*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + } + } else { + LOG.error("*ERROR 10*: We found something that is not an IFC entity, not a list, not a string, and not a character. Check!"); + } + } + + // interpret parse + if (literals.isEmpty()) { + if (typeRemembrance != null) { + if ((tvo != null)) { + LOG.warn("*WARNING 20*: this part of the code has not been checked - it can't be correct"); + + String[] primtypeArr = tvo.getPrimarytype().split(" "); + String primType = primtypeArr[primtypeArr.length - 1].replace(";", "") + "_" + primtypeArr[0].substring(0, 1).toUpperCase() + primtypeArr[0].substring(1).toLowerCase(); + String typeURI = ontNS + primType; + OntResource range = ontModel.getOntResource(typeURI); + OntResource listrange = getListContentType(range.asClass()); + List literalObjects = new ArrayList<>(); + literalObjects.addAll(literals); + addDirectRegularListProperty(r, range, listrange, literalObjects, 0); + } else { + LOG.warn("*WARNING 21*: Nothing happened. Not sure if this is good or bad, possible or not."); + } + typeRemembrance = null; + } else if ((tvo != null)) { + String[] primTypeArr = tvo.getPrimarytype().split(" "); + String primType = primTypeArr[primTypeArr.length - 1].replace(";", "") + "_" + primTypeArr[0].substring(0, 1).toUpperCase() + primTypeArr[0].substring(1).toLowerCase(); + String typeURI = ontNS + primType; + OntResource range = ontModel.getOntResource(typeURI); + List literalObjects = new ArrayList<>(); + literalObjects.addAll(literals); + OntResource listrange = getListContentType(range.asClass()); + addDirectRegularListProperty(r, range, listrange, literalObjects, 0); + } } - } else { - LOG.error("*ERROR 11*: We found something that is not an IFC entity, not a list, not a string, and not a character. Check!"); - } } - // interpret parse - if (!literals.isEmpty()) { - String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); - OntProperty p = ontModel.getOntProperty(propURI); - OntResource typerange = p.getRange(); - if (typeRemembrance != null) { - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) - addRegularListProperty(r, p, literals, typeRemembrance); - else { - addSinglePropertyFromTypeRemembrance(r, p, literals.getFirst(), typeRemembrance); - if (literals.size() > 1) { - LOG.warn("*WARNING 37*: We are ignoring a number of literal values here."); + // -------------------------------------- + // EVERYTHING TO DO WITH LISTS + // -------------------------------------- + + private void addSinglePropertyFromTypeRemembrance(Resource r, OntProperty p, String literalString, TypeVO typeremembrance) throws IOException { + OntResource range = ontModel.getOntResource(ontNS + typeremembrance.getName()); + + if (range.isClass()) { + if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "ENUMERATION"))) { + // Check for ENUM + addEnumProperty(r, p, range, literalString); + } else if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "SELECT"))) { + // Check for SELECT + LOG.info("*OK 24*: found subClass of SELECT Class, now doing nothing with it: " + p + " - " + range.getLocalName() + " - " + literalString); + createLiteralProperty(r, p, range, literalString); + } else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + // Check for LIST + LOG.warn("*WARNING 24*: found LIST property (but doing nothing with it): " + p + " - " + range.getLocalName() + " - " + literalString); + } else { + createLiteralProperty(r, p, range, literalString); } - } } else { - LOG.warn("*WARNING 15*: Nothing happened. Not sure if this is good or bad, possible or not."); + LOG.warn("*WARNING 26*: found other kind of property: " + p + " - " + range.getLocalName()); } - typeRemembrance = null; - } else if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - if (typerange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) - addRegularListProperty(r, p, literals, null); - else - for (int i = 0; i < literals.size(); i++) - createLiteralProperty(r, p, typerange, literals.get(i)); - } else { - LOG.warn("*WARNING 14*: Nothing happened. Not sure if this is good or bad, possible or not."); - } } - if (!listRemembranceResources.isEmpty()) { - if ((evo != null) && (evo.getDerivedAttributeList() != null) && (evo.getDerivedAttributeList().size() > attributePointer)) { - String propURI = ontNS + evo.getDerivedAttributeList().get(attributePointer).getLowerCaseName(); - OntProperty p = ontModel.getOntProperty(propURI); - addListPropertyToGivenEntities(r, p, listRemembranceResources); - } + + private void addEnumProperty(Resource r, Property p, OntResource range, String literalString) throws IOException { + for (ExtendedIterator instances = range.asClass().listInstances(); instances.hasNext();) { + OntResource rangeInstance = instances.next(); + if (rangeInstance.getProperty(RDFS.label).getString().equalsIgnoreCase(filterPoints(literalString))) { + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), rangeInstance.asNode())); + LOG.info("*OK 2*: added ENUM statement " + r.getLocalName() + " - " + p.getLocalName() + " - " + rangeInstance.getLocalName()); + return; + } + } + LOG.error("*ERROR 9*: did not find ENUM individual for " + literalString + "\r\nQuitting the application without output!"); } - attributePointer++; - return attributePointer; - } + private void addLiteralToResource(Resource r1, OntProperty valueProp, String xsdType, String literalString) throws IOException { + if ("integer".equalsIgnoreCase(xsdType)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDinteger)); + else if ("double".equalsIgnoreCase(xsdType)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDdouble)); + else if ("hexBinary".equalsIgnoreCase(xsdType)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDhexBinary)); + else if ("boolean".equalsIgnoreCase(xsdType)) { + if (".F.".equalsIgnoreCase(literalString)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral("false", XSDDatatype.XSDboolean)); + else if (".T.".equalsIgnoreCase(literalString)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral("true", XSDDatatype.XSDboolean)); + else + LOG.warn("*WARNING 10*: found odd boolean value: " + literalString); + } else if ("logical".equalsIgnoreCase(xsdType)) { + if (".F.".equalsIgnoreCase(literalString)) + addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "FALSE")); + else if (".T.".equalsIgnoreCase(literalString)) + addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "TRUE")); + else if (".U.".equalsIgnoreCase(literalString)) + addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "UNKNOWN")); + else + LOG.warn("*WARNING 9*: found odd logical value: " + literalString); + } else if ("string".equalsIgnoreCase(xsdType)) + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDstring)); + else + addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString)); - @SuppressWarnings({ "unchecked" }) - private void fillPropertiesHandleListObject(Resource r, TypeVO tvo, Object o) throws IOException { + LOG.info("*OK 4*: added literal: " + r1.getLocalName() + " - " + valueProp + " - " + literalString); + } - final LinkedList tmpList = (LinkedList) o; - LinkedList literals = new LinkedList<>(); + // LIST HANDLING + private void addDirectRegularListProperty(Resource r, OntResource range, OntResource listrange, List el, int mySwitch) throws IOException { - // process list - for (int j = 0; j < tmpList.size(); j++) { - Object o1 = tmpList.get(j); - if (Character.class.isInstance(o1)) { - Character c = (Character) o1; - if (c != ',') { - LOG.error("*ERROR 13*: We found a character that is not a comma. That is odd. Check!"); - } - } else if (String.class.isInstance(o1)) { - if (typ.get(ExpressReader.formatClassName((String) o1)) != null && typeRemembrance == null) { - typeRemembrance = typ.get(ExpressReader.formatClassName((String) o1)); - } else - literals.add(filterExtras((String) o1)); - } else if (IFCVO.class.isInstance(o1)) { - if ((tvo != null)) { - LOG.warn("*WARNING 16*: found TYPE that is equivalent to a list if IFC entities - below is the code used when this happens for ENTITIES with a list of ENTITIES"); - } else { - LOG.warn("*WARNING 19*: Nothing happened. Not sure if this is good or bad, possible or not."); + if (range.isClass()) { + if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + LOG.warn("*WARNING 27*: Found unhandled ListOfList"); + } else { + List reslist = new ArrayList<>(); + // createrequirednumberofresources + for (int i = 0; i < el.size(); i++) { + if (i == 0) + reslist.add(r); + else { + Resource r1 = getResource(baseURI + range.getLocalName() + "_" + idCounter, range); + reslist.add(r1); + idCounter++; + } + } + + if (mySwitch == 0) { + // bind the properties with literal values only if we are + // actually dealing with literals + List literals = new ArrayList<>(); + for (int i = 0; i < el.size(); i++) { + literals.add((String) el.get(i)); + } + addListInstanceProperties(reslist, literals, listrange); + } else { + for (int i = 0; i < reslist.size(); i++) { + Resource r1 = reslist.get(i); + IFCVO vo = (IFCVO) el.get(i); + EntityVO evorange = ent.get(ExpressReader.formatClassName((vo).getName())); + OntResource rclass = ontModel.getOntResource(ontNS + evorange.getName()); + Resource r2 = getResource(baseURI + evorange.getName() + "_" + (vo).getLineNum(), rclass); + LOG.info("*OK 21*: created resource: " + r2.getLocalName()); + idCounter++; + ttlWriter.triple(new Triple(r1.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r2.asNode())); + LOG.info("*OK 22*: added property: " + r1.getLocalName() + " - " + "-hasContents-" + " - " + r2.getLocalName()); + + if (i < el.size() - 1) { + ttlWriter.triple(new Triple(r1.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), reslist.get(i + 1).asNode())); + LOG.info("*OK 23*: added property: " + r1.getLocalName() + " - " + "-hasNext-" + " - " + reslist.get(i + 1).getLocalName()); + } + } + } + } } - } else if (LinkedList.class.isInstance(o1) && typeRemembrance != null) { - LinkedList tmpListInlist = (LinkedList) o1; - for (int jj = 0; jj < tmpListInlist.size(); jj++) { - Object o2 = tmpListInlist.get(jj); - if (String.class.isInstance(o2)) { - literals.add(filterExtras((String) o2)); - } else { - LOG.warn("*WARNING 18*: Nothing happened. Not sure if this is good or bad, possible or not."); - } + } + + private void addRegularListProperty(Resource r, OntProperty p, List el, TypeVO typeRemembranceOverride) throws IOException { + OntResource range = p.getRange(); + if (range.isClass()) { + OntResource listrange = getListContentType(range.asClass()); + if (typeRemembranceOverride != null) { + OntClass cla = ontModel.getOntClass(ontNS + typeRemembranceOverride.getName()); + listrange = cla; + } + + if (listrange == null) { + LOG.error("*ERROR 14*: We could not find what kind of content is expected in the LIST."); + } else { + if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + LOG.warn("*WARNING 28*: Found unhandled ListOfList"); + } else { + List reslist = new ArrayList<>(); + // createrequirednumberofresources + for (int ii = 0; ii < el.size(); ii++) { + Resource r1 = getResource(baseURI + range.getLocalName() + "_" + idCounter, range); + reslist.add(r1); + idCounter++; + if (ii == 0) { + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); + LOG.info("*OK 7*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); + } + } + // bindtheproperties + addListInstanceProperties(reslist, el, listrange); + } + } } - } else { - LOG.error("*ERROR 10*: We found something that is not an IFC entity, not a list, not a string, and not a character. Check!"); - } } - // interpret parse - if (literals.isEmpty()) { - if (typeRemembrance != null) { - if ((tvo != null)) { - LOG.warn("*WARNING 20*: this part of the code has not been checked - it can't be correct"); - - String[] primtypeArr = tvo.getPrimarytype().split(" "); - String primType = primtypeArr[primtypeArr.length - 1].replace(";", "") + "_" + primtypeArr[0].substring(0, 1).toUpperCase() + primtypeArr[0].substring(1).toLowerCase(); - String typeURI = ontNS + primType; - OntResource range = ontModel.getOntResource(typeURI); - OntResource listrange = getListContentType(range.asClass()); - List literalObjects = new ArrayList<>(); - literalObjects.addAll(literals); - addDirectRegularListProperty(r, range, listrange, literalObjects, 0); + private void createLiteralProperty(Resource r, OntResource p, OntResource range, String literalString) throws IOException { + String xsdType = getXSDTypeFromRange(range); + if (xsdType == null) { + xsdType = getXSDTypeFromRangeExpensiveMethod(range); + } + if (xsdType != null) { + String xsdTypeCAP = Character.toUpperCase(xsdType.charAt(0)) + xsdType.substring(1); + OntProperty valueProp = ontModel.getOntProperty(EXPRESS_NS + "has" + xsdTypeCAP); + String key = valueProp.toString() + ":" + xsdType + ":" + literalString; + + Resource r1 = propertyResourceMap.get(key); + if (r1 == null) { + r1 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); + ttlWriter.triple(new Triple(r1.asNode(), RDF.type.asNode(), range.asNode())); + LOG.info("*OK 17*: created resource: " + r1.getLocalName()); + idCounter++; + propertyResourceMap.put(key, r1); + addLiteralToResource(r1, valueProp, xsdType, literalString); + } + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); + LOG.info("*OK 3*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); } else { - LOG.warn("*WARNING 21*: Nothing happened. Not sure if this is good or bad, possible or not."); + LOG.error("*ERROR 1*: XSD type not found for: " + p + " - " + range.getURI() + " - " + literalString); } - typeRemembrance = null; - } else if ((tvo != null)) { - String[] primTypeArr = tvo.getPrimarytype().split(" "); - String primType = primTypeArr[primTypeArr.length - 1].replace(";", "") + "_" + primTypeArr[0].substring(0, 1).toUpperCase() + primTypeArr[0].substring(1).toLowerCase(); - String typeURI = ontNS + primType; - OntResource range = ontModel.getOntResource(typeURI); - List literalObjects = new ArrayList<>(); - literalObjects.addAll(literals); - OntResource listrange = getListContentType(range.asClass()); - addDirectRegularListProperty(r, range, listrange, literalObjects, 0); - } - } - } - - // -------------------------------------- - // EVERYTHING TO DO WITH LISTS - // -------------------------------------- - - private void addSinglePropertyFromTypeRemembrance(Resource r, OntProperty p, String literalString, TypeVO typeremembrance) throws IOException { - OntResource range = ontModel.getOntResource(ontNS + typeremembrance.getName()); - - if (range.isClass()) { - if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "ENUMERATION"))) { - // Check for ENUM - addEnumProperty(r, p, range, literalString); - } else if (range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "SELECT"))) { - // Check for SELECT - LOG.info("*OK 24*: found subClass of SELECT Class, now doing nothing with it: " + p + " - " + range.getLocalName() + " - " + literalString); - createLiteralProperty(r, p, range, literalString); - } else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - // Check for LIST - LOG.warn("*WARNING 24*: found LIST property (but doing nothing with it): " + p + " - " + range.getLocalName() + " - " + literalString); - } else { - createLiteralProperty(r, p, range, literalString); - } - } else { - LOG.warn("*WARNING 26*: found other kind of property: " + p + " - " + range.getLocalName()); } - } - - private void addEnumProperty(Resource r, Property p, OntResource range, String literalString) throws IOException { - for (ExtendedIterator instances = range.asClass().listInstances(); instances.hasNext();) { - OntResource rangeInstance = instances.next(); - if (rangeInstance.getProperty(RDFS.label).getString().equalsIgnoreCase(filterPoints(literalString))) { - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), rangeInstance.asNode())); - LOG.info("*OK 2*: added ENUM statement " + r.getLocalName() + " - " + p.getLocalName() + " - " + rangeInstance.getLocalName()); - return; - } - } - LOG.error("*ERROR 9*: did not find ENUM individual for " + literalString + "\r\nQuitting the application without output!"); - } - - private void addLiteralToResource(Resource r1, OntProperty valueProp, String xsdType, String literalString) throws IOException { - if ("integer".equalsIgnoreCase(xsdType)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDinteger)); - else if ("double".equalsIgnoreCase(xsdType)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDdouble)); - else if ("hexBinary".equalsIgnoreCase(xsdType)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDhexBinary)); - else if ("boolean".equalsIgnoreCase(xsdType)) { - if (".F.".equalsIgnoreCase(literalString)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral("false", XSDDatatype.XSDboolean)); - else if (".T.".equalsIgnoreCase(literalString)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral("true", XSDDatatype.XSDboolean)); - else - LOG.warn("*WARNING 10*: found odd boolean value: " + literalString); - } else if ("logical".equalsIgnoreCase(xsdType)) { - if (".F.".equalsIgnoreCase(literalString)) - addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "FALSE")); - else if (".T.".equalsIgnoreCase(literalString)) - addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "TRUE")); - else if (".U.".equalsIgnoreCase(literalString)) - addProperty(r1, valueProp, ontModel.getResource(EXPRESS_NS + "UNKNOWN")); - else - LOG.warn("*WARNING 9*: found odd logical value: " + literalString); - } else if ("string".equalsIgnoreCase(xsdType)) - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString, XSDDatatype.XSDstring)); - else - addLiteral(r1, valueProp, ResourceFactory.createTypedLiteral(literalString)); - - LOG.info("*OK 4*: added literal: " + r1.getLocalName() + " - " + valueProp + " - " + literalString); - } - - // LIST HANDLING - private void addDirectRegularListProperty(Resource r, OntResource range, OntResource listrange, List el, int mySwitch) throws IOException { - - if (range.isClass()) { - if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - LOG.warn("*WARNING 27*: Found unhandled ListOfList"); - } else { - List reslist = new ArrayList<>(); - // createrequirednumberofresources - for (int i = 0; i < el.size(); i++) { - if (i == 0) - reslist.add(r); - else { - Resource r1 = getResource(baseURI + range.getLocalName() + "_" + idCounter, range); - reslist.add(r1); - idCounter++; - } - } - if (mySwitch == 0) { - // bind the properties with literal values only if we are - // actually dealing with literals - List literals = new ArrayList<>(); - for (int i = 0; i < el.size(); i++) { - literals.add((String) el.get(i)); - } - addListInstanceProperties(reslist, literals, listrange); - } else { - for (int i = 0; i < reslist.size(); i++) { - Resource r1 = reslist.get(i); - IFCVO vo = (IFCVO) el.get(i); - EntityVO evorange = ent.get(ExpressReader.formatClassName((vo).getName())); - OntResource rclass = ontModel.getOntResource(ontNS + evorange.getName()); - Resource r2 = getResource(baseURI + evorange.getName() + "_" + (vo).getLineNum(), rclass); - LOG.info("*OK 21*: created resource: " + r2.getLocalName()); - idCounter++; - ttlWriter.triple(new Triple(r1.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r2.asNode())); - LOG.info("*OK 22*: added property: " + r1.getLocalName() + " - " + "-hasContents-" + " - " + r2.getLocalName()); - - if (i < el.size() - 1) { - ttlWriter.triple(new Triple(r1.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), reslist.get(i + 1).asNode())); - LOG.info("*OK 23*: added property: " + r1.getLocalName() + " - " + "-hasNext-" + " - " + reslist.get(i + 1).getLocalName()); + private void addListPropertyToGivenEntities(Resource r, OntProperty p, List el) throws IOException { + OntResource range = p.getRange(); + if (range.isClass()) { + OntResource listrange = getListContentType(range.asClass()); + + if (listrange != null) { + if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + LOG.info("*OK 20*: Handling list of list"); + listrange = range; + } + for (int i = 0; i < el.size(); i++) { + Resource r1 = el.get(i); + Resource r2 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); // was + // listrange + ttlWriter.triple(new Triple(r2.asNode(), RDF.type.asNode(), range.asNode())); + LOG.info("*OK 14*: added property: " + r2.getLocalName() + " - rdf:type - " + range.getLocalName()); + idCounter++; + Resource r3 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); + + if (i == 0) { + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r2.asNode())); + LOG.info("*OK 15*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r2.getLocalName()); + } + ttlWriter.triple(new Triple(r2.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r1.asNode())); + LOG.info("*OK 16*: added property: " + r2.getLocalName() + " - " + "-hasContents-" + " - " + r1.getLocalName()); + + if (i < el.size() - 1) { + ttlWriter.triple(new Triple(r2.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), r3.asNode())); + LOG.info("*OK 17*: added property: " + r2.getLocalName() + " - " + "-hasNext-" + " - " + r3.getLocalName()); + } + } } - } } - } } - } - - private void addRegularListProperty(Resource r, OntProperty p, List el, TypeVO typeRemembranceOverride) throws IOException { - OntResource range = p.getRange(); - if (range.isClass()) { - OntResource listrange = getListContentType(range.asClass()); - if (typeRemembranceOverride != null) { - OntClass cla = ontModel.getOntClass(ontNS + typeRemembranceOverride.getName()); - listrange = cla; - } - - if (listrange == null) { - LOG.error("*ERROR 14*: We could not find what kind of content is expected in the LIST."); - } else { - if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - LOG.warn("*WARNING 28*: Found unhandled ListOfList"); - } else { - List reslist = new ArrayList<>(); - // createrequirednumberofresources - for (int ii = 0; ii < el.size(); ii++) { - Resource r1 = getResource(baseURI + range.getLocalName() + "_" + idCounter, range); - reslist.add(r1); - idCounter++; - if (ii == 0) { - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); - LOG.info("*OK 7*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); + + private void fillClassInstanceList(LinkedList tmpList, OntResource typerange, OntProperty p, Resource r) throws IOException { + List reslist = new ArrayList<>(); + List entlist = new ArrayList<>(); + + // createrequirednumberofresources + for (int i = 0; i < tmpList.size(); i++) { + if (IFCVO.class.isInstance(tmpList.get(i))) { + Resource r1 = getResource(baseURI + typerange.getLocalName() + "_" + idCounter, typerange); + reslist.add(r1); + idCounter++; + entlist.add((IFCVO) tmpList.get(i)); + if (i == 0) { + ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); + LOG.info("*OK 13*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); + } } - } - // bindtheproperties - addListInstanceProperties(reslist, el, listrange); } - } - } - } - private void createLiteralProperty(Resource r, OntResource p, OntResource range, String literalString) throws IOException { - String xsdType = getXSDTypeFromRange(range); - if (xsdType == null) { - xsdType = getXSDTypeFromRangeExpensiveMethod(range); - } - if (xsdType != null) { - String xsdTypeCAP = Character.toUpperCase(xsdType.charAt(0)) + xsdType.substring(1); - OntProperty valueProp = ontModel.getOntProperty(EXPRESS_NS + "has" + xsdTypeCAP); - String key = valueProp.toString() + ":" + xsdType + ":" + literalString; - - Resource r1 = propertyResourceMap.get(key); - if (r1 == null) { - r1 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); - ttlWriter.triple(new Triple(r1.asNode(), RDF.type.asNode(), range.asNode())); - LOG.info("*OK 17*: created resource: " + r1.getLocalName()); - idCounter++; - propertyResourceMap.put(key, r1); - addLiteralToResource(r1, valueProp, xsdType, literalString); - } - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); - LOG.info("*OK 3*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); - } else { - LOG.error("*ERROR 1*: XSD type not found for: " + p + " - " + range.getURI() + " - " + literalString); + addClassInstanceListProperties(reslist, entlist); } - } - private void addListPropertyToGivenEntities(Resource r, OntProperty p, List el) throws IOException { - OntResource range = p.getRange(); - if (range.isClass()) { - OntResource listrange = getListContentType(range.asClass()); + private void addClassInstanceListProperties(List reslist, List entlist) throws IOException { + OntProperty listp = ontModel.getOntProperty(LIST_NS + "hasContents"); + OntProperty isfollowed = ontModel.getOntProperty(LIST_NS + "hasNext"); + + for (int i = 0; i < reslist.size(); i++) { + Resource r = reslist.get(i); + + OntResource rclass = null; + EntityVO evorange = ent.get(ExpressReader.formatClassName(entlist.get(i).getName())); + if (evorange == null) { + TypeVO typerange = typ.get(ExpressReader.formatClassName(entlist.get(i).getName())); + rclass = ontModel.getOntResource(ontNS + typerange.getName()); + Resource r1 = getResource(baseURI + typerange.getName() + "_" + entlist.get(i).getLineNum(), rclass); + ttlWriter.triple(new Triple(r.asNode(), listp.asNode(), r1.asNode())); + LOG.info("*OK 8*: created property: " + r.getLocalName() + " - " + listp.getLocalName() + " - " + r1.getLocalName()); + } else { + rclass = ontModel.getOntResource(ontNS + evorange.getName()); + Resource r1 = getResource(baseURI + evorange.getName() + "_" + entlist.get(i).getLineNum(), rclass); + ttlWriter.triple(new Triple(r.asNode(), listp.asNode(), r1.asNode())); + LOG.info("*OK 9*: created property: " + r.getLocalName() + " - " + listp.getLocalName() + " - " + r1.getLocalName()); + } - if (listrange != null) { - if (listrange.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - LOG.info("*OK 20*: Handling list of list"); - listrange = range; - } - for (int i = 0; i < el.size(); i++) { - Resource r1 = el.get(i); - Resource r2 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); // was - // listrange - ttlWriter.triple(new Triple(r2.asNode(), RDF.type.asNode(), range.asNode())); - LOG.info("*OK 14*: added property: " + r2.getLocalName() + " - rdf:type - " + range.getLocalName()); - idCounter++; - Resource r3 = ResourceFactory.createResource(baseURI + range.getLocalName() + "_" + idCounter); - - if (i == 0) { - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r2.asNode())); - LOG.info("*OK 15*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r2.getLocalName()); - } - ttlWriter.triple(new Triple(r2.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r1.asNode())); - LOG.info("*OK 16*: added property: " + r2.getLocalName() + " - " + "-hasContents-" + " - " + r1.getLocalName()); - - if (i < el.size() - 1) { - ttlWriter.triple(new Triple(r2.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), r3.asNode())); - LOG.info("*OK 17*: added property: " + r2.getLocalName() + " - " + "-hasNext-" + " - " + r3.getLocalName()); - } + if (i < reslist.size() - 1) { + ttlWriter.triple(new Triple(r.asNode(), isfollowed.asNode(), reslist.get(i + 1).asNode())); + LOG.info("*OK 10*: created property: " + r.getLocalName() + " - " + isfollowed.getLocalName() + " - " + reslist.get(i + 1).getLocalName()); + } } - } } - } - - private void fillClassInstanceList(LinkedList tmpList, OntResource typerange, OntProperty p, Resource r) throws IOException { - List reslist = new ArrayList<>(); - List entlist = new ArrayList<>(); - - // createrequirednumberofresources - for (int i = 0; i < tmpList.size(); i++) { - if (IFCVO.class.isInstance(tmpList.get(i))) { - Resource r1 = getResource(baseURI + typerange.getLocalName() + "_" + idCounter, typerange); - reslist.add(r1); - idCounter++; - entlist.add((IFCVO) tmpList.get(i)); - if (i == 0) { - ttlWriter.triple(new Triple(r.asNode(), p.asNode(), r1.asNode())); - LOG.info("*OK 13*: added property: " + r.getLocalName() + " - " + p.getLocalName() + " - " + r1.getLocalName()); + + private void addListInstanceProperties(List reslist, List listelements, OntResource listrange) throws IOException { + // GetListType + String xsdType = getXSDTypeFromRange(listrange); + if (xsdType == null) + xsdType = getXSDTypeFromRangeExpensiveMethod(listrange); + if (xsdType != null) { + String xsdTypeCAP = Character.toUpperCase(xsdType.charAt(0)) + xsdType.substring(1); + OntProperty valueProp = ontModel.getOntProperty(EXPRESS_NS + "has" + xsdTypeCAP); + + // Adding Content only if found + for (int i = 0; i < reslist.size(); i++) { + Resource r = reslist.get(i); + String literalString = listelements.get(i); + String key = valueProp.toString() + ":" + xsdType + ":" + literalString; + Resource r2 = propertyResourceMap.get(key); + if (r2 == null) { + r2 = ResourceFactory.createResource(baseURI + listrange.getLocalName() + "_" + idCounter); + ttlWriter.triple(new Triple(r2.asNode(), RDF.type.asNode(), listrange.asNode())); + LOG.info("*OK 19*: created resource: " + r2.getLocalName()); + idCounter++; + propertyResourceMap.put(key, r2); + addLiteralToResource(r2, valueProp, xsdType, literalString); + } + ttlWriter.triple(new Triple(r.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r2.asNode())); + LOG.info("*OK 11*: added property: " + r.getLocalName() + " - " + "-hasContents-" + " - " + r2.getLocalName()); + + if (i < listelements.size() - 1) { + ttlWriter.triple(new Triple(r.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), reslist.get(i + 1).asNode())); + LOG.info("*OK 12*: added property: " + r.getLocalName() + " - " + "-hasNext-" + " - " + reslist.get(i + 1).getLocalName()); + } + } + } else { + LOG.error("*ERROR 5*: XSD type not found for: " + listrange.getLocalName()); } - } } - addClassInstanceListProperties(reslist, entlist); - } - - private void addClassInstanceListProperties(List reslist, List entlist) throws IOException { - OntProperty listp = ontModel.getOntProperty(LIST_NS + "hasContents"); - OntProperty isfollowed = ontModel.getOntProperty(LIST_NS + "hasNext"); - - for (int i = 0; i < reslist.size(); i++) { - Resource r = reslist.get(i); - - OntResource rclass = null; - EntityVO evorange = ent.get(ExpressReader.formatClassName(entlist.get(i).getName())); - if (evorange == null) { - TypeVO typerange = typ.get(ExpressReader.formatClassName(entlist.get(i).getName())); - rclass = ontModel.getOntResource(ontNS + typerange.getName()); - Resource r1 = getResource(baseURI + typerange.getName() + "_" + entlist.get(i).getLineNum(), rclass); - ttlWriter.triple(new Triple(r.asNode(), listp.asNode(), r1.asNode())); - LOG.info("*OK 8*: created property: " + r.getLocalName() + " - " + listp.getLocalName() + " - " + r1.getLocalName()); - } else { - rclass = ontModel.getOntResource(ontNS + evorange.getName()); - Resource r1 = getResource(baseURI + evorange.getName() + "_" + entlist.get(i).getLineNum(), rclass); - ttlWriter.triple(new Triple(r.asNode(), listp.asNode(), r1.asNode())); - LOG.info("*OK 9*: created property: " + r.getLocalName() + " - " + listp.getLocalName() + " - " + r1.getLocalName()); - } - - if (i < reslist.size() - 1) { - ttlWriter.triple(new Triple(r.asNode(), isfollowed.asNode(), reslist.get(i + 1).asNode())); - LOG.info("*OK 10*: created property: " + r.getLocalName() + " - " + isfollowed.getLocalName() + " - " + reslist.get(i + 1).getLocalName()); - } - } - } - - private void addListInstanceProperties(List reslist, List listelements, OntResource listrange) throws IOException { - // GetListType - String xsdType = getXSDTypeFromRange(listrange); - if (xsdType == null) - xsdType = getXSDTypeFromRangeExpensiveMethod(listrange); - if (xsdType != null) { - String xsdTypeCAP = Character.toUpperCase(xsdType.charAt(0)) + xsdType.substring(1); - OntProperty valueProp = ontModel.getOntProperty(EXPRESS_NS + "has" + xsdTypeCAP); - - // Adding Content only if found - for (int i = 0; i < reslist.size(); i++) { - Resource r = reslist.get(i); - String literalString = listelements.get(i); - String key = valueProp.toString() + ":" + xsdType + ":" + literalString; - Resource r2 = propertyResourceMap.get(key); - if (r2 == null) { - r2 = ResourceFactory.createResource(baseURI + listrange.getLocalName() + "_" + idCounter); - ttlWriter.triple(new Triple(r2.asNode(), RDF.type.asNode(), listrange.asNode())); - LOG.info("*OK 19*: created resource: " + r2.getLocalName()); - idCounter++; - propertyResourceMap.put(key, r2); - addLiteralToResource(r2, valueProp, xsdType, literalString); + // HELPER METHODS + private String filterExtras(String txt) { + StringBuilder sb = new StringBuilder(); + for (int n = 0; n < txt.length(); n++) { + char ch = txt.charAt(n); + switch (ch) { + case '\'': + break; + case '=': + break; + default: + sb.append(ch); + } } - ttlWriter.triple(new Triple(r.asNode(), ontModel.getOntProperty(LIST_NS + "hasContents").asNode(), r2.asNode())); - LOG.info("*OK 11*: added property: " + r.getLocalName() + " - " + "-hasContents-" + " - " + r2.getLocalName()); + return sb.toString(); + } - if (i < listelements.size() - 1) { - ttlWriter.triple(new Triple(r.asNode(), ontModel.getOntProperty(LIST_NS + "hasNext").asNode(), reslist.get(i + 1).asNode())); - LOG.info("*OK 12*: added property: " + r.getLocalName() + " - " + "-hasNext-" + " - " + reslist.get(i + 1).getLocalName()); + private String filterPoints(String txt) { + StringBuilder sb = new StringBuilder(); + for (int n = 0; n < txt.length(); n++) { + char ch = txt.charAt(n); + switch (ch) { + case '.': + break; + default: + sb.append(ch); + } } - } - } else { - LOG.error("*ERROR 5*: XSD type not found for: " + listrange.getLocalName()); + return sb.toString(); } - } - - // HELPER METHODS - private String filterExtras(String txt) { - StringBuilder sb = new StringBuilder(); - for (int n = 0; n < txt.length(); n++) { - char ch = txt.charAt(n); - switch (ch) { - case '\'': - break; - case '=': - break; - default: - sb.append(ch); - } + + private void addLiteral(Resource r, OntProperty valueProp, Literal l) { + ttlWriter.triple(new Triple(r.asNode(), valueProp.asNode(), l.asNode())); } - return sb.toString(); - } - - private String filterPoints(String txt) { - StringBuilder sb = new StringBuilder(); - for (int n = 0; n < txt.length(); n++) { - char ch = txt.charAt(n); - switch (ch) { - case '.': - break; - default: - sb.append(ch); - } + + private void addProperty(Resource r, OntProperty valueProp, Resource r1) { + ttlWriter.triple(new Triple(r.asNode(), valueProp.asNode(), r1.asNode())); } - return sb.toString(); - } - - private void addLiteral(Resource r, OntProperty valueProp, Literal l) { - ttlWriter.triple(new Triple(r.asNode(), valueProp.asNode(), l.asNode())); - } - - private void addProperty(Resource r, OntProperty valueProp, Resource r1) { - ttlWriter.triple(new Triple(r.asNode(), valueProp.asNode(), r1.asNode())); - } - - private OntResource getListContentType(OntClass range) throws IOException { - String resourceURI = range.asClass().getURI(); - if ((EXPRESS_NS + "STRING_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "STRING_List"))) - return ontModel.getOntResource(EXPRESS_NS + "STRING"); - else if ((EXPRESS_NS + "REAL_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "REAL_List"))) - return ontModel.getOntResource(EXPRESS_NS + "REAL"); - else if ((EXPRESS_NS + "INTEGER_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "INTEGER_List"))) - return ontModel.getOntResource(EXPRESS_NS + "INTEGER"); - else if ((EXPRESS_NS + "BINARY_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BINARY_List"))) - return ontModel.getOntResource(EXPRESS_NS + "BINARY"); - else if ((EXPRESS_NS + "BOOLEAN_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BOOLEAN_List"))) - return ontModel.getOntResource(EXPRESS_NS + "BOOLEAN"); - else if ((EXPRESS_NS + "LOGICAL_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "LOGICAL_List"))) - return ontModel.getOntResource(EXPRESS_NS + "LOGICAL"); - else if ((EXPRESS_NS + "NUMBER_List").equalsIgnoreCase(resourceURI) - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "NUMBER_List"))) - return ontModel.getOntResource(EXPRESS_NS + "NUMBER"); - else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { - String listvaluepropURI = ontNS + range.getLocalName().substring(0, range.getLocalName().length() - 5); - return ontModel.getOntResource(listvaluepropURI); - } else { - LOG.warn("*WARNING 29*: did not find listcontenttype for : {}", range.getLocalName()); - return null; + + private OntResource getListContentType(OntClass range) throws IOException { + String resourceURI = range.asClass().getURI(); + if ((EXPRESS_NS + "STRING_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "STRING_List"))) + return ontModel.getOntResource(EXPRESS_NS + "STRING"); + else if ((EXPRESS_NS + "REAL_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "REAL_List"))) + return ontModel.getOntResource(EXPRESS_NS + "REAL"); + else if ((EXPRESS_NS + "INTEGER_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "INTEGER_List"))) + return ontModel.getOntResource(EXPRESS_NS + "INTEGER"); + else if ((EXPRESS_NS + "BINARY_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BINARY_List"))) + return ontModel.getOntResource(EXPRESS_NS + "BINARY"); + else if ((EXPRESS_NS + "BOOLEAN_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BOOLEAN_List"))) + return ontModel.getOntResource(EXPRESS_NS + "BOOLEAN"); + else if ((EXPRESS_NS + "LOGICAL_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "LOGICAL_List"))) + return ontModel.getOntResource(EXPRESS_NS + "LOGICAL"); + else if ((EXPRESS_NS + "NUMBER_List").equalsIgnoreCase(resourceURI) || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "NUMBER_List"))) + return ontModel.getOntResource(EXPRESS_NS + "NUMBER"); + else if (range.asClass().hasSuperClass(ontModel.getOntClass(LIST_NS + "OWLList"))) { + String listvaluepropURI = ontNS + range.getLocalName().substring(0, range.getLocalName().length() - 5); + return ontModel.getOntResource(listvaluepropURI); + } else { + LOG.warn("*WARNING 29*: did not find listcontenttype for : {}", range.getLocalName()); + return null; + } } - } - - private String getXSDTypeFromRange(OntResource range) { - if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "STRING") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "STRING"))) - return "string"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "REAL") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "REAL"))) - return "double"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "INTEGER") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "INTEGER"))) - return "integer"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "BINARY") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BINARY"))) - return "hexBinary"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "BOOLEAN") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BOOLEAN"))) - return "boolean"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "LOGICAL") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "LOGICAL"))) - return "logical"; - else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "NUMBER") - || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "NUMBER"))) - return "double"; - else - return null; - } - - private String getXSDTypeFromRangeExpensiveMethod(OntResource range) { - ExtendedIterator iter = range.asClass().listSuperClasses(); - while (iter.hasNext()) { - OntClass superc = iter.next(); - if (!superc.isAnon()) { - String type = getXSDTypeFromRange(superc); - if (type != null) - return type; - } + + private String getXSDTypeFromRange(OntResource range) { + if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "STRING") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "STRING"))) + return "string"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "REAL") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "REAL"))) + return "double"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "INTEGER") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "INTEGER"))) + return "integer"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "BINARY") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BINARY"))) + return "hexBinary"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "BOOLEAN") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "BOOLEAN"))) + return "boolean"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "LOGICAL") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "LOGICAL"))) + return "logical"; + else if (range.asClass().getURI().equalsIgnoreCase(EXPRESS_NS + "NUMBER") || range.asClass().hasSuperClass(ontModel.getOntClass(EXPRESS_NS + "NUMBER"))) + return "double"; + else + return null; } - return null; - } - - private Resource getResource(String uri, OntResource rclass) { - Resource r = resourceMap.get(uri); - if (r == null) { - r = ResourceFactory.createResource(uri); - resourceMap.put(uri, r); - try { - ttlWriter.triple(new Triple(r.asNode(), RDF.type.asNode(), rclass.asNode())); - } catch (Exception e) { - LOG.error("*ERROR 2*: getResource failed for " + uri); + + private String getXSDTypeFromRangeExpensiveMethod(OntResource range) { + ExtendedIterator iter = range.asClass().listSuperClasses(); + while (iter.hasNext()) { + OntClass superc = iter.next(); + if (!superc.isAnon()) { + String type = getXSDTypeFromRange(superc); + if (type != null) + return type; + } + } return null; - } } - return r; - } - public boolean isRemoveDuplicates() { - return removeDuplicates; - } + private Resource getResource(String uri, OntResource rclass) { + Resource r = resourceMap.get(uri); + if (r == null) { + r = ResourceFactory.createResource(uri); + resourceMap.put(uri, r); + try { + ttlWriter.triple(new Triple(r.asNode(), RDF.type.asNode(), rclass.asNode())); + } catch (Exception e) { + LOG.error("*ERROR 2*: getResource failed for " + uri); + return null; + } + } + return r; + } + + public boolean isRemoveDuplicates() { + return removeDuplicates; + } - public void setRemoveDuplicates(boolean removeDuplicates) { - this.removeDuplicates = removeDuplicates; - } + public void setRemoveDuplicates(boolean removeDuplicates) { + this.removeDuplicates = removeDuplicates; + } } diff --git a/README.md b/README.md index 93615ae2..d7b7a83e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # IFCtoLBD -Version 2.4 +Version 2.6 Contributors: Jyrki Oraskari, Mathias Bonduel, Kris McGlinn, Anna Wagner, and Pieter Pauwels. @@ -17,10 +17,12 @@ It is recommended to use Java 8. It can be [downloaded from Oracle](https://www. ## Precompiled binaries -Precompiled applications are included in this repository. +Precompiled applications are available in the published release. -* Desktop application: [IFCtoLBD-Desktop Java 8](https://github.com/jyrkioraskari/IFCtoLBD/blob/master/IFCtoLBD-Desktop_Java_8.jar?raw=true) -* The special Java 12 version: [IFCtoLBD-Desktop Java 12](https://github.com/jyrkioraskari/IFCtoLBD/blob/master/IFCtoLBD-Desktop_Java_12.jar?raw=true) +* Desktop application: IFCtoLBD-Desktop Java 8 +* The special Java 12 version: IFCtoLBD-Desktop Java 12 + +Also Windows 10 installations are availabe. These are runnable JAR files. If the Java installation is fine, the file can be run by clicking it. When converting large files, `run.bat` can be used. It is also faster since it allows the program to use more memory for the calculation. @@ -127,6 +129,8 @@ http://lbd.arch.rwth-aachen.de/IFCtoLBD_OpenAPI/apidocs/ui/swagger.json ### Docker for the Open API interface +Install Docker Desktop: https://www.docker.com/get-started + Command-line commands needed to start the server at your computer; ``` docker pull jyrkioraskari/ifc2lbdopenapi:latest @@ -148,23 +152,23 @@ http://localhost:8081/IFCtoLBD_OpenAPI ## License This project is released under the open source [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) -## Cite this +## How to cite ``` -@software{jyrki_oraskari_2020_4009498, +@software{jyrki_oraskari_2020_4056940, author = {Jyrki Oraskari and Mathias Bonduel and Kris McGlinn and Pieter Pauwels and Freddy Priyatna and Anna Wagner and - Joel Lehtonen OH64K}, - title = {jyrkioraskari/IFCtoLBD: IFCtoLBD 2.2}, - month = aug, + Joel Lehtonen}, + title = {jyrkioraskari/IFCtoLBD: IFCtoLBD 2.5}, + month = sep, year = 2020, publisher = {Zenodo}, - version = {2.2}, - doi = {10.5281/zenodo.4009498}, - url = {https://doi.org/10.5281/zenodo.4009498} + version = {2.5}, + doi = {10.5281/zenodo.4056940}, + url = {https://doi.org/10.5281/zenodo.4056940} } ``` diff --git a/converter/pom.xml b/converter/pom.xml index f49100e6..f5a44312 100644 --- a/converter/pom.xml +++ b/converter/pom.xml @@ -4,7 +4,7 @@ 4.0.0 io.github.jyrkioraskari IFCtoLBD - 2.4 + 2.6 IFC to LBD Converter @@ -67,6 +67,11 @@ ${project.build.finalName} + + de.rwth-aachen.dc.lbd + IFCtoLBDGeometry + 2.6 + org.apache.commons commons-lang3 diff --git a/converter/src/license/THIRD-PARTY.properties b/converter/src/license/THIRD-PARTY.properties new file mode 100644 index 00000000..fa21d05a --- /dev/null +++ b/converter/src/license/THIRD-PARTY.properties @@ -0,0 +1,52 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License 2.0 +# - Apache Software Licenses +# - BSD Style License +# - BSD licence +# - BSD-3-Clause +# - CDDL + GPLv2 with classpath exception +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - Common Development and Distribution License (CDDL), +# version 1.0 +# - Common Public License Version 1.0 +# - Dual license consisting of the CDDL v1.1 and GPL v2 +# - EDL 1.0 +# - EPL 2.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Distribution License v. 1.0 +# - Eclipse Public License +# - Eclipse Public License - v 1.0 +# - Eclipse Public License - v 2.0 +# - Eclipse Public License v. 2.0 +# - Eclipse Public License v1.0 +# - Eclipse Public License v2.0 +# - Eclipse Public License, Version 1.0 +# - GNU Affero General Public License +# - GNU Affero General Public License 3 +# - GNU General Public License, v2.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License, version 2.1 +# - GPL2 w/ CPE +# - GPLv2 license, includes the CLASSPATH exception +# - Indiana University Extreme! Lab Software License, vesion 1.1.1 +# - LGPL 2.1 +# - MIT License +# - Mozilla Public License version 1.1 +# - New BSD license +# - Public Domain +# - Revised BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD License +# - The Eclipse Public License Version 1.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Tue Sep 29 14:45:42 CEST 2020 +gnu.getopt--java-getopt--1.0.13= diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/IFCtoLBDConverter.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/IFCtoLBDConverter.java index 9695dc9b..f3d658b9 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/IFCtoLBDConverter.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/IFCtoLBDConverter.java @@ -2,15 +2,20 @@ package org.linkedbuildingdata.ifc2lbd; import java.io.File; +import java.io.IOException; import java.util.List; import org.apache.jena.rdf.model.Model; import org.apache.jena.rdf.model.ModelFactory; +import org.bimserver.plugins.deserializers.DeserializeException; +import org.bimserver.plugins.renderengine.RenderEngineException; import org.linkedbuildingdata.ifc2lbd.application_messaging.events.IFCtoLBD_SystemStatusEvent; import org.linkedbuildingdata.ifc2lbd.core.IFCtoLBDConverterCore; import org.linkedbuildingdata.ifc2lbd.core.utils.FileUtils; import org.linkedbuildingdata.ifc2lbd.namespace.IfcOWLNameSpace; +import de.rwth_aachen.dc.lbd.IFCBoundingBoxes; + /* * Copyright (c) 2017,2018,2019.2020 Jyrki Oraskari (Jyrki.Oraskari@gmail.f) * @@ -79,6 +84,14 @@ public IFCtoLBDConverter(String ifc_filename, String uriBase, String target_file this.props_level = props_level; this.hasPropertiesBlankNodes = hasPropertiesBlankNodes; + try { + System.out.println("Set the bounding box generator"); + this.bounding_boxes = new IFCBoundingBoxes(new File(ifc_filename)); + } catch (RenderEngineException | DeserializeException | IOException e) { + e.printStackTrace(); + } + + if (!uriBase.endsWith("#") && !uriBase.endsWith("/")) uriBase += "#"; this.uriBase = uriBase; @@ -90,6 +103,9 @@ public IFCtoLBDConverter(String ifc_filename, String uriBase, String target_file eventBus.post(new IFCtoLBD_SystemStatusEvent("Reading in ontologies")); readInOntologies(ifc_filename); + + eventBus.post(new IFCtoLBD_SystemStatusEvent("Create ifc to LBD mapping")); + createIfcLBDProductMapping(); this.lbd_general_output_model = ModelFactory.createDefaultModel(); @@ -183,6 +199,7 @@ public Model convert(String ifc_filename, String target_file) { boolean hasBuildingProperties = true; boolean hasSeparatePropertiesModel = false; boolean hasGeolocation = true; + convert(ifc_filename, target_file, hasBuildingElements, hasSeparateBuildingElementsModel, hasBuildingProperties, hasSeparatePropertiesModel, hasGeolocation); return lbd_general_output_model; @@ -201,6 +218,7 @@ public Model convert(String ifc_filename) { boolean hasBuildingProperties = true; boolean hasSeparatePropertiesModel = false; boolean hasGeolocation = true; + convert(ifc_filename, null, hasBuildingElements, hasSeparateBuildingElementsModel, hasBuildingProperties, hasSeparatePropertiesModel, hasGeolocation); return lbd_general_output_model; @@ -229,6 +247,14 @@ public Model convert(String ifc_filename) { public Model convert(String ifc_filename, String target_file, boolean hasBuildingElements, boolean hasSeparateBuildingElementsModel, boolean hasBuildingProperties, boolean hasSeparatePropertiesModel, boolean hasGeolocation) { + try { + System.out.println("Set the bounding box generator"); + this.bounding_boxes = new IFCBoundingBoxes(new File(ifc_filename)); + } catch (RenderEngineException | DeserializeException | IOException e) { + e.printStackTrace(); + } + + ifcowl_model = readAndConvertIFC(ifc_filename, uriBase); // Before: readInOntologies(ifc_filename); eventBus.post(new IFCtoLBD_SystemStatusEvent("Reading in ontologies")); diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/IFCtoLBDConverterCore.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/IFCtoLBDConverterCore.java index cf421136..7828e6b9 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/IFCtoLBDConverterCore.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/IFCtoLBDConverterCore.java @@ -29,6 +29,7 @@ import org.apache.jena.rdf.model.Statement; import org.apache.jena.rdf.model.StmtIterator; import org.apache.jena.riot.RDFDataMgr; +import org.apache.jena.vocabulary.OWL; import org.apache.jena.vocabulary.RDF; import org.apache.jena.vocabulary.RDFS; import org.linkedbuildingdata.ifc2lbd.application_messaging.IFC2LBD_ApplicationEventBusService; @@ -48,7 +49,8 @@ import com.google.common.eventbus.EventBus; import com.openifctools.guidcompressor.GuidCompressor; -import be.ugent.IfcSpfReader; +import de.rwth_aachen.dc.lbd.IFCBoundingBoxes; +import nl.tue.ddss.bcf.BoundingBox; /* * Copyright (c) 2017,2018,2019.2020 Jyrki Oraskari (Jyrki.Oraskari@gmail.f) @@ -67,825 +69,866 @@ */ public abstract class IFCtoLBDConverterCore { - protected final EventBus eventBus = IFC2LBD_ApplicationEventBusService.getEventBus(); - protected Model ifcowl_model; - protected Model ontology_model = null; - protected Map> ifcowl_product_map = new HashMap<>(); - protected String uriBase; - - protected Optional ontURI = Optional.empty(); - protected IfcOWLNameSpace ifcOWL; - - // URI-property set - protected Map propertysets = new HashMap<>(); - protected int props_level; - protected boolean hasPropertiesBlankNodes; - - protected Model lbd_general_output_model; - protected Model lbd_product_output_model; - protected Model lbd_property_output_model; - - protected void conversion(String target_file, boolean hasBuildingElements, boolean hasSeparateBuildingElementsModel, - boolean hasBuildingProperties, boolean hasSeparatePropertiesModel, boolean hasGeolocation) { - IfcOWLUtils.listSites(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(site -> { - Resource sio = createformattedURI(site, lbd_general_output_model, "Site"); - String guid_site = IfcOWLUtils.getGUID(site, this.ifcOWL); - String uncompressed_guid_site = GuidCompressor.uncompressGuidString(guid_site); - addAttrributes(lbd_property_output_model, site.asResource(), sio); - - sio.addProperty(RDF.type, LBD_NS.BOT.site); - - IfcOWLUtils.listPropertysets(site, ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { - PropertySet p_set = this.propertysets.get(propertyset.getURI()); - if (p_set != null) { - p_set.connect(sio, uncompressed_guid_site); - } - }); - - IfcOWLUtils.listBuildings(site, ifcOWL).stream().map(rn -> rn.asResource()).forEach(building -> { - if (!RDFUtils.getType(building.asResource()).get().getURI().endsWith("#IfcBuilding")) { - System.err.println("Not an #IfcBuilding"); - return; - } - Resource bo = createformattedURI(building, lbd_general_output_model, "Building"); - String guid_building = IfcOWLUtils.getGUID(building, this.ifcOWL); - String uncompressed_guid_building = GuidCompressor.uncompressGuidString(guid_building); - addAttrributes(lbd_property_output_model, building, bo); - - bo.addProperty(RDF.type, LBD_NS.BOT.building); - sio.addProperty(LBD_NS.BOT.hasBuilding, bo); - - IfcOWLUtils.listPropertysets(building, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(propertyset -> { - PropertySet p_set = this.propertysets.get(propertyset.getURI()); - if (p_set != null) { - p_set.connect(bo, uncompressed_guid_building); - } - }); - - IfcOWLUtils.listStoreys(building, ifcOWL).stream().map(rn -> rn.asResource()).forEach(storey -> { - eventBus.post(new IFCtoLBD_SystemStatusEvent("Storey: " + storey.getLocalName())); - - if (!RDFUtils.getType(storey.asResource()).get().getURI().endsWith("#IfcBuildingStorey")) { - System.err.println("No an #IfcBuildingStorey"); - return; - } - - Resource so = createformattedURI(storey, lbd_general_output_model, "Storey"); - String guid_storey = IfcOWLUtils.getGUID(storey, this.ifcOWL); - String uncompressed_guid_storey = GuidCompressor.uncompressGuidString(guid_storey); - addAttrributes(lbd_property_output_model, storey, so); - - bo.addProperty(LBD_NS.BOT.hasStorey, so); - so.addProperty(RDF.type, LBD_NS.BOT.storey); - - IfcOWLUtils.listPropertysets(storey, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(propertyset -> { - PropertySet p_set = this.propertysets.get(propertyset.getURI()); - if (p_set != null) - p_set.connect(so, uncompressed_guid_storey); - }); - - IfcOWLUtils.listContained_StoreyElements(storey, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(element -> { - if (RDFUtils.getType(element.asResource()).get().getURI().endsWith("#IfcSpace")) - return; - connectElement(so, element); - }); - - IfcOWLUtils.listStoreySpaces(storey.asResource(), ifcOWL).stream().forEach(space -> { - if (!RDFUtils.getType(space.asResource()).get().getURI().endsWith("#IfcSpace")) - return; - Resource spo = createformattedURI(space.asResource(), lbd_general_output_model, "Space"); - String guid_space = IfcOWLUtils.getGUID(space.asResource(), this.ifcOWL); - String uncompressed_guid_space = GuidCompressor.uncompressGuidString(guid_space); - addAttrributes(lbd_property_output_model, space.asResource(), spo); - - so.addProperty(LBD_NS.BOT.hasSpace, spo); - spo.addProperty(RDF.type, LBD_NS.BOT.space); - IfcOWLUtils.listContained_SpaceElements(space.asResource(), ifcOWL).stream() - .map(rn -> rn.asResource()).forEach(element -> { - connectElement(spo, element); - }); - - IfcOWLUtils.listAdjacent_SpaceElements(space.asResource(), ifcOWL).stream() - .map(rn -> rn.asResource()).forEach(element -> { - connectElement(spo, LBD_NS.BOT.adjacentElement, element); - }); - - IfcOWLUtils.listPropertysets(space.asResource(), ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(propertyset -> { - PropertySet p_set = this.propertysets.get(propertyset.getURI()); - if (p_set != null) { - p_set.connect(spo, uncompressed_guid_space); - } - }); - }); - }); - }); - }); - - if (hasGeolocation) { - try { - addGeolocation2BOT(); - } catch (Exception e) { - // e.printStackTrace(); - eventBus.post(new IFCtoLBD_SystemStatusEvent("Info : No geolocation")); - } - } - - if (target_file != null) { - if (hasBuildingElements) { - if (hasSeparateBuildingElementsModel) { - String out_products_filename = target_file.substring(0, target_file.lastIndexOf(".")) - + "_building_elements.ttl"; - RDFUtils.writeModel(lbd_product_output_model, out_products_filename, this.eventBus); - eventBus.post( - new IFCtoLBD_SystemStatusEvent("Building elements file is: " + out_products_filename)); - } else - lbd_general_output_model.add(lbd_product_output_model); - } - - if (hasBuildingProperties) { - if (hasSeparatePropertiesModel) { - String out_properties_filename = target_file.substring(0, target_file.lastIndexOf(".")) - + "_element_properties.ttl"; - RDFUtils.writeModel(lbd_property_output_model, out_properties_filename, this.eventBus); - eventBus.post(new IFCtoLBD_SystemStatusEvent( - "Building elements properties file is: " + out_properties_filename)); - } else - lbd_general_output_model.add(lbd_property_output_model); - } - RDFUtils.writeModel(lbd_general_output_model, target_file, this.eventBus); - eventBus.post(new IFCtoLBD_SystemStatusEvent("Done. Linked Building Data File is: " + target_file)); - } - } - - /** - * Collects the PropertySet data from the ifcOWL model and creates a separate - * Apache Jena Model that contains the converted representation of the property - * set content. - * - * @param props_level The levels described in - * https://github.com/w3c-lbd-cg/lbd/blob/gh-pages/presentations/props/presentation_LBDcall_20180312_final.pdf - * @param hasPropertiesBlankNodes If the nameless nodes are used. - */ - protected void handlePropertySetData(int props_level, boolean hasPropertiesBlankNodes) { - IfcOWLUtils.listPropertysets(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(propertyset -> { - if ("https://www.ugent.be/myAwesomeFirstBIMProject#IfcPropertySet_17765".equals(propertyset.getURI())) - System.out.println("HERE!!"); - RDFStep[] pname_path = { new RDFStep(ifcOWL.getName_IfcRoot()), - new RDFStep(IfcOWLNameSpace.getHasString()) }; - - final List propertyset_name = new ArrayList<>(); - RDFUtils.pathQuery(propertyset, pname_path).forEach(name -> propertyset_name.add(name)); - - RDFStep[] path = { new RDFStep(ifcOWL.getHasProperties_IfcPropertySet()) }; - RDFUtils.pathQuery(propertyset, path).forEach(propertySingleValue -> { - - RDFStep[] name_path = { new RDFStep(ifcOWL.getName_IfcProperty()), - new RDFStep(IfcOWLNameSpace.getHasString()) }; - final List property_name = new ArrayList<>(); - RDFUtils.pathQuery(propertySingleValue.asResource(), name_path) - .forEach(name -> property_name.add(name)); - - if (property_name.size() == 0) - return; // = stream continue - - final List property_value = new ArrayList<>(); - - RDFStep[] value_pathS = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), - new RDFStep(IfcOWLNameSpace.getHasString()) }; - RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathS) - .forEach(value -> property_value.add(value)); - - RDFStep[] value_pathD = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), - new RDFStep(ifcOWL.getHasDouble()) }; - RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathD) - .forEach(value -> property_value.add(value)); - - RDFStep[] value_pathI = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), - new RDFStep(ifcOWL.getHasInteger()) }; - RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathI) - .forEach(value -> property_value.add(value)); - - RDFStep[] value_pathB = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), - new RDFStep(ifcOWL.getHasBoolean()) }; - RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathB) - .forEach(value -> property_value.add(value)); - - RDFStep[] value_pathL = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), - new RDFStep(ifcOWL.getHasLogical()) }; - RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathL) - .forEach(value -> property_value.add(value)); - - RDFNode pname = property_name.get(0); - - PropertySet ps = this.propertysets.get(propertyset.getURI()); - if (ps == null) { - if (!propertyset_name.isEmpty()) - ps = new PropertySet(this.uriBase, lbd_property_output_model, this.ontology_model, - propertyset_name.get(0).toString(), props_level, hasPropertiesBlankNodes); - else - ps = new PropertySet(this.uriBase, lbd_property_output_model, this.ontology_model, "", - props_level, hasPropertiesBlankNodes); - this.propertysets.put(propertyset.getURI(), ps); - } - - if (property_value.size() > 0) { - RDFNode pvalue = property_value.get(0); - if (!pname.toString().equals(pvalue.toString())) { - if (pvalue.toString().trim().length() > 0) { - if (pvalue.isLiteral()) { - String val = pvalue.asLiteral().getLexicalForm(); - if (val.equals("-1.#IND")) - pvalue = ResourceFactory.createTypedLiteral(Double.NaN); - } - ps.putPnameValue(pname.toString(), pvalue); - ps.putPsetPropertyRef(pname); - } - } - // else: do nothing - } else { - ps.putPnameValue(pname.toString(), propertySingleValue); - ps.putPsetPropertyRef(pname); - RDFUtils.copyTriples(0, propertySingleValue, lbd_property_output_model); - } - - }); - - }); - eventBus.post(new IFCtoLBD_SystemStatusEvent("LBD properties read")); - } - - /** - * Adds the used RDF namespaces for the Jena Models - * - * @param uriBase - * @param props_level - * @param hasBuildingElements - * @param hasBuildingProperties - */ - protected void addNamespaces(String uriBase, int props_level, boolean hasBuildingElements, - boolean hasBuildingProperties) { - LBD_NS.BOT.addNameSpace(lbd_general_output_model); - if (hasBuildingElements) - LBD_NS.Product.addNameSpace(lbd_product_output_model); - if (hasBuildingProperties) { - LBD_NS.PROPS_NS.addNameSpace(lbd_property_output_model); - LBD_NS.PROPS_NS.addNameSpace(lbd_general_output_model); - if (props_level != 1) - lbd_property_output_model.setNsPrefix("prov", OPM.prov_ns); - - if (props_level == 2) - OPM.addNameSpacesL2(lbd_property_output_model); - if (props_level == 3) - OPM.addNameSpacesL3(lbd_property_output_model); - } - Model[] ms = { lbd_general_output_model, lbd_product_output_model, lbd_property_output_model }; - for (Model model : ms) { - model.setNsPrefix("rdf", RDF.uri); - model.setNsPrefix("rdfs", RDFS.uri); - model.setNsPrefix("xsd", "http://www.w3.org/2001/XMLSchema#"); - model.setNsPrefix("inst", uriBase); - model.setNsPrefix("geo", "http://www.opengis.net/ont/geosparql#"); - } - } - - protected void connectElement(Resource bot_resource, Resource ifc_element) { - Optional predefined_type = IfcOWLUtils.getPredefinedData(ifc_element); - Optional ifcowl_type = RDFUtils.getType(ifc_element); - Optional bot_type = Optional.empty(); - if (ifcowl_type.isPresent()) { - bot_type = getLBDProductType(ifcowl_type.get().getLocalName()); - } - System.out.println("Connect element: " + ifc_element); - if (bot_type.isPresent()) { - Resource eo = createformattedURI(ifc_element, this.lbd_general_output_model, bot_type.get().getLocalName()); - String guid = IfcOWLUtils.getGUID(ifc_element, this.ifcOWL); - String uncompressed_guid = GuidCompressor.uncompressGuidString(guid); - Resource lbd_property_object = this.lbd_product_output_model.createResource(eo.getURI()); - if (predefined_type.isPresent()) { - Resource product = this.lbd_product_output_model - .createResource(bot_type.get().getURI() + "-" + predefined_type.get()); - lbd_property_object.addProperty(RDF.type, product); - } - lbd_property_object.addProperty(RDF.type, bot_type.get()); - eo.addProperty(RDF.type, LBD_NS.BOT.element); - bot_resource.addProperty(LBD_NS.BOT.containsElement, eo); - - IfcOWLUtils.listPropertysets(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(propertyset -> { - PropertySet p_set = this.propertysets.get(propertyset.getURI()); - if (p_set != null) - p_set.connect(eo, uncompressed_guid); - }); - addAttrributes(this.lbd_property_output_model, ifc_element, eo); - - IfcOWLUtils.listHosted_Elements(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(ifc_element2 -> { - // if (eo.getLocalName().toLowerCase().contains("space")) - // System.out.println("hosts: " + ifc_element + "--" + ifc_element2 + " bot:" + - // eo); - connectElement(eo, LBD_NS.BOT.hasSubElement, ifc_element2); - }); - - IfcOWLUtils.listAggregated_Elements(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(ifc_element2 -> { - connectElement(eo, LBD_NS.BOT.hasSubElement, ifc_element2); - }); - } - } - - /** - * For a RDF LBD resource, creates the targetted object for the given property - * and adds a triple that connects them with the property. The literals of the - * elements and and the hosted elements are added as well. - * - * @param bot_resource The Jena Resource in the LBD output model in the Apacje - * model - * @param bot_property The LBD ontology property - * @param ifcowl_element The corresponding ifcOWL elemeny - */ - protected void connectElement(Resource bot_resource, Property bot_property, Resource ifcowl_element) { - Optional predefined_type = IfcOWLUtils.getPredefinedData(ifcowl_element); - Optional ifcowl_type = RDFUtils.getType(ifcowl_element); - Optional lbd_product_type = Optional.empty(); - if (ifcowl_type.isPresent()) { - lbd_product_type = getLBDProductType(ifcowl_type.get().getLocalName()); - } - - if (lbd_product_type.isPresent()) { - Resource lbd_object = createformattedURI(ifcowl_element, this.lbd_general_output_model, - lbd_product_type.get().getLocalName()); - Resource lbd_property_object = this.lbd_product_output_model.createResource(lbd_object.getURI()); - - if (predefined_type.isPresent()) { - Resource product = this.lbd_product_output_model - .createResource(lbd_product_type.get().getURI() + "-" + predefined_type.get()); - lbd_property_object.addProperty(RDF.type, product); - } - - lbd_property_object.addProperty(RDF.type, lbd_product_type.get()); - lbd_object.addProperty(RDF.type, LBD_NS.BOT.element); - - addAttrributes(this.lbd_property_output_model, ifcowl_element, lbd_object); - bot_resource.addProperty(bot_property, lbd_object); - IfcOWLUtils.listHosted_Elements(ifcowl_element, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(ifc_element2 -> { - // if (lbd_object.getLocalName().toLowerCase().contains("space")) - // System.out - // .println("hosts2: " + ifcowl_element + "-->" + ifc_element2 + " bot:" + - // lbd_object); - connectElement(lbd_object, LBD_NS.BOT.hasSubElement, ifc_element2); - }); - - IfcOWLUtils.listAggregated_Elements(ifcowl_element, ifcOWL).stream().map(rn -> rn.asResource()) - .forEach(ifc_element2 -> { - connectElement(lbd_object, LBD_NS.BOT.hasSubElement, ifc_element2); - }); - } else { - System.err.println("No type: " + ifcowl_element); - } - - } - - protected Set handledSttributes4resource = new HashSet<>(); - - /** - * Creates and adds the literal triples from the original ifcOWL resource under - * the new LBD resource. - * - * @param output_model The Apache Jena model where the conversion output is - * written - * @param r The oroginal ifcOWL resource - * @param bot_r The correspoinding resource in the output model. The LBD - * resource. - */ - protected void addAttrributes(Model output_model, Resource r, Resource bot_r) { - if (!handledSttributes4resource.add(r)) // Tests if the attributes are added already - return; - String guid = IfcOWLUtils.getGUID(r, this.ifcOWL); - String uncompressed_guid = GuidCompressor.uncompressGuidString(guid); - final AttributeSet connected_attributes = new AttributeSet(this.uriBase, output_model, this.props_level, - hasPropertiesBlankNodes); - r.listProperties().forEachRemaining(s -> { - String ps = s.getPredicate().getLocalName(); - Resource attr = s.getObject().asResource(); - Optional atype = RDFUtils.getType(attr); - if (ps.startsWith("tag_")) - ps = "batid"; - final String property_string = ps; // Just to make variable final (needed in the following stream) - if (atype.isPresent()) { - if (atype.get().getLocalName().equals("IfcLabel")) { - attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining(attr_s -> { - if (attr_s.getObject().isLiteral() - && attr_s.getObject().asLiteral().getLexicalForm().length() > 0) { - connected_attributes.putAnameValue(property_string, attr_s.getObject()); - } - }); - - } else if (atype.get().getLocalName().equals("IfcIdentifier")) { - attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining( - attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); - } else { - attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining( - attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); - attr.listProperties(ifcOWL.getHasInteger()).forEachRemaining( - attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); - attr.listProperties(ifcOWL.getHasDouble()).forEachRemaining( - attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); - attr.listProperties(ifcOWL.getHasBoolean()).forEachRemaining( - attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); - } - - } - }); - connected_attributes.connect(bot_r, uncompressed_guid); - } - - /** - * Creates URIs for the elements in the output graph. The IfcRoot elements (that - * have a GUID) are given URI that contais the guid in the standard uncompressed - * format. - * - * The uncompressed GUID form is created using the implementation by Tulke & Co. - * (The OPEN IFC JAVA TOOLBOX) - * - * @param r A ifcOWL RDF node in a Apache Jena RDF store. - * @param m The Apache Jena RDF Store for the output. - * @param product_type The LBD product type to be shown on the URI - * @return - */ - protected Resource createformattedURI(Resource r, Model m, String product_type) { - String guid = IfcOWLUtils.getGUID(r, this.ifcOWL); - if (guid == null) { - String localName = r.getLocalName(); - if (localName.startsWith("IfcPropertySingleValue")) { - if (localName.lastIndexOf('_') > 0) - localName = localName.substring(localName.lastIndexOf('_') + 1); - Resource uri = m.createResource(this.uriBase + "propertySingleValue_" + localName); - return uri; - } - if (localName.toLowerCase().startsWith("ifc")) - localName = localName.substring(3); - Resource uri = m.createResource(this.uriBase + product_type.toLowerCase() + "_" + localName); - return uri; - } else { - Resource guid_uri = m.createResource( - this.uriBase + product_type.toLowerCase() + "_" + GuidCompressor.uncompressGuidString(guid)); - return guid_uri; - } - } - - /** - * This used the ifcowl_product_map map and returns one mapped class in a Linked - * Building Data ontology, if specified. - * - * @param ifcType The IFC entity class - * @return The corresponding class Resource in a LBD ontology - */ - protected Optional getLBDProductType(String ifcType) { - List ret = ifcowl_product_map.get(ifcType); - if (ret == null) { - return Optional.empty(); - } else if (ret.size() > 1) { - // System.out.println("many " + ifcType); - return Optional.empty(); - } else if (ret.size() > 0) - return Optional.of(ret.get(0)); - else - return Optional.empty(); - } - - /** - * Fills in the ifcowl_product_map map using the seealso ontology statemets at - * the Apache Jena RDF ontology model on the memory. - * - * Uses also RDFS.subClassOf so that subclasses are included. - */ - protected void createIfcLBDProductMapping() { - StmtIterator si = ontology_model.listStatements(); - while (si.hasNext()) { - Statement product_BE_ontology_statement = si.next(); - if (product_BE_ontology_statement.getPredicate().toString().toLowerCase().contains("seealso")) { - if (product_BE_ontology_statement.getObject().isLiteral()) - continue; - if (!product_BE_ontology_statement.getObject().isResource()) - continue; - Resource ifcowl_class = product_BE_ontology_statement.getObject().asResource(); - - // This adds the seeAlso mapping directly: The base IRI is removed so that the - // mapping is independent of various IFC versions - List resource_list = ifcowl_product_map.getOrDefault(ifcowl_class.getLocalName(), - new ArrayList()); - ifcowl_product_map.put(ifcowl_class.getLocalName(), resource_list); - resource_list.add(product_BE_ontology_statement.getSubject()); - // System.out.println("added to resource_list : " + - // product_BE_ontology_statement.getSubject()); - } - } - StmtIterator so = ontology_model.listStatements(); - while (so.hasNext()) { - Statement product_BE_ontology_statement = so.next(); - if (product_BE_ontology_statement.getPredicate().toString().toLowerCase().contains("seealso")) { - if (product_BE_ontology_statement.getObject().isLiteral()) - continue; - if (!product_BE_ontology_statement.getObject().isResource()) - continue; - Resource ifcowl_class = product_BE_ontology_statement.getObject().asResource(); - Resource mapped_ifcowl_class = ontology_model - .getResource(this.ontURI.get() + "#" + ifcowl_class.getLocalName()); - StmtIterator subclass_statement_iterator = ontology_model - .listStatements(new SimpleSelector(null, RDFS.subClassOf, mapped_ifcowl_class)); - while (subclass_statement_iterator.hasNext()) { - Statement su = subclass_statement_iterator.next(); - Resource ifcowl_subclass = su.getSubject(); - if (ifcowl_product_map.get(ifcowl_subclass.getLocalName()) == null) { - List r_list = ifcowl_product_map.getOrDefault(ifcowl_subclass.getLocalName(), - new ArrayList()); - ifcowl_product_map.put(ifcowl_subclass.getLocalName(), r_list); - // System.out.println( - // ifcowl_subclass.getLocalName() + " ->> " + - // product_BE_ontology_statement.getSubject()); - r_list.add(product_BE_ontology_statement.getSubject()); - } - } - - } - } - - } - - /** - * - * The method converts an IFC STEP formatted file and returns an Apache Jena RDF - * memory storage model that contains the generated RDF triples. - * - * Apache Jena: https://jena.apache.org/index.html - * - * The generated temporsary file is used to reduce the temporary memory need and - * make it possible to convert larger models. - * - * Sets the this.ontURI class variable. That is used to create the right ifcOWL - * version based ontology base URI that is used to create the ifcOWL version - * based peroperties and class URIs- - * - * @param ifc_file the absolute path (For example: c:\ifcfiles\ifc_file.ifc) for - * the IFC file - * @param uriBase the URL beginning for the elements in the ifcOWL TTL output - * @return the Jena Model that contains the ifcOWL attribute value (Abox) - * output. - */ - protected Model readAndConvertIFC(String ifc_file, String uriBase) { - try { - IFCtoRDF rj = new IFCtoRDF(); - File tempFile = File.createTempFile("ifc", ".ttl"); - try { - Model m = ModelFactory.createDefaultModel(); - this.ontURI = rj.convert_into_rdf(ifc_file, tempFile.getAbsolutePath(), uriBase); - // Thread.sleep(15000); - File t2 = filterContent(tempFile); - RDFDataMgr.read(m, t2.getAbsolutePath()); - return m; - } catch (IOException e) { - e.printStackTrace(); - } finally { - tempFile.deleteOnExit(); - } - - } catch (Exception e) { - eventBus.post(new IFCtoLBD_SystemStatusEvent( - "Error : " + e.getMessage() + " line:" + e.getStackTrace()[0].getLineNumber())); - e.printStackTrace(); - - } - System.err.println("IFC-RDF conversion not done"); - return ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM); - } - - private File filterContent(File whole_content_file) { - File tempFile = null; - int state = 0; - try { - tempFile = File.createTempFile("ifc", ".ttl"); - try (BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile))) { - try (BufferedReader br = new BufferedReader(new FileReader(whole_content_file))) { - String line; - String[] triple = new String[3]; - for (int i = 0; i < 3; i++) - triple[i] = ""; - while ((line = br.readLine()) != null) { - String trimmed = line.trim(); - if (!line.contains("@prefix") && !trimmed.startsWith("#")) { - int len = trimmed.length(); - if (len > 0) { - List t; - if(trimmed.endsWith(".")||trimmed.endsWith(";")) - t=split(trimmed.substring(0, trimmed.length() - 1)); + protected final EventBus eventBus = IFC2LBD_ApplicationEventBusService.getEventBus(); + protected Model ifcowl_model; + protected Model ontology_model = null; + protected Map> ifcowl_product_map = new HashMap<>(); + protected String uriBase; + + protected Optional ontURI = Optional.empty(); + protected IfcOWLNameSpace ifcOWL; + + // URI-property set + protected Map propertysets = new HashMap<>(); + protected int props_level; + protected boolean hasPropertiesBlankNodes; + + protected Model lbd_general_output_model; + protected Model lbd_product_output_model; + protected Model lbd_property_output_model; + + protected IFCBoundingBoxes bounding_boxes = null; + + Set has_geometry = new HashSet<>(); + + protected void conversion(String target_file, boolean hasBuildingElements, boolean hasSeparateBuildingElementsModel, boolean hasBuildingProperties, boolean hasSeparatePropertiesModel, + boolean hasGeolocation) { + IfcOWLUtils.listSites(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(site -> { + Resource sio = createformattedURI(site, lbd_general_output_model, "Site"); + String guid_site = IfcOWLUtils.getGUID(site, this.ifcOWL); + String uncompressed_guid_site = GuidCompressor.uncompressGuidString(guid_site); + addAttrributes(lbd_property_output_model, site.asResource(), sio); + + sio.addProperty(RDF.type, LBD_NS.BOT.site); + addBoundingBox(sio, guid_site); + + IfcOWLUtils.listPropertysets(site, ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + PropertySet p_set = this.propertysets.get(propertyset.getURI()); + if (p_set != null) { + p_set.connect(sio, uncompressed_guid_site); + } + }); + + IfcOWLUtils.listBuildings(site, ifcOWL).stream().map(rn -> rn.asResource()).forEach(building -> { + if (!RDFUtils.getType(building.asResource()).get().getURI().endsWith("#IfcBuilding")) { + System.err.println("Not an #IfcBuilding"); + return; + } + Resource bo = createformattedURI(building, lbd_general_output_model, "Building"); + String guid_building = IfcOWLUtils.getGUID(building, this.ifcOWL); + String uncompressed_guid_building = GuidCompressor.uncompressGuidString(guid_building); + addAttrributes(lbd_property_output_model, building, bo); + + bo.addProperty(RDF.type, LBD_NS.BOT.building); + addBoundingBox(bo, guid_building); + sio.addProperty(LBD_NS.BOT.hasBuilding, bo); + + IfcOWLUtils.listPropertysets(building, ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + PropertySet p_set = this.propertysets.get(propertyset.getURI()); + if (p_set != null) { + p_set.connect(bo, uncompressed_guid_building); + } + }); + + IfcOWLUtils.listStoreys(building, ifcOWL).stream().map(rn -> rn.asResource()).forEach(storey -> { + eventBus.post(new IFCtoLBD_SystemStatusEvent("Storey: " + storey.getLocalName())); + + if (!RDFUtils.getType(storey.asResource()).get().getURI().endsWith("#IfcBuildingStorey")) { + System.err.println("No an #IfcBuildingStorey"); + return; + } + + Resource so = createformattedURI(storey, lbd_general_output_model, "Storey"); + String guid_storey = IfcOWLUtils.getGUID(storey, this.ifcOWL); + String uncompressed_guid_storey = GuidCompressor.uncompressGuidString(guid_storey); + addAttrributes(lbd_property_output_model, storey, so); + + bo.addProperty(LBD_NS.BOT.hasStorey, so); + addBoundingBox(so, guid_storey); + so.addProperty(RDF.type, LBD_NS.BOT.storey); + + IfcOWLUtils.listPropertysets(storey, ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + PropertySet p_set = this.propertysets.get(propertyset.getURI()); + if (p_set != null) + p_set.connect(so, uncompressed_guid_storey); + }); + + IfcOWLUtils.listContained_StoreyElements(storey, ifcOWL).stream().map(rn -> rn.asResource()).forEach(element -> { + if (RDFUtils.getType(element.asResource()).get().getURI().endsWith("#IfcSpace")) + return; + connectElement(so, element); + }); + + IfcOWLUtils.listStoreySpaces(storey.asResource(), ifcOWL).stream().forEach(space -> { + if (!RDFUtils.getType(space.asResource()).get().getURI().endsWith("#IfcSpace")) + return; + Resource spo = createformattedURI(space.asResource(), lbd_general_output_model, "Space"); + String guid_space = IfcOWLUtils.getGUID(space.asResource(), this.ifcOWL); + String uncompressed_guid_space = GuidCompressor.uncompressGuidString(guid_space); + addAttrributes(lbd_property_output_model, space.asResource(), spo); + + so.addProperty(LBD_NS.BOT.hasSpace, spo); + addBoundingBox(spo, guid_space); + spo.addProperty(RDF.type, LBD_NS.BOT.space); + IfcOWLUtils.listContained_SpaceElements(space.asResource(), ifcOWL).stream().map(rn -> rn.asResource()).forEach(element -> { + connectElement(spo, element); + }); + + IfcOWLUtils.listAdjacent_SpaceElements(space.asResource(), ifcOWL).stream().map(rn -> rn.asResource()).forEach(element -> { + connectElement(spo, LBD_NS.BOT.adjacentElement, element); + }); + + IfcOWLUtils.listPropertysets(space.asResource(), ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + PropertySet p_set = this.propertysets.get(propertyset.getURI()); + if (p_set != null) { + p_set.connect(spo, uncompressed_guid_space); + } + }); + }); + }); + }); + }); + + if (hasGeolocation) { + try { + addGeolocation2BOT(); + } catch (Exception e) { + // e.printStackTrace(); + eventBus.post(new IFCtoLBD_SystemStatusEvent("Info : No geolocation")); + } + } + + if (target_file != null) { + if (hasBuildingElements) { + if (hasSeparateBuildingElementsModel) { + String out_products_filename = target_file.substring(0, target_file.lastIndexOf(".")) + "_building_elements.ttl"; + RDFUtils.writeModel(lbd_product_output_model, out_products_filename, this.eventBus); + eventBus.post(new IFCtoLBD_SystemStatusEvent("Building elements file is: " + out_products_filename)); + } else + lbd_general_output_model.add(lbd_product_output_model); + } + + if (hasBuildingProperties) { + if (hasSeparatePropertiesModel) { + String out_properties_filename = target_file.substring(0, target_file.lastIndexOf(".")) + "_element_properties.ttl"; + RDFUtils.writeModel(lbd_property_output_model, out_properties_filename, this.eventBus); + eventBus.post(new IFCtoLBD_SystemStatusEvent("Building elements properties file is: " + out_properties_filename)); + } else + lbd_general_output_model.add(lbd_property_output_model); + } + RDFUtils.writeModel(lbd_general_output_model, target_file, this.eventBus); + eventBus.post(new IFCtoLBD_SystemStatusEvent("Done. Linked Building Data File is: " + target_file)); + } + } + + private void addBoundingBox(Resource sp, String guid) { + + if(this.bounding_boxes==null) + return; + try { + BoundingBox bb = this.bounding_boxes.getBoundingBox(guid); + if (bb != null && has_geometry.add(sp)) { + Resource sp_blank = this.lbd_general_output_model.createResource(); + sp.addProperty(LBD_NS.GEO.hasGeometry, sp_blank); + sp_blank.addLiteral(LBD_NS.GEO.asWKT, bb.toString()); + } + } catch (Exception e) { // Just in case IFCOpenShell does not function + // under Tomcat + e.printStackTrace(); + } + + } + + private final Map unitmap = new HashMap<>(); + + /** + * Collects the PropertySet data from the ifcOWL model and creates a + * separate Apache Jena Model that contains the converted representation of + * the property set content. + * + * @param props_level + * The levels described in + * https://github.com/w3c-lbd-cg/lbd/blob/gh-pages/presentations/props/presentation_LBDcall_20180312_final.pdf + * @param hasPropertiesBlankNodes + * If the nameless nodes are used. + */ + protected void handlePropertySetData(int props_level, boolean hasPropertiesBlankNodes) { + + List units = IfcOWLUtils.getProjectSIUnits(ifcOWL, ifcowl_model); + for (RDFNode ru : units) { + RDFStep[] namedUnit_path = { new RDFStep(ifcOWL.getUnitType_IfcNamedUnit()) }; + List r1 = RDFUtils.pathQuery(ru.asResource(), namedUnit_path); + + String named_unit = null; + for (RDFNode l1 : r1) + named_unit = l1.asResource().getLocalName().substring(0, l1.asResource().getLocalName().length() - 4); + + RDFStep[] siUnit_path = { new RDFStep(ifcOWL.getName_IfcSIUnit()) }; + List r2 = RDFUtils.pathQuery(ru.asResource(), siUnit_path); + String si_unit = null; + for (RDFNode l2 : r2) + si_unit = l2.asResource().getLocalName(); + if (named_unit != null && si_unit != null) + unitmap.put(named_unit.toLowerCase(), si_unit); + } + + IfcOWLUtils.listPropertysets(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + if ("https://www.ugent.be/myAwesomeFirstBIMProject#IfcPropertySet_17765".equals(propertyset.getURI())) + System.out.println("HERE!!"); + RDFStep[] pname_path = { new RDFStep(ifcOWL.getName_IfcRoot()), new RDFStep(IfcOWLNameSpace.getHasString()) }; + + final List propertyset_name = new ArrayList<>(); + RDFUtils.pathQuery(propertyset, pname_path).forEach(name -> propertyset_name.add(name)); + + RDFStep[] path = { new RDFStep(ifcOWL.getHasProperties_IfcPropertySet()) }; + RDFUtils.pathQuery(propertyset, path).forEach(propertySingleValue -> { + + RDFStep[] name_path = { new RDFStep(ifcOWL.getName_IfcProperty()), new RDFStep(IfcOWLNameSpace.getHasString()) }; + final List property_name = new ArrayList<>(); + RDFUtils.pathQuery(propertySingleValue.asResource(), name_path).forEach(name -> property_name.add(name)); + + if (property_name.size() == 0) + return; // = stream continue + + final List property_type = new ArrayList<>(); + final List property_value = new ArrayList<>(); + + RDFStep[] type_path = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(RDF.type) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), type_path).forEach(type -> property_type.add(type)); + + RDFStep[] value_pathS = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(IfcOWLNameSpace.getHasString()) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathS).forEach(value -> property_value.add(value)); + + RDFStep[] value_pathD = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(ifcOWL.getHasDouble()) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathD).forEach(value -> property_value.add(value)); + + RDFStep[] value_pathI = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(ifcOWL.getHasInteger()) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathI).forEach(value -> property_value.add(value)); + + RDFStep[] value_pathB = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(ifcOWL.getHasBoolean()) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathB).forEach(value -> property_value.add(value)); + + RDFStep[] value_pathL = { new RDFStep(ifcOWL.getNominalValue_IfcPropertySingleValue()), new RDFStep(ifcOWL.getHasLogical()) }; + RDFUtils.pathQuery(propertySingleValue.asResource(), value_pathL).forEach(value -> property_value.add(value)); + + RDFNode pname = property_name.get(0); + + PropertySet ps = this.propertysets.get(propertyset.getURI()); + if (ps == null) { + if (!propertyset_name.isEmpty()) + ps = new PropertySet(this.uriBase, lbd_property_output_model, this.ontology_model, propertyset_name.get(0).toString(), props_level, hasPropertiesBlankNodes, unitmap); + else + ps = new PropertySet(this.uriBase, lbd_property_output_model, this.ontology_model, "", props_level, hasPropertiesBlankNodes, unitmap); + this.propertysets.put(propertyset.getURI(), ps); + } + if (property_type.size() > 0) { + RDFNode ptype = property_type.get(0); + ps.putPnameType(pname.toString(), ptype); + } + + if (property_value.size() > 0) { + RDFNode pvalue = property_value.get(0); + if (!pname.toString().equals(pvalue.toString())) { + if (pvalue.toString().trim().length() > 0) { + if (pvalue.isLiteral()) { + String val = pvalue.asLiteral().getLexicalForm(); + if (val.equals("-1.#IND")) + pvalue = ResourceFactory.createTypedLiteral(Double.NaN); + } + ps.putPnameValue(pname.toString(), pvalue); + ps.putPsetPropertyRef(pname); + } + } + // else: do nothing + } else { + ps.putPnameValue(pname.toString(), propertySingleValue); + ps.putPsetPropertyRef(pname); + RDFUtils.copyTriples(0, propertySingleValue, lbd_property_output_model); + } + + }); + + }); + eventBus.post(new IFCtoLBD_SystemStatusEvent("LBD properties read")); + } + + /** + * Adds the used RDF namespaces for the Jena Models + * + * @param uriBase + * @param props_level + * @param hasBuildingElements + * @param hasBuildingProperties + */ + protected void addNamespaces(String uriBase, int props_level, boolean hasBuildingElements, boolean hasBuildingProperties) { + LBD_NS.SMLS.addNameSpace(lbd_general_output_model); + LBD_NS.UNIT.addNameSpace(lbd_general_output_model); + LBD_NS.GEO.addNameSpace(lbd_general_output_model); + + + + LBD_NS.BOT.addNameSpace(lbd_general_output_model); + if (hasBuildingElements) + LBD_NS.Product.addNameSpace(lbd_product_output_model); + if (hasBuildingProperties) { + LBD_NS.PROPS_NS.addNameSpace(lbd_property_output_model); + LBD_NS.PROPS_NS.addNameSpace(lbd_general_output_model); + if (props_level != 1) + lbd_property_output_model.setNsPrefix("prov", OPM.prov_ns); + + if (props_level == 2) + OPM.addNameSpacesL2(lbd_property_output_model); + if (props_level == 3) + OPM.addNameSpacesL3(lbd_property_output_model); + } + Model[] ms = { lbd_general_output_model, lbd_product_output_model, lbd_property_output_model }; + for (Model model : ms) { + model.setNsPrefix("rdf", RDF.uri); + model.setNsPrefix("rdfs", RDFS.uri); + model.setNsPrefix("owl", OWL.getURI()); + model.setNsPrefix("xsd", "http://www.w3.org/2001/XMLSchema#"); + model.setNsPrefix("inst", uriBase); + model.setNsPrefix("geo", "http://www.opengis.net/ont/geosparql#"); + } + } + + protected void connectElement(Resource bot_resource, Resource ifc_element) { + Optional predefined_type = IfcOWLUtils.getPredefinedData(ifc_element); + Optional ifcowl_type = RDFUtils.getType(ifc_element); + Optional bot_type = Optional.empty(); + if (ifcowl_type.isPresent()) { + bot_type = getLBDProductType(ifcowl_type.get().getLocalName()); + } + System.out.println("Connect element: " + ifc_element); + if (bot_type.isPresent()) { + Resource eo = createformattedURI(ifc_element, this.lbd_general_output_model, bot_type.get().getLocalName()); + String guid = IfcOWLUtils.getGUID(ifc_element, this.ifcOWL); + String uncompressed_guid = GuidCompressor.uncompressGuidString(guid); + addBoundingBox(eo, guid); + Resource lbd_property_object = this.lbd_product_output_model.createResource(eo.getURI()); + if (predefined_type.isPresent()) { + Resource product = this.lbd_product_output_model.createResource(bot_type.get().getURI() + "-" + predefined_type.get()); + lbd_property_object.addProperty(RDF.type, product); + } + lbd_property_object.addProperty(RDF.type, bot_type.get()); + eo.addProperty(RDF.type, LBD_NS.BOT.element); + bot_resource.addProperty(LBD_NS.BOT.containsElement, eo); + + IfcOWLUtils.listPropertysets(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()).forEach(propertyset -> { + PropertySet p_set = this.propertysets.get(propertyset.getURI()); + if (p_set != null) + p_set.connect(eo, uncompressed_guid); + }); + addAttrributes(this.lbd_property_output_model, ifc_element, eo); + + IfcOWLUtils.listHosted_Elements(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()).forEach(ifc_element2 -> { + // if (eo.getLocalName().toLowerCase().contains("space")) + // System.out.println("hosts: " + ifc_element + "--" + + // ifc_element2 + " bot:" + + // eo); + connectElement(eo, LBD_NS.BOT.hasSubElement, ifc_element2); + }); + + IfcOWLUtils.listAggregated_Elements(ifc_element, ifcOWL).stream().map(rn -> rn.asResource()).forEach(ifc_element2 -> { + connectElement(eo, LBD_NS.BOT.hasSubElement, ifc_element2); + }); + } + } + + /** + * For a RDF LBD resource, creates the targetted object for the given + * property and adds a triple that connects them with the property. The + * literals of the elements and and the hosted elements are added as well. + * + * @param bot_resource + * The Jena Resource in the LBD output model in the Apacje model + * @param bot_property + * The LBD ontology property + * @param ifcowl_element + * The corresponding ifcOWL elemeny + */ + protected void connectElement(Resource bot_resource, Property bot_property, Resource ifcowl_element) { + Optional predefined_type = IfcOWLUtils.getPredefinedData(ifcowl_element); + Optional ifcowl_type = RDFUtils.getType(ifcowl_element); + Optional lbd_product_type = Optional.empty(); + if (ifcowl_type.isPresent()) { + lbd_product_type = getLBDProductType(ifcowl_type.get().getLocalName()); + } + + if (lbd_product_type.isPresent()) { + Resource lbd_object = createformattedURI(ifcowl_element, this.lbd_general_output_model, lbd_product_type.get().getLocalName()); + Resource lbd_property_object = this.lbd_product_output_model.createResource(lbd_object.getURI()); + + if (predefined_type.isPresent()) { + Resource product = this.lbd_product_output_model.createResource(lbd_product_type.get().getURI() + "-" + predefined_type.get()); + lbd_property_object.addProperty(RDF.type, product); + } + + lbd_property_object.addProperty(RDF.type, lbd_product_type.get()); + lbd_object.addProperty(RDF.type, LBD_NS.BOT.element); + + addAttrributes(this.lbd_property_output_model, ifcowl_element, lbd_object); + bot_resource.addProperty(bot_property, lbd_object); + IfcOWLUtils.listHosted_Elements(ifcowl_element, ifcOWL).stream().map(rn -> rn.asResource()).forEach(ifc_element2 -> { + // if + // (lbd_object.getLocalName().toLowerCase().contains("space")) + // System.out + // .println("hosts2: " + ifcowl_element + "-->" + ifc_element2 + + // " bot:" + + // lbd_object); + connectElement(lbd_object, LBD_NS.BOT.hasSubElement, ifc_element2); + }); + + IfcOWLUtils.listAggregated_Elements(ifcowl_element, ifcOWL).stream().map(rn -> rn.asResource()).forEach(ifc_element2 -> { + connectElement(lbd_object, LBD_NS.BOT.hasSubElement, ifc_element2); + }); + } else { + System.err.println("No type: " + ifcowl_element); + } + + } + + protected Set handledSttributes4resource = new HashSet<>(); + + /** + * Creates and adds the literal triples from the original ifcOWL resource + * under the new LBD resource. + * + * @param output_model + * The Apache Jena model where the conversion output is written + * @param r + * The oroginal ifcOWL resource + * @param bot_r + * The correspoinding resource in the output model. The LBD + * resource. + */ + protected void addAttrributes(Model output_model, Resource r, Resource bot_r) { + if (!handledSttributes4resource.add(r)) // Tests if the attributes are + // added already + return; + String guid = IfcOWLUtils.getGUID(r, this.ifcOWL); + addBoundingBox(bot_r, guid); + String uncompressed_guid = GuidCompressor.uncompressGuidString(guid); + final AttributeSet connected_attributes = new AttributeSet(this.uriBase, output_model, this.props_level, hasPropertiesBlankNodes); + r.listProperties().forEachRemaining(s -> { + String ps = s.getPredicate().getLocalName(); + Resource attr = s.getObject().asResource(); + Optional atype = RDFUtils.getType(attr); + if (ps.startsWith("tag_")) + ps = "batid"; + final String property_string = ps; // Just to make variable final + // (needed in the following + // stream) + if (atype.isPresent()) { + if (atype.get().getLocalName().equals("IfcLabel")) { + attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining(attr_s -> { + if (attr_s.getObject().isLiteral() && attr_s.getObject().asLiteral().getLexicalForm().length() > 0) { + connected_attributes.putAnameValue(property_string, attr_s.getObject()); + } + }); + + } else if (atype.get().getLocalName().equals("IfcIdentifier")) { + attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining(attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); + } else { + attr.listProperties(IfcOWLNameSpace.getHasString()).forEachRemaining(attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); + attr.listProperties(ifcOWL.getHasInteger()).forEachRemaining(attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); + attr.listProperties(ifcOWL.getHasDouble()).forEachRemaining(attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); + attr.listProperties(ifcOWL.getHasBoolean()).forEachRemaining(attr_s -> connected_attributes.putAnameValue(property_string, attr_s.getObject())); + } + + } + }); + connected_attributes.connect(bot_r, uncompressed_guid); + } + + /** + * Creates URIs for the elements in the output graph. The IfcRoot elements + * (that have a GUID) are given URI that contais the guid in the standard + * uncompressed format. + * + * The uncompressed GUID form is created using the implementation by Tulke & + * Co. (The OPEN IFC JAVA TOOLBOX) + * + * @param r + * A ifcOWL RDF node in a Apache Jena RDF store. + * @param m + * The Apache Jena RDF Store for the output. + * @param product_type + * The LBD product type to be shown on the URI + * @return + */ + protected Resource createformattedURI(Resource r, Model m, String product_type) { + String guid = IfcOWLUtils.getGUID(r, this.ifcOWL); + if (guid == null) { + String localName = r.getLocalName(); + if (localName.startsWith("IfcPropertySingleValue")) { + if (localName.lastIndexOf('_') > 0) + localName = localName.substring(localName.lastIndexOf('_') + 1); + Resource uri = m.createResource(this.uriBase + "propertySingleValue_" + localName); + uri.addProperty(OWL.sameAs, r); + return uri; + } + if (localName.toLowerCase().startsWith("ifc")) + localName = localName.substring(3); + Resource uri = m.createResource(this.uriBase + product_type.toLowerCase() + "_" + localName); + uri.addProperty(OWL.sameAs, r); + return uri; + } else { + Resource guid_uri = m.createResource(this.uriBase + product_type.toLowerCase() + "_" + GuidCompressor.uncompressGuidString(guid)); + guid_uri.addProperty(OWL.sameAs, r); + return guid_uri; + } + } + + /** + * This used the ifcowl_product_map map and returns one mapped class in a + * Linked Building Data ontology, if specified. + * + * @param ifcType + * The IFC entity class + * @return The corresponding class Resource in a LBD ontology + */ + protected Optional getLBDProductType(String ifcType) { + List ret = ifcowl_product_map.get(ifcType); + if (ret == null) { + return Optional.empty(); + } else if (ret.size() > 1) { + // System.out.println("many " + ifcType); + return Optional.empty(); + } else if (ret.size() > 0) + return Optional.of(ret.get(0)); + else + return Optional.empty(); + } + + /** + * Fills in the ifcowl_product_map map using the seealso ontology statemets + * at the Apache Jena RDF ontology model on the memory. + * + * Uses also RDFS.subClassOf so that subclasses are included. + */ + protected void createIfcLBDProductMapping() { + StmtIterator si = ontology_model.listStatements(); + while (si.hasNext()) { + Statement product_BE_ontology_statement = si.next(); + if (product_BE_ontology_statement.getPredicate().toString().toLowerCase().contains("seealso")) { + if (product_BE_ontology_statement.getObject().isLiteral()) + continue; + if (!product_BE_ontology_statement.getObject().isResource()) + continue; + Resource ifcowl_class = product_BE_ontology_statement.getObject().asResource(); + + // This adds the seeAlso mapping directly: The base IRI is + // removed so that the + // mapping is independent of various IFC versions + List resource_list = ifcowl_product_map.getOrDefault(ifcowl_class.getLocalName(), new ArrayList()); + ifcowl_product_map.put(ifcowl_class.getLocalName(), resource_list); + resource_list.add(product_BE_ontology_statement.getSubject()); + // System.out.println("added to resource_list : " + + // product_BE_ontology_statement.getSubject()); + } + } + StmtIterator so = ontology_model.listStatements(); + while (so.hasNext()) { + Statement product_BE_ontology_statement = so.next(); + if (product_BE_ontology_statement.getPredicate().toString().toLowerCase().contains("seealso")) { + if (product_BE_ontology_statement.getObject().isLiteral()) + continue; + if (!product_BE_ontology_statement.getObject().isResource()) + continue; + Resource ifcowl_class = product_BE_ontology_statement.getObject().asResource(); + Resource mapped_ifcowl_class = ontology_model.getResource(this.ontURI.get() + "#" + ifcowl_class.getLocalName()); + StmtIterator subclass_statement_iterator = ontology_model.listStatements(new SimpleSelector(null, RDFS.subClassOf, mapped_ifcowl_class)); + while (subclass_statement_iterator.hasNext()) { + Statement su = subclass_statement_iterator.next(); + Resource ifcowl_subclass = su.getSubject(); + if (ifcowl_product_map.get(ifcowl_subclass.getLocalName()) == null) { + List r_list = ifcowl_product_map.getOrDefault(ifcowl_subclass.getLocalName(), new ArrayList()); + ifcowl_product_map.put(ifcowl_subclass.getLocalName(), r_list); + // System.out.println( + // ifcowl_subclass.getLocalName() + " ->> " + + // product_BE_ontology_statement.getSubject()); + r_list.add(product_BE_ontology_statement.getSubject()); + } + } + + } + } + + } + + /** + * + * The method converts an IFC STEP formatted file and returns an Apache Jena + * RDF memory storage model that contains the generated RDF triples. + * + * Apache Jena: https://jena.apache.org/index.html + * + * The generated temporsary file is used to reduce the temporary memory need + * and make it possible to convert larger models. + * + * Sets the this.ontURI class variable. That is used to create the right + * ifcOWL version based ontology base URI that is used to create the ifcOWL + * version based peroperties and class URIs- + * + * @param ifc_file + * the absolute path (For example: c:\ifcfiles\ifc_file.ifc) for + * the IFC file + * @param uriBase + * the URL beginning for the elements in the ifcOWL TTL output + * @return the Jena Model that contains the ifcOWL attribute value (Abox) + * output. + */ + protected Model readAndConvertIFC(String ifc_file, String uriBase) { + try { + IFCtoRDF rj = new IFCtoRDF(); + File tempFile = File.createTempFile("ifc", ".ttl"); + try { + Model m = ModelFactory.createDefaultModel(); + this.ontURI = rj.convert_into_rdf(ifc_file, tempFile.getAbsolutePath(), uriBase); + // Thread.sleep(15000); + File t2 = filterContent(tempFile); + RDFDataMgr.read(m, t2.getAbsolutePath()); + return m; + } catch (IOException e) { + e.printStackTrace(); + } finally { + tempFile.deleteOnExit(); + } + + } catch (Exception e) { + eventBus.post(new IFCtoLBD_SystemStatusEvent("Error : " + e.getMessage() + " line:" + e.getStackTrace()[0].getLineNumber())); + e.printStackTrace(); + + } + System.err.println("IFC-RDF conversion not done"); + return ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM); + } + + private File filterContent(File whole_content_file) { + File tempFile = null; + int state = 0; + try { + tempFile = File.createTempFile("ifc", ".ttl"); + try (BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile))) { + try (BufferedReader br = new BufferedReader(new FileReader(whole_content_file))) { + String line; + String[] triple = new String[3]; + for (int i = 0; i < 3; i++) + triple[i] = ""; + while ((line = br.readLine()) != null) { + String trimmed = line.trim(); + if (!line.contains("@prefix") && !trimmed.startsWith("#")) { + int len = trimmed.length(); + if (len > 0) { + List t; + if (trimmed.endsWith(".") || trimmed.endsWith(";")) + t = split(trimmed.substring(0, trimmed.length() - 1)); else - t=split(trimmed.substring(0, trimmed.length())); - if (state == 0) { - for (int i = 0; i < t.size(); i++) - triple[i] = t.get(i); - - if (trimmed.endsWith(".")) - state = 0; - else - state = 1; - if (t.size() == 3) - { - StringBuffer sb=new StringBuffer(); - sb.append(t.get(0)); - sb.append(" "); - sb.append(t.get(1)); - sb.append(" "); - sb.append(t.get(2)); - sb.append(" ."); - line = sb.toString(); - } - else - continue; - } else { - for (int i = 0; i < t.size(); i++) - triple[2 - i] = t.get(t.size() - 1 - i); - - StringBuffer sb=new StringBuffer(); - sb.append(triple[0]); - sb.append(" "); - sb.append(triple[1]); - sb.append(" "); - sb.append(triple[2]); - sb.append(" ."); - line = sb.toString(); - - if (trimmed.endsWith(".")) - state = 0; - } - } - } - if (line.contains("inst:IfcFace")) - continue; - if (line.contains("inst:IfcPolyLoop")) - continue; - if (line.contains("inst:IfcCartesianPoint")) - continue; - if (line.contains("inst:IfcOwnerHistory")) - continue; - if (line.contains("inst:IfcRelAssociatesMaterial")) - continue; - - if (line.contains("inst:IfcExtrudedAreaSolid")) - continue; - if (line.contains("inst:IfcCompositeCurve")) - continue; - if (line.contains("inst:IfcSurfaceStyleRendering")) - continue; - if (line.contains("inst:IfcStyledItem")) - continue; - if (line.contains("inst:IfcShapeRepresentation")) - continue; - - writer.write(line.trim()); - writer.newLine(); - } - writer.flush(); - - } catch (IOException e) { - e.printStackTrace(); - } - } catch (IOException e1) { - e1.printStackTrace(); - } - } catch (IOException e2) { - e2.printStackTrace(); - } - return tempFile; - } - - private List split(String s) { - List ret = new ArrayList<>(); - int state = 0; - StringBuffer sb = new StringBuffer(); - for (int i = 0; i < s.length(); i++) { - char c = s.charAt(i); - switch (state) { - case 2: - if (c == '\"' || c == '\'') - state = 0; - sb.append(c); - break; - case 1: - if (c == '\"' || c == '\'') { - ret.add(sb.toString()); - sb = new StringBuffer(); - sb.append(c); - state = 2; - } else if (!Character.isSpace(c)) { - ret.add(sb.toString()); - sb = new StringBuffer(); - sb.append(c); - state = 0; - } - break; - case 0: - if (c == '\"' || c == '\'') { - sb.append(c); - state = 2; - } else if (Character.isSpace(c)) - state = 1; - else - sb.append(c); - break; - } - } - if (sb.length() > 0) - ret.add(sb.toString()); - return ret; - } - - /** - * This internal method reads in all the associated ontologies so that ontology - * inference can ne used during the conversion. - * - * @param ifc_file the absolute path (For example: c:\ifcfiles\ifc_file.ifc) for - * the IFC file - */ - protected void readInOntologies(String ifc_file) { - IfcOWLUtils.readIfcOWLOntology(ifc_file, ontology_model); - IfcOWLUtils.readIfcOWLOntology(ifc_file, ifcowl_model); - - RDFUtils.readInOntologyTTL(ontology_model, "prod.ttl", this.eventBus); - // RDFUtils.readInOntologyTTL(ontology_model, - // "prod_building_elements.ttl",this.eventBus); - RDFUtils.readInOntologyTTL(ontology_model, "beo_ontology.ttl", this.eventBus); - RDFUtils.readInOntologyTTL(ontology_model, "prod_furnishing.ttl", this.eventBus); - // RDFUtils.readInOntologyTTL(ontology_model, "prod_mep.ttl",this.eventBus); - RDFUtils.readInOntologyTTL(ontology_model, "mep_ontology.ttl", this.eventBus); - - RDFUtils.readInOntologyTTL(ontology_model, "psetdef.ttl", this.eventBus); - List files = FileUtils.getListofFiles("pset", ".ttl"); - for (String file : files) { - file = file.substring(file.indexOf("pset")); - file = file.replaceAll("\\\\", "/"); - RDFUtils.readInOntologyTTL(ontology_model, file, this.eventBus); - System.out.println("read ontology file : " + file); - } - } - - /** - * - * Adds Geolocation triples to the RDF model. Ontology: http://www.opengis.net - */ - protected void addGeolocation2BOT() { - - IFC_Geolocation c = new IFC_Geolocation(); - String wkt_point; - try { - wkt_point = c.addGeolocation(ifcowl_model); - } catch (Exception e) { - return; // no geolocation - } - - IfcOWLUtils.listSites(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(site -> { - // Create a resource and add to bot model (resource, model, string) - Resource sio = createformattedURI(site, lbd_general_output_model, "Site"); - - // Create a resource geosparql:Feature; - Resource geof = lbd_general_output_model.createResource("http://www.opengis.net/ont/geosparql#Feature"); - // Add geosparl:Feature as a type to site; - sio.addProperty(RDF.type, geof); - // Create a resource geosparql:hasGeometry; - Property geo_hasGeometry = lbd_general_output_model - .createProperty("http://www.opengis.net/ont/geosparql#hasGeometry"); - - // For the moment we will use a seperate graph for geometries, to "encourage" - // people to not link to geometries - // This could also be done using blanknodes, although, hard to maintain - // provenance if required in future versions. - - String wktLiteralID = "urn:bot:geom:pt:"; - String guid_site = IfcOWLUtils.getGUID(site, this.ifcOWL); - String uncompressed_guid_site = GuidCompressor.uncompressGuidString(guid_site); - String uncompressed_wktLiteralID = wktLiteralID + uncompressed_guid_site; - - // Create a resource - Resource rr = lbd_general_output_model.createResource(uncompressed_wktLiteralID); - sio.addProperty(geo_hasGeometry, rr); - - // Create a property asWKT - Property geo_asWKT = lbd_general_output_model.createProperty("http://www.opengis.net/ont/geosparql#asWKT"); - // add a data type - RDFDatatype rtype = WktLiteral.wktLiteralType; - TypeMapper.getInstance().registerDatatype(rtype); - // add a typed wkt literal - Literal l = lbd_general_output_model.createTypedLiteral(wkt_point, rtype); - - rr.addProperty(geo_asWKT, l); - - }); - - eventBus.post(new IFCtoLBD_SystemStatusEvent("LDB geom read")); - - } + t = split(trimmed.substring(0, trimmed.length())); + if (state == 0) { + for (int i = 0; i < t.size(); i++) + triple[i] = t.get(i); + + if (trimmed.endsWith(".")) + state = 0; + else + state = 1; + if (t.size() == 3) { + StringBuffer sb = new StringBuffer(); + sb.append(t.get(0)); + sb.append(" "); + sb.append(t.get(1)); + sb.append(" "); + sb.append(t.get(2)); + sb.append(" ."); + line = sb.toString(); + } else + continue; + } else { + for (int i = 0; i < t.size(); i++) + triple[2 - i] = t.get(t.size() - 1 - i); + + StringBuffer sb = new StringBuffer(); + sb.append(triple[0]); + sb.append(" "); + sb.append(triple[1]); + sb.append(" "); + sb.append(triple[2]); + sb.append(" ."); + line = sb.toString(); + + if (trimmed.endsWith(".")) + state = 0; + } + } + } + if (line.contains("inst:IfcFace")) + continue; + if (line.contains("inst:IfcPolyLoop")) + continue; + if (line.contains("inst:IfcCartesianPoint")) + continue; + if (line.contains("inst:IfcOwnerHistory")) + continue; + if (line.contains("inst:IfcRelAssociatesMaterial")) + continue; + + if (line.contains("inst:IfcExtrudedAreaSolid")) + continue; + if (line.contains("inst:IfcCompositeCurve")) + continue; + if (line.contains("inst:IfcSurfaceStyleRendering")) + continue; + if (line.contains("inst:IfcStyledItem")) + continue; + if (line.contains("inst:IfcShapeRepresentation")) + continue; + + writer.write(line.trim()); + writer.newLine(); + } + writer.flush(); + + } catch (IOException e) { + e.printStackTrace(); + } + } catch (IOException e1) { + e1.printStackTrace(); + } + } catch (IOException e2) { + e2.printStackTrace(); + } + return tempFile; + } + + private List split(String s) { + List ret = new ArrayList<>(); + int state = 0; + StringBuffer sb = new StringBuffer(); + for (int i = 0; i < s.length(); i++) { + char c = s.charAt(i); + switch (state) { + case 2: + if (c == '\"' || c == '\'') + state = 0; + sb.append(c); + break; + case 1: + if (c == '\"' || c == '\'') { + ret.add(sb.toString()); + sb = new StringBuffer(); + sb.append(c); + state = 2; + } else if (!Character.isSpace(c)) { + ret.add(sb.toString()); + sb = new StringBuffer(); + sb.append(c); + state = 0; + } + break; + case 0: + if (c == '\"' || c == '\'') { + sb.append(c); + state = 2; + } else if (Character.isSpace(c)) + state = 1; + else + sb.append(c); + break; + } + } + if (sb.length() > 0) + ret.add(sb.toString()); + return ret; + } + + /** + * This internal method reads in all the associated ontologies so that + * ontology inference can ne used during the conversion. + * + * @param ifc_file + * the absolute path (For example: c:\ifcfiles\ifc_file.ifc) for + * the IFC file + */ + protected void readInOntologies(String ifc_file) { + IfcOWLUtils.readIfcOWLOntology(ifc_file, ontology_model); + IfcOWLUtils.readIfcOWLOntology(ifc_file, ifcowl_model); + + RDFUtils.readInOntologyTTL(ontology_model, "prod.ttl", this.eventBus); + // RDFUtils.readInOntologyTTL(ontology_model, + // "prod_building_elements.ttl",this.eventBus); + RDFUtils.readInOntologyTTL(ontology_model, "beo_ontology.ttl", this.eventBus); + RDFUtils.readInOntologyTTL(ontology_model, "prod_furnishing.ttl", this.eventBus); + // RDFUtils.readInOntologyTTL(ontology_model, + // "prod_mep.ttl",this.eventBus); + RDFUtils.readInOntologyTTL(ontology_model, "mep_ontology.ttl", this.eventBus); + + RDFUtils.readInOntologyTTL(ontology_model, "psetdef.ttl", this.eventBus); + List files = FileUtils.getListofFiles("pset", ".ttl"); + for (String file : files) { + file = file.substring(file.indexOf("pset")); + file = file.replaceAll("\\\\", "/"); + RDFUtils.readInOntologyTTL(ontology_model, file, this.eventBus); + System.out.println("read ontology file : " + file); + } + } + + /** + * + * Adds Geolocation triples to the RDF model. Ontology: + * http://www.opengis.net + */ + protected void addGeolocation2BOT() { + + IFC_Geolocation c = new IFC_Geolocation(); + String wkt_point; + try { + wkt_point = c.addGeolocation(ifcowl_model); + } catch (Exception e) { + return; // no geolocation + } + + IfcOWLUtils.listSites(ifcOWL, ifcowl_model).stream().map(rn -> rn.asResource()).forEach(site -> { + // Create a resource and add to bot model (resource, model, string) + Resource sio = createformattedURI(site, lbd_general_output_model, "Site"); + + // Create a resource geosparql:Feature; + Resource geof = lbd_general_output_model.createResource("http://www.opengis.net/ont/geosparql#Feature"); + // Add geosparl:Feature as a type to site; + sio.addProperty(RDF.type, geof); + // Create a resource geosparql:hasGeometry; + Property geo_hasGeometry = lbd_general_output_model.createProperty("http://www.opengis.net/ont/geosparql#hasGeometry"); + + // For the moment we will use a seperate graph for geometries, to + // "encourage" + // people to not link to geometries + // This could also be done using blanknodes, although, hard to + // maintain + // provenance if required in future versions. + + String wktLiteralID = "urn:bot:geom:pt:"; + String guid_site = IfcOWLUtils.getGUID(site, this.ifcOWL); + String uncompressed_guid_site = GuidCompressor.uncompressGuidString(guid_site); + String uncompressed_wktLiteralID = wktLiteralID + uncompressed_guid_site; + + // Create a resource + Resource rr = lbd_general_output_model.createResource(uncompressed_wktLiteralID); + sio.addProperty(geo_hasGeometry, rr); + + // Create a property asWKT + Property geo_asWKT = lbd_general_output_model.createProperty("http://www.opengis.net/ont/geosparql#asWKT"); + // add a data type + RDFDatatype rtype = WktLiteral.wktLiteralType; + TypeMapper.getInstance().registerDatatype(rtype); + // add a typed wkt literal + Literal l = lbd_general_output_model.createTypedLiteral(wkt_point, rtype); + + rr.addProperty(geo_asWKT, l); + + }); + + eventBus.post(new IFCtoLBD_SystemStatusEvent("LDB geom read")); + + } } diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/CreatePsetDescriptionOntologies.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/CreatePsetDescriptionOntologies.java new file mode 100644 index 00000000..1bba0bf8 --- /dev/null +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/CreatePsetDescriptionOntologies.java @@ -0,0 +1,155 @@ +package org.linkedbuildingdata.ifc2lbd.core.utils; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.List; +import java.util.stream.Stream; + +import org.apache.jena.rdf.model.Model; +import org.apache.jena.rdf.model.ModelFactory; +import org.apache.jena.rdf.model.Statement; +import org.apache.jena.vocabulary.RDFS; + +import static java.nio.file.StandardCopyOption.*; + +public class CreatePsetDescriptionOntologies { + + public static void readInOntologyTTL(Model model, String ontology_file) { + + try { + InputStream in; + in = new FileInputStream(new File(ontology_file)); + model.read(in, null, "TTL"); + in.close(); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } + + } + + public static String write(String ontology,String ontfile) { + ontology = ontology.substring(0, ontology.lastIndexOf(".")); + StringBuilder sb = new StringBuilder(); + sb.append("abstract=Open BIM standards PSets - Property Set Extension of the IFC schema for bSDD buildingSMART Data Dictionary http://bsdd.buildingsmart.org/\r\n"); + sb.append("ontologyTitle=IFC4-PSD " + ontology + "\r\n"); + sb.append("ontologyPrefix=IFC4-PSD\r\n"); + sb.append("ontologyNamespaceURI= http://http://www.linkedbuildingdata.net/ifcOWL/IFC4-PSD/\r\n"); + sb.append("ontologyName=" + ontology + "\r\n"); + sb.append("thisVersionURI=http://http://www.linkedbuildingdata.net/ifcOWL/IFC4-PSD/+ontology+t\r\n"); + sb.append("latestVersionURI=http://http://www.linkedbuildingdata.net/ifcOWL/IFC4-PSD/+ontology+\r\n"); + sb.append("previousVersionURI=\r\n"); + sb.append("dateOfRelease=12.6.2019\r\n"); + sb.append("ontologyRevisionNumber=v1.0.0\r\n"); + sb.append("licenseURI=\r\n"); + sb.append("licenseName=Unknown\r\n"); + sb.append("licenseIconURL=\r\n"); + sb.append("citeAs=\r\n"); + sb.append("DOI=\r\n"); + sb.append("status=\r\n"); + sb.append("backwardsCompatibleWith=\r\n"); + sb.append("publisher=\r\n"); + sb.append("publisherURI=\r\n"); + sb.append("publisherInstitution= Linked Building Data (LBD) community\r\n"); + sb.append("publisherInstitutionURI=http://www.linkedbuildingdata.net/\r\n"); + sb.append("authors=Peter Willems\r\n"); + sb.append("authorsURI=http://www.linkedin.com/pub/peter-willems/11/498/274\r\n"); + sb.append("authorsInstitution=TNO\r\n"); + sb.append("authorsInstitutionURI=https://www.tno.nl/\r\n"); + sb.append("contributors=Peter Willems\r\n"); + sb.append("contributorsURI=http://www.linkedin.com/pub/peter-willems/11/498/274\r\n"); + sb.append("contributorsInstitution=TNO\r\n"); + sb.append("contributorsInstitutionURI=https://www.tno.nl/\r\n"); + sb.append("importedOntologyNames=\r\n"); + sb.append("importedOntologyURIs=\r\n"); + sb.append("extendedOntologyNames=\r\n"); + sb.append("extendedOntologyURIs=\r\n"); + sb.append("RDFXMLSerialization=ontology.xml\r\n"); + sb.append("TurtleSerialization=ontology.ttl\r\n"); + sb.append("N3Serialization=ontology.nt\r\n"); + + File f = new File("C:\\temp\\IFC-PSD\\config." + ontology); + FileOutputStream fo; + try { + fo = new FileOutputStream(f); + fo.write(sb.toString().getBytes()); + fo.close(); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } + CreatePsetDescriptionOntologies.run(f.getAbsolutePath(),ontfile,ontology); + return f.getAbsolutePath(); + } + + public static void run(String config,String ontfile,String ontology) { + System.out.println("java -jar C:\\temp\\IFC-PSD\\widoco-1.4.14-jar-with-dependencies.jar -confFile "+config+" -ontFile "+ontfile+" -rewriteAll -excludeIntroduction -includeAnnotationProperties -uniteSections -outFolder C:\\temp\\IFC-PSD\\out\\"+ontology); + } + + public static void generate(String[] args) { + + + List files = FileUtils.listFiles("C:\\temp\\IFC-PSD\\psets"); + for (String file : files) { + Model ontology_model = ModelFactory.createDefaultModel(); + CreatePsetDescriptionOntologies.readInOntologyTTL(ontology_model, file); + for (Statement s : ontology_model.listStatements().toSet()) { + if (s.getPredicate().getLocalName().endsWith("definition")) + s.getSubject().addProperty(RDFS.comment, s.getObject()); + //if (s.getPredicate().getLocalName().endsWith("definitionAlias")) + // s.getSubject().addProperty(RDFS.comment, s.getObject()); + if (s.getPredicate().getLocalName().endsWith("name")) + s.getSubject().addProperty(RDFS.label, s.getObject()); + //if (s.getPredicate().getLocalName().endsWith("nameAlias")) + // s.getSubject().addProperty(RDFS.label, s.getObject()); + } + FileOutputStream fo; + try { + File out_file = new File("C:\\temp\\IFC-PSD\\psets2\\" + (new File(file)).getAbsoluteFile().getName()); + fo = new FileOutputStream(out_file); + ontology_model.write(fo, "TTL"); + CreatePsetDescriptionOntologies.write((new File(file)).getAbsoluteFile().getName(),out_file.getAbsolutePath()); + + } catch (FileNotFoundException e) { + e.printStackTrace(); + } + } + + } + + public static void copyFolder(Path src, Path dest) throws IOException { + try (Stream stream = Files.walk(src)) { + stream.forEach(source -> copy(source, dest.resolve(src.relativize(source)))); + } + } + + private static void copy(Path source, Path dest) { + try { + Files.copy(source, dest, REPLACE_EXISTING); + } catch (Exception e) { + throw new RuntimeException(e.getMessage(), e); + } + } + + public static void main(String[] args) { + File folder = new File("C:\\temp\\IFC-PSD\\out"); + File[] listOfFiles = folder.listFiles(); + for(File f:listOfFiles) + try { + CreatePsetDescriptionOntologies.copyFolder( + Paths.get(f+"\\doc"), + Paths.get("C:\\temp\\IFC-PSD\\ifcOWL\\IFC4-PSD\\"+f.getAbsoluteFile().getName()) ); + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/FileUtils.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/FileUtils.java index 3951cc63..2ce3bcf7 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/FileUtils.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/FileUtils.java @@ -11,7 +11,6 @@ import org.linkedbuildingdata.ifc2lbd.IFCtoLBDConverter; - /* * Copyright (c) 2017 Jyrki Oraskari (Jyrki.Oraskari@gmail.f) * @@ -30,68 +29,67 @@ public class FileUtils { + /** + * Returns a list of all matching files at the source code base. The code + * base can be the application JAR file of the converter program. + * + * Use: Lists ontology files. + * + * @param dir + * the selected subdirectory at the code JAR + * @param extension + * the searched file extension + * @return List of files found + */ + public static List getListofFiles(String dir, String extension) { + List goodFiles = new ArrayList<>(); + System.out.println("read files /" + dir); - /** - * Returns a list of all matching files at the source code base. The code base can be the application JAR - * file of the converter program. - * - * Use: Lists ontology files. - * - * @param dir the selected subdirectory at the code JAR - * @param extension the searched file extension - * @return List of files found - */ - public static List getListofFiles(String dir, String extension) { - List goodFiles = new ArrayList<>(); - System.out.println("read files /" + dir); - - CodeSource src = IFCtoLBDConverter.class.getProtectionDomain().getCodeSource(); - try { - if (src != null) { - URL jar = src.getLocation(); - ZipInputStream zip; - zip = new ZipInputStream(jar.openStream()); - while (true) { - ZipEntry e = zip.getNextEntry(); - if (e == null) - break; - String name = e.getName(); - if (name.startsWith("/" + dir)) { - if (name.contains("_") && name.endsWith(extension)) - goodFiles.add(name); - } - } - } else { - System.out.println("No directory"); - } - - } catch (IOException e1) { - e1.printStackTrace(); - } - - return goodFiles; - } - - - /** - * - * Retuns a list of all files at the directory and in the subdirectories - * - * @param dir The selected directory - * @return List of files found - */ - public static List listFiles(String dir) { - List goodFiles = new ArrayList(); + CodeSource src = IFCtoLBDConverter.class.getProtectionDomain().getCodeSource(); + System.out.println(src.getLocation()); + try { + URL jar = src.getLocation(); + ZipInputStream zip; + zip = new ZipInputStream(jar.openStream()); + while (true) { + ZipEntry e = zip.getNextEntry(); + if (e == null) + break; + String name = e.getName(); + if (name.contains("/" + dir)) { + if (name.contains("_") && name.endsWith(extension)) + goodFiles.add(name); + } + } + } catch (IOException e1) { + e1.printStackTrace(); + } + if (goodFiles.isEmpty()) + goodFiles = listFiles(src.getLocation().getFile() + dir); + return goodFiles; + } - File folder = new File(dir); - File[] listOfFiles = folder.listFiles(); + /** + * + * Retuns a list of all files at the directory and in the subdirectories + * + * @param dir + * The selected directory + * @return List of files found + */ + public static List listFiles(String dir) { + List goodFiles = new ArrayList(); - for (int i = 0; i < listOfFiles.length; i++) { - if (listOfFiles[i].isFile()) - goodFiles.add(listOfFiles[i].getAbsolutePath()); - else if (listOfFiles[i].isDirectory()) - goodFiles.addAll(listFiles(listOfFiles[i].getAbsolutePath())); - } - return goodFiles; - } + File folder = new File(dir); + File[] listOfFiles = folder.listFiles(); + if(listOfFiles==null) + return goodFiles; + for (int i = 0; i < listOfFiles.length; i++) { + if (listOfFiles[i].isFile()) + goodFiles.add(listOfFiles[i].getAbsolutePath()); + else if (listOfFiles[i].isDirectory()) + goodFiles.addAll(listFiles(listOfFiles[i].getAbsolutePath())); + } + return goodFiles; + } } diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/IfcOWLUtils.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/IfcOWLUtils.java index 4f6fa4e6..c84f9905 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/IfcOWLUtils.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/utils/IfcOWLUtils.java @@ -264,6 +264,12 @@ private static RDFStep[] getPropertySetPath(IfcOWLNameSpace ifcOWL) { } } + public static List getProjectSIUnits(IfcOWLNameSpace ifcOWL, Model ifcowl_model) { + RDFStep[] path = { new InvRDFStep(RDF.type) }; + return RDFUtils.pathQuery(ifcowl_model.getResource(ifcOWL.getIfcSIUnit()), path); + } + + /** * Returns list of all RDF nodes that match the RDF graoh pattern: * diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/valuesets/PropertySet.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/valuesets/PropertySet.java index d9e9a89d..ab6f2ea4 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/valuesets/PropertySet.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/core/valuesets/PropertySet.java @@ -14,6 +14,7 @@ import org.apache.jena.rdf.model.Property; import org.apache.jena.rdf.model.RDFNode; import org.apache.jena.rdf.model.Resource; +import org.apache.jena.rdf.model.Statement; import org.apache.jena.rdf.model.StmtIterator; import org.apache.jena.vocabulary.RDF; import org.linkedbuildingdata.ifc2lbd.core.utils.StringOperations; @@ -42,135 +43,171 @@ * */ public class PropertySet { - private class PsetProperty { - final Property p; // Jena RDF property - final Resource r; // Jena RDF resource object - - public PsetProperty(Property p, Resource r) { - super(); - this.p = p; - this.r = r; - } - } - - private final String uriBase; - private final Model lbd_model; - private String propertyset_name; - - private final int props_level; - private final boolean hasBlank_nodes; - - private final Map mapPnameValue = new HashMap<>(); - private final Map mapBSDD = new HashMap<>(); - - private boolean is_bSDD_pset = false; - private Resource psetDef = null; - - public PropertySet(String uriBase, Model lbd_model, Model ontology_model, String propertyset_name, int props_level, - boolean hasBlank_nodes) { - this.uriBase = uriBase; - this.lbd_model = lbd_model; - this.propertyset_name = propertyset_name; - this.props_level = props_level; - this.hasBlank_nodes = hasBlank_nodes; - StmtIterator iter = ontology_model.listStatements(null, LBD_NS.PROPS_NS.namePset, this.propertyset_name); - if (iter.hasNext()) { - is_bSDD_pset = true; - psetDef = iter.next().getSubject(); - } - } - - public void putPnameValue(String property_name, RDFNode value) { - mapPnameValue.put(StringOperations.toCamelCase(property_name), value); - } - - public void putPsetPropertyRef(RDFNode property) { - String pname = property.asLiteral().getString(); - if (is_bSDD_pset) { - StmtIterator iter = psetDef.listProperties(LBD_NS.PROPS_NS.propertyDef); - while (iter.hasNext()) { - Resource prop = iter.next().getResource(); - StmtIterator iterProp = prop.listProperties(LBD_NS.PROPS_NS.namePset); - while (iterProp.hasNext()) { - Literal psetPropName = iterProp.next().getLiteral(); - if (psetPropName.getString().equals(pname)) - mapBSDD.put(StringOperations.toCamelCase(property.toString()), prop); - else { - String camel_name = StringOperations.toCamelCase(property.toString()); - if (psetPropName.getString().toUpperCase().equals(camel_name.toUpperCase())) - mapBSDD.put(camel_name, prop); - } - } - } - } - } - - /** - * Adds property value property for an resource. - * - * @param lbd_resource The Jena Resource in the model - * @param extracted_guid The GUID of the elemet in the long form - */ - Set hashes = new HashSet<>(); - - public void connect(Resource lbd_resource, String long_guid) { - switch (this.props_level) { - case 1: - default: - for (String pname : this.mapPnameValue.keySet()) { - Property property = lbd_resource.getModel() - .createProperty(LBD_NS.PROPS_NS.props_ns + pname + "_simple"); - lbd_resource.addProperty(property, this.mapPnameValue.get(pname)); - } - break; - case 2: - case 3: - if (hashes.add(long_guid)) { - List properties = writeOPM_Set(long_guid); - for (PsetProperty pp : properties) { - if (!this.lbd_model.listStatements(lbd_resource, pp.p, pp.r).hasNext()) { - lbd_resource.addProperty(pp.p, pp.r); - } - } - } - break; - } - } - - private List writeOPM_Set(String long_guid) { - List properties = new ArrayList<>(); - for (String key : this.mapPnameValue.keySet()) { - Resource property_resource; - if (this.hasBlank_nodes) - property_resource = this.lbd_model.createResource(); - else - property_resource = this.lbd_model.createResource(this.uriBase + key + "_" + long_guid); - - if (mapBSDD.get(key) != null) - property_resource.addProperty(LBD_NS.PROPS_NS.isBSDDProp, mapBSDD.get(key)); - - if (this.props_level == 3) { - Resource state_resourse; - if (this.hasBlank_nodes) - state_resourse = this.lbd_model.createResource(); - else - state_resourse = this.lbd_model.createResource( - this.uriBase + "state_" + key + "_" + long_guid + "_" + System.currentTimeMillis()); - property_resource.addProperty(OPM.hasState, state_resourse); - - LocalDateTime datetime = LocalDateTime.now(); - String time_string = datetime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME); - state_resourse.addProperty(RDF.type, OPM.currentState); - state_resourse.addLiteral(OPM.generatedAtTime, time_string); - state_resourse.addProperty(OPM.value, this.mapPnameValue.get(key)); - } else - property_resource.addProperty(OPM.value, this.mapPnameValue.get(key)); - - Property p; - p = this.lbd_model.createProperty(LBD_NS.PROPS_NS.props_ns + StringOperations.toCamelCase(key)); - properties.add(new PsetProperty(p, property_resource)); - } - return properties; - } - + private final Map unitmap; + + private class PsetProperty { + final Property p; // Jena RDF property + final Resource r; // Jena RDF resource object + + public PsetProperty(Property p, Resource r) { + super(); + this.p = p; + this.r = r; + } + } + + private final String uriBase; + private final Model lbd_model; + private String propertyset_name; + + private final int props_level; + private final boolean hasBlank_nodes; + + private final Map mapPnameValue = new HashMap<>(); + private final Map mapPnameType = new HashMap<>(); + private final Map mapBSDD = new HashMap<>(); + + private boolean is_bSDD_pset = false; + private Resource psetDef = null; + + public PropertySet(String uriBase, Model lbd_model, Model ontology_model, String propertyset_name, int props_level, boolean hasBlank_nodes, Map unitmap) { + this.unitmap = unitmap; + this.uriBase = uriBase; + this.lbd_model = lbd_model; + this.propertyset_name = propertyset_name; + this.props_level = props_level; + this.hasBlank_nodes = hasBlank_nodes; + System.out.println("pset name: "+this.propertyset_name); + StmtIterator iter = ontology_model.listStatements(null, LBD_NS.PROPS_NS.namePset, this.propertyset_name); + if (iter.hasNext()) { + System.out.println("Pset bsdd match!"); + is_bSDD_pset = true; + psetDef = iter.next().getSubject(); + } + } + + public void putPnameValue(String property_name, RDFNode value) { + mapPnameValue.put(StringOperations.toCamelCase(property_name), value); + } + + public void putPnameType(String property_name, RDFNode type) { + mapPnameType.put(StringOperations.toCamelCase(property_name), type); + } + + public void putPsetPropertyRef(RDFNode property) { + String pname = property.asLiteral().getString(); + if (is_bSDD_pset) { + System.out.println("bsDD"); + StmtIterator iter = psetDef.listProperties(LBD_NS.PROPS_NS.propertyDef); + while (iter.hasNext()) { + Resource prop = iter.next().getResource(); + StmtIterator iterProp = prop.listProperties(LBD_NS.PROPS_NS.namePset); + while (iterProp.hasNext()) { + Literal psetPropName = iterProp.next().getLiteral(); + if (psetPropName.getString().equals(pname)) + mapBSDD.put(StringOperations.toCamelCase(property.toString()), prop); + else { + String camel_name = StringOperations.toCamelCase(property.toString()); + if (psetPropName.getString().toUpperCase().equals(camel_name.toUpperCase())) + mapBSDD.put(camel_name, prop); + } + } + } + } + } + + /** + * Adds property value property for an resource. + * + * @param lbd_resource + * The Jena Resource in the model + * @param extracted_guid + * The GUID of the elemet in the long form + */ + Set hashes = new HashSet<>(); + + public void connect(Resource lbd_resource, String long_guid) { + switch (this.props_level) { + case 1: + default: + for (String pname : this.mapPnameValue.keySet()) { + Property property = lbd_resource.getModel().createProperty(LBD_NS.PROPS_NS.props_ns + pname + "_simple"); + lbd_resource.addProperty(property, this.mapPnameValue.get(pname)); + } + break; + case 2: + case 3: + if (hashes.add(long_guid)) { + List properties = writeOPM_Set(long_guid); + for (PsetProperty pp : properties) { + if (!this.lbd_model.listStatements(lbd_resource, pp.p, pp.r).hasNext()) { + lbd_resource.addProperty(pp.p, pp.r); + } + } + } + break; + } + } + + private List writeOPM_Set(String long_guid) { + List properties = new ArrayList<>(); + for (String pname : this.mapPnameValue.keySet()) { + Resource property_resource; + if (this.hasBlank_nodes) + property_resource = this.lbd_model.createResource(); + else + property_resource = this.lbd_model.createResource(this.uriBase + pname + "_" + long_guid); + + if (mapBSDD.get(pname) != null) + property_resource.addProperty(LBD_NS.PROPS_NS.isBSDDProp, mapBSDD.get(pname)); + + if (this.props_level == 3) { + Resource state_resourse; + if (this.hasBlank_nodes) + state_resourse = this.lbd_model.createResource(); + else + state_resourse = this.lbd_model.createResource(this.uriBase + "state_" + pname + "_" + long_guid + "_" + System.currentTimeMillis()); + property_resource.addProperty(OPM.hasState, state_resourse); + + LocalDateTime datetime = LocalDateTime.now(); + String time_string = datetime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME); + state_resourse.addProperty(RDF.type, OPM.currentState); + state_resourse.addLiteral(OPM.generatedAtTime, time_string); + state_resourse.addProperty(OPM.value, this.mapPnameValue.get(pname)); + addUnit(state_resourse, pname); + + } else + property_resource.addProperty(OPM.value, this.mapPnameValue.get(pname)); + + Property p; + p = this.lbd_model.createProperty(LBD_NS.PROPS_NS.props_ns + StringOperations.toCamelCase(pname)); + properties.add(new PsetProperty(p, property_resource)); + } + return properties; + } + + private void addUnit(Resource lbd_resource, String pname) { + RDFNode ifc_measurement_type = this.mapPnameType.get(pname); + if (ifc_measurement_type != null) { + String unit = ifc_measurement_type.asResource().getLocalName().toLowerCase(); + if (unit.startsWith("ifc")) + unit = unit.substring(3); + if (unit.startsWith("positive")) + unit = unit.substring("positive".length()); + if (unit.endsWith("measure")) + unit = unit.substring(0, unit.length() - "measure".length()); + String si_unit = this.unitmap.get(unit); + if (si_unit != null) { + if (si_unit.equals("METRE")) { + lbd_resource.addProperty(LBD_NS.SMLS.unit, LBD_NS.UNIT.METER); + } else if (si_unit.equals("SQUARE_METRE")) { + lbd_resource.addProperty(LBD_NS.SMLS.unit, LBD_NS.UNIT.SQUARE_METRE); + } else if (si_unit.equals("CUBIC_METRE")) { + lbd_resource.addProperty(LBD_NS.SMLS.unit, LBD_NS.UNIT.CUBIC_METRE); + } else if (si_unit.equals("RADIAN")) { + lbd_resource.addProperty(LBD_NS.SMLS.unit, LBD_NS.UNIT.RADIAN); + } + } + } + } } diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/geo/IFC_Geolocation.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/geo/IFC_Geolocation.java index 06c27582..d2ffcb8c 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/geo/IFC_Geolocation.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/geo/IFC_Geolocation.java @@ -49,7 +49,7 @@ public class IFC_Geolocation { public IFC_Geolocation() { - ns1 = "http://www.buildingsmart-tech.org/ifcOWL/IFC2X3_TC1#"; + ns1 = "https://w3id.org/ifc/IFC4_ADD1#";//"http://www.buildingsmart-tech.org/ifcOWL/IFC2X3_TC1#"; ns3 = "https://w3id.org/list#"; diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/IfcOWLNameSpace.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/IfcOWLNameSpace.java index e0662b62..1aa8d648 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/IfcOWLNameSpace.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/IfcOWLNameSpace.java @@ -1,5 +1,6 @@ /* - * Copyright 2016 Pieter Pauwels, Ghent University; Jyrki Oraskari, Aalto University; Lewis John McGibbney, Apache + * Copyright 2016 Pieter Pauwels, Ghent University;Lewis John McGibbney, Apache + * 2016, 2020, Jyrki Oraskari Aalto University, RWTH-Aachen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +17,7 @@ package org.linkedbuildingdata.ifc2lbd.namespace; +import org.apache.jena.rdf.model.Model; import org.apache.jena.rdf.model.Property; public class IfcOWLNameSpace extends abstract_NS { @@ -36,46 +38,79 @@ public class IfcOWLNameSpace extends abstract_NS { private final Property description; private final Property name; private final Property longName; - private final Property guid; + private final Property units_IfcUnitAssignment; + private final Property unitType_IfcNamedUnit; + private final Property name_IfcSIUnit; + + private final String IfcBuilding; private final String IfcSite; private final String IfcSpace; private final String IfcProduct; private final String IfcPropertySet; + private final String IfcUnitAssignment; + private final String IfcSIUnit; + private final String LENGTHUNIT; + private final String AREAUNIT; + private final String VOLUMEUNIT; + private final String PLANEANGLEUNIT; + + private final String METRE; + private final String SQUARE_METRE; + private final String CUBIC_METRE; + private final String RADIAN; private final String ifcURI; public IfcOWLNameSpace(String ifcURI) { + // There should be bo vocabulary that does not end in # or /. This fixes possible errors + if(!ifcURI.endsWith("#")&&!ifcURI.endsWith("/")) + ifcURI=ifcURI+"#"; this.ifcURI=ifcURI; - relatingObject_IfcRelDecomposes = property(ifcURI, "#relatingObject_IfcRelDecomposes"); - relatedObjects_IfcRelDecomposes = property(ifcURI, "#relatedObjects_IfcRelDecomposes"); + relatingObject_IfcRelDecomposes = property(ifcURI, "relatingObject_IfcRelDecomposes"); + relatedObjects_IfcRelDecomposes = property(ifcURI, "relatedObjects_IfcRelDecomposes"); relatingStructure_IfcRelContainedInSpatialStructure = property(ifcURI, - "#relatingStructure_IfcRelContainedInSpatialStructure"); + "relatingStructure_IfcRelContainedInSpatialStructure"); relatedElements_IfcRelContainedInSpatialStructure = property(ifcURI, - "#relatedElements_IfcRelContainedInSpatialStructure"); + "relatedElements_IfcRelContainedInSpatialStructure"); - relatedObjects_IfcRelDefines = property(ifcURI, "#relatedObjects_IfcRelDefines"); - relatingPropertyDefinition_IfcRelDefinesByProperties =property(ifcURI, "#relatingPropertyDefinition_IfcRelDefinesByProperties"); + relatedObjects_IfcRelDefines = property(ifcURI, "relatedObjects_IfcRelDefines"); + relatingPropertyDefinition_IfcRelDefinesByProperties =property(ifcURI, "relatingPropertyDefinition_IfcRelDefinesByProperties"); - name_IfcRoot =property(ifcURI, "#name_IfcRoot"); - name_IfcProperty =property(ifcURI, "#name_IfcProperty"); - hasProperties_IfcPropertySet =property(ifcURI, "#hasProperties_IfcPropertySet"); - nominalValue_IfcPropertySingleValue =property(ifcURI, "#nominalValue_IfcPropertySingleValue"); + name_IfcRoot =property(ifcURI, "name_IfcRoot"); + name_IfcProperty =property(ifcURI, "name_IfcProperty"); + hasProperties_IfcPropertySet =property(ifcURI, "hasProperties_IfcPropertySet"); + nominalValue_IfcPropertySingleValue =property(ifcURI, "nominalValue_IfcPropertySingleValue"); - description = property(ifcURI, "#description_IfcRoot"); - name = property(ifcURI, "#name_IfcRoot"); - longName = property(ifcURI, "#longName_IfcSpatialStructureElement"); + description = property(ifcURI, "description_IfcRoot"); + name = property(ifcURI, "name_IfcRoot"); + longName = property(ifcURI, "longName_IfcSpatialStructureElement"); + units_IfcUnitAssignment=property(ifcURI, "units_IfcUnitAssignment"); - guid = property(ifcURI, "#globalId_IfcRoot"); + guid = property(ifcURI, "globalId_IfcRoot"); - IfcBuilding = ifcURI + "#IfcBuilding"; - IfcSite = ifcURI + "#IfcSite"; - IfcSpace = ifcURI + "#IfcSpace"; - IfcProduct = ifcURI + "#IfcProduct"; - IfcPropertySet = ifcURI + "#IfcPropertySet"; + IfcBuilding = ifcURI + "IfcBuilding"; + IfcSite = ifcURI + "IfcSite"; + IfcSpace = ifcURI + "IfcSpace"; + IfcProduct = ifcURI + "IfcProduct"; + IfcPropertySet = ifcURI + "IfcPropertySet"; + IfcUnitAssignment = ifcURI + "IfcUnitAssignment"; + IfcSIUnit = ifcURI + "IfcSIUnit"; + + unitType_IfcNamedUnit = property(ifcURI, "unitType_IfcNamedUnit"); + name_IfcSIUnit = property(ifcURI, "name_IfcSIUnit"); + LENGTHUNIT= ifcURI + "LENGTHUNIT"; + AREAUNIT= ifcURI + "AREAUNIT"; + VOLUMEUNIT= ifcURI + "VOLUMEUNIT"; + PLANEANGLEUNIT= ifcURI + "PLANEANGLEUNIT"; + + METRE= ifcURI + "METRE"; + SQUARE_METRE= ifcURI + "SQUARE_METRE"; + CUBIC_METRE= ifcURI + "CUBIC_METRE"; + RADIAN= ifcURI + "RADIAN"; } @@ -88,7 +123,7 @@ public String getIfcURI() { public Property getProperty(String name) { - return property(ifcURI, "#"+name); + return property(ifcURI, name); } public Property getRelatingObject_IfcRelDecomposes() { @@ -130,6 +165,19 @@ public Property getLongName() { public Property getGuid() { return guid; } + + public Property getUnits_IfcUnitAssignment() { + return units_IfcUnitAssignment; + } + public Property getUnitType_IfcNamedUnit() { + return unitType_IfcNamedUnit; + } + + public Property getName_IfcSIUnit() { + return name_IfcSIUnit; + } + + public String getIfcBuilding() { return IfcBuilding; } @@ -142,9 +190,56 @@ public String getIfcSpace() { public String getIfcProduct() { return IfcProduct; } + + public String getIfcUnitAssignment() { + return IfcUnitAssignment; + } + public String getIfcSIUnit() { + return IfcSIUnit; + } + + + + + public String getLENGTHUNIT() { + return LENGTHUNIT; + } + + public String getAREAUNIT() { + return AREAUNIT; + } + + public String getVOLUMEUNIT() { + return VOLUMEUNIT; + } + + public String getPLANEANGLEUNIT() { + return PLANEANGLEUNIT; + } + + + public String getMETRE() { + return METRE; + } + + public String getSQUARE_METRE() { + return SQUARE_METRE; + } + + public String getCUBIC_METRE() { + return CUBIC_METRE; + } + + public String getRADIAN() { + return RADIAN; + } + + public String getIfcPropertySet() { return IfcPropertySet; } + + static public Property getHasString() { return hasString; } diff --git a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/LBD_NS.java b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/LBD_NS.java index d2ebad95..aba37e9f 100644 --- a/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/LBD_NS.java +++ b/converter/src/main/java/org/linkedbuildingdata/ifc2lbd/namespace/LBD_NS.java @@ -6,8 +6,39 @@ import org.apache.jena.rdf.model.Resource; public class LBD_NS extends abstract_NS{ + // http://linkedbuildingdata.net/ldac2019/files/LDAC2019_Joseph_ODonovan.pdf + public static class GEO { + public static final String GEO_ns = "http://www.opengis.net/ont/geosparql#"; + public static final Property hasGeometry =property(GEO_ns,"hasGeometry"); + public static final Property asWKT =property(GEO_ns,"asWKT"); + public static void addNameSpace(Model model) + { + model.setNsPrefix("geo", GEO_ns); + } + } + + public static class SMLS { + public static final String SMLS_ns = "https://w3id.org/def/smls-owl#"; + public static final Property unit =property(SMLS_ns,"unit"); + public static final Property accuracy =property(SMLS_ns,"accuracy"); + public static void addNameSpace(Model model) + { + model.setNsPrefix("smls", SMLS_ns); + } + } - + public static class UNIT { + public static final String UNIT_ns = "http://qudt.org/vocab/unit/"; + public static final Resource METER =resource(UNIT_ns,"M"); + public static final Resource SQUARE_METRE =resource(UNIT_ns,"M2"); + public static final Resource CUBIC_METRE =resource(UNIT_ns,"M3"); + public static final Resource RADIAN =resource(UNIT_ns,"RAD"); + public static void addNameSpace(Model model) + { + model.setNsPrefix("unit", UNIT_ns); + } + + } public static class BOT { public static final String bot_ns = "https://w3id.org/bot#"; @@ -58,11 +89,12 @@ public static Property getProperty(String name) { } } - + public static class PROPS_NS { public static final String props_ns = "https://w3id.org/props#"; public static final String bsddprops_ns = "https://buildingsmart.org/bsddld#"; - public static final String psd_ns = "http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD#"; + public static final String psd_ns = "http://lbd.arch.rwth-aachen.de/ifcOWL/IFC4-PSD#"; + //public static final String psd_ns = "http://linkedbuildingdata.net/ifcOWL/IFC4-PSD#"; public static void addNameSpace(Model model) { @@ -72,7 +104,8 @@ public static void addNameSpace(Model model) } //public static final Resource props=resource(props_ns,"Pset"); - //public static final Property partofPset=property(props_ns, "partOfPset"); + //public static final Property partofPset=property(props_ns, "partOfPset"); + public static final Property isBSDDProp=property(bsddprops_ns, "isBSDDProperty"); public static final Property namePset=property(psd_ns, "name"); public static final Property ifdGuidProperty=property(psd_ns,"ifdguid"); diff --git a/converter/src/main/resources/pset/Pset_ActionRequest.ttl b/converter/src/main/resources/pset/Pset_ActionRequest.ttl new file mode 100644 index 00000000..1df4b2e6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActionRequest.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe098e980d1bc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A specific name or label that further qualifies the identity of a request source. In the event of an email, this may be the email address." ; + rdfs:label "RequestSourceLabel" ; + IFC4-PSD:definition "A specific name or label that further qualifies the identity of a request source. In the event of an email, this may be the email address." ; + IFC4-PSD:definitionAlias "要請がなされる源のあらかじめ定義されたタイプの識別子。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e098e980d1bc11e1800000215ad4efdf" ; + IFC4-PSD:name "RequestSourceLabel" ; + IFC4-PSD:nameAlias "Request Source Label"@en , "要請ソースタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pf0b0c900d1bc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Comments that may be made on the request." ; + rdfs:label "RequestComments" ; + IFC4-PSD:definition "Comments that may be made on the request." ; + IFC4-PSD:definitionAlias "要請を作成する人物の名称。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f0b0c900d1bc11e1800000215ad4efdf" ; + IFC4-PSD:name "RequestComments" ; + IFC4-PSD:nameAlias "Request Comments"@en , "要請ソース名"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:peabae800d1bc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The person making the request, where known." ; + rdfs:label "RequestSourceName" ; + IFC4-PSD:definition "The person making the request, where known." ; + IFC4-PSD:definitionAlias ""@en , "要請源の識別を確認するための特定の名称またはラベル。電子メールの場合、電子メールアドレスに相当する。"@ja-JP ; + IFC4-PSD:ifdguid "eabae800d1bc11e1800000215ad4efdf" ; + IFC4-PSD:name "RequestSourceName" ; + IFC4-PSD:nameAlias "要請ソースラベル"@ja-JP , "Request Source Name"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcPerson + ] . + +:RequestSourceLabel a rdf:Property ; + rdfs:seeAlso :pe098e980d1bc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequestSourceLabel . + +:Pset_ActionRequest a IFC4-PSD:PropertySetDef ; + rdfs:comment "An action request is a request for an action to fulfill a need. HISTORY: IFC4: Removed RequestSourceType, RequestDescription, Status" ; + rdfs:label "Pset_ActionRequest" ; + IFC4-PSD:applicableClass IFC4:IfcActionRequest ; + IFC4-PSD:applicableTypeValue "IfcActionRequest" ; + IFC4-PSD:definition "An action request is a request for an action to fulfill a need. HISTORY: IFC4: Removed RequestSourceType, RequestDescription, Status" ; + IFC4-PSD:definitionAlias ""@en , "ファシリティマネジメントにおける施策への要請事項に関するプロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActionRequest" ; + IFC4-PSD:propertyDef :pf0b0c900d1bc11e1800000215ad4efdf , :pe098e980d1bc11e1800000215ad4efdf , :peabae800d1bc11e1800000215ad4efdf . + +:RequestSourceName a rdf:Property ; + rdfs:seeAlso :peabae800d1bc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequestSourceName . + +:RequestComments a rdf:Property ; + rdfs:seeAlso :pf0b0c900d1bc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequestComments . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ActorCommon.ttl b/converter/src/main/resources/pset/Pset_ActorCommon.ttl new file mode 100644 index 00000000..b6c5d5de --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActorCommon.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix xsd: . +@prefix rdfs: . +@prefix IFC4: . + +:p06be8980d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designation of the category into which the actors in the population belong." ; + rdfs:label "Category" ; + IFC4-PSD:definition "Designation of the category into which the actors in the population belong." ; + IFC4-PSD:definitionAlias ""@en , "母集団の中の関与者のカテゴリー(部門・分野)の指定。"@ja-JP , "该组参与者所属的类别。"@zh-CN ; + IFC4-PSD:ifdguid "06be8980d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Category" ; + IFC4-PSD:nameAlias "部門"@ja-JP , "类别"@zh-CN , "Category"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Category a rdf:Property ; + rdfs:seeAlso :p06be8980d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Category . + +:SkillLevel a rdf:Property ; + rdfs:seeAlso :p0c1bd400d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SkillLevel . + +:p0c1bd400d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Skill level exhibited by the actor and which indicates an extent of their capability to perform actions on the artefacts upon which they can act." ; + rdfs:label "SkillLevel" ; + IFC4-PSD:definition "Skill level exhibited by the actor and which indicates an extent of their capability to perform actions on the artefacts upon which they can act." ; + IFC4-PSD:definitionAlias "参与者具备的技能的等级,即他们在专业领域内所能展示的能力。"@zh-CN , "関与者が示すスキルレベル(技能・技量段階)、および実行されるアクションへの能力を示すもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0c1bd400d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "SkillLevel" ; + IFC4-PSD:nameAlias "Skill Level"@en , "技能段階"@ja-JP , "技能等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p00c8a880d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of actors that are to be dealt with together in the population." ; + rdfs:label "NumberOfActors" ; + IFC4-PSD:definition "The number of actors that are to be dealt with together in the population." ; + IFC4-PSD:definitionAlias "该组参与者的总数。"@zh-CN , ""@en , "母集団において取り扱われる関与者の数。"@ja-JP ; + IFC4-PSD:ifdguid "00c8a880d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfActors" ; + IFC4-PSD:nameAlias "関与者数"@ja-JP , "参与者数"@zh-CN , "Number Of Actors"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + + + a owl:Ontology ; + owl:imports . + +:Pset_ActorCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "A property set that enables further classification of actors, including the ability to give a number of actors to be designated as a population, the number being specified as a property to be dealt with as a single value rather than having to aggregate a number of instances of IfcActor." ; + rdfs:label "Pset_ActorCommon" ; + IFC4-PSD:applicableClass IFC4:IfcActor ; + IFC4-PSD:applicableTypeValue "IfcActor" ; + IFC4-PSD:definition "A property set that enables further classification of actors, including the ability to give a number of actors to be designated as a population, the number being specified as a property to be dealt with as a single value rather than having to aggregate a number of instances of IfcActor." ; + IFC4-PSD:definitionAlias "アクター(関係者)、ある指定された母集団に関与者数を与える能力、IfcActorのインスタンスの数の集合としてよりも一つの価値として扱うことの出来る特性として指定される数、などの分類を可能にするプロパティセット定義。"@ja-JP , "该属性集的作用为对参与者进一步分类,包括将一定数量的参与者归为一组的能力。本属性集的数量属性为一个单值,而不是作为多个IfcActor实例的集合。"@zh-CN , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActorCommon" ; + IFC4-PSD:propertyDef :p0c1bd400d1bd11e1800000215ad4efdf , :p06be8980d1bd11e1800000215ad4efdf , :p00c8a880d1bd11e1800000215ad4efdf . + +:NumberOfActors a rdf:Property ; + rdfs:seeAlso :p00c8a880d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfActors . diff --git a/converter/src/main/resources/pset/Pset_ActuatorPHistory.ttl b/converter/src/main/resources/pset/Pset_ActuatorPHistory.ttl new file mode 100644 index 00000000..b4d4fb66 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorPHistory.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ActuatorPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history of actuators. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ActuatorPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcActuator ; + IFC4-PSD:applicableTypeValue "IfcActuator" ; + IFC4-PSD:definition "Properties for history of actuators. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "アクチュエータの性能履歴の属性。IFC4にて追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorPHistory" ; + IFC4-PSD:propertyDef :p1dfd7700d1bd11e1800000215ad4efdf , :p16d66900d1bd11e1800000215ad4efdf , :p1b028680d1bd11e1800000215ad4efdf . + +:p1dfd7700d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + IFC4-PSD:definitionAlias "대체 기능으로 수동 조작이 제공되는지 (= TRUE) 여부 (= FALSE)를 확인한다. 수동으로 조작하는 액츄에이터의 경우는이 값을 기본값으로 FALSE로 설정해야하므로주의한다."@ko-KR , "エラーコードまたはIDを示す。例:'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'."@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1dfd7700d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "재정 기능의 유무"@ko-KR , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Position a rdf:Property ; + rdfs:seeAlso :p16d66900d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Position . + +:p16d66900d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates position of the actuator over time where 0.0 is fully closed and 1.0 is fully open." ; + rdfs:label "Position" ; + IFC4-PSD:definition "Indicates position of the actuator over time where 0.0 is fully closed and 1.0 is fully open." ; + IFC4-PSD:definitionAlias "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , "アクチュエータの時間ごとの位置を示す値。0.0が完全に閉じられた状態で、1.0が完全に開いた状態。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "16d66900d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Position" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Position"@en , "位置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p1dfd7700d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p1b028680d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + rdfs:label "Quality" ; + IFC4-PSD:definition "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + IFC4-PSD:definitionAlias "計測の品質を示す値。"@ja-JP , ""@en , "요청한 액츄에이터의 안전 장치 유형을 표시"@ko-KR ; + IFC4-PSD:ifdguid "1b028680d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Quality" ; + IFC4-PSD:nameAlias "Quality"@en , "品質"@ja-JP , "페일 세이프 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Quality a rdf:Property ; + rdfs:seeAlso :p1b028680d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Quality . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypeCommon.ttl new file mode 100644 index 00000000..1b462c17 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypeCommon.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p42595380d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Specifies the required fail-safe position of the actuator." ; + rdfs:label "FailPosition" ; + IFC4-PSD:definition "Specifies the required fail-safe position of the actuator." ; + IFC4-PSD:definitionAlias "要求されたアクチュエータのフェールセーフタイプを示す。"@ja-JP , "대체 기능으로 수동 조작이 제공되는지 (= TRUE) 여부 (= FALSE)를 확인한다. 수동으로 조작하는 액츄에이터의 경우는이 값을 기본값으로 FALSE로 설정해야하므로주의한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "42595380d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "FailPosition" ; + IFC4-PSD:nameAlias "Fail Position"@en , "フェールセーフタイプ"@ja-JP , "재정 기능의 유무"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FAILOPEN" , "FAILCLOSED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Application a rdf:Property ; + rdfs:seeAlso :p3469a24941934603a1c9c402d5623291 ; + rdfs:subPropertyOf IFC4-PSD:Application . + +:ManualOverride a rdf:Property ; + rdfs:seeAlso :p4dac7f00d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ManualOverride . + +:p2a81cf80d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2a81cf80d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p2f468380d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:FailPosition a rdf:Property ; + rdfs:seeAlso :p42595380d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FailPosition . + +:Pset_ActuatorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Actuator type common attributes." ; + rdfs:label "Pset_ActuatorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcActuator ; + IFC4-PSD:applicableTypeValue "IfcActuator" ; + IFC4-PSD:definition "Actuator type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "アクチュエータタイプの共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypeCommon" ; + IFC4-PSD:propertyDef :p2a81cf80d1bd11e1800000215ad4efdf , :p42595380d1bd11e1800000215ad4efdf , :p3469a24941934603a1c9c402d5623291 , :p4dac7f00d1bd11e1800000215ad4efdf , :p2f468380d1bd11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p4dac7f00d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies whether hand-operated operation is provided as an override (= TRUE) or not (= FALSE). Note that this value should be set to FALSE by default in the case of a Hand Operated Actuator." ; + rdfs:label "ManualOverride" ; + IFC4-PSD:definition "Identifies whether hand-operated operation is provided as an override (= TRUE) or not (= FALSE). Note that this value should be set to FALSE by default in the case of a Hand Operated Actuator." ; + IFC4-PSD:definitionAlias ""@en , "オーバーライド機能として手動操作が提供されるか (= TRUE) 、否か (= FALSE)を識別する。手動で操作するアクチュエータの場合は、この値をデフォルトとしてFALSEに設定する必要があるので注意すること。"@ja-JP ; + IFC4-PSD:ifdguid "4dac7f00d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "ManualOverride" ; + IFC4-PSD:nameAlias "Manual Override"@en , "オーバーライド機能の有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p2f468380d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "요청한 액츄에이터의 안전 장치 유형을 표시"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "2f468380d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en , "페일 세이프 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p3469a24941934603a1c9c402d5623291 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates application of actuator." ; + rdfs:label "Application" ; + IFC4-PSD:definition "Indicates application of actuator." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3469a24941934603a1c9c402d5623291" ; + IFC4-PSD:name "Application" ; + IFC4-PSD:nameAlias "Application"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OTHER" , "ENTRYEXITDEVICE" , "NOTKNOWN" , "FIRESMOKEDAMPERACTUATOR" , "UNSET" , "SUNBLINDACTUATOR" , "LAMPACTUATOR" , "DAMPERACTUATOR" , "VALVEPOSITIONER" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2a81cf80d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypeElectricActuator.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypeElectricActuator.ttl new file mode 100644 index 00000000..46b5e036 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypeElectricActuator.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p58ffaa80d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum input power requirement." ; + rdfs:label "ActuatorInputPower" ; + IFC4-PSD:definition "Maximum input power requirement." ; + IFC4-PSD:definitionAlias "최대 입력 전력"@ko-KR , ""@en , "最大入力電力。"@ja-JP ; + IFC4-PSD:ifdguid "58ffaa80d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "ActuatorInputPower" ; + IFC4-PSD:nameAlias "Actuator Input Power"@en , "입력 전력"@ko-KR , "入力電力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:ElectricActuatorType + a rdf:Property ; + rdfs:seeAlso :p5ef58b80d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricActuatorType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ActuatorInputPower a rdf:Property ; + rdfs:seeAlso :p58ffaa80d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActuatorInputPower . + +:Pset_ActuatorTypeElectricActuator + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that electrically actuates a control element." ; + rdfs:label "Pset_ActuatorTypeElectricActuator" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcActuator/ELECTRICACTUATOR" ; + IFC4-PSD:definition "A device that electrically actuates a control element." ; + IFC4-PSD:definitionAlias "制御要素を電気的に作動させるデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypeElectricActuator" ; + IFC4-PSD:propertyDef :p58ffaa80d1bd11e1800000215ad4efdf , :p5ef58b80d1bd11e1800000215ad4efdf . + +:p5ef58b80d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies electric actuator as defined by its operational principle." ; + rdfs:label "ElectricActuatorType" ; + IFC4-PSD:definition "Enumeration that identifies electric actuator as defined by its operational principle." ; + IFC4-PSD:definitionAlias "作動原理によって定義された電気式アクチュエータを識別する一覧。"@ja-JP , ""@en , "작동 원리에 의해 정의된 전기식 액츄에이터를 식별하는 목록"@ko-KR ; + IFC4-PSD:ifdguid "5ef58b80d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricActuatorType" ; + IFC4-PSD:nameAlias "Electric Actuator Type"@en , "전기식 액추에이터 유형"@ko-KR , "電気式アクチュエータタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MOTORDRIVE" , "MAGNETIC" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypeHydraulicActuator.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypeHydraulicActuator.ttl new file mode 100644 index 00000000..9fc26193 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypeHydraulicActuator.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ActuatorTypeHydraulicActuator + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that hydraulically actuates a control element." ; + rdfs:label "Pset_ActuatorTypeHydraulicActuator" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcActuator/HYDRAULICACTUATOR" ; + IFC4-PSD:definition "A device that hydraulically actuates a control element." ; + IFC4-PSD:definitionAlias ""@en , "制御要素を水圧(油圧)で作動させるデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypeHydraulicActuator" ; + IFC4-PSD:propertyDef :p759be280d1bd11e1800000215ad4efdf , :p7af92d00d1bd11e1800000215ad4efdf . + +:InputPressure a rdf:Property ; + rdfs:seeAlso :p759be280d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InputPressure . + +:InputFlowrate a rdf:Property ; + rdfs:seeAlso :p7af92d00d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InputFlowrate . + +:p7af92d00d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum hydraulic flowrate requirement." ; + rdfs:label "InputFlowrate" ; + IFC4-PSD:definition "Maximum hydraulic flowrate requirement." ; + IFC4-PSD:definitionAlias "最大流量。"@ja-JP , "최대 유량"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "7af92d00d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "InputFlowrate" ; + IFC4-PSD:nameAlias "입력 유량"@ko-KR , "Input Flowrate"@en , "入力流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p759be280d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum design pressure for the actuator." ; + rdfs:label "InputPressure" ; + IFC4-PSD:definition "Maximum design pressure for the actuator." ; + IFC4-PSD:definitionAlias ""@en , "액츄에이터의 최대 설계 압력"@ko-KR , "アクチュエータへの最大設計圧力。"@ja-JP ; + IFC4-PSD:ifdguid "759be280d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "InputPressure" ; + IFC4-PSD:nameAlias "入力圧力"@ja-JP , "입력 압력"@ko-KR , "Input Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypeLinearActuation.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypeLinearActuation.ttl new file mode 100644 index 00000000..6165c1be --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypeLinearActuation.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Force a rdf:Property ; + rdfs:seeAlso :p877d8580d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Force . + +:Stroke a rdf:Property ; + rdfs:seeAlso :p8cdad000d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Stroke . + +:p877d8580d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the maximum close-off force for the actuator." ; + rdfs:label "Force" ; + IFC4-PSD:definition "Indicates the maximum close-off force for the actuator." ; + IFC4-PSD:definitionAlias ""@en , "アクチュエータの最大締め切り力を示す。"@ja-JP , "액츄에이터의 최대 마감 힘을 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "877d8580d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Force" ; + IFC4-PSD:nameAlias "최대추력"@ko-KR , "Force"@en , "最大推力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcForceMeasure + ] . + +:Pset_ActuatorTypeLinearActuation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Characteristics of linear actuation of an actuator\nHistory: Replaces Pset_LinearActuator" ; + rdfs:label "Pset_ActuatorTypeLinearActuation" ; + IFC4-PSD:applicableClass IFC4:IfcActuator ; + IFC4-PSD:applicableTypeValue "IfcActuator" ; + IFC4-PSD:definition "Characteristics of linear actuation of an actuator\nHistory: Replaces Pset_LinearActuator" ; + IFC4-PSD:definitionAlias "アクチュエータの直線動作の特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypeLinearActuation" ; + IFC4-PSD:propertyDef :p877d8580d1bd11e1800000215ad4efdf , :p8cdad000d1bd11e1800000215ad4efdf . + +:p8cdad000d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the maximum distance the actuator must traverse." ; + rdfs:label "Stroke" ; + IFC4-PSD:definition "Indicates the maximum distance the actuator must traverse." ; + IFC4-PSD:definitionAlias "アクチュエータが動く最大距離を示す。"@ja-JP , "액츄에이터가 움직이는 최대 거리를 보여준다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8cdad000d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Stroke" ; + IFC4-PSD:nameAlias "ストローク"@ja-JP , "입력"@ko-KR , "Stroke"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypePneumaticActuator.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypePneumaticActuator.ttl new file mode 100644 index 00000000..a0e5c86f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypePneumaticActuator.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ActuatorTypePneumaticActuator + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that pneumatically actuates a control element" ; + rdfs:label "Pset_ActuatorTypePneumaticActuator" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcActuator/PNEUMATICACTUATOR" ; + IFC4-PSD:definition "A device that pneumatically actuates a control element" ; + IFC4-PSD:definitionAlias ""@en , "制御要素を空気圧で作動させるデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypePneumaticActuator" ; + IFC4-PSD:propertyDef :p9c5a1900d1bd11e1800000215ad4efdf , :pa24ffa00d1bd11e1800000215ad4efdf . + +:pa24ffa00d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum input control air flowrate requirement." ; + rdfs:label "InputFlowrate" ; + IFC4-PSD:definition "Maximum input control air flowrate requirement." ; + IFC4-PSD:definitionAlias ""@en , "최대 제어 공기 유량"@ko-KR , "最大制御空気流量。"@ja-JP ; + IFC4-PSD:ifdguid "a24ffa00d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "InputFlowrate" ; + IFC4-PSD:nameAlias "입력 유량"@ko-KR , "Input Flowrate"@en , "入力流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p9c5a1900d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum input control air pressure requirement." ; + rdfs:label "InputPressure" ; + IFC4-PSD:definition "Maximum input control air pressure requirement." ; + IFC4-PSD:definitionAlias ""@en , "최대 제어 공압"@ko-KR , "最大制御空気圧。"@ja-JP ; + IFC4-PSD:ifdguid "9c5a1900d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "InputPressure" ; + IFC4-PSD:nameAlias "入力圧力"@ja-JP , "Input Pressure"@en , "입력 압력"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:InputPressure a rdf:Property ; + rdfs:seeAlso :p9c5a1900d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InputPressure . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InputFlowrate a rdf:Property ; + rdfs:seeAlso :pa24ffa00d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InputFlowrate . diff --git a/converter/src/main/resources/pset/Pset_ActuatorTypeRotationalActuation.ttl b/converter/src/main/resources/pset/Pset_ActuatorTypeRotationalActuation.ttl new file mode 100644 index 00000000..a6b95960 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ActuatorTypeRotationalActuation.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Torque a rdf:Property ; + rdfs:seeAlso :pb1cf4300d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Torque . + +:RangeAngle a rdf:Property ; + rdfs:seeAlso :pb8f65100d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RangeAngle . + +:pb8f65100d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the maximum rotation the actuator must traverse." ; + rdfs:label "RangeAngle" ; + IFC4-PSD:definition "Indicates the maximum rotation the actuator must traverse." ; + IFC4-PSD:definitionAlias ""@en , "액츄에이터가 움직이는 최대 회전각을 나타낸다."@ko-KR , "アクチュエータが動く最大回転角を示す。"@ja-JP ; + IFC4-PSD:ifdguid "b8f65100d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "RangeAngle" ; + IFC4-PSD:nameAlias "최대 회전각"@ko-KR , "Range Angle"@en , "最大回転角"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb1cf4300d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the maximum close-off torque for the actuator." ; + rdfs:label "Torque" ; + IFC4-PSD:definition "Indicates the maximum close-off torque for the actuator." ; + IFC4-PSD:definitionAlias ""@en , "액츄에이터의 최대 마감 토크를 나타낸다."@ko-KR , "アクチュエータの最大締め切りトルクを示す。"@ja-JP ; + IFC4-PSD:ifdguid "b1cf4300d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Torque" ; + IFC4-PSD:nameAlias "Torque"@en , "최대 토크"@ko-KR , "最大トルク"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTorqueMeasure + ] . + +:Pset_ActuatorTypeRotationalActuation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Characteristics of rotational actuation of an actuator\nHistory: Replaces Pset_RotationalActuator" ; + rdfs:label "Pset_ActuatorTypeRotationalActuation" ; + IFC4-PSD:applicableClass IFC4:IfcActuator ; + IFC4-PSD:applicableTypeValue "IfcActuator" ; + IFC4-PSD:definition "Characteristics of rotational actuation of an actuator\nHistory: Replaces Pset_RotationalActuator" ; + IFC4-PSD:definitionAlias "アクチュエータの回転動作の特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ActuatorTypeRotationalActuation" ; + IFC4-PSD:propertyDef :pb8f65100d1bd11e1800000215ad4efdf , :pb1cf4300d1bd11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_AirSideSystemInformation.ttl b/converter/src/main/resources/pset/Pset_AirSideSystemInformation.ttl new file mode 100644 index 00000000..c92f86cc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirSideSystemInformation.ttl @@ -0,0 +1,336 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p0ecaf900d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The air flowrate required to satisfy the sensible peak loads." ; + rdfs:label "AirflowSensible" ; + IFC4-PSD:definition "The air flowrate required to satisfy the sensible peak loads." ; + IFC4-PSD:definitionAlias "최대 잠열 부하에 대한 급기 량"@ko-KR , "最大潜熱負荷に対応する給気量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0ecaf900d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowSensible" ; + IFC4-PSD:nameAlias "Airflow Sensible"@en , "顕熱空調給気量"@ja-JP , "현열 공조 급기 량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p08d51800d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total amount of energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level total energy gains." ; + rdfs:label "EnergyGainTotal" ; + IFC4-PSD:definition "The total amount of energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level total energy gains." ; + IFC4-PSD:definitionAlias "거실 최대 냉방 부하 및 공조 시스템 (장비 등) 재열 부하에 의한 최대 열부하."@ko-KR , ""@en , "居室の最大冷房負荷と空調システム(機器等)の再熱負荷による最大熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "08d51800d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "EnergyGainTotal" ; + IFC4-PSD:nameAlias "총 열 검색"@ko-KR , "Energy Gain Total"@en , "総熱取得"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:Name a rdf:Property ; + rdfs:seeAlso :pc9a6c700d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Name . + +:p2609e680d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity factor for Summer infiltration." ; + rdfs:label "InfiltrationDiversitySummer" ; + IFC4-PSD:definition "Diversity factor for Summer infiltration." ; + IFC4-PSD:definitionAlias ""@en , "夏期すき間換気率。"@ja-JP , "여름 틈새 환기 비율"@ko-KR ; + IFC4-PSD:ifdguid "2609e680d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationDiversitySummer" ; + IFC4-PSD:nameAlias "Infiltration Diversity Summer"@en , "夏期すき間換気率"@ja-JP , "여름틈새 환기 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pf3f88480d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This enumeration defines the basic types of air side systems (e.g., SingleDuct, DualDuct, Multizone, etc.)." ; + rdfs:label "AirSideSystemDistributionType" ; + IFC4-PSD:definition "This enumeration defines the basic types of air side systems (e.g., SingleDuct, DualDuct, Multizone, etc.)." ; + IFC4-PSD:definitionAlias ""@en , "기본적인 공조 방식 (단일 덕트, 이중 덕트, 멀티존 등)"@ko-KR , "基本的な空調方式(単一ダクト、二重ダクト、マルチゾーン等)。"@ja-JP ; + IFC4-PSD:ifdguid "f3f88480d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "AirSideSystemDistributionType" ; + IFC4-PSD:nameAlias "搬送方式"@ja-JP , "Air Side System Distribution Type"@en , "반송방식"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SINGLEDUCT" , "DUALDUCT" , "MULTIZONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:LoadSafetyFactor a rdf:Property ; + rdfs:seeAlso :p37eb8980d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadSafetyFactor . + +:p14284380d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The sum of total energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level sensible energy gains." ; + rdfs:label "EnergyGainSensible" ; + IFC4-PSD:definition "The sum of total energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level sensible energy gains." ; + IFC4-PSD:definitionAlias "ピーク時各居室の最大冷房負荷と空調システムの顕熱負荷による最大顕熱負荷。"@ja-JP , "최대 각 거실 최대 냉방 부하 및 공조 시스템의 현열 부하에 의한 최대 현열 부하"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "14284380d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "EnergyGainSensible" ; + IFC4-PSD:nameAlias "顕熱空調負荷"@ja-JP , "Energy Gain Sensible"@en , "현열 공조 부하"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p43d74b80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cooling temperature difference for calculating space air flow rates." ; + rdfs:label "CoolingTemperatureDelta" ; + IFC4-PSD:definition "Cooling temperature difference for calculating space air flow rates." ; + IFC4-PSD:definitionAlias "에어컨 송풍 량 계산을위한 냉방 급기 온도차"@ko-KR , "空調送風量計算用の冷房給気温度差。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "43d74b80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingTemperatureDelta" ; + IFC4-PSD:nameAlias "Cooling Temperature Delta"@en , "冷房時送風温度差"@ja-JP , "냉방시 돌풍 온도차"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:Pset_AirSideSystemInformation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Attributes that apply to an air side HVAC system. HISTORY: New property set in IFC Release 1.0." ; + rdfs:label "Pset_AirSideSystemInformation" ; + IFC4-PSD:applicableClass IFC4:IfcSpatialZone , IFC4:IfcZone , IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace,IfcZone,IfcSpatialZone" ; + IFC4-PSD:definition "Attributes that apply to an air side HVAC system. HISTORY: New property set in IFC Release 1.0." ; + IFC4-PSD:definitionAlias "空調システムに適用する属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirSideSystemInformation" ; + IFC4-PSD:propertyDef :p2b673100d1be11e1800000215ad4efdf , :pf3f88480d1bd11e1800000215ad4efdf , :pd62b1f80d1bd11e1800000215ad4efdf , :p31f5a880d1be11e1800000215ad4efdf , :p37eb8980d1be11e1800000215ad4efdf , :pd0353e80d1bd11e1800000215ad4efdf , :p49cd2c80d1be11e1800000215ad4efdf , :p14284380d1be11e1800000215ad4efdf , :p2609e680d1be11e1800000215ad4efdf , :p0ecaf900d1be11e1800000215ad4efdf , :p20ac9c00d1be11e1800000215ad4efdf , :p0377cd80d1be11e1800000215ad4efdf , :p1ab6bb00d1be11e1800000215ad4efdf , :pc9a6c700d1bd11e1800000215ad4efdf , :p3de16a80d1be11e1800000215ad4efdf , :p43d74b80d1be11e1800000215ad4efdf , :p08d51800d1be11e1800000215ad4efdf , :p4fc30d80d1be11e1800000215ad4efdf . + +:pc9a6c700d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The name of the air side system." ; + rdfs:label "Name" ; + IFC4-PSD:definition "The name of the air side system." ; + IFC4-PSD:definitionAlias ""@en , "空調方式の名称。"@ja-JP , "공조 방식의 명칭"@ko-KR ; + IFC4-PSD:ifdguid "c9a6c700d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Name" ; + IFC4-PSD:nameAlias "Name"@en , "名前"@ja-JP , "이름"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p20ac9c00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lighting diversity." ; + rdfs:label "LightingDiversity" ; + IFC4-PSD:definition "Lighting diversity." ; + IFC4-PSD:definitionAlias "조명 부하 계수"@ko-KR , "照明負荷係数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "20ac9c00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "LightingDiversity" ; + IFC4-PSD:nameAlias "조명부하계수"@ko-KR , "照明負荷係数"@ja-JP , "Lighting Diversity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:CoolingTemperatureDelta + a rdf:Property ; + rdfs:seeAlso :p43d74b80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingTemperatureDelta . + +:EnergyGainSensible a rdf:Property ; + rdfs:seeAlso :p14284380d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergyGainSensible . + +:pd0353e80d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The description of the air side system." ; + rdfs:label "Description" ; + IFC4-PSD:definition "The description of the air side system." ; + IFC4-PSD:definitionAlias ""@en , "공조 방식 설명"@ko-KR , "空調方式の説明。"@ja-JP ; + IFC4-PSD:ifdguid "d0353e80d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "설명"@ko-KR , "説明"@ja-JP , "Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:TotalAirflow a rdf:Property ; + rdfs:seeAlso :p0377cd80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalAirflow . + +:FanPower a rdf:Property ; + rdfs:seeAlso :p4fc30d80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FanPower . + +:p1ab6bb00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The sum of energy losses for the spaces served by the system during the peak heating conditions." ; + rdfs:label "EnergyLoss" ; + IFC4-PSD:definition "The sum of energy losses for the spaces served by the system during the peak heating conditions." ; + IFC4-PSD:definitionAlias "최대 공조 시스템 최대 난방 부하를 제공할 수있는 열 손실"@ko-KR , "ピーク時空調システム最大暖房負荷を提供する際の熱ロス。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1ab6bb00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "EnergyLoss" ; + IFC4-PSD:nameAlias "Energy Loss"@en , "열(에너지)로스"@ko-KR , "熱(エネルギー)ロス"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p2b673100d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity factor for Winter infiltration." ; + rdfs:label "InfiltrationDiversityWinter" ; + IFC4-PSD:definition "Diversity factor for Winter infiltration." ; + IFC4-PSD:definitionAlias "冬期すき間換気率。"@ja-JP , "겨울철 틈새 환기 비율"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "2b673100d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationDiversityWinter" ; + IFC4-PSD:nameAlias "Infiltration Diversity Winter"@en , "겨울철 틈새 환기 비율"@ko-KR , "冬期すき間換気率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:InfiltrationDiversitySummer + a rdf:Property ; + rdfs:seeAlso :p2609e680d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationDiversitySummer . + +:EnergyLoss a rdf:Property ; + rdfs:seeAlso :p1ab6bb00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergyLoss . + +:InfiltrationDiversityWinter + a rdf:Property ; + rdfs:seeAlso :p2b673100d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationDiversityWinter . + +:HeatingTemperatureDelta + a rdf:Property ; + rdfs:seeAlso :p3de16a80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingTemperatureDelta . + +:ApplianceDiversity a rdf:Property ; + rdfs:seeAlso :p31f5a880d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ApplianceDiversity . + +:Description a rdf:Property ; + rdfs:seeAlso :pd0353e80d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:AirSideSystemDistributionType + a rdf:Property ; + rdfs:seeAlso :pf3f88480d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirSideSystemDistributionType . + +:p3de16a80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heating temperature difference for calculating space air flow rates." ; + rdfs:label "HeatingTemperatureDelta" ; + IFC4-PSD:definition "Heating temperature difference for calculating space air flow rates." ; + IFC4-PSD:definitionAlias "空調送風量計算用の暖房給気温度差。"@ja-JP , ""@en , "에어컨 송풍 량 계산을위한 난방 급기 온도차"@ko-KR ; + IFC4-PSD:ifdguid "3de16a80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingTemperatureDelta" ; + IFC4-PSD:nameAlias "暖房時送風温度差"@ja-JP , "Heating Temperature Delta"@en , "난방시 돌풍 온도차"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p0377cd80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total design supply air flowrate required for the system for either heating or cooling conditions, whichever is greater." ; + rdfs:label "TotalAirflow" ; + IFC4-PSD:definition "The total design supply air flowrate required for the system for either heating or cooling conditions, whichever is greater." ; + IFC4-PSD:definitionAlias "暖房、冷房の条件の、いずれか大きい条件で要求される設計給気量。"@ja-JP , ""@en , "난방, 냉방 조건 중 하나 큰 조건에서 요구되는 설계 급기 량"@ko-KR ; + IFC4-PSD:ifdguid "0377cd80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalAirflow" ; + IFC4-PSD:nameAlias "給気量"@ja-JP , "급기량"@ko-KR , "Total Airflow"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:AirSideSystemType a rdf:Property ; + rdfs:seeAlso :pd62b1f80d1bd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirSideSystemType . + +:p49cd2c80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Required outside air ventilation." ; + rdfs:label "Ventilation" ; + IFC4-PSD:definition "Required outside air ventilation." ; + IFC4-PSD:definitionAlias ""@en , "요청한 외기 량"@ko-KR , "要求された外気量。"@ja-JP ; + IFC4-PSD:ifdguid "49cd2c80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "Ventilation" ; + IFC4-PSD:nameAlias "外気量"@ja-JP , "Ventilation"@en , "외기량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p31f5a880d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity of appliance load." ; + rdfs:label "ApplianceDiversity" ; + IFC4-PSD:definition "Diversity of appliance load." ; + IFC4-PSD:definitionAlias ""@en , "機器の負荷率。"@ja-JP , "기기의 부하율"@ko-KR ; + IFC4-PSD:ifdguid "31f5a880d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "ApplianceDiversity" ; + IFC4-PSD:nameAlias "기기의 부하율"@ko-KR , "Appliance Diversity"@en , "機器の負荷率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:LightingDiversity a rdf:Property ; + rdfs:seeAlso :p20ac9c00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightingDiversity . + +:pd62b1f80d1bd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This enumeration specifies the basic types of possible air side systems (e.g., Constant Volume, Variable Volume, etc.)." ; + rdfs:label "AirSideSystemType" ; + IFC4-PSD:definition "This enumeration specifies the basic types of possible air side systems (e.g., Constant Volume, Variable Volume, etc.)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d62b1f80d1bd11e1800000215ad4efdf" ; + IFC4-PSD:name "AirSideSystemType" ; + IFC4-PSD:nameAlias "Air Side System Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONSTANTVOLUMEMULTIPLEZONEREHEAT" , "VARIABLEAIRVOLUMEVARIABLETEMPERATURE" , "VARIABLEAIRVOLUME" , "VARIABLEAIRVOLUMEINDUCTION" , "CONSTANTVOLUMEBYPASS" , "VARIABLEAIRVOLUMEDUALCONDUIT" , "VARIABLEAIRVOLUMEREHEAT" , "VARIABLEAIRVOLUMEVARIABLEDIFFUSERS" , "UNSET" , "CONSTANTVOLUMESINGLEZONE" , "VARIABLEAIRVOLUMEFANPOWERED" , "NOTKNOWN" , "CONSTANTVOLUME" , "OTHER" + ] . + +:AirflowSensible a rdf:Property ; + rdfs:seeAlso :p0ecaf900d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowSensible . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p4fc30d80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan motor loads contributing to the cooling load." ; + rdfs:label "FanPower" ; + IFC4-PSD:definition "Fan motor loads contributing to the cooling load." ; + IFC4-PSD:definitionAlias ""@en , "송풍기 모터의 열 취득"@ko-KR , "送風機モーターからの熱取得。"@ja-JP ; + IFC4-PSD:ifdguid "4fc30d80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "FanPower" ; + IFC4-PSD:nameAlias "송풍기 소비 전력"@ko-KR , "送風機電力消費量"@ja-JP , "Fan Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:Ventilation a rdf:Property ; + rdfs:seeAlso :p49cd2c80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Ventilation . + +:p37eb8980d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Load safety factor." ; + rdfs:label "LoadSafetyFactor" ; + IFC4-PSD:definition "Load safety factor." ; + IFC4-PSD:definitionAlias ""@en , "空調負荷計算用の安全率(割増係数)。"@ja-JP , "공조 부하 계산을위한 안전율 (할증 계수)"@ko-KR ; + IFC4-PSD:ifdguid "37eb8980d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "LoadSafetyFactor" ; + IFC4-PSD:nameAlias "부하의 안전율"@ko-KR , "Load Safety Factor"@en , "負荷の安全率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:EnergyGainTotal a rdf:Property ; + rdfs:seeAlso :p08d51800d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergyGainTotal . diff --git a/converter/src/main/resources/pset/Pset_AirTerminalBoxPHistory.ttl b/converter/src/main/resources/pset/Pset_AirTerminalBoxPHistory.ttl new file mode 100644 index 00000000..6b5dc08e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirTerminalBoxPHistory.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_AirTerminalBoxPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air terminal box performance history attributes." ; + rdfs:label "Pset_AirTerminalBoxPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcAirTerminalBox ; + IFC4-PSD:applicableTypeValue "IfcAirTerminalBox" ; + IFC4-PSD:definition "Air terminal box performance history attributes." ; + IFC4-PSD:definitionAlias "ターミナルボックス性能履歴の属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirTerminalBoxPHistory" ; + IFC4-PSD:propertyDef :p65383780d1be11e1800000215ad4efdf , :p61a4b080d1be11e1800000215ad4efdf , :p5d789300d1be11e1800000215ad4efdf , :p68cbbe80d1be11e1800000215ad4efdf . + +:Sound a rdf:Property ; + rdfs:seeAlso :p65383780d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Sound . + +:p65383780d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sound performance." ; + rdfs:label "Sound" ; + IFC4-PSD:definition "Sound performance." ; + IFC4-PSD:definitionAlias "騒音性能"@ja-JP , "Performance acoustique"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "65383780d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "Sound" ; + IFC4-PSD:nameAlias "Sound"@en , "騒音"@ja-JP , "Acoustique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p61a4b080d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient atmospheric pressure." ; + rdfs:label "AtmosphericPressure" ; + IFC4-PSD:definition "Ambient atmospheric pressure." ; + IFC4-PSD:definitionAlias "周囲大気圧"@ja-JP , ""@en , "Pression atmosphérique ambiante"@fr-FR ; + IFC4-PSD:ifdguid "61a4b080d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericPressure" ; + IFC4-PSD:nameAlias "大気圧"@ja-JP , "Atmospheric Pressure"@en , "Pression atmosphérique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p68cbbe80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flowrate versus damper position relationship;airflow = f ( valve position)." ; + rdfs:label "AirflowCurve" ; + IFC4-PSD:definition "Air flowrate versus damper position relationship;airflow = f ( valve position)." ; + IFC4-PSD:definitionAlias "ダンパ開度と風量の関係  風量=f(開度)"@ja-JP , ""@en , "Relation entre débit d'air par rapport à la position du registre; Débit d'air = f (position du clapet)"@fr-FR ; + IFC4-PSD:ifdguid "68cbbe80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowCurve" ; + IFC4-PSD:nameAlias "Courbe de débit d'air"@fr-FR , "Airflow Curve"@en , "流量曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:DamperPosition a rdf:Property ; + rdfs:seeAlso :p5d789300d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DamperPosition . + +:AtmosphericPressure a rdf:Property ; + rdfs:seeAlso :p61a4b080d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericPressure . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5d789300d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Control damper position, ranging from 0 to 1." ; + rdfs:label "DamperPosition" ; + IFC4-PSD:definition "Control damper position, ranging from 0 to 1." ; + IFC4-PSD:definitionAlias ""@en , "制御ダンパの開度(0~1)"@ja-JP , "Position de contrôle du registre, compris entre 0 et 1."@fr-FR ; + IFC4-PSD:ifdguid "5d789300d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "DamperPosition" ; + IFC4-PSD:nameAlias "Position du registre"@fr-FR , "ダンパ開度"@ja-JP , "Damper Position"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirflowCurve a rdf:Property ; + rdfs:seeAlso :p68cbbe80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowCurve . diff --git a/converter/src/main/resources/pset/Pset_AirTerminalBoxTypeCommon.ttl b/converter/src/main/resources/pset/Pset_AirTerminalBoxTypeCommon.ttl new file mode 100644 index 00000000..493bcf44 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirTerminalBoxTypeCommon.ttl @@ -0,0 +1,284 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:peabbe780d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operational range of the ambient air temperature." ; + rdfs:label "OperationTemperatureRange" ; + IFC4-PSD:definition "Allowable operational range of the ambient air temperature." ; + IFC4-PSD:definitionAlias ""@en , "許容周囲温度範囲"@ja-JP , "Plage opérationnelle possible de la température de l'air ambiant"@fr-FR ; + IFC4-PSD:ifdguid "eabbe780d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "OperationTemperatureRange" ; + IFC4-PSD:nameAlias "Plage de température d'exploitation"@fr-FR , "Operation Temperature Range"@en , "動作温度範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pf1e2f580d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable return air fraction range as a fraction of discharge airflow." ; + rdfs:label "ReturnAirFractionRange" ; + IFC4-PSD:definition "Allowable return air fraction range as a fraction of discharge airflow." ; + IFC4-PSD:definitionAlias "Plage possiblede la fraction d'air repris en tant que fraction de l'air rejeté"@fr-FR , "送風量の一部としての許容還気風量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f1e2f580d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "ReturnAirFractionRange" ; + IFC4-PSD:nameAlias "Return Air Fraction Range"@en , "Plage pour la fraction d'air repris"@fr-FR , "還気風量比"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:OperationTemperatureRange + a rdf:Property ; + rdfs:seeAlso :peabbe780d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationTemperatureRange . + +:HasSoundAttenuator a rdf:Property ; + rdfs:seeAlso :pc829ce80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSoundAttenuator . + +:p8c8f0480d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Range of airflow that can be delivered." ; + rdfs:label "AirflowRateRange" ; + IFC4-PSD:definition "Range of airflow that can be delivered." ; + IFC4-PSD:definitionAlias "Plage de débit d'air pouvant être fourni."@fr-FR , ""@en , "送風できる風量の範囲"@ja-JP ; + IFC4-PSD:ifdguid "8c8f0480d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowRateRange" ; + IFC4-PSD:nameAlias "Domaine de débit d'air"@fr-FR , "Airflow Rate Range"@en , "風量範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:NominalInletAirPressure + a rdf:Property ; + rdfs:seeAlso :pd972db00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalInletAirPressure . + +:pd37cfa00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Terminal box has a fan inside (fan powered box)." ; + rdfs:label "HasFan" ; + IFC4-PSD:definition "Terminal box has a fan inside (fan powered box)." ; + IFC4-PSD:definitionAlias "内部に送風機を持つ時にTRUE"@ja-JP , "Le registre terminal possède dans son intérieur un ventilateur (registre motorisé)"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "d37cfa00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "HasFan" ; + IFC4-PSD:nameAlias "送風機有無"@ja-JP , "Possède ventilateur"@fr-FR , "Has Fan"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pb5af9500d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Terminal box reheat type." ; + rdfs:label "ReheatType" ; + IFC4-PSD:definition "Terminal box reheat type." ; + IFC4-PSD:definitionAlias "Type de réchauffage d'un registre terminal de ventilation"@fr-FR , "ターミナルの再熱方式\n(電気、水コイル、蒸気コイル、ガス加熱...)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b5af9500d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "ReheatType" ; + IFC4-PSD:nameAlias "Reheat Type"@en , "Type de réchauffage"@fr-FR , "再熱形式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ELECTRICALREHEAT" , "WATERCOILREHEAT" , "STEAMCOILREHEAT" , "GASREHEAT" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NominalAirFlowRate a rdf:Property ; + rdfs:seeAlso :pa16b9800d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalAirFlowRate . + +:pc829ce80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Terminal box has a sound attenuator." ; + rdfs:label "HasSoundAttenuator" ; + IFC4-PSD:definition "Terminal box has a sound attenuator." ; + IFC4-PSD:definitionAlias "ターミナルに消音があるか否か (あればTRUE)"@ja-JP , "Le registre terminal possède une correction acoustique"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "c829ce80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "HasSoundAttenuator" ; + IFC4-PSD:nameAlias "Has Sound Attenuator"@en , "消音有無"@ja-JP , "Possède correction acoustique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p99135d00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable air static pressure range at the entrance of the air terminal box." ; + rdfs:label "AirPressureRange" ; + IFC4-PSD:definition "Allowable air static pressure range at the entrance of the air terminal box." ; + IFC4-PSD:definitionAlias "ターミナル入り口での許容静圧範囲"@ja-JP , "Plage admise de la pression statique de l'air à l'entrée du registre terminal de ventilation"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "99135d00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureRange" ; + IFC4-PSD:nameAlias "空気圧範囲"@ja-JP , "Plage de pression d'air"@fr-FR , "Air Pressure Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:Pset_AirTerminalBoxTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air terminal box type common attributes." ; + rdfs:label "Pset_AirTerminalBoxTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcAirTerminalBox ; + IFC4-PSD:applicableTypeValue "IfcAirTerminalBox" ; + IFC4-PSD:definition "Air terminal box type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "ターミナルボックスタイプの共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirTerminalBoxTypeCommon" ; + IFC4-PSD:propertyDef :pa16b9800d1be11e1800000215ad4efdf , :p7d0fbb80d1be11e1800000215ad4efdf , :pd972db00d1be11e1800000215ad4efdf , :p99135d00d1be11e1800000215ad4efdf , :pf1e2f580d1be11e1800000215ad4efdf , :pcd871900d1be11e1800000215ad4efdf , :pb5af9500d1be11e1800000215ad4efdf , :pe4c60680d1be11e1800000215ad4efdf , :p76814400d1be11e1800000215ad4efdf , :pd37cfa00d1be11e1800000215ad4efdf , :p8c8f0480d1be11e1800000215ad4efdf , :pa7617900d1be11e1800000215ad4efdf , :pdf68bc00d1be11e1800000215ad4efdf , :peabbe780d1be11e1800000215ad4efdf , :pc829ce80d1be11e1800000215ad4efdf . + +:pd972db00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal airflow inlet static pressure." ; + rdfs:label "NominalInletAirPressure" ; + IFC4-PSD:definition "Nominal airflow inlet static pressure." ; + IFC4-PSD:definitionAlias "入口静圧の設計値"@ja-JP , ""@en , "Pression statique en débit d'air nominal à l'entrée"@fr-FR ; + IFC4-PSD:ifdguid "d972db00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalInletAirPressure" ; + IFC4-PSD:nameAlias "Pression nominale à l'entrée d'air"@fr-FR , "Nominal Inlet Air Pressure"@en , "設計入口空気圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pcd871900d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Terminal box has return air mixed with supply air from duct work." ; + rdfs:label "HasReturnAir" ; + IFC4-PSD:definition "Terminal box has return air mixed with supply air from duct work." ; + IFC4-PSD:definitionAlias "ターミナルで還気を混合しているか否か(していればTRUE)"@ja-JP , ""@en , "Le registre terminal a son air de reprise mélangé avec une amenée d'air issu du réseau de ventilation"@fr-FR ; + IFC4-PSD:ifdguid "cd871900d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "HasReturnAir" ; + IFC4-PSD:nameAlias "Has Return Air"@en , "Possède air repris"@fr-FR , "還気有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p76814400d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "76814400d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:ReturnAirFractionRange + a rdf:Property ; + rdfs:seeAlso :pf1e2f580d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReturnAirFractionRange . + +:NominalDamperDiameter + a rdf:Property ; + rdfs:seeAlso :pdf68bc00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDamperDiameter . + +:Reference a rdf:Property ; + rdfs:seeAlso :p76814400d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:HasFan a rdf:Property ; + rdfs:seeAlso :pd37cfa00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasFan . + +:ReheatType a rdf:Property ; + rdfs:seeAlso :pb5af9500d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReheatType . + +:AirflowRateRange a rdf:Property ; + rdfs:seeAlso :p8c8f0480d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowRateRange . + +:HousingThickness a rdf:Property ; + rdfs:seeAlso :pe4c60680d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HousingThickness . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7d0fbb80d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7d0fbb80d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP , "Etat"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p7d0fbb80d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pa16b9800d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal airflow rate." ; + rdfs:label "NominalAirFlowRate" ; + IFC4-PSD:definition "Nominal airflow rate." ; + IFC4-PSD:definitionAlias "Débit d'air nominal"@fr-FR , "設計風量範囲"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a16b9800d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalAirFlowRate" ; + IFC4-PSD:nameAlias "設計風量範囲"@ja-JP , "Nominal Air Flow Rate"@en , "Débit d'air nominal"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:AirPressureRange a rdf:Property ; + rdfs:seeAlso :p99135d00d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureRange . + +:pe4c60680d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air terminal box housing material thickness." ; + rdfs:label "HousingThickness" ; + IFC4-PSD:definition "Air terminal box housing material thickness." ; + IFC4-PSD:definitionAlias ""@en , "ターミナルのハウジング材の板厚"@ja-JP , "Epaisseur du matériau réalisant l'enveloppe du registre terminal de ventilation"@fr-FR ; + IFC4-PSD:ifdguid "e4c60680d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "HousingThickness" ; + IFC4-PSD:nameAlias "Epaisseur de l'enveloppe"@fr-FR , "Housing Thickness"@en , "ハウジング板厚"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:ArrangementType a rdf:Property ; + rdfs:seeAlso :pa7617900d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ArrangementType . + +:HasReturnAir a rdf:Property ; + rdfs:seeAlso :pcd871900d1be11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasReturnAir . + +:pdf68bc00d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal damper diameter." ; + rdfs:label "NominalDamperDiameter" ; + IFC4-PSD:definition "Nominal damper diameter." ; + IFC4-PSD:definitionAlias "ダンパ直径の設計値"@ja-JP , ""@en , "Diamètre nominal clapet"@fr-FR ; + IFC4-PSD:ifdguid "df68bc00d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDamperDiameter" ; + IFC4-PSD:nameAlias "設計ダンパ直径"@ja-JP , "Nominal Damper Diameter"@en , "Diamètre nominal clapet"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pa7617900d1be11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Terminal box arrangement.\nSingleDuct: Terminal box receives warm or cold air from a single air supply duct.\nDualDuct: Terminal box receives warm and cold air from separate air supply ducts." ; + rdfs:label "ArrangementType" ; + IFC4-PSD:definition "Terminal box arrangement.\nSingleDuct: Terminal box receives warm or cold air from a single air supply duct.\nDualDuct: Terminal box receives warm and cold air from separate air supply ducts." ; + IFC4-PSD:definitionAlias "ターミナルボックスの形式。\n単一ダクト:単一のダクトから、温風または冷風を受け取る\nデュアルダクト:温風、冷風を分離されたダクトから受け取る"@ja-JP , ""@en , "Configuration du registre terminal.\nConduit unique: le registre terminal reçoit de l'air chaud ou froid depuis un conduit unique d'amenée d'air"@fr-FR ; + IFC4-PSD:ifdguid "a7617900d1be11e1800000215ad4efdf" ; + IFC4-PSD:name "ArrangementType" ; + IFC4-PSD:nameAlias "Arrangement Type"@en , "ターミナル形式"@ja-JP , "Type de configuration"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SINGLEDUCT" , "DUALDUCT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_AirTerminalOccurrence.ttl b/converter/src/main/resources/pset/Pset_AirTerminalOccurrence.ttl new file mode 100644 index 00000000..1ac2912a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirTerminalOccurrence.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AirFlowRate a rdf:Property ; + rdfs:seeAlso :p89dd48d1b3184f2599c12f06ce904666 ; + rdfs:subPropertyOf IFC4-PSD:AirFlowRate . + +:AirflowType a rdf:Property ; + rdfs:seeAlso :p00311180d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowType . + +:Location a rdf:Property ; + rdfs:seeAlso :p0fb05a80d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Location . + +:p89dd48d1b3184f2599c12f06ce904666 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual airflow rate as designed." ; + rdfs:label "AirFlowRate" ; + IFC4-PSD:definition "The actual airflow rate as designed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "89dd48d1b3184f2599c12f06ce904666" ; + IFC4-PSD:name "AirFlowRate" ; + IFC4-PSD:nameAlias "Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p0fb05a80d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location (a single type of diffuser can be used for multiple locations); high means close to ceiling." ; + rdfs:label "Location" ; + IFC4-PSD:definition "Location (a single type of diffuser can be used for multiple locations); high means close to ceiling." ; + IFC4-PSD:definitionAlias ""@en , "Emplacement (un seul type de diffuseur peut être utilisé pour des emplaments multiples); Haut signifie proche du plafond."@fr-FR , "制気口の取り付け位置(壁面高所・低部、天井ぺり、天井中央、床、床下他)"@ja-JP ; + IFC4-PSD:ifdguid "0fb05a80d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "Location" ; + IFC4-PSD:nameAlias "位置"@ja-JP , "Location"@en , "Emplacement"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NOTKNOWN" , "CEILINGINTERIOR" , "CEILINGPERIMETER" , "SILL" , "SIDEWALLLOW" , "SIDEWALLHIGH" , "OTHER" , "UNSET" , "FLOOR" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p00311180d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the functional type of air flow through the terminal." ; + rdfs:label "AirflowType" ; + IFC4-PSD:definition "Enumeration defining the functional type of air flow through the terminal." ; + IFC4-PSD:definitionAlias "ターミナルを通過する気流の機能タイプ(給気、還気、排気他)"@ja-JP , ""@en , "Enumération définissant le type fonctionnel de débit à travers le terminal"@fr-FR ; + IFC4-PSD:ifdguid "00311180d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowType" ; + IFC4-PSD:nameAlias "Type de débit d'air"@fr-FR , "エアフロータイプ"@ja-JP , "Airflow Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SUPPLYAIR" , "RETURNAIR" , "EXHAUSTAIR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_AirTerminalOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air terminal occurrence attributes attached to an instance of IfcAirTerminal." ; + rdfs:label "Pset_AirTerminalOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcAirTerminal ; + IFC4-PSD:applicableTypeValue "IfcAirTerminal" ; + IFC4-PSD:definition "Air terminal occurrence attributes attached to an instance of IfcAirTerminal." ; + IFC4-PSD:definitionAlias ""@en , "IfcAirTerminalのインスタンスの属性を設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirTerminalOccurrence" ; + IFC4-PSD:propertyDef :p00311180d1bf11e1800000215ad4efdf , :p0fb05a80d1bf11e1800000215ad4efdf , :p89dd48d1b3184f2599c12f06ce904666 . diff --git a/converter/src/main/resources/pset/Pset_AirTerminalPHistory.ttl b/converter/src/main/resources/pset/Pset_AirTerminalPHistory.ttl new file mode 100644 index 00000000..0ce17e90 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirTerminalPHistory.ttl @@ -0,0 +1,149 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2b1b6580d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric flow rate." ; + rdfs:label "AirFlowRate" ; + IFC4-PSD:definition "Volumetric flow rate." ; + IFC4-PSD:definitionAlias ""@en , "Débit d'air volumique"@fr-FR , "送風量"@ja-JP ; + IFC4-PSD:ifdguid "2b1b6580d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowRate" ; + IFC4-PSD:nameAlias "Air Flow Rate"@en , "風量"@ja-JP , "Débit d'air"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SupplyAirTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :p366e9100d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupplyAirTemperatureCooling . + +:p3d959f00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Induction ratio versus distance from the diffuser and its discharge direction; induction ratio (or entrainment ratio) is the ratio of the volumetric flow rate in the jet to the volumetric flow rate at the air terminal." ; + rdfs:label "InductionRatio" ; + IFC4-PSD:definition "Induction ratio versus distance from the diffuser and its discharge direction; induction ratio (or entrainment ratio) is the ratio of the volumetric flow rate in the jet to the volumetric flow rate at the air terminal." ; + IFC4-PSD:definitionAlias ""@en , "制気口からの距離とその排出方向に対する誘引比、\n誘導比(または同調比)は、エアターミナルでの体積流量に対する噴流の体積流量の比である。"@ja-JP , "Taux d'induction par rapport à la distance entre le diffuseur et sa direction de rejet;\nLe taux d'induction est le rapport entre le débit volumique d'air dans le jet sur le débit volumique d'air au niveau du terminal."@fr-FR ; + IFC4-PSD:ifdguid "3d959f00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "InductionRatio" ; + IFC4-PSD:nameAlias "Taux d'induction"@fr-FR , "Induction Ratio"@en , "誘引率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLengthMeasure ; + IFC4-PSD:definingValue IFC4:IfcReal + ] . + +:p46867080d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Centerline air velocity versus distance from the diffuser and temperature differential; a function of distance from diffuser and temperature difference between supply air and room air." ; + rdfs:label "CenterlineAirVelocity" ; + IFC4-PSD:definition "Centerline air velocity versus distance from the diffuser and temperature differential; a function of distance from diffuser and temperature difference between supply air and room air." ; + IFC4-PSD:definitionAlias "吹出口かからの距離と温度差に対する中心速度、\n給気と室内空気の間の吹出口かからの距離と温度差の関数"@ja-JP , "Vitesse de l'air en axe central de jet par rapport à la distance entre le diffuseur et la température différentielle; une fonction de la distance entre le diffuseur et la différence de température entre celui de l'air fourni et celui de l'air de la pièce."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "46867080d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "CenterlineAirVelocity" ; + IFC4-PSD:nameAlias "中心空気速度"@ja-JP , "Centerline Air Velocity"@en , "Vitesse de l'air en axe central de jet"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLengthMeasure ; + IFC4-PSD:definingValue IFC4:IfcLinearVelocityMeasure + ] . + +:p3a9aae80d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Drop in total pressure between inlet and outlet at nominal air-flow rate." ; + rdfs:label "PressureDrop" ; + IFC4-PSD:definition "Drop in total pressure between inlet and outlet at nominal air-flow rate." ; + IFC4-PSD:definitionAlias "設定風量での入口/出口間の全圧降下"@ja-JP , ""@en , "Chute de pression totale entre l'entrée et la sortie en débit d'air nominal"@fr-FR ; + IFC4-PSD:ifdguid "3a9aae80d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureDrop" ; + IFC4-PSD:nameAlias "圧力降下"@ja-JP , "Pressure Drop"@en , "Chute de pression"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:InductionRatio a rdf:Property ; + rdfs:seeAlso :p3d959f00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InductionRatio . + +:SupplyAirTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p32db0a00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupplyAirTemperatureHeating . + +:p2eaeec80d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air velocity at the neck." ; + rdfs:label "NeckAirVelocity" ; + IFC4-PSD:definition "Air velocity at the neck." ; + IFC4-PSD:definitionAlias "ネックの風速"@ja-JP , "Vitesse de l'air au point le plus étroit"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "2eaeec80d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "NeckAirVelocity" ; + IFC4-PSD:nameAlias "Vitesse de l'air au point le plus étroit"@fr-FR , "Neck Air Velocity"@en , "ネック風速"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p32db0a00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Supply air temperature in heating mode." ; + rdfs:label "SupplyAirTemperatureHeating" ; + IFC4-PSD:definition "Supply air temperature in heating mode." ; + IFC4-PSD:definitionAlias ""@en , "Température de l'air soufflé en mode chauffage"@fr-FR , "暖房時の給気温度"@ja-JP ; + IFC4-PSD:ifdguid "32db0a00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "SupplyAirTemperatureHeating" ; + IFC4-PSD:nameAlias "Supply Air Temperature Heating"@en , "暖房給気温度"@ja-JP , "Température de l'air soufflé en chauffage"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:NeckAirVelocity a rdf:Property ; + rdfs:seeAlso :p2eaeec80d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NeckAirVelocity . + +:CenterlineAirVelocity + a rdf:Property ; + rdfs:seeAlso :p46867080d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterlineAirVelocity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p366e9100d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Supply air temperature in cooling mode." ; + rdfs:label "SupplyAirTemperatureCooling" ; + IFC4-PSD:definition "Supply air temperature in cooling mode." ; + IFC4-PSD:definitionAlias "冷房時の給気温度"@ja-JP , ""@en , "Température de l'air soufflé en mode refroidissement"@fr-FR ; + IFC4-PSD:ifdguid "366e9100d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "SupplyAirTemperatureCooling" ; + IFC4-PSD:nameAlias "Supply Air Temperature Cooling"@en , "冷房給気温度"@ja-JP , "Température de l'air soufflé en refroidissement"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirFlowRate a rdf:Property ; + rdfs:seeAlso :p2b1b6580d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowRate . + +:Pset_AirTerminalPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air terminal performance history common attributes." ; + rdfs:label "Pset_AirTerminalPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcAirTerminal ; + IFC4-PSD:applicableTypeValue "IfcAirTerminal" ; + IFC4-PSD:definition "Air terminal performance history common attributes." ; + IFC4-PSD:definitionAlias ""@en , "エアターミナル性能履歴の共通属性を設定します。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirTerminalPHistory" ; + IFC4-PSD:propertyDef :p3a9aae80d1bf11e1800000215ad4efdf , :p2eaeec80d1bf11e1800000215ad4efdf , :p2b1b6580d1bf11e1800000215ad4efdf , :p366e9100d1bf11e1800000215ad4efdf , :p3d959f00d1bf11e1800000215ad4efdf , :p46867080d1bf11e1800000215ad4efdf , :p32db0a00d1bf11e1800000215ad4efdf . + +:PressureDrop a rdf:Property ; + rdfs:seeAlso :p3a9aae80d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureDrop . diff --git a/converter/src/main/resources/pset/Pset_AirTerminalTypeCommon.ttl b/converter/src/main/resources/pset/Pset_AirTerminalTypeCommon.ttl new file mode 100644 index 00000000..1eba5542 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirTerminalTypeCommon.ttl @@ -0,0 +1,471 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HasIntegralControl a rdf:Property ; + rdfs:seeAlso :p25724f80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasIntegralControl . + +:pf6f47480d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The way the air terminal is mounted to the ceiling, wall, etc.\n\nSurface: mounted to the surface of something (e.g., wall, duct, etc.).\nFlat flush: mounted flat and flush with a surface.\nLay-in: mounted in a lay-in type ceiling (e.g., a dropped ceiling grid)." ; + rdfs:label "MountingType" ; + IFC4-PSD:definition "The way the air terminal is mounted to the ceiling, wall, etc.\n\nSurface: mounted to the surface of something (e.g., wall, duct, etc.).\nFlat flush: mounted flat and flush with a surface.\nLay-in: mounted in a lay-in type ceiling (e.g., a dropped ceiling grid)." ; + IFC4-PSD:definitionAlias ""@en , "La façon d'être fixé pour le terminal de ventilation au plafond, mur, etc.\n\nSurface: Fixé sur la surface de quelque chose (Ex: mur, conduit, etc.)\nAlignement plat: Fixé plat et dans l'alignement d'une surface.\nInsertion: Fixé dans un type de plafond avec capacité d'insertion (Ex: faux-plafondsuspendu)"@fr-FR , "ターミナルが天井や壁などに取り付けられる方法。\n表面、水平、LAYIN他\n表面:何か(壁・ダクト等)の表面に取り付け\nFLATFLUSH:表面に水平・Flushni取り付け\nLAYIN:天井にlay-in形式での取り付け(下がり天井格子など)"@ja-JP ; + IFC4-PSD:ifdguid "f6f47480d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "MountingType" ; + IFC4-PSD:nameAlias "Mounting Type"@en , "ModeFixation"@fr-FR , "取り付け形式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SURFACE" , "FLATFLUSH" , "LAYIN" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_AirTerminalTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air terminal type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_AirTerminalTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcAirTerminal ; + IFC4-PSD:applicableTypeValue "IfcAirTerminal" ; + IFC4-PSD:definition "Air terminal type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en , "エアターミナル型共通属性設定。\nSoundLevel属性はIFC2x2 psetの付録で削除された:IfcSoundPropertiesを代わりに使用します。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirTerminalTypeCommon" ; + IFC4-PSD:propertyDef :p505ca380d1c011e1800000215ad4efdf , :pa250f980d1bf11e1800000215ad4efdf , :p9c5b1880d1bf11e1800000215ad4efdf , :p2a370380d1c011e1800000215ad4efdf , :p6b7ae380d1bf11e1800000215ad4efdf , :p5605b980d1bf11e1800000215ad4efdf , :pddebc380d1bf11e1800000215ad4efdf , :p96653780d1bf11e1800000215ad4efdf , :p25724f80d1c011e1800000215ad4efdf , :p7b92c300d1bf11e1800000215ad4efdf , :pf6f47480d1bf11e1800000215ad4efdf , :p39b64c80d1c011e1800000215ad4efdf , :p5c943100d1bf11e1800000215ad4efdf , :pd4faf200d1bf11e1800000215ad4efdf , :p3f139700d1c011e1800000215ad4efdf , :p49ce2c00d1c011e1800000215ad4efdf , :p1ab7ba80d1c011e1800000215ad4efdf , :p070c5400d1c011e1800000215ad4efdf , :p9107ed00d1bf11e1800000215ad4efdf , :pf065fd00d1bf11e1800000215ad4efdf , :pc6acd600d1bf11e1800000215ad4efdf , :pbe549b00d1bf11e1800000215ad4efdf , :pb72d8d00d1bf11e1800000215ad4efdf , :p4470e180d1c011e1800000215ad4efdf , :p1f7c6e80d1c011e1800000215ad4efdf , :pe3490e00d1bf11e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p5c943100d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pbe549b00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature range within which the air terminal is designed to operate." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Temperature range within which the air terminal is designed to operate." ; + IFC4-PSD:definitionAlias "Plage de température dans laquelle le terminal de ventilation est prévu de fonctionner."@fr-FR , "操作されるターミナルの温度範囲"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "be549b00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "PlageTemperature"@fr-FR , "温度範囲"@ja-JP , "Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p2a370380d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of flow control element that may be included as a part of the construction of the air terminal." ; + rdfs:label "FlowControlType" ; + IFC4-PSD:definition "Type of flow control element that may be included as a part of the construction of the air terminal." ; + IFC4-PSD:definitionAlias "Nature de la commande de flux d'un élément qui pourrait être inclus en tant que tel dans le terminal de ventilation."@fr-FR , ""@en , "ターミナルの構成の一部として含まれる流量制御の形式\n(ダンパー、ベローズ、無し…)"@ja-JP ; + IFC4-PSD:ifdguid "2a370380d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "FlowControlType" ; + IFC4-PSD:nameAlias "流量制御形式"@ja-JP , "NatureCommandeFlux"@fr-FR , "Flow Control Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DAMPER" , "BELLOWS" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4470e180d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Neck area of the air terminal." ; + rdfs:label "NeckArea" ; + IFC4-PSD:definition "Neck area of the air terminal." ; + IFC4-PSD:definitionAlias "ターミナルのネック面積"@ja-JP , "Partie la plus étroite du terminal de ventilation."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "4470e180d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "NeckArea" ; + IFC4-PSD:nameAlias "ネック面積"@ja-JP , "Neck Area"@en , "ZoneReduction"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:Shape a rdf:Property ; + rdfs:seeAlso :p6b7ae380d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Shape . + +:HasSoundAttenuator a rdf:Property ; + rdfs:seeAlso :p39b64c80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSoundAttenuator . + +:p505ca380d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flowrate versus flow control element position at nominal pressure drop." ; + rdfs:label "AirFlowrateVersusFlowControlElement" ; + IFC4-PSD:definition "Air flowrate versus flow control element position at nominal pressure drop." ; + IFC4-PSD:definitionAlias "Débit d'air par rapport à la position de l'élément de contrôle du flux en perte de charge nominale"@fr-FR , "標準の圧力低下における流量制御装置の位置に対する流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "505ca380d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowrateVersusFlowControlElement" ; + IFC4-PSD:nameAlias "Air Flowrate Versus Flow Control Element"@en , "DébitAirContreElementControleFlux"@fr-FR , "流量制御特性"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPositiveRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p1ab7ba80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Degree of horizontal (in the X-axis of the LocalPlacement) blade set from the centerline." ; + rdfs:label "CoreSetHorizontal" ; + IFC4-PSD:definition "Degree of horizontal (in the X-axis of the LocalPlacement) blade set from the centerline." ; + IFC4-PSD:definitionAlias "Degré d'inclinaison horizontale (selon l'axe X par rapport au positionnement local) de la lame mesuré depuis la ligne médiane."@fr-FR , ""@en , "水平翼の中心線からの水平(ローカル座標のX軸)面の羽根角度"@ja-JP ; + IFC4-PSD:ifdguid "1ab7ba80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "CoreSetHorizontal" ; + IFC4-PSD:nameAlias "水平羽根角度"@ja-JP , "PositionHorizontaleCentre"@fr-FR , "Core Set Horizontal"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:AirDiffusionPerformanceIndex + a rdf:Property ; + rdfs:seeAlso :pddebc380d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirDiffusionPerformanceIndex . + +:p5c943100d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "5c943100d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Etat"@fr-FR , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:AirFlowrateVersusFlowControlElement + a rdf:Property ; + rdfs:seeAlso :p505ca380d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowrateVersusFlowControlElement . + +:pddebc380d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The Air Diffusion Performance Index (ADPI) is used for cooling mode conditions. If several measurements of air velocity and air temperature are made throughout the occupied zone of a space, the ADPI is the percentage of locations where measurements were taken that meet the specifications for effective draft temperature and air velocity." ; + rdfs:label "AirDiffusionPerformanceIndex" ; + IFC4-PSD:definition "The Air Diffusion Performance Index (ADPI) is used for cooling mode conditions. If several measurements of air velocity and air temperature are made throughout the occupied zone of a space, the ADPI is the percentage of locations where measurements were taken that meet the specifications for effective draft temperature and air velocity." ; + IFC4-PSD:definitionAlias ""@en , "空気拡散性能指標(ADPI)は冷房時に使用される。\n空気速度および気温のいくつかの測定が空間の居住域の隅々でなされる場合、ADPIは有効な草案の温度および空気速度のための仕様に遭遇する測定が得られた位置の割合である。"@ja-JP , "L'Indice de Performance de Diffusion d'Air (ADPI) est utilisé pour des conditions en mode rafraîchissement. Si plusieurs mesures de vitesses et températures de l'air sont réalisées à travers toute une zone occupée d'un espace, l'ADPI est le pourcentage des emplacements où les mesures ont été réalisées et qui vérifient les caractéristiques pour une température de courant d'air et de vitesse d'air effectives."@fr-FR ; + IFC4-PSD:ifdguid "ddebc380d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "AirDiffusionPerformanceIndex" ; + IFC4-PSD:nameAlias "空気拡散性能指標"@ja-JP , "Air Diffusion Performance Index"@en , "Indice de performance de diffusion de l'air"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:CoreSetHorizontal a rdf:Property ; + rdfs:seeAlso :p1ab7ba80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreSetHorizontal . + +:p9c5b1880d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of slots." ; + rdfs:label "NumberOfSlots" ; + IFC4-PSD:definition "Number of slots." ; + IFC4-PSD:definitionAlias "スロット数"@ja-JP , "Nombre de fentes"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "9c5b1880d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfSlots" ; + IFC4-PSD:nameAlias "NombreDeFentes"@fr-FR , "Number Of Slots"@en , "スロット数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:ThrowLength a rdf:Property ; + rdfs:seeAlso :pd4faf200d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThrowLength . + +:pa250f980d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flow pattern." ; + rdfs:label "FlowPattern" ; + IFC4-PSD:definition "Flow pattern." ; + IFC4-PSD:definitionAlias ""@en , "Forme du flux"@fr-FR , "流れ種類(単一直線、腹式直線、4方向、放射状、SWIRL、DISPLACEMENT、COMPACT他)"@ja-JP ; + IFC4-PSD:ifdguid "a250f980d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "FlowPattern" ; + IFC4-PSD:nameAlias "Flow Pattern"@en , "FormeFlux"@fr-FR , "流れ種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DISPLACMENT" , "RADIAL" , "OTHER" , "LINEARFOURWAY" , "UNSET" , "NOTKNOWN" , "SWIRL" , "LINEARSINGLE" , "COMPACTJET" , "LINEARDOUBLE" + ] . + +:EffectiveArea a rdf:Property ; + rdfs:seeAlso :p49ce2c00d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EffectiveArea . + +:FaceType a rdf:Property ; + rdfs:seeAlso :p7b92c300d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaceType . + +:p3f139700d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If TRUE, the air terminal has thermal insulation." ; + rdfs:label "HasThermalInsulation" ; + IFC4-PSD:definition "If TRUE, the air terminal has thermal insulation." ; + IFC4-PSD:definitionAlias ""@en , "ターミナルに断熱がある場合に真"@ja-JP , "Si VRAI, le terminal de ventilation possède une isolation thermique."@fr-FR ; + IFC4-PSD:ifdguid "3f139700d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HasThermalInsulation" ; + IFC4-PSD:nameAlias "Has Thermal Insulation"@en , "PossèdeIsolationThermique"@fr-FR , "断熱有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pe3490e00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of finish for the air terminal." ; + rdfs:label "FinishType" ; + IFC4-PSD:definition "The type of finish for the air terminal." ; + IFC4-PSD:definitionAlias "Le type de finition du terminal de ventilation."@fr-FR , "ターミナルの仕上げの形式(ANNODIZED,塗装他)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e3490e00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "FinishType" ; + IFC4-PSD:nameAlias "Finish Type"@en , "仕上げ形式"@ja-JP , "TypeFinition"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ANNODIZED" , "PAINTED" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p5605b980d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p5605b980d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "5605b980d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p7b92c300d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies how the terminal face of an AirTerminal is constructed." ; + rdfs:label "FaceType" ; + IFC4-PSD:definition "Identifies how the terminal face of an AirTerminal is constructed." ; + IFC4-PSD:definitionAlias "ターミナル表面の形式定義"@ja-JP , "Caractérise comment le côté du terminal d'un terminal de ventilation est fabriqué."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "7b92c300d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "FaceType" ; + IFC4-PSD:nameAlias "表面タイプ"@ja-JP , "TypeCôté"@fr-FR , "Face Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FOURWAYPATTERN" , "EGGCRATE" , "OTHER" , "SIGHTPROOF" , "NOTKNOWN" , "DOUBLEDEFLECTION" , "PERFORATED" , "SINGLEDEFLECTION" , "LOUVERED" , "UNSET" + ] . + +:HasThermalInsulation + a rdf:Property ; + rdfs:seeAlso :p3f139700d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasThermalInsulation . + +:NeckArea a rdf:Property ; + rdfs:seeAlso :p4470e180d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NeckArea . + +:p070c5400d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the way the core of the AirTerminal is constructed." ; + rdfs:label "CoreType" ; + IFC4-PSD:definition "Identifies the way the core of the AirTerminal is constructed." ; + IFC4-PSD:definitionAlias ""@en , "Caractérise comment la partie centrale du terminal de ventilation est fabriquée."@fr-FR , "取り付けられたターミナルのコアの定義方法(SHUTTERBLADE, CURVEDBLADE, REMOVABLE, REVERSIBLEなど)"@ja-JP ; + IFC4-PSD:ifdguid "070c5400d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "CoreType" ; + IFC4-PSD:nameAlias "TypePartieCentrale"@fr-FR , "コア形式"@ja-JP , "Core Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SHUTTERBLADE" , "CURVEDBLADE" , "REMOVABLE" , "REVERSIBLE" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FlowControlType a rdf:Property ; + rdfs:seeAlso :p2a370380d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowControlType . + +:CoreSetVertical a rdf:Property ; + rdfs:seeAlso :p1f7c6e80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreSetVertical . + +:MountingType a rdf:Property ; + rdfs:seeAlso :pf6f47480d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MountingType . + +:p39b64c80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If TRUE, the air terminal has sound attenuation." ; + rdfs:label "HasSoundAttenuator" ; + IFC4-PSD:definition "If TRUE, the air terminal has sound attenuation." ; + IFC4-PSD:definitionAlias "Si VRAI, le terminal de ventilation possède une correction acoustique."@fr-FR , ""@en , "ターミナルに消音が付いている場合に真"@ja-JP ; + IFC4-PSD:ifdguid "39b64c80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HasSoundAttenuator" ; + IFC4-PSD:nameAlias "PossèdeCorrectionAcoustique"@fr-FR , "Has Sound Attenuator"@en , "消音有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pd4faf200d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The horizontal or vertical axial distance an airstream travels after leaving an AirTerminal before the maximum stream velocity is reduced to a specified terminal velocity under isothermal conditions at the upper value of the AirFlowrateRange." ; + rdfs:label "ThrowLength" ; + IFC4-PSD:definition "The horizontal or vertical axial distance an airstream travels after leaving an AirTerminal before the maximum stream velocity is reduced to a specified terminal velocity under isothermal conditions at the upper value of the AirFlowrateRange." ; + IFC4-PSD:definitionAlias ""@en , "ターミナルからの水平または垂直の到達距離\n流量範囲の最大値での吐き出し速度が設定された流速に減速するまでの上限値"@ja-JP , "La distance axiale horizontale ou verticale un jet d'air parcourt après avoir quitté un terminal de ventilation avant que la vittesse d'éjection maximale est réduite à une vitessedu terminal spécifique dans des conditions isothermes pour la valeur la plus élevée de la plage de débit d'air."@fr-FR ; + IFC4-PSD:ifdguid "d4faf200d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "ThrowLength" ; + IFC4-PSD:nameAlias "到達距離"@ja-JP , "Longueur de jet"@fr-FR , "Throw Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:FinishColor a rdf:Property ; + rdfs:seeAlso :pf065fd00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FinishColor . + +:p9107ed00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Slot width." ; + rdfs:label "SlotWidth" ; + IFC4-PSD:definition "Slot width." ; + IFC4-PSD:definitionAlias "スロット巾"@ja-JP , "Epaisseur de la fente"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "9107ed00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "SlotWidth" ; + IFC4-PSD:nameAlias "スロット巾"@ja-JP , "Slot Width"@en , "EpaisseurFente"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SlotWidth a rdf:Property ; + rdfs:seeAlso :p9107ed00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SlotWidth . + +:pf065fd00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The finish color for the air terminal." ; + rdfs:label "FinishColor" ; + IFC4-PSD:definition "The finish color for the air terminal." ; + IFC4-PSD:definitionAlias ""@en , "La couleur de finition du terminal de ventilation."@fr-FR , "ターミナルの仕上げ色"@ja-JP ; + IFC4-PSD:ifdguid "f065fd00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "FinishColor" ; + IFC4-PSD:nameAlias "CouleurFinition"@fr-FR , "仕上げ色"@ja-JP , "Finish Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :pbe549b00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:p96653780d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Slot length." ; + rdfs:label "SlotLength" ; + IFC4-PSD:definition "Slot length." ; + IFC4-PSD:definitionAlias "スロット長"@ja-JP , ""@en , "Longueur de la fente"@fr-FR ; + IFC4-PSD:ifdguid "96653780d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "SlotLength" ; + IFC4-PSD:nameAlias "スロット長"@ja-JP , "Slot Length"@en , "ElongueurFente"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p6b7ae380d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Shape of the air terminal. Slot is typically a long narrow supply device with an aspect ratio generally greater than 10 to 1." ; + rdfs:label "Shape" ; + IFC4-PSD:definition "Shape of the air terminal. Slot is typically a long narrow supply device with an aspect ratio generally greater than 10 to 1." ; + IFC4-PSD:definitionAlias "Forme du terminal de ventilation. La fente est généralement un long et étroit appareil d'apport avec un rapport de forme généralement supérieur à 10 pour 1."@fr-FR , "ターミナルの形状(円状、四角形、正方形、スロット他)。 スロット(溝状)は一般的にアスペクト比10以上が典型的である。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6b7ae380d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "Shape" ; + IFC4-PSD:nameAlias "Shape"@en , "Forme"@fr-FR , "形状"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ROUND" , "RECTANGULAR" , "SQUARE" , "SLOT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p49ce2c00d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Effective discharge area of the air terminal." ; + rdfs:label "EffectiveArea" ; + IFC4-PSD:definition "Effective discharge area of the air terminal." ; + IFC4-PSD:definitionAlias "ターミナルの有効吹き出し範囲"@ja-JP , ""@en , "Zone d'émission efficace du terminal de ventilation."@fr-FR ; + IFC4-PSD:ifdguid "49ce2c00d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "EffectiveArea" ; + IFC4-PSD:nameAlias "有効面積"@ja-JP , "ZoneEfficace"@fr-FR , "Effective Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:AirFlowrateRange a rdf:Property ; + rdfs:seeAlso :pb72d8d00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowrateRange . + +:SlotLength a rdf:Property ; + rdfs:seeAlso :p96653780d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SlotLength . + +:p1f7c6e80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Degree of vertical (in the Y-axis of the LocalPlacement) blade set from the centerline." ; + rdfs:label "CoreSetVertical" ; + IFC4-PSD:definition "Degree of vertical (in the Y-axis of the LocalPlacement) blade set from the centerline." ; + IFC4-PSD:definitionAlias "垂直翼の中心線からの垂直(ローカル座標のY軸)方向の羽根角度"@ja-JP , "Degré d'inclinaison verticale (selon l'axe Y par rapport au positionnement local) de la lame mesuré depuis la ligne médiane."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "1f7c6e80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "CoreSetVertical" ; + IFC4-PSD:nameAlias "Core Set Vertical"@en , "垂直羽根角度"@ja-JP , "PositionVerticalCentre"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:CoreType a rdf:Property ; + rdfs:seeAlso :p070c5400d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreType . + +:p25724f80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If TRUE, a self powered temperature control is included in the AirTerminal." ; + rdfs:label "HasIntegralControl" ; + IFC4-PSD:definition "If TRUE, a self powered temperature control is included in the AirTerminal." ; + IFC4-PSD:definitionAlias "Si VRAI, une commande interne de la température est incluse dans le terminal de ventilation."@fr-FR , ""@en , "もし真なら、ターミナルに自身による温度制御が含まれる"@ja-JP ; + IFC4-PSD:ifdguid "25724f80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HasIntegralControl" ; + IFC4-PSD:nameAlias "PossèdeContrôleTotal"@fr-FR , "Has Integral Control"@en , "自己制御有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FlowPattern a rdf:Property ; + rdfs:seeAlso :pa250f980d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowPattern . + +:NumberOfSlots a rdf:Property ; + rdfs:seeAlso :p9c5b1880d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSlots . + +:DischargeDirection a rdf:Property ; + rdfs:seeAlso :pc6acd600d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeDirection . + +:pb72d8d00d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flowrate range within which the air terminal is designed to operate." ; + rdfs:label "AirFlowrateRange" ; + IFC4-PSD:definition "Air flowrate range within which the air terminal is designed to operate." ; + IFC4-PSD:definitionAlias "操作されるターミナル内の空気流の範囲"@ja-JP , ""@en , "Plage de débit de ventilation dans laquelle le terminal de ventilation est prévu de fonctionner."@fr-FR ; + IFC4-PSD:ifdguid "b72d8d00d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowrateRange" ; + IFC4-PSD:nameAlias "Air Flowrate Range"@en , "PlageDébitVentilation"@fr-FR , "流量範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pc6acd600d1bf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Discharge direction of the air terminal.\n\nParallel: discharges parallel to mounting surface designed so that flow attaches to the surface.\nPerpendicular: discharges away from mounting surface.\nAdjustable: both parallel and perpendicular discharge." ; + rdfs:label "DischargeDirection" ; + IFC4-PSD:definition "Discharge direction of the air terminal.\n\nParallel: discharges parallel to mounting surface designed so that flow attaches to the surface.\nPerpendicular: discharges away from mounting surface.\nAdjustable: both parallel and perpendicular discharge." ; + IFC4-PSD:definitionAlias "Direction d'émission du terminal de ventilation.\n\nParallèle: émission parallèle à la surface de fixation conçu de façon à ce que le flux se colle à la surface.\nPerpendiculaire: émission s'éloignant de la surface de fixation.\nRéglable: émission parallèle et aussi s'éloignant de la surface de fixation."@fr-FR , ""@en , "ターミナルの吐き出し方向\n水平:取り付け面と水平に吐き出し\n垂直:取り付け面から離れた方向に吐き出し\n調節可能:水平・垂直方向両方に調整"@ja-JP ; + IFC4-PSD:ifdguid "c6acd600d1bf11e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeDirection" ; + IFC4-PSD:nameAlias "Discharge Direction"@en , "吐き出し方向"@ja-JP , "DirectionEmission"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PARALLEL" , "PERPENDICULAR" , "ADJUSTABLE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FinishType a rdf:Property ; + rdfs:seeAlso :pe3490e00d1bf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FinishType . diff --git a/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryPHistory.ttl b/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryPHistory.ttl new file mode 100644 index 00000000..9478234f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryPHistory.ttl @@ -0,0 +1,222 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SensibleEffectivenessTable + a rdf:Property ; + rdfs:seeAlso :p7eda7e80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleEffectivenessTable . + +:p60748300d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sensible heat transfer effectiveness, where effectiveness is defined as the ratio of heat transfer to maximum possible heat transfer." ; + rdfs:label "SensibleEffectiveness" ; + IFC4-PSD:definition "Sensible heat transfer effectiveness, where effectiveness is defined as the ratio of heat transfer to maximum possible heat transfer." ; + IFC4-PSD:definitionAlias ""@en , "顕熱効率\n効率は、最大可能熱交換に対する熱交換の比率で定義される"@ja-JP , "Efficacité d'échange de chaleur sensible, où l'efficacité est définie par le rapport entre l'échange de chaleur effectif et l'échange maximum possible."@fr-FR ; + IFC4-PSD:ifdguid "60748300d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleEffectiveness" ; + IFC4-PSD:nameAlias "Sensible Effectiveness"@en , "顕熱効率"@ja-JP , "EfficacitéSensible"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p826e0580d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer effectiveness curve as a function of the primary and secondary air flow rate." ; + rdfs:label "TotalEffectivenessTable" ; + IFC4-PSD:definition "Total heat transfer effectiveness curve as a function of the primary and secondary air flow rate." ; + IFC4-PSD:definitionAlias ""@en , "Courbe d'efficacité d'échange thermique total en tant que fonction du débit d'air au primaire et débit d'air au secondaire"@fr-FR , "一次と二次空気量の関数としての全熱交換効率曲線"@ja-JP ; + IFC4-PSD:ifdguid "826e0580d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "TotalEffectivenessTable" ; + IFC4-PSD:nameAlias "全熱効率テーブル"@ja-JP , "DiagrammeEfficacitéTotale"@fr-FR , "Total Effectiveness Table"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LatentHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p77b37080d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LatentHeatTransferRate . + +:DefrostTemperatureEffectiveness + a rdf:Property ; + rdfs:seeAlso :p6c604500d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DefrostTemperatureEffectiveness . + +:p77b37080d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Latent heat transfer rate." ; + rdfs:label "LatentHeatTransferRate" ; + IFC4-PSD:definition "Latent heat transfer rate." ; + IFC4-PSD:definitionAlias "Puissance thermique latente"@fr-FR , ""@en , "潜熱交換量"@ja-JP ; + IFC4-PSD:ifdguid "77b37080d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "LatentHeatTransferRate" ; + IFC4-PSD:nameAlias "Latent Heat Transfer Rate"@en , "PuissanceThermiqueLatente"@fr-FR , "潜熱交換量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7eda7e80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sensible heat transfer effectiveness curve as a function of the primary and secondary air flow rate." ; + rdfs:label "SensibleEffectivenessTable" ; + IFC4-PSD:definition "Sensible heat transfer effectiveness curve as a function of the primary and secondary air flow rate." ; + IFC4-PSD:definitionAlias ""@en , "Courbe d'efficacité d'échange thermique sensible, en tant que fonction du débit d'air au primaire et débit d'air au secondaire"@fr-FR , "一次と二次空気量の関数としての顕熱交換効率曲線"@ja-JP ; + IFC4-PSD:ifdguid "7eda7e80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleEffectivenessTable" ; + IFC4-PSD:nameAlias "DiagrammeEfficacitéSensible"@fr-FR , "Sensible Effectiveness Table"@en , "顕熱効率テーブル"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_AirToAirHeatRecoveryPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air to Air Heat Recovery performance history common attributes." ; + rdfs:label "Pset_AirToAirHeatRecoveryPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcAirToAirHeatRecovery ; + IFC4-PSD:applicableTypeValue "IfcAirToAirHeatRecovery" ; + IFC4-PSD:definition "Air to Air Heat Recovery performance history common attributes." ; + IFC4-PSD:definitionAlias ""@en , "空気熱回収装置性能履歴共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirToAirHeatRecoveryPHistory" ; + IFC4-PSD:propertyDef :p826e0580d1c011e1800000215ad4efdf , :p86018c80d1c011e1800000215ad4efdf , :p7b46f780d1c011e1800000215ad4efdf , :p77b37080d1c011e1800000215ad4efdf , :p6c604500d1c011e1800000215ad4efdf , :p7eda7e80d1c011e1800000215ad4efdf , :p73875300d1c011e1800000215ad4efdf , :p679b9100d1c011e1800000215ad4efdf , :p64080a00d1c011e1800000215ad4efdf , :p6f5b3580d1c011e1800000215ad4efdf , :p60748300d1c011e1800000215ad4efdf . + +:TotalEffectivenessTable + a rdf:Property ; + rdfs:seeAlso :p826e0580d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalEffectivenessTable . + +:p86018c80d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop as function of air flow rate." ; + rdfs:label "AirPressureDropCurves" ; + IFC4-PSD:definition "Air pressure drop as function of air flow rate." ; + IFC4-PSD:definitionAlias "Perte de charge aéraulique fonction du débit d'air"@fr-FR , "風量の関数としての空気圧力降下"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "86018c80d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurves" ; + IFC4-PSD:nameAlias "Air Pressure Drop Curves"@en , "CourbesPerteChargeAir"@fr-FR , "空気圧力降下曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:TemperatureEffectiveness + a rdf:Property ; + rdfs:seeAlso :p679b9100d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureEffectiveness . + +:p679b9100d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature heat transfer effectiveness: The ratio of primary airflow temperature changes to maximum possible temperature changes." ; + rdfs:label "TemperatureEffectiveness" ; + IFC4-PSD:definition "Temperature heat transfer effectiveness: The ratio of primary airflow temperature changes to maximum possible temperature changes." ; + IFC4-PSD:definitionAlias ""@en , "Efficacité thermique sensible: rapport entre la différence de températures pour le flux primaire sur la différence maximale d'échange possible."@fr-FR , "温度熱交換効率:\n最大可能温度変化に対する一次側温度変化の比"@ja-JP ; + IFC4-PSD:ifdguid "679b9100d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureEffectiveness" ; + IFC4-PSD:nameAlias "Temperature Effectiveness"@en , "EfficacitéTempérature"@fr-FR , "温度効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:HumidityEffectiveness + a rdf:Property ; + rdfs:seeAlso :p6f5b3580d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HumidityEffectiveness . + +:p6c604500d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature heat transfer effectiveness when defrosting is active." ; + rdfs:label "DefrostTemperatureEffectiveness" ; + IFC4-PSD:definition "Temperature heat transfer effectiveness when defrosting is active." ; + IFC4-PSD:definitionAlias ""@en , "デフロスト作動時の温度熱交換効率"@ja-JP , "Efficacité thermique sensible lorsque le mode dégel est actif"@fr-FR ; + IFC4-PSD:ifdguid "6c604500d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "DefrostTemperatureEffectiveness" ; + IFC4-PSD:nameAlias "EfficacitéTemperatureDégel"@fr-FR , "Defrost Temperature Effectiveness"@en , "デフロスト温度効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirPressureDropCurves + a rdf:Property ; + rdfs:seeAlso :p86018c80d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurves . + +:p7b46f780d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer rate." ; + rdfs:label "TotalHeatTransferRate" ; + IFC4-PSD:definition "Total heat transfer rate." ; + IFC4-PSD:definitionAlias ""@en , "全熱交換量"@ja-JP , "Puissance thermique totale"@fr-FR ; + IFC4-PSD:ifdguid "7b46f780d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatTransferRate" ; + IFC4-PSD:nameAlias "全熱交換量"@ja-JP , "Total Heat Transfer Rate"@en , "PuissanceThermiqueTotale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:TotalEffectiveness a rdf:Property ; + rdfs:seeAlso :p64080a00d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalEffectiveness . + +:SensibleEffectiveness + a rdf:Property ; + rdfs:seeAlso :p60748300d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleEffectiveness . + +:TotalHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p7b46f780d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatTransferRate . + +:SensibleHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p73875300d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleHeatTransferRate . + +:p73875300d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sensible heat transfer rate." ; + rdfs:label "SensibleHeatTransferRate" ; + IFC4-PSD:definition "Sensible heat transfer rate." ; + IFC4-PSD:definitionAlias ""@en , "顕熱交換量"@ja-JP , "Puissance thermique sensible"@fr-FR ; + IFC4-PSD:ifdguid "73875300d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleHeatTransferRate" ; + IFC4-PSD:nameAlias "顕熱交換量"@ja-JP , "Sensible Heat Transfer Rate"@en , "PuissanceThermiqueSensible"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p6f5b3580d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Humidity heat transfer effectiveness: The ratio of primary airflow absolute humidity changes to maximum possible absolute humidity changes." ; + rdfs:label "HumidityEffectiveness" ; + IFC4-PSD:definition "Humidity heat transfer effectiveness: The ratio of primary airflow absolute humidity changes to maximum possible absolute humidity changes." ; + IFC4-PSD:definitionAlias "湿度熱交換効率:\n最大可能絶対湿度変化に対する一次側絶対湿度変化の比"@ja-JP , ""@en , "Efficacité sur transfert de chaleur latente: rapport entre difference de températures"@fr-FR ; + IFC4-PSD:ifdguid "6f5b3580d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HumidityEffectiveness" ; + IFC4-PSD:nameAlias "Humidity Effectiveness"@en , "EfficacitéLatente"@fr-FR , "湿度効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p64080a00d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer effectiveness: The ratio of heat transfer to the maximum possible heat transfer." ; + rdfs:label "TotalEffectiveness" ; + IFC4-PSD:definition "Total heat transfer effectiveness: The ratio of heat transfer to the maximum possible heat transfer." ; + IFC4-PSD:definitionAlias "全熱効率\n最大可能熱交換に対する熱交換の比率"@ja-JP , ""@en , "Rendement thermique: rapport entre la chaleur effective échangée et l'échange maximum possible."@fr-FR ; + IFC4-PSD:ifdguid "64080a00d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "TotalEffectiveness" ; + IFC4-PSD:nameAlias "Total Effectiveness"@en , "全熱効率"@ja-JP , "Rendement thermique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryTypeCommon.ttl b/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryTypeCommon.ttl new file mode 100644 index 00000000..afb8dac8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AirToAirHeatRecoveryTypeCommon.ttl @@ -0,0 +1,148 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pbea16600d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operation ambient air temperature range." ; + rdfs:label "OperationalTemperatureRange" ; + IFC4-PSD:definition "Allowable operation ambient air temperature range." ; + IFC4-PSD:definitionAlias ""@en , "Opération admise sur la plage de température de l'air ambiant"@fr-FR , "動作を許容する周囲温度の範囲"@ja-JP ; + IFC4-PSD:ifdguid "bea16600d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "OperationalTemperatureRange" ; + IFC4-PSD:nameAlias "Operational Temperature Range"@en , "動作温度範囲"@ja-JP , "PlageTempératureOpérationelle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pb77a5800d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "has the heat exchanger has defrost function or not." ; + rdfs:label "HasDefrost" ; + IFC4-PSD:definition "has the heat exchanger has defrost function or not." ; + IFC4-PSD:definitionAlias ""@en , "熱交換器のデフロスト機能有無"@ja-JP , "Possède ou non une fonction dégel sur l'échangeur de chaleur"@fr-FR ; + IFC4-PSD:ifdguid "b77a5800d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HasDefrost" ; + IFC4-PSD:nameAlias "デフロスト有無"@ja-JP , "PossèdeDégel"@fr-FR , "Has Defrost"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pdb3d9e00d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "possible range of secondary airflow that can be delivered." ; + rdfs:label "SecondaryAirflowRateRange" ; + IFC4-PSD:definition "possible range of secondary airflow that can be delivered." ; + IFC4-PSD:definitionAlias "二次側の送風可能範囲"@ja-JP , "Plage possible de débit d'air au secondaire qui peut être fourni."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "db3d9e00d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryAirflowRateRange" ; + IFC4-PSD:nameAlias "二次側風量範囲"@ja-JP , "PlageDébitAirSecondaire"@fr-FR , "Secondary Airflow Rate Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:OperationalTemperatureRange + a rdf:Property ; + rdfs:seeAlso :pbea16600d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationalTemperatureRange . + +:pd1b43600d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "possible range of primary airflow that can be delivered.." ; + rdfs:label "PrimaryAirflowRateRange" ; + IFC4-PSD:definition "possible range of primary airflow that can be delivered.." ; + IFC4-PSD:definitionAlias ""@en , "Plage possible de débit d'air au primaire qui peut être fourni."@fr-FR , "一次側の送風可能範囲"@ja-JP ; + IFC4-PSD:ifdguid "d1b43600d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryAirflowRateRange" ; + IFC4-PSD:nameAlias "Primary Airflow Rate Range"@en , "一次側風量範囲"@ja-JP , "PlageDébitAirPrimaire"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p9285e500d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "9285e500d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasDefrost a rdf:Property ; + rdfs:seeAlso :pb77a5800d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasDefrost . + +:Status a rdf:Property ; + rdfs:seeAlso :p987bc600d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_AirToAirHeatRecoveryTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air to Air Heat Recovery type common attributes." ; + rdfs:label "Pset_AirToAirHeatRecoveryTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcAirToAirHeatRecovery ; + IFC4-PSD:applicableTypeValue "IfcAirToAirHeatRecovery" ; + IFC4-PSD:definition "Air to Air Heat Recovery type common attributes." ; + IFC4-PSD:definitionAlias "空気熱回収タイプ共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AirToAirHeatRecoveryTypeCommon" ; + IFC4-PSD:propertyDef :pd1b43600d1c011e1800000215ad4efdf , :pb77a5800d1c011e1800000215ad4efdf , :pdb3d9e00d1c011e1800000215ad4efdf , :p9285e500d1c011e1800000215ad4efdf , :p987bc600d1c011e1800000215ad4efdf , :pbea16600d1c011e1800000215ad4efdf , :pa893a580d1c011e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p9285e500d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p987bc600d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR ; + IFC4-PSD:ifdguid "987bc600d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Etat"@fr-FR , "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:HeatTransferTypeEnum + a rdf:Property ; + rdfs:seeAlso :pa893a580d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatTransferTypeEnum . + +:PrimaryAirflowRateRange + a rdf:Property ; + rdfs:seeAlso :pd1b43600d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryAirflowRateRange . + +:SecondaryAirflowRateRange + a rdf:Property ; + rdfs:seeAlso :pdb3d9e00d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryAirflowRateRange . + +:pa893a580d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of heat transfer between the two air streams." ; + rdfs:label "HeatTransferTypeEnum" ; + IFC4-PSD:definition "Type of heat transfer between the two air streams." ; + IFC4-PSD:definitionAlias "Type de transfert de chaleur entre deux flux d'air."@fr-FR , "空気間の熱交換の種類(顕熱、潜熱…)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a893a580d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "HeatTransferTypeEnum" ; + IFC4-PSD:nameAlias "TypeEchangeChaleurEnum"@fr-FR , "熱交換種類"@ja-JP , "Heat Transfer Type Enum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SENSIBLE" , "LATENT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_AlarmPHistory.ttl b/converter/src/main/resources/pset/Pset_AlarmPHistory.ttl new file mode 100644 index 00000000..7ff42bbb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AlarmPHistory.ttl @@ -0,0 +1,109 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Acknowledge a rdf:Property ; + rdfs:seeAlso :pf90b0300d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Acknowledge . + +:Pset_AlarmPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history of alarm values. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AlarmPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcAlarm ; + IFC4-PSD:applicableTypeValue "IfcAlarm" ; + IFC4-PSD:definition "Properties for history of alarm values. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AlarmPHistory" ; + IFC4-PSD:propertyDef :pf3adb880d1c011e1800000215ad4efdf , :pfc9e8a00d1c011e1800000215ad4efdf , :pf90b0300d1c011e1800000215ad4efdf , :pef819b00d1c011e1800000215ad4efdf , :pea245080d1c011e1800000215ad4efdf . + +:pef819b00d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates alarm condition over time. The range of possible values and their meanings is defined by Pset_AlarmTypeCommon.Condition. An empty value indicates no present alarm condition." ; + rdfs:label "Condition" ; + IFC4-PSD:definition "Indicates alarm condition over time. The range of possible values and their meanings is defined by Pset_AlarmTypeCommon.Condition. An empty value indicates no present alarm condition." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ef819b00d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Condition" ; + IFC4-PSD:nameAlias "Condition"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Condition a rdf:Property ; + rdfs:seeAlso :pef819b00d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Condition . + +:Enabled a rdf:Property ; + rdfs:seeAlso :pea245080d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Enabled . + +:pea245080d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether alarm is enabled or disabled over time." ; + rdfs:label "Enabled" ; + IFC4-PSD:definition "Indicates whether alarm is enabled or disabled over time." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ea245080d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Enabled" ; + IFC4-PSD:nameAlias "Enabled"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:User a rdf:Property ; + rdfs:seeAlso :pfc9e8a00d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:User . + +:pf3adb880d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates alarm severity over time, where the scale of values is determined by the control system configuration. A zero value indicates no present alarm." ; + rdfs:label "Severity" ; + IFC4-PSD:definition "Indicates alarm severity over time, where the scale of values is determined by the control system configuration. A zero value indicates no present alarm." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f3adb880d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Severity" ; + IFC4-PSD:nameAlias "Severity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf90b0300d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates acknowledgement status where False indicates acknowlegement is required and outstanding, True indicates condition has been acknowedged, and Unknown indicates no acknowledgement is required. Upon resetting the condition, then acknowledgement reverts to Unknown." ; + rdfs:label "Acknowledge" ; + IFC4-PSD:definition "Indicates acknowledgement status where False indicates acknowlegement is required and outstanding, True indicates condition has been acknowedged, and Unknown indicates no acknowledgement is required. Upon resetting the condition, then acknowledgement reverts to Unknown." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f90b0300d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "Acknowledge" ; + IFC4-PSD:nameAlias "Acknowledge"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pfc9e8a00d1c011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates acknowledging user over time by identification corresponding to IfcPerson.Identification on an IfcActor." ; + rdfs:label "User" ; + IFC4-PSD:definition "Indicates acknowledging user over time by identification corresponding to IfcPerson.Identification on an IfcActor." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fc9e8a00d1c011e1800000215ad4efdf" ; + IFC4-PSD:name "User" ; + IFC4-PSD:nameAlias "User"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Severity a rdf:Property ; + rdfs:seeAlso :pf3adb880d1c011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Severity . diff --git a/converter/src/main/resources/pset/Pset_AlarmTypeCommon.ttl b/converter/src/main/resources/pset/Pset_AlarmTypeCommon.ttl new file mode 100644 index 00000000..89bedfb6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AlarmTypeCommon.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p222b9380d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping alarm condition identifiers to descriptive labels, which may be used for interpreting Pset_AlarmPHistory.Condition." ; + rdfs:label "Condition" ; + IFC4-PSD:definition "Table mapping alarm condition identifiers to descriptive labels, which may be used for interpreting Pset_AlarmPHistory.Condition." ; + IFC4-PSD:definitionAlias "Pset_AlarmPHistory.Conditionで使用される、警報条件の識別子とラベル情報のマッピングを行う。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "222b9380d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "Condition" ; + IFC4-PSD:nameAlias "Condition"@en , "条件"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:p0e802d00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0e802d00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p0e802d00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p088a4c00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "088a4c00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조 ID"@ko-KR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_AlarmTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Alarm type common attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AlarmTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcAlarm ; + IFC4-PSD:applicableTypeValue "IfcAlarm" ; + IFC4-PSD:definition "Alarm type common attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "アラームタイプの共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AlarmTypeCommon" ; + IFC4-PSD:propertyDef :p0e802d00d1c111e1800000215ad4efdf , :p088a4c00d1c111e1800000215ad4efdf , :p222b9380d1c111e1800000215ad4efdf . + +:Condition a rdf:Property ; + rdfs:seeAlso :p222b9380d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Condition . + +:Reference a rdf:Property ; + rdfs:seeAlso :p088a4c00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_AnnotationContourLine.ttl b/converter/src/main/resources/pset/Pset_AnnotationContourLine.ttl new file mode 100644 index 00000000..a42cd561 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AnnotationContourLine.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p340d3680d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Value of the elevation of the contour above or below a reference plane." ; + rdfs:label "ContourValue" ; + IFC4-PSD:definition "Value of the elevation of the contour above or below a reference plane." ; + IFC4-PSD:definitionAlias "参照平面に対する等高線の高さ値。"@ja-JP , "참조 평면에 대한 등고선의 높이 값."@ko-KR , "Valeur de l'élévation du contour au dessus ou au dessous d'un plan de référence."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "340d3680d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "ContourValue" ; + IFC4-PSD:nameAlias "等高線値"@ja-JP , "Contour Value"@en , "등고선 값"@ko-KR , "ValeurContour"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_AnnotationContourLine + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Specifies parameters of a standard curve that has a single, consistent measure value." ; + rdfs:label "Pset_AnnotationContourLine" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAnnotation/ContourLine" ; + IFC4-PSD:definition "Specifies parameters of a standard curve that has a single, consistent measure value." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : paramètres spécifiques à une courbe standard qui a une valeur simple et cohérente."@fr-FR , "IfcAnnotation(注記)オブジェクトに関する標準の曲線に対する単一、同一の情報を設定するプロパティセット定義。GIS関連情報を扱う。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AnnotationContourLine" ; + IFC4-PSD:propertyDef :p340d3680d1c111e1800000215ad4efdf . + +:ContourValue a rdf:Property ; + rdfs:seeAlso :p340d3680d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContourValue . diff --git a/converter/src/main/resources/pset/Pset_AnnotationLineOfSight.ttl b/converter/src/main/resources/pset/Pset_AnnotationLineOfSight.ttl new file mode 100644 index 00000000..dd47f49f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AnnotationLineOfSight.ttl @@ -0,0 +1,112 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:RoadVisibleDistanceLeft + a rdf:Property ; + rdfs:seeAlso :p51da9b80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RoadVisibleDistanceLeft . + +:p51da9b80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance visible to the left of the access." ; + rdfs:label "RoadVisibleDistanceLeft" ; + IFC4-PSD:definition "Distance visible to the left of the access." ; + IFC4-PSD:definitionAlias ""@en , "Distance de visibilité à la gauche de l'accès."@fr-FR , "左側の経路に可視出来る距離。"@ja-JP ; + IFC4-PSD:ifdguid "51da9b80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "RoadVisibleDistanceLeft" ; + IFC4-PSD:nameAlias "Road Visible Distance Left"@en , "左側道路可視距離"@ja-JP , "DistanceVisibiliteCoteGauche"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:VisibleAngleRight a rdf:Property ; + rdfs:seeAlso :p4d15e780d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleAngleRight . + +:RoadVisibleDistanceRight + a rdf:Property ; + rdfs:seeAlso :p57d07c80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RoadVisibleDistanceRight . + +:p57d07c80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance visible to the right of the access." ; + rdfs:label "RoadVisibleDistanceRight" ; + IFC4-PSD:definition "Distance visible to the right of the access." ; + IFC4-PSD:definitionAlias ""@en , "Distance de visibilité à la droite de l'accès."@fr-FR , "右側の経路に可視出来る距離。"@ja-JP ; + IFC4-PSD:ifdguid "57d07c80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "RoadVisibleDistanceRight" ; + IFC4-PSD:nameAlias "Road Visible Distance Right"@en , "右側道路可視距離"@ja-JP , "DistanceVisibiliteCoteDroit"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SetbackDistance a rdf:Property ; + rdfs:seeAlso :p41c2bc00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetbackDistance . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p47b89d00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Angle of visibility to the left of the access." ; + rdfs:label "VisibleAngleLeft" ; + IFC4-PSD:definition "Angle of visibility to the left of the access." ; + IFC4-PSD:definitionAlias "左側の経路に可視出来る角度。"@ja-JP , "Angle de visibilité à la gauche de l'accès."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "47b89d00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleAngleLeft" ; + IFC4-PSD:nameAlias "VisibiliteAngleGauche"@fr-FR , "Visible Angle Left"@en , "左側可視角度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositivePlaneAngleMeasure + ] . + +:VisibleAngleLeft a rdf:Property ; + rdfs:seeAlso :p47b89d00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleAngleLeft . + +:p41c2bc00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Setback distance from the point of connection on the major element along the axis of the minor element (e.g. distance from a public road at which the line of sigfht is measured." ; + rdfs:label "SetbackDistance" ; + IFC4-PSD:definition "Setback distance from the point of connection on the major element along the axis of the minor element (e.g. distance from a public road at which the line of sigfht is measured." ; + IFC4-PSD:definitionAlias "副要素の軸に沿った主要素の接続点からの後退距離(例えば、可視線が測定される公道からの距離)。"@ja-JP , ""@en , "Distance de recul le long de l'axe de l'élément secondaire depuis le point de jonction sur l'élément principal (par exemple, distance depuis la route principale à partir de laquelle la visibilité est appréciée)."@fr-FR ; + IFC4-PSD:ifdguid "41c2bc00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "SetbackDistance" ; + IFC4-PSD:nameAlias "DistanceRecul"@fr-FR , "Setback Distance"@en , "後退距離"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_AnnotationLineOfSight + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Specifies the properties of the line of sight at a point of connection between two elements. Typically used to define the line of sight visibility at the junction between two roads (particularly between an access road and a public road)." ; + rdfs:label "Pset_AnnotationLineOfSight" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAnnotation/LineOfSight" ; + IFC4-PSD:definition "Specifies the properties of the line of sight at a point of connection between two elements. Typically used to define the line of sight visibility at the junction between two roads (particularly between an access road and a public road)." ; + IFC4-PSD:definitionAlias ""@en , "Définition de l'IAI : spécifie les propriétés du point de vue à un point de jonction entre deux éléments. Par exemple, visibilité à la jonction entre deux routes (notamment entre un chemin d'accès et une route principale)."@fr-FR , "二つの要素間の接続点での視線を設定する指定プロパティ。一般的に、2つの道路の間(特に公道と取付け道路(区画道路)との間)の接合部で可視線を定義するために使用される。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AnnotationLineOfSight" ; + IFC4-PSD:propertyDef :p41c2bc00d1c111e1800000215ad4efdf , :p4d15e780d1c111e1800000215ad4efdf , :p57d07c80d1c111e1800000215ad4efdf , :p47b89d00d1c111e1800000215ad4efdf , :p51da9b80d1c111e1800000215ad4efdf . + +:p4d15e780d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Angle of visibility to the right of the access." ; + rdfs:label "VisibleAngleRight" ; + IFC4-PSD:definition "Angle of visibility to the right of the access." ; + IFC4-PSD:definitionAlias ""@en , "右側の経路に可視出来る角度。"@ja-JP , "Angle de visibilité à la droite de l'accès."@fr-FR ; + IFC4-PSD:ifdguid "4d15e780d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleAngleRight" ; + IFC4-PSD:nameAlias "Visible Angle Right"@en , "VisibiliteAngleDroit"@fr-FR , "右側可視角度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositivePlaneAngleMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_AnnotationSurveyArea.ttl b/converter/src/main/resources/pset/Pset_AnnotationSurveyArea.ttl new file mode 100644 index 00000000..76b2a699 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AnnotationSurveyArea.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p7cc4ef80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the accuracy quality of survey points as expected expressed in percentage terms." ; + rdfs:label "AccuracyQualityExpected" ; + IFC4-PSD:definition "A measure of the accuracy quality of survey points as expected expressed in percentage terms." ; + IFC4-PSD:definitionAlias ""@en , "Mesure de la précision attendue des points de relevé, exprimée en pourcentage."@fr-FR ; + IFC4-PSD:ifdguid "7cc4ef80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AccuracyQualityExpected" ; + IFC4-PSD:nameAlias "Accuracy Quality Expected"@en , "PrecisionAttendue"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:AccuracyQualityObtained + a rdf:Property ; + rdfs:seeAlso :p76cf0e80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccuracyQualityObtained . + +:AccuracyQualityExpected + a rdf:Property ; + rdfs:seeAlso :p7cc4ef80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccuracyQualityExpected . + +:AcquisitionMethod a rdf:Property ; + rdfs:seeAlso :p63bc3e80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcquisitionMethod . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p76cf0e80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the accuracy quality of survey points as obtained expressed in percentage terms." ; + rdfs:label "AccuracyQualityObtained" ; + IFC4-PSD:definition "A measure of the accuracy quality of survey points as obtained expressed in percentage terms." ; + IFC4-PSD:definitionAlias ""@en , "Mesure de la précision obtenue des points de relevé, exprimée en pourcentage."@fr-FR ; + IFC4-PSD:ifdguid "76cf0e80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AccuracyQualityObtained" ; + IFC4-PSD:nameAlias "Accuracy Quality Obtained"@en , "PrecisionObtenue"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:Pset_AnnotationSurveyArea + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Specifies particular properties of survey methods to be assigned to survey point set or resulting surface patches" ; + rdfs:label "Pset_AnnotationSurveyArea" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAnnotation/SurveyArea" ; + IFC4-PSD:definition "Specifies particular properties of survey methods to be assigned to survey point set or resulting surface patches" ; + IFC4-PSD:definitionAlias ""@en , "Définition de l'IAI : spécifie des propriétés particulières de méthodes de relevé à relier à des ensembles de points de relevé ou aux surfaces résultant de ce relevé."@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AnnotationSurveyArea" ; + IFC4-PSD:propertyDef :p7cc4ef80d1c111e1800000215ad4efdf , :p76cf0e80d1c111e1800000215ad4efdf , :p63bc3e80d1c111e1800000215ad4efdf . + +:p63bc3e80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The means by which survey data was acquired." ; + rdfs:label "AcquisitionMethod" ; + IFC4-PSD:definition "The means by which survey data was acquired." ; + IFC4-PSD:definitionAlias "La méthode utilisée pour effectuer le relevé."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "63bc3e80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AcquisitionMethod" ; + IFC4-PSD:nameAlias "MethodeAcquisition"@fr-FR , "Acquisition Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "GPS" , "LASERSCAN_AIRBORNE" , "LASERSCAN_GROUND" , "SONAR" , "THEODOLITE" , "USERDEFINED" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_Asset.ttl b/converter/src/main/resources/pset/Pset_Asset.ttl new file mode 100644 index 00000000..351dd157 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_Asset.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix xsd: . +@prefix rdfs: . +@prefix IFC4: . + +:AssetAccountingType a rdf:Property ; + rdfs:seeAlso :p8a7a7500d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssetAccountingType . + +:p99f9be00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of taxation group from which the type required may be set." ; + rdfs:label "AssetTaxType" ; + IFC4-PSD:definition "Identifies the predefined types of taxation group from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "税の定義済み種別。"@ja-JP ; + IFC4-PSD:ifdguid "99f9be00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AssetTaxType" ; + IFC4-PSD:nameAlias "資産税種別"@ja-JP , "Asset Tax Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "OTHER" , "NOTKNOWN" , "EXPENSED" , "CAPITALISED" + ] . + + + a owl:Ontology ; + owl:imports . + +:AssetInsuranceType a rdf:Property ; + rdfs:seeAlso :pa847da00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssetInsuranceType . + +:Pset_Asset a IFC4-PSD:PropertySetDef ; + rdfs:comment "An asset is a uniquely identifiable element which has a financial value and against which maintenance actions are recorded." ; + rdfs:label "Pset_Asset" ; + IFC4-PSD:applicableClass IFC4:IfcAsset ; + IFC4-PSD:applicableTypeValue "IfcAsset" ; + IFC4-PSD:definition "An asset is a uniquely identifiable element which has a financial value and against which maintenance actions are recorded." ; + IFC4-PSD:definitionAlias ""@en , "資産とは、維持管理活動が記録されている会計上の価値を持つ、単独に識別できる要素。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_Asset" ; + IFC4-PSD:propertyDef :p8a7a7500d1c111e1800000215ad4efdf , :p99f9be00d1c111e1800000215ad4efdf , :pa847da00d1c111e1800000215ad4efdf . + +:p8a7a7500d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of risk from which the type required may be set." ; + rdfs:label "AssetAccountingType" ; + IFC4-PSD:definition "Identifies the predefined types of risk from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "会計の定義済み種別。"@ja-JP ; + IFC4-PSD:ifdguid "8a7a7500d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AssetAccountingType" ; + IFC4-PSD:nameAlias "Asset Accounting Type"@en , "資産会計種別"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "OTHER" , "NOTKNOWN" , "NONFIXED" , "FIXED" + ] . + +:AssetTaxType a rdf:Property ; + rdfs:seeAlso :p99f9be00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssetTaxType . + +:pa847da00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of insurance rating from which the type required may be set." ; + rdfs:label "AssetInsuranceType" ; + IFC4-PSD:definition "Identifies the predefined types of insurance rating from which the type required may be set." ; + IFC4-PSD:definitionAlias "保険の定義済み種別。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a847da00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AssetInsuranceType" ; + IFC4-PSD:nameAlias "資産保険種別"@ja-JP , "Asset Insurance Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "REAL" , "PERSONAL" , "OTHER" , "NOTKNOWN" + ] . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualAppliancePHistory.ttl b/converter/src/main/resources/pset/Pset_AudioVisualAppliancePHistory.ttl new file mode 100644 index 00000000..dfa81559 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualAppliancePHistory.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pbd246d80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the power state of the device where True is on and False is off." ; + rdfs:label "PowerState" ; + IFC4-PSD:definition "Indicates the power state of the device where True is on and False is off." ; + IFC4-PSD:definitionAlias ""@en , "機器の電源オンオフの時間ごとの状態を示す。"@ja-JP ; + IFC4-PSD:ifdguid "bd246d80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "PowerState" ; + IFC4-PSD:nameAlias "Power State"@en , "電源状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AudioVolume a rdf:Property ; + rdfs:seeAlso :pcad9f300d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioVolume . + +:PowerState a rdf:Property ; + rdfs:seeAlso :pbd246d80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerState . + +:pcad9f300d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the audio volume level where the integer level corresponds to an entry or interpolation within Pset_AudioVisualApplianceTypeCommon.AudioVolume." ; + rdfs:label "AudioVolume" ; + IFC4-PSD:definition "Indicates the audio volume level where the integer level corresponds to an entry or interpolation within Pset_AudioVisualApplianceTypeCommon.AudioVolume." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cad9f300d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AudioVolume" ; + IFC4-PSD:nameAlias "Audio Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:MediaContent a rdf:Property ; + rdfs:seeAlso :pc7466c00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MediaContent . + +:pc7466c00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the media content storage location, such as URLs to camera footage within particular time periods." ; + rdfs:label "MediaContent" ; + IFC4-PSD:definition "Indicates the media content storage location, such as URLs to camera footage within particular time periods." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c7466c00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "MediaContent" ; + IFC4-PSD:nameAlias "Media Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pc31a4e80d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the media source where the identifier corresponds to an entry within the table of available media sources on Pset_AudioVisualApplianceTypeCommon.MediaSource." ; + rdfs:label "MediaSource" ; + IFC4-PSD:definition "Indicates the media source where the identifier corresponds to an entry within the table of available media sources on Pset_AudioVisualApplianceTypeCommon.MediaSource." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c31a4e80d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "MediaSource" ; + IFC4-PSD:nameAlias "Media Source"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:MediaSource a rdf:Property ; + rdfs:seeAlso :pc31a4e80d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MediaSource . + +:Pset_AudioVisualAppliancePHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Captures realtime information for audio-video devices, such as for security camera footage and retail information displays. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualAppliancePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcAudioVisualAppliance ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance" ; + IFC4-PSD:definition "Captures realtime information for audio-video devices, such as for security camera footage and retail information displays. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "オーディオビジュアル機器のリアルタイム情報の把握のためのプロパティセット。たとえばセキュリティカメラの画像情報インデックスや音量設定など。IFC4にて追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualAppliancePHistory" ; + IFC4-PSD:propertyDef :pc31a4e80d1c111e1800000215ad4efdf , :pbd246d80d1c111e1800000215ad4efdf , :pcad9f300d1c111e1800000215ad4efdf , :pc7466c00d1c111e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeAmplifier.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeAmplifier.ttl new file mode 100644 index 00000000..f61cce26 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeAmplifier.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe644fe00d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates audio amplification frequency ranges." ; + rdfs:label "AudioAmplification" ; + IFC4-PSD:definition "Indicates audio amplification frequency ranges." ; + IFC4-PSD:definitionAlias "再生周波数帯域を示す。"@ja-JP , "재생 주파수 대역을 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e644fe00d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AudioAmplification" ; + IFC4-PSD:nameAlias "オーディオアンプ"@ja-JP , "Audio Amplification"@en , "오디오 앰프"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcSoundPowerMeasure ; + IFC4-PSD:definingValue IFC4:IfcFrequencyMeasure + ] . + +:Pset_AudioVisualApplianceTypeAmplifier + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual amplifier is a device that renders audio from a single external source connected from a port. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeAmplifier" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/AMPLIFIER" ; + IFC4-PSD:definition "An audio-visual amplifier is a device that renders audio from a single external source connected from a port. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "ポートに接続された外部ソースからの音源を増幅する装置。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeAmplifier" ; + IFC4-PSD:propertyDef :pd7f6e200d1c111e1800000215ad4efdf , :pee9d3900d1c111e1800000215ad4efdf , :pe644fe00d1c111e1800000215ad4efdf . + +:AudioMode a rdf:Property ; + rdfs:seeAlso :pee9d3900d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioMode . + +:pd7f6e200d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of amplifier." ; + rdfs:label "AmplifierType" ; + IFC4-PSD:definition "Indicates the type of amplifier." ; + IFC4-PSD:definitionAlias "앰프의 형식을 보여준다."@ko-KR , ""@en , "アンプの形式を示す。"@ja-JP ; + IFC4-PSD:ifdguid "d7f6e200d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AmplifierType" ; + IFC4-PSD:nameAlias "Amplifier Type"@en , "アンプ形式"@ja-JP , "앰프 형식"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FIXED" , "VARIABLE" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:AudioAmplification a rdf:Property ; + rdfs:seeAlso :pe644fe00d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioAmplification . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pee9d3900d1c111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates audio sound modes and corresponding labels, if applicable." ; + rdfs:label "AudioMode" ; + IFC4-PSD:definition "Indicates audio sound modes and corresponding labels, if applicable." ; + IFC4-PSD:definitionAlias "오디오 사운드 모드 설정."@ko-KR , ""@en , "オーディオサウンドモードの設定。"@ja-JP ; + IFC4-PSD:ifdguid "ee9d3900d1c111e1800000215ad4efdf" ; + IFC4-PSD:name "AudioMode" ; + IFC4-PSD:nameAlias "オーディオモード"@ja-JP , "Audio Mode"@en , "오디오 모드"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:AmplifierType a rdf:Property ; + rdfs:seeAlso :pd7f6e200d1c111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AmplifierType . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeCommon.ttl new file mode 100644 index 00000000..68986ace --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeCommon.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p797e3380d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates discrete audio volume levels and corresponding sound power offsets, if applicable. Missing values may be interpolated." ; + rdfs:label "AudioVolume" ; + IFC4-PSD:definition "Indicates discrete audio volume levels and corresponding sound power offsets, if applicable. Missing values may be interpolated." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "797e3380d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "AudioVolume" ; + IFC4-PSD:nameAlias "Audio Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcSoundPowerMeasure ; + IFC4-PSD:definingValue IFC4:IfcInteger + ] . + +:AudioVolume a rdf:Property ; + rdfs:seeAlso :p797e3380d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioVolume . + +:Status a rdf:Property ; + rdfs:seeAlso :p61a6af80d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :p5bb0ce80d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_AudioVisualApplianceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual appliance is a device that renders or captures audio and/or video. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcAudioVisualAppliance ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance" ; + IFC4-PSD:definition "An audio-visual appliance is a device that renders or captures audio and/or video. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "音響と映像を撮影・録音し放送送出する機器。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeCommon" ; + IFC4-PSD:propertyDef :p5bb0ce80d1c211e1800000215ad4efdf , :p7125f880d1c211e1800000215ad4efdf , :p797e3380d1c211e1800000215ad4efdf , :p61a6af80d1c211e1800000215ad4efdf . + +:p5bb0ce80d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "5bb0ce80d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p7125f880d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates media sources and corresponding names of ports (IfcDistributionPort with FlowDirection=SINK and PredefinedType=AUDIOVISUAL) or aggregated audio/video components (IfcAudioVisualAppliance)." ; + rdfs:label "MediaSource" ; + IFC4-PSD:definition "Indicates media sources and corresponding names of ports (IfcDistributionPort with FlowDirection=SINK and PredefinedType=AUDIOVISUAL) or aggregated audio/video components (IfcAudioVisualAppliance)." ; + IFC4-PSD:definitionAlias "メディアソースと定義済みタイプ(IfcDistributionPort with FlowDirection=SINK and PredefinedType=AUDIOVISUAL)及びaudio/videoを構成する集合に対応する名前。"@ja-JP , "미디어 소스 정의된 유형 (IfcDistributionPort with FlowDirection = SINK and PredefinedType = AUDIOVISUAL) 및 audio / video 구성 집합에 해당하는 이름."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "7125f880d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "MediaSource" ; + IFC4-PSD:nameAlias "メディアソース"@ja-JP , "미디어 소스"@ko-KR , "Media Source"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:p61a6af80d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "현재 전원 상태를 나타냄"@ko-KR ; + IFC4-PSD:ifdguid "61a6af80d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "전원 상태"@ko-KR , "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MediaSource a rdf:Property ; + rdfs:seeAlso :p7125f880d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MediaSource . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeDisplay.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeDisplay.ttl new file mode 100644 index 00000000..fd05bee9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeDisplay.ttl @@ -0,0 +1,269 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ContrastRatio a rdf:Property ; + rdfs:seeAlso :pb0ece000d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContrastRatio . + +:VideoScaleMode a rdf:Property ; + rdfs:seeAlso :pe42f6f00d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoScaleMode . + +:p8864e600d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of display." ; + rdfs:label "DisplayType" ; + IFC4-PSD:definition "Indicates the type of display." ; + IFC4-PSD:definitionAlias "화면 종류를 나타낸다"@ko-KR , ""@en , "画面の種類を示す。"@ja-JP ; + IFC4-PSD:ifdguid "8864e600d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "DisplayType" ; + IFC4-PSD:nameAlias "Display Type"@en , "画面種類"@ja-JP , "화면 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CRT" , "DLP" , "LCD" , "LED" , "PLASMA" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:pa03c6a00d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the physical width of the screen (only the display surface)." ; + rdfs:label "DisplayWidth" ; + IFC4-PSD:definition "Indicates the physical width of the screen (only the display surface)." ; + IFC4-PSD:definitionAlias "화면 너비를 보여준다"@ko-KR , ""@en , "画面の幅を示す。"@ja-JP ; + IFC4-PSD:ifdguid "a03c6a00d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "DisplayWidth" ; + IFC4-PSD:nameAlias "画面幅"@ja-JP , "Display Width"@en , "화면 폭"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pf6111200d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates audio sound modes and corresponding labels, if applicable." ; + rdfs:label "AudioMode" ; + IFC4-PSD:definition "Indicates audio sound modes and corresponding labels, if applicable." ; + IFC4-PSD:definitionAlias "오디오 사운드 모드 설정."@ko-KR , "オーディオサウンドモードの設定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f6111200d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "AudioMode" ; + IFC4-PSD:nameAlias "오디오 모드"@ko-KR , "オーディオモード"@ja-JP , "Audio Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:pb0ece000d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the display contrast ratio." ; + rdfs:label "ContrastRatio" ; + IFC4-PSD:definition "Indicates the display contrast ratio." ; + IFC4-PSD:definitionAlias "명암비를 보여준다"@ko-KR , ""@en , "コントラスト比を示す。"@ja-JP ; + IFC4-PSD:ifdguid "b0ece000d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "ContrastRatio" ; + IFC4-PSD:nameAlias "コントラスト比"@ja-JP , "Contrast Ratio"@en , "명암비"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pab8f9580d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the display brightness." ; + rdfs:label "Brightness" ; + IFC4-PSD:definition "Indicates the display brightness." ; + IFC4-PSD:definitionAlias ""@en , "明るさ示す。"@ja-JP , "밝기 보여준다"@ko-KR ; + IFC4-PSD:ifdguid "ab8f9580d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "Brightness" ; + IFC4-PSD:nameAlias "밝기"@ko-KR , "明るさ"@ja-JP , "Brightness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIlluminanceMeasure + ] . + +:VideoResolutionWidth + a rdf:Property ; + rdfs:seeAlso :pcbbf5480d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionWidth . + +:VideoResolutionHeight + a rdf:Property ; + rdfs:seeAlso :pd2e66280d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionHeight . + +:pcbbf5480d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of horizontal pixels, e.g. 1920." ; + rdfs:label "VideoResolutionWidth" ; + IFC4-PSD:definition "Indicates the number of horizontal pixels, e.g. 1920." ; + IFC4-PSD:definitionAlias "가로 픽셀 수를 나타낸다."@ko-KR , "水平方向のピクセル数を示す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cbbf5480d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionWidth" ; + IFC4-PSD:nameAlias "수평 해상도"@ko-KR , "Video Resolution Width"@en , "水平解像度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pd2e66280d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of vertical pixels, e.g. 1080." ; + rdfs:label "VideoResolutionHeight" ; + IFC4-PSD:definition "Indicates the number of vertical pixels, e.g. 1080." ; + IFC4-PSD:definitionAlias ""@en , "垂直方向のピクセル数を示す。"@ja-JP , "수직 픽셀 수를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "d2e66280d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionHeight" ; + IFC4-PSD:nameAlias "Video Resolution Height"@en , "垂直解像度"@ja-JP , "수직 해상도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:RefreshRate a rdf:Property ; + rdfs:seeAlso :pb77b5780d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefreshRate . + +:pe42f6f00d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates video scaling modes." ; + rdfs:label "VideoScaleMode" ; + IFC4-PSD:definition "Indicates video scaling modes." ; + IFC4-PSD:definitionAlias "ビデオスケーリングモードを示す。"@ja-JP , ""@en , "비디오 크기 조정 모드를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "e42f6f00d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "VideoScaleMode" ; + IFC4-PSD:nameAlias "ビデオスケールモード"@ja-JP , "비디오 스케일 모드"@ko-KR , "Video Scale Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AudioMode a rdf:Property ; + rdfs:seeAlso :pf6111200d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioMode . + +:VideoResolutionMode a rdf:Property ; + rdfs:seeAlso :pda0d7080d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionMode . + +:pbc400b80d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates touchscreen support." ; + rdfs:label "TouchScreen" ; + IFC4-PSD:definition "Indicates touchscreen support." ; + IFC4-PSD:definitionAlias "タッチスクリーンのサポートを示す。"@ja-JP , "터치 스크린 지원을 보여준다"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "bc400b80d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "TouchScreen" ; + IFC4-PSD:nameAlias "터치 스크린"@ko-KR , "Touch Screen"@en , "タッチスクリーン"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SINGLETOUCH" , "MULTITOUCH" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Brightness a rdf:Property ; + rdfs:seeAlso :pab8f9580d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Brightness . + +:pa6cae180d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the physical height of the screen (only the display surface)." ; + rdfs:label "DisplayHeight" ; + IFC4-PSD:definition "Indicates the physical height of the screen (only the display surface)." ; + IFC4-PSD:definitionAlias ""@en , "화면의 높이를 나타낸다"@ko-KR , "画面の高さを示す。"@ja-JP ; + IFC4-PSD:ifdguid "a6cae180d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "DisplayHeight" ; + IFC4-PSD:nameAlias "Display Height"@en , "画面高さ"@ja-JP , "화면 높이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_AudioVisualApplianceTypeDisplay + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual display is a device that renders video from a screen. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeDisplay" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/DISPLAY" ; + IFC4-PSD:definition "An audio-visual display is a device that renders video from a screen. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "画面からビデオ映像を送出する機器。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeDisplay" ; + IFC4-PSD:propertyDef :p8864e600d1c211e1800000215ad4efdf , :p99adf280d1c211e1800000215ad4efdf , :pe42f6f00d1c211e1800000215ad4efdf , :pb0ece000d1c211e1800000215ad4efdf , :pab8f9580d1c211e1800000215ad4efdf , :pf6111200d1c211e1800000215ad4efdf , :pbc400b80d1c211e1800000215ad4efdf , :pedb8d700d1c211e1800000215ad4efdf , :pa03c6a00d1c211e1800000215ad4efdf , :pda0d7080d1c211e1800000215ad4efdf , :pcbbf5480d1c211e1800000215ad4efdf , :pd2e66280d1c211e1800000215ad4efdf , :pa6cae180d1c211e1800000215ad4efdf , :pb77b5780d1c211e1800000215ad4efdf . + +:DisplayWidth a rdf:Property ; + rdfs:seeAlso :pa03c6a00d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DisplayWidth . + +:DisplayType a rdf:Property ; + rdfs:seeAlso :p8864e600d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DisplayType . + +:p99adf280d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the diagonal screen size." ; + rdfs:label "NominalSize" ; + IFC4-PSD:definition "Indicates the diagonal screen size." ; + IFC4-PSD:definitionAlias "画面の対角線サイズを示す。"@ja-JP , "화면의 대각선 크기를 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "99adf280d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSize" ; + IFC4-PSD:nameAlias "Nominal Size"@en , "画面公称サイズ"@ja-JP , "화면 공칭 크기"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:VideoCaptionMode a rdf:Property ; + rdfs:seeAlso :pedb8d700d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoCaptionMode . + +:pda0d7080d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates video resolution modes." ; + rdfs:label "VideoResolutionMode" ; + IFC4-PSD:definition "Indicates video resolution modes." ; + IFC4-PSD:definitionAlias ""@en , "解像度モードを示す。"@ja-JP , "해상도를 보여준다"@ko-KR ; + IFC4-PSD:ifdguid "da0d7080d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionMode" ; + IFC4-PSD:nameAlias "解像度モード"@ja-JP , "디스플레이 모드"@ko-KR , "Video Resolution Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:DisplayHeight a rdf:Property ; + rdfs:seeAlso :pa6cae180d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DisplayHeight . + +:TouchScreen a rdf:Property ; + rdfs:seeAlso :pbc400b80d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TouchScreen . + +:pb77b5780d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the display refresh frequency." ; + rdfs:label "RefreshRate" ; + IFC4-PSD:definition "Indicates the display refresh frequency." ; + IFC4-PSD:definitionAlias ""@en , "빈도 재생 빈도 주파수 범위를 나타낸다."@ko-KR , "リフレッシュレート周波数範囲を示す。"@ja-JP ; + IFC4-PSD:ifdguid "b77b5780d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "RefreshRate" ; + IFC4-PSD:nameAlias "재생"@ko-KR , "リフレッシュレート"@ja-JP , "Refresh Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:NominalSize a rdf:Property ; + rdfs:seeAlso :p99adf280d1c211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSize . + +:pedb8d700d1c211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates video closed captioning modes." ; + rdfs:label "VideoCaptionMode" ; + IFC4-PSD:definition "Indicates video closed captioning modes." ; + IFC4-PSD:definitionAlias "자막 모드를 나타낸다. (자막 기능)"@ko-KR , "クローズドキャプションモードを示す。(字幕機能)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "edb8d700d1c211e1800000215ad4efdf" ; + IFC4-PSD:name "VideoCaptionMode" ; + IFC4-PSD:nameAlias "비디오 캡션 모드"@ko-KR , "ビデオキャプションモード"@ja-JP , "Video Caption Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypePlayer.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypePlayer.ttl new file mode 100644 index 00000000..ab14049b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypePlayer.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p18a32b00d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates supported media formats." ; + rdfs:label "PlayerMediaFormat" ; + IFC4-PSD:definition "Indicates supported media formats." ; + IFC4-PSD:definitionAlias ""@en , "サポートされているメディアのフォーマットを示す。"@ja-JP , "지원되는 미디어 형식을 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "18a32b00d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "PlayerMediaFormat" ; + IFC4-PSD:nameAlias "미디어 포맷"@ko-KR , "メディアフォーマット"@ja-JP , "Player Media Format"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:Pset_AudioVisualApplianceTypePlayer + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual player is a device that plays stored media into a stream of audio and/or video, such as camera footage in security systems, background audio in retail areas, or media presentations in conference rooms or theatres. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypePlayer" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/PLAYER" ; + IFC4-PSD:definition "An audio-visual player is a device that plays stored media into a stream of audio and/or video, such as camera footage in security systems, background audio in retail areas, or media presentations in conference rooms or theatres. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "セキュリティーシステムのカメラや店舗などのBGMシステム、または劇場や会議室ないのプレゼンテーションシステムのような収容された音響映像信号を表示・放送する装置。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypePlayer" ; + IFC4-PSD:propertyDef :p18a32b00d1c311e1800000215ad4efdf , :p04f7c480d1c311e1800000215ad4efdf , :p1214b380d1c311e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PlayerType a rdf:Property ; + rdfs:seeAlso :p04f7c480d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlayerType . + +:p1214b380d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the media can be ejected from the player (if physical media)." ; + rdfs:label "PlayerMediaEject" ; + IFC4-PSD:definition "Indicates whether the media can be ejected from the player (if physical media)." ; + IFC4-PSD:definitionAlias ""@en , "미디어를 꺼낼 수 있는지 여부를 나타낸다."@ko-KR , "メディアを取り出すことができるかどうかを示す。"@ja-JP ; + IFC4-PSD:ifdguid "1214b380d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "PlayerMediaEject" ; + IFC4-PSD:nameAlias "미디어 꺼내기 여부"@ko-KR , "メディア取り出し可否"@ja-JP , "Player Media Eject"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:PlayerMediaEject a rdf:Property ; + rdfs:seeAlso :p1214b380d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlayerMediaEject . + +:PlayerMediaFormat a rdf:Property ; + rdfs:seeAlso :p18a32b00d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlayerMediaFormat . + +:p04f7c480d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of player." ; + rdfs:label "PlayerType" ; + IFC4-PSD:definition "Indicates the type of player." ; + IFC4-PSD:definitionAlias ""@en , "재생 가능한 형식을 보여준다."@ko-KR , "再生可能な形式を示す。"@ja-JP ; + IFC4-PSD:ifdguid "04f7c480d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "PlayerType" ; + IFC4-PSD:nameAlias "プレイヤー形式"@ja-JP , "플레이어 형식"@ko-KR , "Player Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AUDIO" , "VIDEO" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeProjector.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeProjector.ttl new file mode 100644 index 00000000..87b4f23f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeProjector.ttl @@ -0,0 +1,132 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ProjectorType a rdf:Property ; + rdfs:seeAlso :p28bb0a80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProjectorType . + +:VideoScaleMode a rdf:Property ; + rdfs:seeAlso :p4b4d2380d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoScaleMode . + +:p34a6cc80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of horizontal pixels (the largest native video resolution width)." ; + rdfs:label "VideoResolutionWidth" ; + IFC4-PSD:definition "Indicates the number of horizontal pixels (the largest native video resolution width)." ; + IFC4-PSD:definitionAlias "水平方向のピクセル数を示す。"@ja-JP , ""@en , "가로 픽셀 수를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "34a6cc80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionWidth" ; + IFC4-PSD:nameAlias "Video Resolution Width"@en , "水平解像度"@ja-JP , "수평 해상도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p4b4d2380d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates video scaling modes." ; + rdfs:label "VideoScaleMode" ; + IFC4-PSD:definition "Indicates video scaling modes." ; + IFC4-PSD:definitionAlias ""@en , "ビデオスケーリングモードを示す。"@ja-JP , "비디오 크기 조정모드를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "4b4d2380d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "VideoScaleMode" ; + IFC4-PSD:nameAlias "ビデオスケールモード"@ja-JP , "비디오 스케일"@ko-KR , "Video Scale Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:p412b2500d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates video resolution modes." ; + rdfs:label "VideoResolutionMode" ; + IFC4-PSD:definition "Indicates video resolution modes." ; + IFC4-PSD:definitionAlias "解像度モードを示す。"@ja-JP , "모드해상도를 보여준다"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "412b2500d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionMode" ; + IFC4-PSD:nameAlias "디스플레이 모드"@ko-KR , "解像度モード"@ja-JP , "Video Resolution Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:p28bb0a80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of projector." ; + rdfs:label "ProjectorType" ; + IFC4-PSD:definition "Indicates the type of projector." ; + IFC4-PSD:definitionAlias "プロジェクタの形式を示す。"@ja-JP , ""@en , "프로젝터의 형식을 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "28bb0a80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "ProjectorType" ; + IFC4-PSD:nameAlias "Projector Type"@en , "프로젝터 형식"@ko-KR , "プロジェクター形式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:p54d68b80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates closed captioning modes." ; + rdfs:label "VideoCaptionMode" ; + IFC4-PSD:definition "Indicates closed captioning modes." ; + IFC4-PSD:definitionAlias ""@en , "クローズドキャプションモードを示す。(字幕機能)"@ja-JP , "자막 모드를 나타낸다.(자막 기능)"@ko-KR ; + IFC4-PSD:ifdguid "54d68b80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "VideoCaptionMode" ; + IFC4-PSD:nameAlias "비디오 캡쳐모드"@ko-KR , "Video Caption Mode"@en , "ビデオキャプションモード"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:VideoResolutionHeight + a rdf:Property ; + rdfs:seeAlso :p3a9cad80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionHeight . + +:VideoResolutionMode a rdf:Property ; + rdfs:seeAlso :p412b2500d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionMode . + +:VideoResolutionWidth + a rdf:Property ; + rdfs:seeAlso :p34a6cc80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoResolutionWidth . + +:VideoCaptionMode a rdf:Property ; + rdfs:seeAlso :p54d68b80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VideoCaptionMode . + +:Pset_AudioVisualApplianceTypeProjector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual projector is a device that projects video to a surface. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeProjector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/PROJECTOR" ; + IFC4-PSD:definition "An audio-visual projector is a device that projects video to a surface. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "画面にビデオ映像を投影する装置。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeProjector" ; + IFC4-PSD:propertyDef :p34a6cc80d1c311e1800000215ad4efdf , :p412b2500d1c311e1800000215ad4efdf , :p54d68b80d1c311e1800000215ad4efdf , :p4b4d2380d1c311e1800000215ad4efdf , :p28bb0a80d1c311e1800000215ad4efdf , :p3a9cad80d1c311e1800000215ad4efdf . + +:p3a9cad80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of vertical pixels (the largest native video resolution height)." ; + rdfs:label "VideoResolutionHeight" ; + IFC4-PSD:definition "Indicates the number of vertical pixels (the largest native video resolution height)." ; + IFC4-PSD:definitionAlias ""@en , "세로 픽셀 수를 나타낸다."@ko-KR , "垂直方向のピクセル数を示す。"@ja-JP ; + IFC4-PSD:ifdguid "3a9cad80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "VideoResolutionHeight" ; + IFC4-PSD:nameAlias "Video Resolution Height"@en , "수직 해상도"@ko-KR , "垂直解像度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeReceiver.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeReceiver.ttl new file mode 100644 index 00000000..948d9e94 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeReceiver.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p83546680d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates audio sound modes and corresponding labels, if applicable." ; + rdfs:label "AudioMode" ; + IFC4-PSD:definition "Indicates audio sound modes and corresponding labels, if applicable." ; + IFC4-PSD:definitionAlias "オーディオサウンドモードの設定。"@ja-JP , "오디오 사운드 모드 설정."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "83546680d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "AudioMode" ; + IFC4-PSD:nameAlias "Audio Mode"@en , "오디오 모드"@ko-KR , "オーディオモード"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:p7a639500d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates audio amplification frequency ranges." ; + rdfs:label "AudioAmplification" ; + IFC4-PSD:definition "Indicates audio amplification frequency ranges." ; + IFC4-PSD:definitionAlias "再生周波数帯域を示す。"@ja-JP , "재생 주파수 대역을 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "7a639500d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "AudioAmplification" ; + IFC4-PSD:nameAlias "Audio Amplification"@en , "오디오 앰프"@ko-KR , "オーディオアンプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcFrequencyMeasure + ] . + +:AudioAmplification a rdf:Property ; + rdfs:seeAlso :p7a639500d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioAmplification . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AudioMode a rdf:Property ; + rdfs:seeAlso :p83546680d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AudioMode . + +:p6a4bb580d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of receiver." ; + rdfs:label "ReceiverType" ; + IFC4-PSD:definition "Indicates the type of receiver." ; + IFC4-PSD:definitionAlias ""@en , "수신기의 형식을 보여준다."@ko-KR , "受信機の形式を示す。"@ja-JP ; + IFC4-PSD:ifdguid "6a4bb580d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "ReceiverType" ; + IFC4-PSD:nameAlias "수신기 형식"@ko-KR , "受信機形式"@ja-JP , "Receiver Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AUDIO" , "AUDIOVIDEO" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:Pset_AudioVisualApplianceTypeReceiver + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual receiver is a device that switches audio and/or video from multiple sources, including external sources connected from ports and internal aggregated sources. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeReceiver" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/RECEIVER" ; + IFC4-PSD:definition "An audio-visual receiver is a device that switches audio and/or video from multiple sources, including external sources connected from ports and internal aggregated sources. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "内部や外部に接続された音源を含む複数の情報から、音響と映像信号を切り替える装置。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeReceiver" ; + IFC4-PSD:propertyDef :p6a4bb580d1c311e1800000215ad4efdf , :p7a639500d1c311e1800000215ad4efdf , :p83546680d1c311e1800000215ad4efdf . + +:ReceiverType a rdf:Property ; + rdfs:seeAlso :p6a4bb580d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReceiverType . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeSpeaker.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeSpeaker.ttl new file mode 100644 index 00000000..10158956 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeSpeaker.ttl @@ -0,0 +1,112 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pa717ac80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates how the speaker is designed to be mounted." ; + rdfs:label "SpeakerMounting" ; + IFC4-PSD:definition "Indicates how the speaker is designed to be mounted." ; + IFC4-PSD:definitionAlias ""@en , "붙일 수있는 방법을 보여준다."@ko-KR , "取付可能な方法を示す。"@ja-JP ; + IFC4-PSD:ifdguid "a717ac80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "SpeakerMounting" ; + IFC4-PSD:nameAlias "설치 가능 방법"@ko-KR , "取付可能方法"@ja-JP , "Speaker Mounting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FREESTANDING" , "CEILING" , "WALL" , "OUTDOOR" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc7e00200d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the speaker impedence." ; + rdfs:label "Impedence" ; + IFC4-PSD:definition "Indicates the speaker impedence." ; + IFC4-PSD:definitionAlias ""@en , "インピーダンス値を示す。"@ja-JP , "임피던스 값을 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "c7e00200d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "Impedence" ; + IFC4-PSD:nameAlias "Impedence"@en , "インピーダンス値"@ja-JP , "임피던스"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:SpeakerMounting a rdf:Property ; + rdfs:seeAlso :pa717ac80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpeakerMounting . + +:Impedence a rdf:Property ; + rdfs:seeAlso :pc7e00200d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Impedence . + +:p949d7300d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of speaker." ; + rdfs:label "SpeakerType" ; + IFC4-PSD:definition "Indicates the type of speaker." ; + IFC4-PSD:definitionAlias "スピーカーのタイプを示す。"@ja-JP , ""@en , "스피커의 타입을 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "949d7300d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "SpeakerType" ; + IFC4-PSD:nameAlias "스피커 타입"@ko-KR , "Speaker Type"@en , "スピーカータイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FULLRANGE" , "MIDRANGE" , "WOOFER" , "TWEETER" , "COAXIAL" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:FrequencyResponse a rdf:Property ; + rdfs:seeAlso :pc0b8f400d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrequencyResponse . + +:SpeakerDriverSize a rdf:Property ; + rdfs:seeAlso :pb860b900d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpeakerDriverSize . + +:SpeakerType a rdf:Property ; + rdfs:seeAlso :p949d7300d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpeakerType . + +:Pset_AudioVisualApplianceTypeSpeaker + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual speaker is a device that converts amplified audio signals into sound waves. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeSpeaker" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/SPEAKER" ; + IFC4-PSD:definition "An audio-visual speaker is a device that converts amplified audio signals into sound waves. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "音響信号を音波に変換する装置。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeSpeaker" ; + IFC4-PSD:propertyDef :pb860b900d1c311e1800000215ad4efdf , :pa717ac80d1c311e1800000215ad4efdf , :pc7e00200d1c311e1800000215ad4efdf , :p949d7300d1c311e1800000215ad4efdf , :pc0b8f400d1c311e1800000215ad4efdf . + +:pb860b900d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of drivers and their sizes." ; + rdfs:label "SpeakerDriverSize" ; + IFC4-PSD:definition "Indicates the number of drivers and their sizes." ; + IFC4-PSD:definitionAlias ""@en , "ドライバユニットと数を示す。"@ja-JP , "드라이버 유닛과 수를 나타낸다"@ko-KR ; + IFC4-PSD:ifdguid "b860b900d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "SpeakerDriverSize" ; + IFC4-PSD:nameAlias "스피커 드라이버"@ko-KR , "Speaker Driver Size"@en , "スピーカードライバサイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPositiveLengthMeasure ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:pc0b8f400d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the output over a specified range of frequencies." ; + rdfs:label "FrequencyResponse" ; + IFC4-PSD:definition "Indicates the output over a specified range of frequencies." ; + IFC4-PSD:definitionAlias ""@en , "周波数範囲での出力を示す。"@ja-JP , "주파수 범위에서 출력을 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "c0b8f400d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "FrequencyResponse" ; + IFC4-PSD:nameAlias "주파수 응답"@ko-KR , "Frequency Response"@en , "周波数応答"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcSoundPowerMeasure ; + IFC4-PSD:definingValue IFC4:IfcFrequencyMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeTuner.ttl b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeTuner.ttl new file mode 100644 index 00000000..f0b0859a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_AudioVisualApplianceTypeTuner.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TunerType a rdf:Property ; + rdfs:seeAlso :pd3cbc400d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TunerType . + +:pe219e000d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the tuner modes (or bands). For example, 'AnalogCable', 'DigitalAir', 'AM', 'FM'." ; + rdfs:label "TunerMode" ; + IFC4-PSD:definition "Indicates the tuner modes (or bands). For example, 'AnalogCable', 'DigitalAir', 'AM', 'FM'." ; + IFC4-PSD:definitionAlias "受信可能な放送モードを示す。"@ja-JP , ""@en , "수신 가능한 방송 모드를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "e219e000d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "TunerMode" ; + IFC4-PSD:nameAlias "チューナーモード"@ja-JP , "Tuner Mode"@en , "튜너 모드"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:TunerMode a rdf:Property ; + rdfs:seeAlso :pe219e000d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TunerMode . + +:Pset_AudioVisualApplianceTypeTuner + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An audio-visual tuner is a device that demodulates a signal into a stream of audio and/or video. HISTORY: Added in IFC4." ; + rdfs:label "Pset_AudioVisualApplianceTypeTuner" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAudioVisualAppliance/TUNER" ; + IFC4-PSD:definition "An audio-visual tuner is a device that demodulates a signal into a stream of audio and/or video. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "音響と映像の信号を変換する装置。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_AudioVisualApplianceTypeTuner" ; + IFC4-PSD:propertyDef :pea721b00d1c311e1800000215ad4efdf , :pe219e000d1c311e1800000215ad4efdf , :pf231bf80d1c311e1800000215ad4efdf , :pd3cbc400d1c311e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf231bf80d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the tuner frequencies, if applicable." ; + rdfs:label "TunerFrequency" ; + IFC4-PSD:definition "Indicates the tuner frequencies, if applicable." ; + IFC4-PSD:definitionAlias "対応周波数帯を示す。"@ja-JP , "주파수 대역을 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f231bf80d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "TunerFrequency" ; + IFC4-PSD:nameAlias "Tuner Frequency"@en , "주파수 대응"@ko-KR , "周波数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:pd3cbc400d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the tuner type." ; + rdfs:label "TunerType" ; + IFC4-PSD:definition "Indicates the tuner type." ; + IFC4-PSD:definitionAlias "チューナータイプを示す。"@ja-JP , ""@en , "튜너 타입을 나타낸다"@ko-KR ; + IFC4-PSD:ifdguid "d3cbc400d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "TunerType" ; + IFC4-PSD:nameAlias "튜너 타입"@ko-KR , "チューナータイプ"@ja-JP , "Tuner Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AUDIO" , "VIDEO" , "OTHER" , "NOTKNOWN" , "UNSET." + ] . + +:pea721b00d1c311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the tuner channels, if applicable." ; + rdfs:label "TunerChannel" ; + IFC4-PSD:definition "Indicates the tuner channels, if applicable." ; + IFC4-PSD:definitionAlias "가능한 채널을 보여준다."@ko-KR , ""@en , "設定可能なチャンネルを示す。"@ja-JP ; + IFC4-PSD:ifdguid "ea721b00d1c311e1800000215ad4efdf" ; + IFC4-PSD:name "TunerChannel" ; + IFC4-PSD:nameAlias "チューナーチャンネル"@ja-JP , "튜너 채널 선택"@ko-KR , "Tuner Channel"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:TunerChannel a rdf:Property ; + rdfs:seeAlso :pea721b00d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TunerChannel . + +:TunerFrequency a rdf:Property ; + rdfs:seeAlso :pf231bf80d1c311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TunerFrequency . diff --git a/converter/src/main/resources/pset/Pset_BeamCommon.ttl b/converter/src/main/resources/pset/Pset_BeamCommon.ttl index cba9bb4f..b9c2ff76 100644 --- a/converter/src/main/resources/pset/Pset_BeamCommon.ttl +++ b/converter/src/main/resources/pset/Pset_BeamCommon.ttl @@ -1,244 +1,178 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_BeamCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" ; -. -:Pset_BeamCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcBeam ; - IFC4-PSD:applicableTypeValue "IfcBeam" ; - IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of beam." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcBeam"@fr-FR ; - IFC4-PSD:definitionAlias "IfcBeam(梁)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcBeam实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_BeamCommon" ; - IFC4-PSD:propertyDef :_04abf900d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0970ad00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_19888c80d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1ee5d700d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_23aa8b00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_286f3f00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2f964d00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_33c26a80d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_38871e80d1c411e1800000215ad4efdf ; -. -:_04abf900d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "04abf900d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier ; - ] ; -. -:_0970ad00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "0970ad00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_19888c80d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Clear span for this object. - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.""" ; - IFC4-PSD:definitionAlias """Lichte Spannweite des Balkens für die statische Anforderung, - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias "Portée libre de la poutre. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété."@fr-FR ; - IFC4-PSD:definitionAlias """このオブジェクトの全長。 - -その形状(オブジェクトの全長)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。"""@ja-JP ; - IFC4-PSD:definitionAlias """该对象的净跨度。 -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"""@zh-CN ; - IFC4-PSD:ifdguid "19888c80d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Span" ; - IFC4-PSD:nameAlias "PorteeLibre"@fr-FR ; - IFC4-PSD:nameAlias "Spannweite"@de-DE ; - IFC4-PSD:nameAlias "全長"@ja-JP ; - IFC4-PSD:nameAlias "跨度"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_1ee5d700d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Slope angle - relative to horizontal (0.0 degrees). - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.""" ; - IFC4-PSD:definitionAlias "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété"@fr-FR ; - IFC4-PSD:definitionAlias """Neigungswinkel des Balkens relative zur Horizontalen (0 Grad). - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias """傾斜角度。水平を0度とする。 - -その形状(傾斜梁)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。"""@ja-JP ; - IFC4-PSD:definitionAlias """相对于水平(0.0度)方向的坡度角。 -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"""@zh-CN ; - IFC4-PSD:ifdguid "1ee5d700d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Slope" ; - IFC4-PSD:nameAlias "Inclinaison"@fr-FR ; - IFC4-PSD:nameAlias "Neigungswinkel"@de-DE ; - IFC4-PSD:nameAlias "傾斜"@ja-JP ; - IFC4-PSD:nameAlias "坡度"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_23aa8b00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Rotation against the longitudinal axis - relative to the global Z direction for all beams that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.) - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only. - -Note: new property in IFC4""" ; - IFC4-PSD:definitionAlias """Kippwinkel des Balkens relative zur Vertikalen (O Grad). - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias "Rotation autour de l'axe longitudinal - relativement à l'axe Z pour toutes les poutres qui ne sont pas verticales relativement au repère absolu (la direction du profil est celle de l'axe Z si la valeur de la propriété est 0). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété. Note : nouvelle propriété de la version IFC2x4."@fr-FR ; - IFC4-PSD:definitionAlias """梁の材軸に対する回転。 --この材軸はグローバル座標系で非垂直な全ての梁に対してグローバルZ方向へ相対する。(表示方向は、グローバルZの回転方向を0とする。) - -その形状(梁の回転)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。 - -注:IFC2x4の新しいプロパティ"""@ja-JP ; - IFC4-PSD:definitionAlias """相对于纵轴的旋转角。对全局坐标系中的非垂直梁,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。) -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。 -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:ifdguid "23aa8b00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Roll" ; - IFC4-PSD:nameAlias "Kippwinkel"@de-DE ; - IFC4-PSD:nameAlias "RotationAutourAxeLongitudinal"@fr-FR ; - IFC4-PSD:nameAlias "回転"@ja-JP ; - IFC4-PSD:nameAlias "转角"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_286f3f00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "286f3f00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_2f964d00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the beam within the direction of the thermal flow (including all materials). - -Note: new property in IFC4""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la poutre dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 - -表示该梁在传热方向上的整体导热系数(包括所有材料)。 - -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:definitionAlias """熱貫流率U値。 -ここでは(すべての材料を含む)梁を通した熱移動の方向における全体の熱還流率を示す。 -注:IFC2x4の新しいプロパティ"""@ja-JP ; - IFC4-PSD:ifdguid "2f964d00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. -:_33c26a80d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "33c26a80d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_38871e80d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for the element. It is given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "38871e80d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p286f3f00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "286f3f00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "EstExterieur"@fr-FR , "Is External"@en , "是否外部构件"@zh-CN , "外部区分"@ja-JP , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p1ee5d700d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Slope angle - relative to horizontal (0.0 degrees).\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + rdfs:label "Slope" ; + IFC4-PSD:definition "Slope angle - relative to horizontal (0.0 degrees).\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + IFC4-PSD:definitionAlias "傾斜角度。水平を0度とする。\n\nその形状(傾斜梁)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。"@ja-JP , "Neigungswinkel des Balkens relative zur Horizontalen (0 Grad).\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE , "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété"@fr-FR , "相对于水平(0.0度)方向的坡度角。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "1ee5d700d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Slope" ; + IFC4-PSD:nameAlias "坡度"@zh-CN , "傾斜"@ja-JP , "Neigungswinkel"@de-DE , "Inclinaison"@fr-FR , "Slope"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Span a rdf:Property ; + rdfs:seeAlso :p19888c80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Span . + +:Status a rdf:Property ; + rdfs:seeAlso :p0970ad00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Slope a rdf:Property ; + rdfs:seeAlso :p1ee5d700d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Slope . + +:Reference a rdf:Property ; + rdfs:seeAlso :p04abf900d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p23aa8b00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Rotation against the longitudinal axis - relative to the global Z direction for all beams that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.)\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.\n\nNote: new property in IFC4" ; + rdfs:label "Roll" ; + IFC4-PSD:definition "Rotation against the longitudinal axis - relative to the global Z direction for all beams that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.)\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.\n\nNote: new property in IFC4" ; + IFC4-PSD:definitionAlias "相对于纵轴的旋转角。对全局坐标系中的非垂直梁,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。)\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。\n注:IFC2x4新添属性"@zh-CN , "Rotation autour de l'axe longitudinal - relativement à l'axe Z pour toutes les poutres qui ne sont pas verticales relativement au repère absolu (la direction du profil est celle de l'axe Z si la valeur de la propriété est 0). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété. Note : nouvelle propriété de la version IFC2x4."@fr-FR , "Kippwinkel des Balkens relative zur Vertikalen (O Grad).\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE , ""@en , "梁の材軸に対する回転。\n-この材軸はグローバル座標系で非垂直な全ての梁に対してグローバルZ方向へ相対する。(表示方向は、グローバルZの回転方向を0とする。)\n\nその形状(梁の回転)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。\n\n注:IFC2x4の新しいプロパティ"@ja-JP ; + IFC4-PSD:ifdguid "23aa8b00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Roll" ; + IFC4-PSD:nameAlias "Kippwinkel"@de-DE , "RotationAutourAxeLongitudinal"@fr-FR , "Roll"@en , "转角"@zh-CN , "回転"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p2f964d00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p0970ad00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "0970ad00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "状態"@ja-JP , "Status"@en , "Status"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p38871e80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for the element. It is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for the element. It is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "38871e80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Fire Rating"@en , "ResistanceAuFeu"@fr-FR , "Feuerwiderstandsklasse"@de-DE , "防火等级"@zh-CN , "耐火等級"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p04abf900d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , ""@en , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; + IFC4-PSD:ifdguid "04abf900d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "参考号"@zh-CN , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_BeamCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of beam." ; + rdfs:label "Pset_BeamCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBeam ; + IFC4-PSD:applicableTypeValue "IfcBeam" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of beam." ; + IFC4-PSD:definitionAlias ""@en , "IfcBeam(梁)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "所有IfcBeam实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcBeam"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BeamCommon" ; + IFC4-PSD:propertyDef :p23aa8b00d1c411e1800000215ad4efdf , :p19888c80d1c411e1800000215ad4efdf , :p38871e80d1c411e1800000215ad4efdf , :p286f3f00d1c411e1800000215ad4efdf , :p0970ad00d1c411e1800000215ad4efdf , :p2f964d00d1c411e1800000215ad4efdf , :p04abf900d1c411e1800000215ad4efdf , :p1ee5d700d1c411e1800000215ad4efdf , :p33c26a80d1c411e1800000215ad4efdf . + +:p19888c80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear span for this object.\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + rdfs:label "Span" ; + IFC4-PSD:definition "Clear span for this object.\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + IFC4-PSD:definitionAlias "Portée libre de la poutre. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété."@fr-FR , "Lichte Spannweite des Balkens für die statische Anforderung,\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE , "このオブジェクトの全長。\n\nその形状(オブジェクトの全長)情報は、表示のための形状に内部で使用される幾何学的パラメータを加えて提供される。形状情報と内部の幾何学的パラメータに矛盾が生じた場合は、幾何学的パラメータが優先される。幾何学的パラメ-タ編集アプリケーションでは、CADと同様に、この値は書き込み専用とする。"@ja-JP , ""@en , "该对象的净跨度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"@zh-CN ; + IFC4-PSD:ifdguid "19888c80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Span" ; + IFC4-PSD:nameAlias "跨度"@zh-CN , "全長"@ja-JP , "Spannweite"@de-DE , "Span"@en , "PorteeLibre"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p2f964d00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the beam within the direction of the thermal flow (including all materials).\n\nNote: new property in IFC4" ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the beam within the direction of the thermal flow (including all materials).\n\nNote: new property in IFC4" ; + IFC4-PSD:definitionAlias ""@en , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , "材料的导热系数(U值)。\n\n表示该梁在传热方向上的整体导热系数(包括所有材料)。\n\n注:IFC2x4新添属性"@zh-CN , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la poutre dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。\nここでは(すべての材料を含む)梁を通した熱移動の方向における全体の熱還流率を示す。\n注:IFC2x4の新しいプロパティ"@ja-JP ; + IFC4-PSD:ifdguid "2f964d00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "Thermal Transmittance"@en , "导热系数"@zh-CN , "TransmissionThermique"@fr-FR , "熱貫流率"@ja-JP , "U-Wert"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:Roll a rdf:Property ; + rdfs:seeAlso :p23aa8b00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Roll . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p286f3f00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p33c26a80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , "表示该对象是否需要承重。"@zh-CN , "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "33c26a80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "Load Bearing"@en , "是否承重"@zh-CN , "Porteur"@fr-FR , "耐力部材"@ja-JP , "Tragendes Bauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p33c26a80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p38871e80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . diff --git a/converter/src/main/resources/pset/Pset_BoilerPHistory.ttl b/converter/src/main/resources/pset/Pset_BoilerPHistory.ttl new file mode 100644 index 00000000..91e8c575 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BoilerPHistory.ttl @@ -0,0 +1,183 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p56548380d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boiler real load." ; + rdfs:label "Load" ; + IFC4-PSD:definition "Boiler real load." ; + IFC4-PSD:definitionAlias ""@en , "Charge effective de la chaudière."@fr-FR , "ボイラ実負荷"@ja-JP ; + IFC4-PSD:ifdguid "56548380d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Load" ; + IFC4-PSD:nameAlias "負荷"@ja-JP , "Charge"@fr-FR , "Load"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p50f73900d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Average combustion chamber temperature." ; + rdfs:label "CombustionTemperature" ; + IFC4-PSD:definition "Average combustion chamber temperature." ; + IFC4-PSD:definitionAlias "Température de combustion moyenne au foyer."@fr-FR , "燃焼室平均温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "50f73900d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "CombustionTemperature" ; + IFC4-PSD:nameAlias "TempératureCombustion"@fr-FR , "Combustion Temperature"@en , "燃焼温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_BoilerPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Boiler performance history common attributes.\nWaterQuality attribute deleted in IFC2x2 Pset Addendum: Use IfcWaterProperties instead. CombustionProductsMaximulLoad and CombustionProductsPartialLoad attributes deleted in IFC2x2 Pset Addendum: Use IfcProductsOfCombustionProperties instead." ; + rdfs:label "Pset_BoilerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcBoiler ; + IFC4-PSD:applicableTypeValue "IfcBoiler" ; + IFC4-PSD:definition "Boiler performance history common attributes.\nWaterQuality attribute deleted in IFC2x2 Pset Addendum: Use IfcWaterProperties instead. CombustionProductsMaximulLoad and CombustionProductsPartialLoad attributes deleted in IFC2x2 Pset Addendum: Use IfcProductsOfCombustionProperties instead." ; + IFC4-PSD:definitionAlias ""@en , "ボイラ性能履歴共通属性:\nWaterQuality(水質属性)はIFC2x2Psetの付録で削除された:代わりにIfcWaterPropertiesを使う。\nCombustionProductsMaximulLoad と CombustionProductsPartialLoadはIFC2x2Psetの付録で削除された:代わりにIfcProductsOfCombustionPropertiesを使う"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BoilerPHistory" ; + IFC4-PSD:propertyDef :p4dfc4880d1c411e1800000215ad4efdf , :p594f7400d1c411e1800000215ad4efdf , :p4a68c180d1c411e1800000215ad4efdf , :p5bb1ce00d1c411e1800000215ad4efdf , :p50f73900d1c411e1800000215ad4efdf , :p56548380d1c411e1800000215ad4efdf , :p53f22980d1c411e1800000215ad4efdf , :p476dd100d1c411e1800000215ad4efdf , :p43da4a00d1c411e1800000215ad4efdf . + +:p476dd100d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Operational efficiency: boiler output divided by total energy input (electrical and fuel)." ; + rdfs:label "OperationalEfficiency" ; + IFC4-PSD:definition "Operational efficiency: boiler output divided by total energy input (electrical and fuel)." ; + IFC4-PSD:definitionAlias ""@en , "運転効率:\n全入力エネルギ(電力または燃料)でボイラ出力を割る"@ja-JP , "Efficacité opérationnelle: production de la chaudière divisée par l'apport total d'énergie (électrique et combustible)."@fr-FR ; + IFC4-PSD:ifdguid "476dd100d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "OperationalEfficiency" ; + IFC4-PSD:nameAlias "運転効率"@ja-JP , "EfficacitéOpérationnelle"@fr-FR , "Operational Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p53f22980d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the real to the nominal capacity." ; + rdfs:label "PartLoadRatio" ; + IFC4-PSD:definition "Ratio of the real to the nominal capacity." ; + IFC4-PSD:definitionAlias ""@en , "Ratio entre capacité effective et capacité nominale"@fr-FR , "設計容量との比"@ja-JP ; + IFC4-PSD:ifdguid "53f22980d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "PartLoadRatio" ; + IFC4-PSD:nameAlias "部分負荷比"@ja-JP , "Taux de charge"@fr-FR , "Part Load Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AuxiliaryEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :p5bb1ce00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AuxiliaryEnergyConsumption . + +:p594f7400d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boiler primary energy source consumption (i.e., the fuel consumed for changing the thermodynamic state of the fluid)." ; + rdfs:label "PrimaryEnergyConsumption" ; + IFC4-PSD:definition "Boiler primary energy source consumption (i.e., the fuel consumed for changing the thermodynamic state of the fluid)." ; + IFC4-PSD:definitionAlias ""@en , "ボイラ一次エネルギ消費量(つまり流体の熱力学状態変更のために消費された燃料)"@ja-JP , "Consommation d'énergie primaire de la chaudière(c'est-à-dire le combustible consommé pour le changement d'état thermodynamique du fluide)."@fr-FR ; + IFC4-PSD:ifdguid "594f7400d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryEnergyConsumption" ; + IFC4-PSD:nameAlias "ConsommationEnergiePrimaire"@fr-FR , "Primary Energy Consumption"@en , "一次エネルギ消費量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4a68c180d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Combustion efficiency under nominal condition." ; + rdfs:label "CombustionEfficiency" ; + IFC4-PSD:definition "Combustion efficiency under nominal condition." ; + IFC4-PSD:definitionAlias ""@en , "Efficacité de la combustion sous conditions nominales."@fr-FR , "設計条件での燃焼効率"@ja-JP ; + IFC4-PSD:ifdguid "4a68c180d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "CombustionEfficiency" ; + IFC4-PSD:nameAlias "EfficacitéCombustion"@fr-FR , "Combustion Efficiency"@en , "燃焼効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:OperationalEfficiency + a rdf:Property ; + rdfs:seeAlso :p476dd100d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationalEfficiency . + +:p4dfc4880d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boiler working pressure." ; + rdfs:label "WorkingPressure" ; + IFC4-PSD:definition "Boiler working pressure." ; + IFC4-PSD:definitionAlias "Pression de fonctionnement de la chaudière."@fr-FR , ""@en , "ボイラ運転圧力"@ja-JP ; + IFC4-PSD:ifdguid "4dfc4880d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "WorkingPressure" ; + IFC4-PSD:nameAlias "Working Pressure"@en , "PressionFonctionnement"@fr-FR , "作動圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:WorkingPressure a rdf:Property ; + rdfs:seeAlso :p4dfc4880d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkingPressure . + +:CombustionEfficiency + a rdf:Property ; + rdfs:seeAlso :p4a68c180d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CombustionEfficiency . + +:Load a rdf:Property ; + rdfs:seeAlso :p56548380d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Load . + +:p5bb1ce00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boiler secondary energy source consumption (i.e., the electricity consumed by electrical devices such as fans and pumps)." ; + rdfs:label "AuxiliaryEnergyConsumption" ; + IFC4-PSD:definition "Boiler secondary energy source consumption (i.e., the electricity consumed by electrical devices such as fans and pumps)." ; + IFC4-PSD:definitionAlias ""@en , "ボイラ補助エネルギ消費量(つまりファンおよびポンプのような電気装置によって消費される電気)"@ja-JP , "Consommation d'énergie secondaire de la chaudière(c'est-à-dire l'électricité consommée pour les équipements électriques tels que ventilateurs et circulateurs)."@fr-FR ; + IFC4-PSD:ifdguid "5bb1ce00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "AuxiliaryEnergyConsumption" ; + IFC4-PSD:nameAlias "Auxiliary Energy Consumption"@en , "補助エネルギ消費量"@ja-JP , "ConsommationEnergieAuxiliaire"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:PrimaryEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :p594f7400d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryEnergyConsumption . + +:CombustionTemperature + a rdf:Property ; + rdfs:seeAlso :p50f73900d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CombustionTemperature . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:EnergySourceConsumption + a rdf:Property ; + rdfs:seeAlso :p43da4a00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergySourceConsumption . + +:PartLoadRatio a rdf:Property ; + rdfs:seeAlso :p53f22980d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PartLoadRatio . + +:p43da4a00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Energy consumption." ; + rdfs:label "EnergySourceConsumption" ; + IFC4-PSD:definition "Energy consumption." ; + IFC4-PSD:definitionAlias "Consommation d'énergie."@fr-FR , "エネルギ消費量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "43da4a00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "EnergySourceConsumption" ; + IFC4-PSD:nameAlias "エネルギ消費量"@ja-JP , "Energy Source Consumption"@en , "ConsommationSourceEnergie."@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_BoilerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_BoilerTypeCommon.ttl new file mode 100644 index 00000000..3210b647 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BoilerTypeCommon.ttl @@ -0,0 +1,255 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:OutletTemperatureRange + a rdf:Property ; + rdfs:seeAlso :pa3d0f080d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletTemperatureRange . + +:PartialLoadEfficiencyCurves + a rdf:Property ; + rdfs:seeAlso :p9ca9e280d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PartialLoadEfficiencyCurves . + +:p9ca9e280d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boiler efficiency as a function of the partial load factor; E = f (partialLaodfactor)." ; + rdfs:label "PartialLoadEfficiencyCurves" ; + IFC4-PSD:definition "Boiler efficiency as a function of the partial load factor; E = f (partialLaodfactor)." ; + IFC4-PSD:definitionAlias "Rendement de la chaudière en fonction de la facteur de charge partielle; E= f(FacteurChargePartielle)."@fr-FR , ""@en , "部分負荷係数の関数としてのボイラ効率  E=f(部分負荷率)"@ja-JP ; + IFC4-PSD:ifdguid "9ca9e280d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "PartialLoadEfficiencyCurves" ; + IFC4-PSD:nameAlias "Partial Load Efficiency Curves"@en , "CourbesEfficacitéChargePartielle"@fr-FR , "部分負荷効率曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcPositiveRatioMeasure + ] . + +:PressureRating a rdf:Property ; + rdfs:seeAlso :p75ebac00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRating . + +:OperatingMode a rdf:Property ; + rdfs:seeAlso :p7a17c980d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperatingMode . + +:p9451a780d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water storage capacity." ; + rdfs:label "WaterStorageCapacity" ; + IFC4-PSD:definition "Water storage capacity." ; + IFC4-PSD:definitionAlias "缶内水量"@ja-JP , ""@en , "Capacité de réserve en eau"@fr-FR ; + IFC4-PSD:ifdguid "9451a780d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "WaterStorageCapacity" ; + IFC4-PSD:nameAlias "Water Storage Capacity"@en , "缶内水量"@ja-JP , "CapacitéRéservoirEau"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:NominalPartLoadRatio + a rdf:Property ; + rdfs:seeAlso :p89971280d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalPartLoadRatio . + +:EnergySource a rdf:Property ; + rdfs:seeAlso :padf2ef00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergySource . + +:p89971280d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable part load ratio range." ; + rdfs:label "NominalPartLoadRatio" ; + IFC4-PSD:definition "Allowable part load ratio range." ; + IFC4-PSD:definitionAlias "Plage de charge partielle admissible"@fr-FR , ""@en , "許容部分負荷比範囲"@ja-JP ; + IFC4-PSD:ifdguid "89971280d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalPartLoadRatio" ; + IFC4-PSD:nameAlias "PlageNominaleChargePartielle"@fr-FR , "設計部分負荷比率"@ja-JP , "Nominal Part Load Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:pa9c6d180d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal fuel consumption rate required to produce the total boiler heat output." ; + rdfs:label "NominalEnergyConsumption" ; + IFC4-PSD:definition "Nominal fuel consumption rate required to produce the total boiler heat output." ; + IFC4-PSD:definitionAlias "Consommation nominale de combustible correspondant à la production nominale totale de la chaudière."@fr-FR , ""@en , "ボイラ最大能力時の設計燃料消費量"@ja-JP ; + IFC4-PSD:ifdguid "a9c6d180d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalEnergyConsumption" ; + IFC4-PSD:nameAlias "Consommation nominale d'energie"@fr-FR , "Nominal Energy Consumption"@en , "設計エネルギー消費量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p68cebd00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR , ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "68cebd00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Etat"@fr-FR , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:padf2ef00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the energy source or fuel cumbusted to generate heat." ; + rdfs:label "EnergySource" ; + IFC4-PSD:definition "Enumeration defining the energy source or fuel cumbusted to generate heat." ; + IFC4-PSD:definitionAlias "加熱に使用する燃料のエネルギ種類 (石炭、石炭粉末、電気、ガス、油、プロパン、木材、木材チップ、木材ペレット、木粉、他)"@ja-JP , "Liste définissant les sources d'énergie ou combustibles pour générer la chaleur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "adf2ef00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "EnergySource" ; + IFC4-PSD:nameAlias "エネルギ種別"@ja-JP , "Energy Source"@en , "SourceEnergie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WOOD" , "WOOD_PULVERIZED" , "WOOD_PELLET" , "COAL_PULVERIZED" , "OTHER" , "COAL" , "NOTKNOWN" , "ELECTRICITY" , "GAS" , "WOOD_CHIP" , "OIL" , "UNSET" , "PROPANE" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p64a29f80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p68cebd00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:NominalEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :pa9c6d180d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalEnergyConsumption . + +:p8ef45d00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable water inlet temperature range." ; + rdfs:label "WaterInletTemperatureRange" ; + IFC4-PSD:definition "Allowable water inlet temperature range." ; + IFC4-PSD:definitionAlias "入口水温範囲"@ja-JP , "Plage de température de l'alimentation en eau admissible"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "8ef45d00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "WaterInletTemperatureRange" ; + IFC4-PSD:nameAlias "Water Inlet Temperature Range"@en , "PlageTempératureAlimentationEau"@fr-FR , "入口水温範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:HeatTransferSurfaceArea + a rdf:Property ; + rdfs:seeAlso :p84d25e80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatTransferSurfaceArea . + +:Pset_BoilerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Boiler type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. PrimaryEnergySource and AuxiliaryEnergySource attributes deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead." ; + rdfs:label "Pset_BoilerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBoiler ; + IFC4-PSD:applicableTypeValue "IfcBoiler" ; + IFC4-PSD:definition "Boiler type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. PrimaryEnergySource and AuxiliaryEnergySource attributes deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead." ; + IFC4-PSD:definitionAlias "ボイラ型共通属性を設定します。\nSoundLevel属性はIFC2x2 psetの付録で削除された:IfcSoundPropertiesを代わりに使用します。\n一次エネルギ源と補助エネルギ源属性はIFC2x2 psetの付録で削除された:IfcEnergyProperties,IfcFuelProperties等を代わりに使用"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BoilerTypeCommon" ; + IFC4-PSD:propertyDef :p64a29f80d1c411e1800000215ad4efdf , :p9451a780d1c411e1800000215ad4efdf , :p75ebac00d1c411e1800000215ad4efdf , :p9ca9e280d1c411e1800000215ad4efdf , :p84d25e80d1c411e1800000215ad4efdf , :p7a17c980d1c411e1800000215ad4efdf , :pa3d0f080d1c411e1800000215ad4efdf , :padf2ef00d1c411e1800000215ad4efdf , :p68cebd00d1c411e1800000215ad4efdf , :pa9c6d180d1c411e1800000215ad4efdf , :p987dc500d1c411e1800000215ad4efdf , :p8ef45d00d1c411e1800000215ad4efdf , :p89971280d1c411e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsWaterStorageHeater + a rdf:Property ; + rdfs:seeAlso :p987dc500d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsWaterStorageHeater . + +:pa3d0f080d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable outlet temperature of either the water or the steam." ; + rdfs:label "OutletTemperatureRange" ; + IFC4-PSD:definition "Allowable outlet temperature of either the water or the steam." ; + IFC4-PSD:definitionAlias "Température admissible de sortie de l'eau ou de la vapeur"@fr-FR , ""@en , "水または蒸気のどちらかの許容出口温度"@ja-JP ; + IFC4-PSD:ifdguid "a3d0f080d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "OutletTemperatureRange" ; + IFC4-PSD:nameAlias "PlageTempératureSortie"@fr-FR , "Outlet Temperature Range"@en , "出口温度範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p84d25e80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer area of the vessel." ; + rdfs:label "HeatTransferSurfaceArea" ; + IFC4-PSD:definition "Total heat transfer area of the vessel." ; + IFC4-PSD:definitionAlias "容器の伝熱部面積の合計"@ja-JP , ""@en , "Surface totale d'échange de chaleur du foyer"@fr-FR ; + IFC4-PSD:ifdguid "84d25e80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "HeatTransferSurfaceArea" ; + IFC4-PSD:nameAlias "SurfaceEchangeChaleur"@fr-FR , "Heat Transfer Surface Area"@en , "伝熱面積"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p987dc500d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This is used to identify if the boiler has storage capacity (TRUE). If FALSE, then there is no storage capacity built into the boiler, such as an instantaneous hot water heater." ; + rdfs:label "IsWaterStorageHeater" ; + IFC4-PSD:definition "This is used to identify if the boiler has storage capacity (TRUE). If FALSE, then there is no storage capacity built into the boiler, such as an instantaneous hot water heater." ; + IFC4-PSD:definitionAlias "給湯用の缶体があればTRUE、(瞬間湯沸かし器のように)ボイラにタンクがなければFALSE"@ja-JP , "Utilisé pour identifier si la chaudière une capacité de réserve en eau (VRAI). Si FAUX, alors il n'y a pas de capacité de réserve intégrée dans la chaudière, tel qu'un chauffe-eau instantané."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "987dc500d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "IsWaterStorageHeater" ; + IFC4-PSD:nameAlias "Is Water Storage Heater"@en , "給湯タンク有無"@ja-JP , "AvoirChauffeEau"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:WaterStorageCapacity + a rdf:Property ; + rdfs:seeAlso :p9451a780d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterStorageCapacity . + +:p7a17c980d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the operating mode of the boiler." ; + rdfs:label "OperatingMode" ; + IFC4-PSD:definition "Identifies the operating mode of the boiler." ; + IFC4-PSD:definitionAlias "ボイラの動作モードのID (固定、2段階、比例...)"@ja-JP , "Identifie le mode de fonctionnement de la chaudière."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "7a17c980d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "OperatingMode" ; + IFC4-PSD:nameAlias "ModeFonctionnement"@fr-FR , "Operating Mode"@en , "動作モード"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FIXED" , "TWOSTEP" , "MODULATING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:WaterInletTemperatureRange + a rdf:Property ; + rdfs:seeAlso :p8ef45d00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterInletTemperatureRange . + +:p75ebac00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal pressure rating of the boiler as rated by the agency having jurisdiction." ; + rdfs:label "PressureRating" ; + IFC4-PSD:definition "Nominal pressure rating of the boiler as rated by the agency having jurisdiction." ; + IFC4-PSD:definitionAlias "Pression nominale admissible de la chaudière comme classée par l'organisme qui fait autorité."@fr-FR , ""@en , "管轄組織により設定されたボイラの常用圧力"@ja-JP ; + IFC4-PSD:ifdguid "75ebac00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRating" ; + IFC4-PSD:nameAlias "常用圧力"@ja-JP , "PressionAdmissibleNominale"@fr-FR , "Pressure Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p64a29f80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "64a29f80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_BoilerTypeSteam.ttl b/converter/src/main/resources/pset/Pset_BoilerTypeSteam.ttl new file mode 100644 index 00000000..c1000b2e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BoilerTypeSteam.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_BoilerTypeSteam + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Steam boiler type common attributes." ; + rdfs:label "Pset_BoilerTypeSteam" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcBoiler/STEAM" ; + IFC4-PSD:definition "Steam boiler type common attributes." ; + IFC4-PSD:definitionAlias "蒸気ボイラタイプ共通属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BoilerTypeSteam" ; + IFC4-PSD:propertyDef :pd2e76200d1c411e1800000215ad4efdf , :pcc58ea80d1c411e1800000215ad4efdf , :pc82ccd00d1c411e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc82ccd00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum steam outlet pressure." ; + rdfs:label "MaximumOutletPressure" ; + IFC4-PSD:definition "Maximum steam outlet pressure." ; + IFC4-PSD:definitionAlias ""@en , "Pression vapeur en sortie maximale"@fr-FR , "最大出口蒸気圧力"@ja-JP ; + IFC4-PSD:ifdguid "c82ccd00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumOutletPressure" ; + IFC4-PSD:nameAlias "Maximum Outlet Pressure"@en , "PressionSortieAdmissible"@fr-FR , "最大出口圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:MaximumOutletPressure + a rdf:Property ; + rdfs:seeAlso :pc82ccd00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumOutletPressure . + +:pcc58ea80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal efficiency of the boiler as defined by the manufacturer. For steam boilers, a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and NominalEfficiency(IfcNormalisedRatioMeasure) in DefinedValues. For example, DefininfValues(InletTemp, OutletTemp), DefinedValues(null, NominalEfficiency). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + rdfs:label "NominalEfficiency" ; + IFC4-PSD:definition "The nominal efficiency of the boiler as defined by the manufacturer. For steam boilers, a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and NominalEfficiency(IfcNormalisedRatioMeasure) in DefinedValues. For example, DefininfValues(InletTemp, OutletTemp), DefinedValues(null, NominalEfficiency). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + IFC4-PSD:definitionAlias "Efficacité nominale de la chaudière tel que définie par le constructeur.\nPour les chaudières à vapeur, une fonction de la température en entrée par rapport à la pression de vapeur.\nRemarque: Comme deux variables sont utilisées ValeurDefinir et ValeursDefinies sont nulles, et les valeurs sont enregistrées dans IfcTable dans l'ordre suivant:\n- TempératureEntrée (IfcThermodynamicTemperatureMeasure) et TempératureSortie (IfcThermodynamicTemperatureMeasure) dans ValeursDefinir , et EfficacitéNominale (IfcNormalisedRatioMeasure) dansValeursDefinies.\nPar exemple, ValeursDefinir (TempératureEntrée, TempératureSortie), ValeursDefinies (nul, RendementNominal).\nIfcTable est lié à IfcPropertyTableValue qui utilise IfcMetric et IfcPropertyConstraintRelationship."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "cc58ea80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalEfficiency" ; + IFC4-PSD:nameAlias "EfficacitéNominale"@fr-FR , "Nominal Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pd2e76200d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total nominal heat output as listed by the Boiler manufacturer. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and HeatOutput(IfcEnergyMeasure) in DefinedValues. For example, DefiningValues(InletTemp, OutletTemp), DefinedValues(null, HeatOutput). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + rdfs:label "HeatOutput" ; + IFC4-PSD:definition "Total nominal heat output as listed by the Boiler manufacturer. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and HeatOutput(IfcEnergyMeasure) in DefinedValues. For example, DefiningValues(InletTemp, OutletTemp), DefinedValues(null, HeatOutput). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + IFC4-PSD:definitionAlias "Rendement total nominal tel que défini par le constructeur de chaudière.\nPour les chaudières à vapeur, une fonction de la température en entrée par rapport à la pression de vapeur.\nRemarque: Comme deux variables sont utilisées ValeurDefinir et ValeursDefinies sont nulles, et les valeurs sont enregistrées dans IfcTable dans l'ordre suivant:\n- TempératureEntrée (IfcThermodynamicTemperatureMeasure) et TempératureSortie (IfcThermodynamicTemperatureMeasure) dans ValeursDefinir , et Rendement de chaleur (IfcEnergyMeasure) dansValeursDefinies.\nPar exemple, ValeursDefinir (TempératureEntrée, TempératureSortie), ValeursDefinies (nul, RendementChaleur).\nIfcPropertyTable est lié à IfcMetric qui utilise IfcMetric et IfcPropertyConstraintRelationship."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "d2e76200d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "HeatOutput" ; + IFC4-PSD:nameAlias "RendementChaleur"@fr-FR , "Heat Output"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcEnergyMeasure ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:HeatOutput a rdf:Property ; + rdfs:seeAlso :pd2e76200d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatOutput . + +:NominalEfficiency a rdf:Property ; + rdfs:seeAlso :pcc58ea80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalEfficiency . diff --git a/converter/src/main/resources/pset/Pset_BoilerTypeWater.ttl b/converter/src/main/resources/pset/Pset_BoilerTypeWater.ttl new file mode 100644 index 00000000..eefa4ace --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BoilerTypeWater.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalEfficiency a rdf:Property ; + rdfs:seeAlso :pde3a8d80d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalEfficiency . + +:HeatOutput a rdf:Property ; + rdfs:seeAlso :pe4c90500d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatOutput . + +:pde3a8d80d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal efficiency of the boiler as defined by the manufacturer. For water boilers, a function of inlet versus outlet temperature. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), NominalEfficiency(IfcNormalizedRatioMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + rdfs:label "NominalEfficiency" ; + IFC4-PSD:definition "The nominal efficiency of the boiler as defined by the manufacturer. For water boilers, a function of inlet versus outlet temperature. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), NominalEfficiency(IfcNormalizedRatioMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + IFC4-PSD:definitionAlias "Efficacité nominale de la chaudière tel que définie par le constructeur.\nPour les chaudières à eau chaude, une fonction de la température en entrée par rapport à la température de sortie.\nRemarque: Comme deux variables sont utilisées ValeurDefinir et ValeursDefinies sont nulles, et les valeurs sont enregistrées dans IfcTable dans l'ordre suivant:\n- TempératureEntrée (IfcThermodynamicTemperatureMeasure) et TempératureSortie (IfcThermodynamicTemperatureMeasure) dans ValeursDefinir , et EfficacitéNominale (IfcNormalisedRatioMeasure) dansValeursDefinies.\nIfcTable est lié à IfcPropertyTableValue qui utilise IfcMetric et IfcPropertyConstraintRelationship."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "de3a8d80d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalEfficiency" ; + IFC4-PSD:nameAlias "Nominal Efficiency"@en , "EfficacitéNominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:Pset_BoilerTypeWater + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Water boiler type common attributes." ; + rdfs:label "Pset_BoilerTypeWater" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcBoiler/WATER" ; + IFC4-PSD:definition "Water boiler type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BoilerTypeWater" ; + IFC4-PSD:propertyDef :pe4c90500d1c411e1800000215ad4efdf , :pde3a8d80d1c411e1800000215ad4efdf . + +:pe4c90500d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total nominal heat output as listed by the Boiler manufacturer. For water boilers, it is a function of inlet versus outlet temperature. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), HeatOutput(IfcEnergyMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + rdfs:label "HeatOutput" ; + IFC4-PSD:definition "Total nominal heat output as listed by the Boiler manufacturer. For water boilers, it is a function of inlet versus outlet temperature. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), HeatOutput(IfcEnergyMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + IFC4-PSD:definitionAlias "Rendement total nominal tel que défini par le constructeur de chaudière.\nPour les chaudières à eau chaude, une fonction de la température en entrée par rapport à la température de sortie.\nRemarque: Comme deux variables sont utilisées ValeurDefinir et ValeursDefinies sont nulles, et les valeurs sont enregistrées dans IfcTable dans l'ordre suivant:\n- TempératureEntrée (IfcThermodynamicTemperatureMeasure) et TempératureSortie (IfcThermodynamicTemperatureMeasure) dans ValeursDefinir , et Rendement de chaleur (IfcEnergyMeasure) dansValeursDefinies.\nIfcPropertyTable est lié à IfcMetric qui utilise IfcMetric et IfcPropertyConstraintRelationship."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "e4c90500d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "HeatOutput" ; + IFC4-PSD:nameAlias "Heat Output"@en , "RendementChaleur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcEnergyMeasure ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_BuildingCommon.ttl b/converter/src/main/resources/pset/Pset_BuildingCommon.ttl index 7eb6f646..5e61bf06 100644 --- a/converter/src/main/resources/pset/Pset_BuildingCommon.ttl +++ b/converter/src/main/resources/pset/Pset_BuildingCommon.ttl @@ -1,295 +1,264 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_BuildingCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . +:NumberOfStoreys a rdf:Property ; + rdfs:seeAlso :p1d68de80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfStoreys . - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_BuildingCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcBuilding" ; - IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuilding. Please note that several building attributes are handled directly at the IfcBuilding instance, the building number (or short name) by IfcBuilding.Name, the building name (or long name) by IfcBuilding.LongName, and the description (or comments) by IfcBuilding.Description. Actual building quantities, like building perimeter, building area and building volume are provided by IfcElementQuantity, and the building classification according to national building code by IfcClassificationReference." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcBuilding. Veuillez noter que plusieurs attributs sont portés directement par l'instance IfcBuilding : le numéro du bâtiment ou nom court (IfcBuilding.Name), le nom ou nom long (IfcBuilding.LongName), et la description ou des commentaires (IfcBuilding.Description). Les quantités réelles du site comme le périmètre, la superficie et le volume du bâtiment sont fournis par des instances de IfcElementQuantity, et la référence à une classification nationale par IfcClassificationReference."@fr-FR ; - IFC4-PSD:definitionAlias "IfcBuildingオブジェクトに関する共通プロパティセット定義。建物ナンバーはIfcBuilding.Name、建物名称はIfcBuilding.LondName、そして記述またはコメントはIfcBuilding.Descriptionで設定する。実際の建物に関する数量、例えば建物周囲長、建物面積、建物体積等はIfcElementQuantityで設定する。また、建築基準法の建物分類に関しては、IfcClassificationReferenceで設定する。"@ja-JP ; - IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_BuildingCommon" ; - IFC4-PSD:propertyDef :_032f0080d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_075b1e00d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0c1fd200d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_104bef80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1510a380d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_193cc100d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1d68de80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2194fc00d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2659b000d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2a85cd80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f0b4c700d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f5797b00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_fa3e2f00d1c411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ff02e300d1c411e1800000215ad4efdf ; -. -:_032f0080d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Main fire protection class for the building which is assigned from the fire protection classification table as given by the relevant national building code." ; - IFC4-PSD:definitionAlias "Classe principale de protection contre le risque incendie, selon la réglementation nationale."@fr-FR ; - IFC4-PSD:definitionAlias "Zugewiesene Gebäudeklasse nach der nationalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な防火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias "주요 방화 등급. 관련 건축 기준법, 소방법 등의 국가 표준을 참조하십시오."@ko-KR ; - IFC4-PSD:ifdguid "032f0080d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "FireProtectionClass" ; - IFC4-PSD:nameAlias "Gebäudeklasse Brandschutz"@de-DE ; - IFC4-PSD:nameAlias "RisqueIncendieUsageSecondaire"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "방화 등급"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_075b1e00d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob das Gebäude durch eine Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtiment bénéficie d'une protection par sprinkler (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "スプリンクラー設備の有無を示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "스프링 클러 설비의 유무를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "075b1e00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "SprinklerProtection" ; - IFC4-PSD:nameAlias "ProtectionParSprinkler"@fr-FR ; - IFC4-PSD:nameAlias "Sprinklerschutz"@de-DE ; - IFC4-PSD:nameAlias "スプリンクラー防御"@ja-JP ; - IFC4-PSD:nameAlias "스프링 클러 방어"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_0c1fd200d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob das Gebäude durch eine automatische Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtiment bénéficie d'une protection automatique par sprinkler (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "スプリンクラー設備が自動かどうか示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "스프링 클러 설비가 자동 여부를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "0c1fd200d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "SprinklerProtectionAutomatic" ; - IFC4-PSD:nameAlias "ProtectionAutomatiqueParSprinkler"@fr-FR ; - IFC4-PSD:nameAlias "Sprinklerschutz automatisch"@de-DE ; - IFC4-PSD:nameAlias "スプリンクラー防御自動区分"@ja-JP ; - IFC4-PSD:nameAlias "스프링 클러 방어 자동 구분"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_104bef80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Occupancy type for this object. -It is defined according to the presiding national building code.""" ; - IFC4-PSD:definitionAlias "Hauptnutzungsart des Gebäudes (Schulbau. Kaufhaus, etc.). Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE ; - IFC4-PSD:definitionAlias "Type d'occupation. Est défini selon le Code National en vigueur."@fr-FR ; - IFC4-PSD:definitionAlias "占有者のタイプ。建築基準法に準拠。"@ja-JP ; - IFC4-PSD:definitionAlias "점령 자의 유형. 건축 기준법을 준수합니다."@ko-KR ; - IFC4-PSD:ifdguid "104bef80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "OccupancyType" ; - IFC4-PSD:nameAlias "Nutzungsart"@de-DE ; - IFC4-PSD:nameAlias "TypeOccupation"@fr-FR ; - IFC4-PSD:nameAlias "占有者タイプ"@ja-JP ; - IFC4-PSD:nameAlias "점유자 유형"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1510a380d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned gross area for the building Used for programming the building." ; - IFC4-PSD:definitionAlias "Geforderte Bruttofläche des Gebäudes laut Raumprogramm."@de-DE ; - IFC4-PSD:definitionAlias "Surface programmée brute totale du bâtiment. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画されたグロス面積。建物計画に際に使用。"@ja-JP ; - IFC4-PSD:definitionAlias "계획된 그로스 면적. 건물 계획시 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "1510a380d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "GrossPlannedArea" ; - IFC4-PSD:nameAlias "Bruttofläche nach Raumprogramm"@de-DE ; - IFC4-PSD:nameAlias "Surface programmée brute"@fr-FR ; - IFC4-PSD:nameAlias "計画グロス面積"@ja-JP ; - IFC4-PSD:nameAlias "계획 그로스 면적"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_193cc100d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned net area for the building Used for programming the building." ; - IFC4-PSD:definitionAlias "Geforderte Nettofläche des Gebäudes laut Raumprogramm."@de-DE ; - IFC4-PSD:definitionAlias "Surface programmée nette totale du bâtiment. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画されたネット面積。建物計画に際に使用。(通常は、柱型等を抜いた面積となる)"@ja-JP ; - IFC4-PSD:ifdguid "193cc100d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "NetPlannedArea" ; - IFC4-PSD:nameAlias "Nettofläche nach Raumprogramm"@de-DE ; - IFC4-PSD:nameAlias "Surface programmée nette"@fr-FR ; - IFC4-PSD:nameAlias "計画ネット面積"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1d68de80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """The number of storeys within a building. -Captured for those cases where the IfcBuildingStorey entity is not used. Note that if IfcBuilingStorey is asserted and the number of storeys in a building can be determined from it, then this approach should be used in preference to setting a property for the number of storeys.""" ; - IFC4-PSD:definitionAlias """Anzahl der Vollgeschosse des Gebäudes. +:p032f0080d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Main fire protection class for the building which is assigned from the fire protection classification table as given by the relevant national building code." ; + rdfs:label "FireProtectionClass" ; + IFC4-PSD:definition "Main fire protection class for the building which is assigned from the fire protection classification table as given by the relevant national building code." ; + IFC4-PSD:definitionAlias "主要な防火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "주요 방화 등급. 관련 건축 기준법, 소방법 등의 국가 표준을 참조하십시오."@ko-KR , "Classe principale de protection contre le risque incendie, selon la réglementation nationale."@fr-FR , ""@en , "Zugewiesene Gebäudeklasse nach der nationalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "032f0080d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "FireProtectionClass" ; + IFC4-PSD:nameAlias "Gebäudeklasse Brandschutz"@de-DE , "RisqueIncendieUsageSecondaire"@fr-FR , "방화 등급"@ko-KR , "耐火等級"@ja-JP , "Fire Protection Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . -Dieses Attribute soll nur dann eingefügt werden, wenn keine Geschosse als Objekte, IfcBuildingStorey, beinhaltet sind. Bei Unstimmigkeiten hat die Anzahl der IfcBuildingStorey Objekte Priorität."""@de-DE ; - IFC4-PSD:definitionAlias "Le nombre de niveaux dans un bâtiment, à indiquer lorsque la classe IfcBuildingStorey n'est pas utilisée. Il est préférable de créer des instances d'IfcBuildingStorey et d'en déduire le nombre de niveaux plutôt que de saisir cette propriété."@fr-FR ; - IFC4-PSD:definitionAlias "建物階の数。IfcBuildingStoreyの数とは関係なく扱う。"@ja-JP ; - IFC4-PSD:definitionAlias "건물 층 수. IfcBuildingStorey 수와 관계없이 취급한다."@ko-KR ; - IFC4-PSD:ifdguid "1d68de80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "NumberOfStoreys" ; - IFC4-PSD:nameAlias "Geschossanzahl"@de-DE ; - IFC4-PSD:nameAlias "NombreNiveaux"@fr-FR ; - IFC4-PSD:nameAlias "階数"@ja-JP ; - IFC4-PSD:nameAlias "층 수"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2194fc00d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Year of construction of this building, including expected year of completion." ; - IFC4-PSD:definitionAlias "Année de construction de ce bâtiment, incluant l'année de parfait achèvement."@fr-FR ; - IFC4-PSD:definitionAlias "Jahr der Errichtung des Gebäudes, einschließliich des Jahres der geplanten Fertigstellung."@de-DE ; - IFC4-PSD:definitionAlias "施工の年。竣工の予想年も含む。"@ja-JP ; - IFC4-PSD:definitionAlias "시공 년. 준공 예정 년 포함한다."@ko-KR ; - IFC4-PSD:ifdguid "2194fc00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "YearOfConstruction" ; - IFC4-PSD:nameAlias "AnneeConstruction"@fr-FR ; - IFC4-PSD:nameAlias "Baujahr"@de-DE ; - IFC4-PSD:nameAlias "施工年"@ja-JP ; - IFC4-PSD:nameAlias "시공 년"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2659b000d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Year of last major refurbishment, or reconstruction, of the building (applies to reconstruction works)." ; - IFC4-PSD:definitionAlias "Année de la dernière rénovation majeure ou de la reconstruction du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "Jahr der letzten Renovierung des Gebäudes."@de-DE ; - IFC4-PSD:ifdguid "2659b000d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "YearOfLastRefurbishment" ; - IFC4-PSD:nameAlias "Année de la dernière rénovation"@fr-FR ; - IFC4-PSD:nameAlias "letztes Renovierungsjahr"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2a85cd80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "This builing is listed as a historic building (TRUE), or not (FALSE), or unknown." ; - IFC4-PSD:definitionAlias "Angabe, ob das Gebäude dem Denkmalschutz unterliegt (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si le bâtiment est classé aux monuments historiques (VRAI) ou non (FAUX), ou si l'information n'est pas connue."@fr-FR ; - IFC4-PSD:definitionAlias "この建物は歴史的な建物かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "이 건물은 역사적인 건물 있는지 여부를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "2a85cd80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "IsLandmarked" ; - IFC4-PSD:nameAlias "ClasseMonumentHistorique"@fr-FR ; - IFC4-PSD:nameAlias "Denkmalschutz"@de-DE ; - IFC4-PSD:nameAlias "ランドマーク区分"@ja-JP ; - IFC4-PSD:nameAlias "랜드마크 구분"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f0b4c700d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; - IFC4-PSD:definitionAlias "Identifikator der projektinternen Referenz für dieses Gebäude, z.B. nach der Gebäudelassifizierung des Bauherrn. Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte de ce projet (exemple : \"type A1\"). A fournir s'il n'y a pas de référence à une classification en usage."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "f0b4c700d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "Referenz ID"@de-DE ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "참조 ID"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f5797b00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "A unique identifier assigned to a building. A temporary identifier is initially assigned at the time of making a planning application. This temporary identifier is changed to a permanent identifier when the building is registered into a statutory buildings and properties database." ; - IFC4-PSD:definitionAlias "Gebäudekennzeichen dieses Gebäudes. Während der Baueingabe ist es das temporäre Kennzeichnen des Bauantrags."@de-DE ; - IFC4-PSD:definitionAlias "Un identifiant unique attribué au bâtiment. Un identifiant temporaire est attribué au moment de la programmation. Il est ensuite remplacé par un identifiant permanent lorsque le bâtiment est enregistré dans une base de données de nature règlementaire."@fr-FR ; - IFC4-PSD:definitionAlias "建物に付与されるユニークな識別子。計画要請の際に使用される初期の一時的な識別子。この一時的な識別子は、建物が正式に登録された際に恒久的な識別子へと変更される。"@ja-JP ; - IFC4-PSD:definitionAlias "건물에 부여되는 고유 식별자이다. 계획 요청시 사용되는 초기 임시 식별자이다. 이 임시 식별자는 건물이 정식으로 등록된 경우에 영구적인 식별자로 변경된다."@ko-KR ; - IFC4-PSD:ifdguid "f5797b00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "BuildingID" ; - IFC4-PSD:nameAlias "Gebäudekennzeichen"@de-DE ; - IFC4-PSD:nameAlias "IdBatiment"@fr-FR ; - IFC4-PSD:nameAlias "建物記号"@ja-JP ; - IFC4-PSD:nameAlias "건물 ID"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_fa3e2f00d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the identity assigned to a building is permanent (= TRUE) or temporary (=FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, on das angegebene Gebäudekennzeichen permanent ist (TRUE), oder eine temporäre Antragsnummer (FALSE)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'identifiant attribuée au bâtiment est permanent (=VRAI) ou temporaire (=FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "建物IDが恒久的なIDかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "건물 ID가 영구적인 ID 여부값"@ko-KR ; - IFC4-PSD:ifdguid "fa3e2f00d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "IsPermanentID" ; - IFC4-PSD:nameAlias "Gebäudekennzeichen permanent"@de-DE ; - IFC4-PSD:nameAlias "IdPermanent"@fr-FR ; - IFC4-PSD:nameAlias "永久ID区分"@ja-JP ; - IFC4-PSD:nameAlias "영구 ID 구분"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ff02e300d1c411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The type of construction action to the building, the project deals with, e.g. new construction, renovation, refurbishment, etc." ; - IFC4-PSD:definitionAlias "Le type d'intervention sur le bâtiment : construction neuve, rénovation, réhabilitation, etc."@fr-FR ; - IFC4-PSD:definitionAlias "Wesentliche Konstruktionsart des Gebäudes (Stahlbeton, Stahlbau, Holzfachwerk, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "工事におけるタイプ。例:新築・リノベーション・改装等。"@ja-JP ; - IFC4-PSD:definitionAlias "공사의 유형. 예 : 신축 리노베이션 · 개장 등."@ko-KR ; - IFC4-PSD:ifdguid "ff02e300d1c411e1800000215ad4efdf" ; - IFC4-PSD:name "ConstructionMethod" ; - IFC4-PSD:nameAlias "Konstruktionsart"@de-DE ; - IFC4-PSD:nameAlias "RisqueIncendieUsagePrincipal"@fr-FR ; - IFC4-PSD:nameAlias "工事種別"@ja-JP ; - IFC4-PSD:nameAlias "공사 종류"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +:pf0b4c700d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte de ce projet (exemple : \"type A1\"). A fournir s'il n'y a pas de référence à une classification en usage."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Identifikator der projektinternen Referenz für dieses Gebäude, z.B. nach der Gebäudelassifizierung des Bauherrn. Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f0b4c700d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "Referenz ID"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:FireProtectionClass a rdf:Property ; + rdfs:seeAlso :p032f0080d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireProtectionClass . + +:pfa3e2f00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the identity assigned to a building is permanent (= TRUE) or temporary (=FALSE)." ; + rdfs:label "IsPermanentID" ; + IFC4-PSD:definition "Indicates whether the identity assigned to a building is permanent (= TRUE) or temporary (=FALSE)." ; + IFC4-PSD:definitionAlias "건물 ID가 영구적인 ID 여부값"@ko-KR , "Angabe, on das angegebene Gebäudekennzeichen permanent ist (TRUE), oder eine temporäre Antragsnummer (FALSE)."@de-DE , ""@en , "Indique si l'identifiant attribuée au bâtiment est permanent (=VRAI) ou temporaire (=FAUX)."@fr-FR , "建物IDが恒久的なIDかどうかのブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "fa3e2f00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "IsPermanentID" ; + IFC4-PSD:nameAlias "Is Permanent ID"@en , "영구 ID 구분"@ko-KR , "IdPermanent"@fr-FR , "Gebäudekennzeichen permanent"@de-DE , "永久ID区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p193cc100d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned net area for the building Used for programming the building." ; + rdfs:label "NetPlannedArea" ; + IFC4-PSD:definition "Total planned net area for the building Used for programming the building." ; + IFC4-PSD:definitionAlias ""@en , "計画されたネット面積。建物計画に際に使用。(通常は、柱型等を抜いた面積となる)"@ja-JP , "Surface programmée nette totale du bâtiment. Telle que définie lors de la programmation."@fr-FR , "Geforderte Nettofläche des Gebäudes laut Raumprogramm."@de-DE ; + IFC4-PSD:ifdguid "193cc100d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "NetPlannedArea" ; + IFC4-PSD:nameAlias "Nettofläche nach Raumprogramm"@de-DE , "計画ネット面積"@ja-JP , "Surface programmée nette"@fr-FR , "Net Planned Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:Pset_BuildingCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all instances of IfcBuilding. Please note that several building attributes are handled directly at the IfcBuilding instance, the building number (or short name) by IfcBuilding.Name, the building name (or long name) by IfcBuilding.LongName, and the description (or comments) by IfcBuilding.Description. Actual building quantities, like building perimeter, building area and building volume are provided by IfcElementQuantity, and the building classification according to national building code by IfcClassificationReference." ; + rdfs:label "Pset_BuildingCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBuilding ; + IFC4-PSD:applicableTypeValue "IfcBuilding" ; + IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuilding. Please note that several building attributes are handled directly at the IfcBuilding instance, the building number (or short name) by IfcBuilding.Name, the building name (or long name) by IfcBuilding.LongName, and the description (or comments) by IfcBuilding.Description. Actual building quantities, like building perimeter, building area and building volume are provided by IfcElementQuantity, and the building classification according to national building code by IfcClassificationReference." ; + IFC4-PSD:definitionAlias ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcBuilding. Veuillez noter que plusieurs attributs sont portés directement par l'instance IfcBuilding : le numéro du bâtiment ou nom court (IfcBuilding.Name), le nom ou nom long (IfcBuilding.LongName), et la description ou des commentaires (IfcBuilding.Description). Les quantités réelles du site comme le périmètre, la superficie et le volume du bâtiment sont fournis par des instances de IfcElementQuantity, et la référence à une classification nationale par IfcClassificationReference."@fr-FR , "Property Set Definition in German"@de-DE , "IfcBuildingオブジェクトに関する共通プロパティセット定義。建物ナンバーはIfcBuilding.Name、建物名称はIfcBuilding.LondName、そして記述またはコメントはIfcBuilding.Descriptionで設定する。実際の建物に関する数量、例えば建物周囲長、建物面積、建物体積等はIfcElementQuantityで設定する。また、建築基準法の建物分類に関しては、IfcClassificationReferenceで設定する。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingCommon" ; + IFC4-PSD:propertyDef :p2194fc00d1c511e1800000215ad4efdf , :pfa3e2f00d1c411e1800000215ad4efdf , :p193cc100d1c511e1800000215ad4efdf , :p1d68de80d1c511e1800000215ad4efdf , :p075b1e00d1c511e1800000215ad4efdf , :p032f0080d1c511e1800000215ad4efdf , :pf5797b00d1c411e1800000215ad4efdf , :p2659b000d1c511e1800000215ad4efdf , :p104bef80d1c511e1800000215ad4efdf , :p0c1fd200d1c511e1800000215ad4efdf , :pff02e300d1c411e1800000215ad4efdf , :p1510a380d1c511e1800000215ad4efdf , :p2a85cd80d1c511e1800000215ad4efdf , :pf0b4c700d1c411e1800000215ad4efdf . + +:IsPermanentID a rdf:Property ; + rdfs:seeAlso :pfa3e2f00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsPermanentID . + +:Reference a rdf:Property ; + rdfs:seeAlso :pf0b4c700d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:IsLandmarked a rdf:Property ; + rdfs:seeAlso :p2a85cd80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsLandmarked . + +:YearOfLastRefurbishment + a rdf:Property ; + rdfs:seeAlso :p2659b000d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YearOfLastRefurbishment . + +:p1d68de80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of storeys within a building.\nCaptured for those cases where the IfcBuildingStorey entity is not used. Note that if IfcBuilingStorey is asserted and the number of storeys in a building can be determined from it, then this approach should be used in preference to setting a property for the number of storeys." ; + rdfs:label "NumberOfStoreys" ; + IFC4-PSD:definition "The number of storeys within a building.\nCaptured for those cases where the IfcBuildingStorey entity is not used. Note that if IfcBuilingStorey is asserted and the number of storeys in a building can be determined from it, then this approach should be used in preference to setting a property for the number of storeys." ; + IFC4-PSD:definitionAlias "건물 층 수. IfcBuildingStorey 수와 관계없이 취급한다."@ko-KR , "Anzahl der Vollgeschosse des Gebäudes. \n\nDieses Attribute soll nur dann eingefügt werden, wenn keine Geschosse als Objekte, IfcBuildingStorey, beinhaltet sind. Bei Unstimmigkeiten hat die Anzahl der IfcBuildingStorey Objekte Priorität."@de-DE , "Le nombre de niveaux dans un bâtiment, à indiquer lorsque la classe IfcBuildingStorey n'est pas utilisée. Il est préférable de créer des instances d'IfcBuildingStorey et d'en déduire le nombre de niveaux plutôt que de saisir cette propriété."@fr-FR , "建物階の数。IfcBuildingStoreyの数とは関係なく扱う。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1d68de80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfStoreys" ; + IFC4-PSD:nameAlias "階数"@ja-JP , "층 수"@ko-KR , "NombreNiveaux"@fr-FR , "Number Of Storeys"@en , "Geschossanzahl"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p2194fc00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Year of construction of this building, including expected year of completion." ; + rdfs:label "YearOfConstruction" ; + IFC4-PSD:definition "Year of construction of this building, including expected year of completion." ; + IFC4-PSD:definitionAlias "시공 년. 준공 예정 년 포함한다."@ko-KR , "施工の年。竣工の予想年も含む。"@ja-JP , "Jahr der Errichtung des Gebäudes, einschließliich des Jahres der geplanten Fertigstellung."@de-DE , "Année de construction de ce bâtiment, incluant l'année de parfait achèvement."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "2194fc00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "YearOfConstruction" ; + IFC4-PSD:nameAlias "시공 년"@ko-KR , "Baujahr"@de-DE , "施工年"@ja-JP , "AnneeConstruction"@fr-FR , "Year Of Construction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:YearOfConstruction a rdf:Property ; + rdfs:seeAlso :p2194fc00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YearOfConstruction . + +:p0c1fd200d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE)." ; + rdfs:label "SprinklerProtectionAutomatic" ; + IFC4-PSD:definition "Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "스프링 클러 설비가 자동 여부를 나타내는 값"@ko-KR , ""@en , "Indication selon laquelle ce bâtiment bénéficie d'une protection automatique par sprinkler (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob das Gebäude durch eine automatische Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE , "スプリンクラー設備が自動かどうか示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "0c1fd200d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtectionAutomatic" ; + IFC4-PSD:nameAlias "Sprinklerschutz automatisch"@de-DE , "Sprinkler Protection Automatic"@en , "スプリンクラー防御自動区分"@ja-JP , "ProtectionAutomatiqueParSprinkler"@fr-FR , "스프링 클러 방어 자동 구분"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p075b1e00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; + rdfs:label "SprinklerProtection" ; + IFC4-PSD:definition "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob das Gebäude durch eine Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE , "スプリンクラー設備の有無を示すブーリアン値。"@ja-JP , "스프링 클러 설비의 유무를 나타내는 값"@ko-KR , ""@en , "Indication selon laquelle ce bâtiment bénéficie d'une protection par sprinkler (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "075b1e00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtection" ; + IFC4-PSD:nameAlias "Sprinklerschutz"@de-DE , "스프링 클러 방어"@ko-KR , "Sprinkler Protection"@en , "ProtectionParSprinkler"@fr-FR , "スプリンクラー防御"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p1510a380d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned gross area for the building Used for programming the building." ; + rdfs:label "GrossPlannedArea" ; + IFC4-PSD:definition "Total planned gross area for the building Used for programming the building." ; + IFC4-PSD:definitionAlias "Geforderte Bruttofläche des Gebäudes laut Raumprogramm."@de-DE , "Surface programmée brute totale du bâtiment. Telle que définie lors de la programmation."@fr-FR , "계획된 그로스 면적. 건물 계획시 사용됩니다."@ko-KR , ""@en , "計画されたグロス面積。建物計画に際に使用。"@ja-JP ; + IFC4-PSD:ifdguid "1510a380d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "GrossPlannedArea" ; + IFC4-PSD:nameAlias "Gross Planned Area"@en , "Surface programmée brute"@fr-FR , "계획 그로스 면적"@ko-KR , "計画グロス面積"@ja-JP , "Bruttofläche nach Raumprogramm"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:GrossPlannedArea a rdf:Property ; + rdfs:seeAlso :p1510a380d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GrossPlannedArea . + +:SprinklerProtectionAutomatic + a rdf:Property ; + rdfs:seeAlso :p0c1fd200d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtectionAutomatic . + +:p104bef80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Occupancy type for this object.\nIt is defined according to the presiding national building code." ; + rdfs:label "OccupancyType" ; + IFC4-PSD:definition "Occupancy type for this object.\nIt is defined according to the presiding national building code." ; + IFC4-PSD:definitionAlias "Type d'occupation. Est défini selon le Code National en vigueur."@fr-FR , "점령 자의 유형. 건축 기준법을 준수합니다."@ko-KR , "Hauptnutzungsart des Gebäudes (Schulbau. Kaufhaus, etc.). Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE , ""@en , "占有者のタイプ。建築基準法に準拠。"@ja-JP ; + IFC4-PSD:ifdguid "104bef80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyType" ; + IFC4-PSD:nameAlias "Nutzungsart"@de-DE , "Occupancy Type"@en , "점유자 유형"@ko-KR , "占有者タイプ"@ja-JP , "TypeOccupation"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:BuildingID a rdf:Property ; + rdfs:seeAlso :pf5797b00d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BuildingID . + +:pf5797b00d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A unique identifier assigned to a building. A temporary identifier is initially assigned at the time of making a planning application. This temporary identifier is changed to a permanent identifier when the building is registered into a statutory buildings and properties database." ; + rdfs:label "BuildingID" ; + IFC4-PSD:definition "A unique identifier assigned to a building. A temporary identifier is initially assigned at the time of making a planning application. This temporary identifier is changed to a permanent identifier when the building is registered into a statutory buildings and properties database." ; + IFC4-PSD:definitionAlias ""@en , "建物に付与されるユニークな識別子。計画要請の際に使用される初期の一時的な識別子。この一時的な識別子は、建物が正式に登録された際に恒久的な識別子へと変更される。"@ja-JP , "건물에 부여되는 고유 식별자이다. 계획 요청시 사용되는 초기 임시 식별자이다. 이 임시 식별자는 건물이 정식으로 등록된 경우에 영구적인 식별자로 변경된다."@ko-KR , "Un identifiant unique attribué au bâtiment. Un identifiant temporaire est attribué au moment de la programmation. Il est ensuite remplacé par un identifiant permanent lorsque le bâtiment est enregistré dans une base de données de nature règlementaire."@fr-FR , "Gebäudekennzeichen dieses Gebäudes. Während der Baueingabe ist es das temporäre Kennzeichnen des Bauantrags."@de-DE ; + IFC4-PSD:ifdguid "f5797b00d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "BuildingID" ; + IFC4-PSD:nameAlias "건물 ID"@ko-KR , "Gebäudekennzeichen"@de-DE , "Building ID"@en , "建物記号"@ja-JP , "IdBatiment"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:NetPlannedArea a rdf:Property ; + rdfs:seeAlso :p193cc100d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NetPlannedArea . + +:SprinklerProtection a rdf:Property ; + rdfs:seeAlso :p075b1e00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtection . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pff02e300d1c411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of construction action to the building, the project deals with, e.g. new construction, renovation, refurbishment, etc." ; + rdfs:label "ConstructionMethod" ; + IFC4-PSD:definition "The type of construction action to the building, the project deals with, e.g. new construction, renovation, refurbishment, etc." ; + IFC4-PSD:definitionAlias ""@en , "Wesentliche Art der Projektausführung (Neubau, Umbau, Ertüchtigung, etc.)"@de-DE , "공사의 유형. 예 : 신축 리노베이션 · 개장 등."@ko-KR , "工事におけるタイプ。例:新築・リノベーション・改装等。"@ja-JP , "Le type d'intervention sur le bâtiment : construction neuve, rénovation, réhabilitation, etc."@fr-FR ; + IFC4-PSD:ifdguid "ff02e300d1c411e1800000215ad4efdf" ; + IFC4-PSD:name "ConstructionMethod" ; + IFC4-PSD:nameAlias "RisqueIncendieUsagePrincipal"@fr-FR , "Construction Method"@en , "공사 종류"@ko-KR , "工事種別"@ja-JP , "Art der Ausführung"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p2659b000d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Year of last major refurbishment, or reconstruction, of the building (applies to reconstruction works)." ; + rdfs:label "YearOfLastRefurbishment" ; + IFC4-PSD:definition "Year of last major refurbishment, or reconstruction, of the building (applies to reconstruction works)." ; + IFC4-PSD:definitionAlias ""@en , "Jahr der letzten Renovierung des Gebäudes."@de-DE , "Année de la dernière rénovation majeure ou de la reconstruction du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "2659b000d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "YearOfLastRefurbishment" ; + IFC4-PSD:nameAlias "letztes Renovierungsjahr"@de-DE , "Année de la dernière rénovation"@fr-FR , "Year Of Last Refurbishment"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ConstructionMethod a rdf:Property ; + rdfs:seeAlso :pff02e300d1c411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConstructionMethod . + +:OccupancyType a rdf:Property ; + rdfs:seeAlso :p104bef80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyType . + +:p2a85cd80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This builing is listed as a historic building (TRUE), or not (FALSE), or unknown." ; + rdfs:label "IsLandmarked" ; + IFC4-PSD:definition "This builing is listed as a historic building (TRUE), or not (FALSE), or unknown." ; + IFC4-PSD:definitionAlias "Indique si le bâtiment est classé aux monuments historiques (VRAI) ou non (FAUX), ou si l'information n'est pas connue."@fr-FR , "이 건물은 역사적인 건물 있는지 여부를 나타내는 값"@ko-KR , ""@en , "Angabe, ob das Gebäude dem Denkmalschutz unterliegt (WAHR) oder nicht (FALSCH)."@de-DE , "この建物は歴史的な建物かどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "2a85cd80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "IsLandmarked" ; + IFC4-PSD:nameAlias "Is Landmarked"@en , "Denkmalschutz"@de-DE , "ClasseMonumentHistorique"@fr-FR , "랜드마크 구분"@ko-KR , "ランドマーク区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLogical + ] . diff --git a/converter/src/main/resources/pset/Pset_BuildingElementProxyCommon.ttl b/converter/src/main/resources/pset/Pset_BuildingElementProxyCommon.ttl index 68169453..3a7215d5 100644 --- a/converter/src/main/resources/pset/Pset_BuildingElementProxyCommon.ttl +++ b/converter/src/main/resources/pset/Pset_BuildingElementProxyCommon.ttl @@ -1,87 +1,128 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . -@prefix IFC4: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -:_3a051680d1c511e1800000215ad4efdf +:p35d8f900d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "3a051680d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Statut"@fr-FR , "状態"@ja-JP , "Status"@de-DE ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "UNSET" , "NOTKNOWN" , "OTHER" , "TEMPORARY" , "DEMOLISH" , "EXISTING" , "NEW" - ] . - -:_4ee1aa00d1c511e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP , "表示该对象是否需要承重。"@zh-CN , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:ifdguid "4ee1aa00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR , "是否承重"@zh-CN , "Tragendes Bauteil"@de-DE , "耐力部材"@ja-JP ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , ""@en ; + IFC4-PSD:ifdguid "35d8f900d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "参照記号"@ja-JP , "Bauteiltyp"@de-DE , "Reference"@en , "Référence"@fr-FR ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean + IFC4-PSD:dataType IFC4:IfcIdentifier ] . -:_4ab58c80d1c511e1800000215ad4efdf +:Status a rdf:Property ; + rdfs:seeAlso :p3a051680d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_BuildingElementProxyCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all instances of IfcBuildingElementProxy." ; + rdfs:label "Pset_BuildingElementProxyCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBuildingElementProxy ; + IFC4-PSD:applicableTypeValue "IfcBuildingElementProxy" ; + IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuildingElementProxy." ; + IFC4-PSD:definitionAlias "所有IfcBuildingElementProxy实例的定义中通用的属性。"@zh-CN , "IfcBuildingElementProxyの共通プロパティ情報を定義。明確なオブジェクトタイプが特定できないオブジェクトは、このIfcBuildingElementProxyオブジェクトで表現する。所謂代理(プロキシ)オブジェクト。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingElementProxyCommon" ; + IFC4-PSD:propertyDef :p52753100d1c511e1800000215ad4efdf , :p4ee1aa00d1c511e1800000215ad4efdf , :p3a051680d1c511e1800000215ad4efdf , :p35d8f900d1c511e1800000215ad4efdf , :p4ab58c80d1c511e1800000215ad4efdf , :p46896f00d1c511e1800000215ad4efdf . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p4ab58c80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:Reference a rdf:Property ; + rdfs:seeAlso :p35d8f900d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p52753100d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p4ab58c80d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of the element. It is the total thermal transmittance coefficient through the building element proxy within the direction of the thermal flow (including all materials).\n\nNote: new property in IFC4" ; + rdfs:label "ThermalTransmittance" ; IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of the element. It is the total thermal transmittance coefficient through the building element proxy within the direction of the thermal flow (including all materials).\n\nNote: new property in IFC4" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers l'élément dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。ここではオブジェクトを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "材料的导热系数(U值)。\n表示该烟囱在传热方向上的整体导热系数(包括所有材料)。\n注:IFC2x4新添属性"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. Angegeben wird der Gesamtwärmedurchgangskoeffizient des Proxy-Elements (in Richtung des Wärmeflusses), ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE ; + IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers l'élément dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , ""@en , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. Angegeben wird der Gesamtwärmedurchgangskoeffizient des Proxy-Elements (in Richtung des Wärmeflusses), ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , "熱貫流率U値。ここではオブジェクトを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "材料的导热系数(U值)。\n表示该烟囱在传热方向上的整体导热系数(包括所有材料)。\n注:IFC2x4新添属性"@zh-CN ; IFC4-PSD:ifdguid "4ab58c80d1c511e1800000215ad4efdf" ; IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "U-Wert"@de-DE , "导热系数"@zh-CN , "Transmission thermique surfacique"@fr-FR , "熱貫流率"@ja-JP ; + IFC4-PSD:nameAlias "Thermal Transmittance"@en , "导热系数"@zh-CN , "U-Wert"@de-DE , "Transmission thermique surfacique"@fr-FR , "熱貫流率"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ] . -<> a owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" . +:p4ee1aa00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , ""@en , "表示该对象是否需要承重。"@zh-CN , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "4ee1aa00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "是否承重"@zh-CN , "Porteur"@fr-FR , "Tragendes Bauteil"@de-DE , "耐力部材"@ja-JP , "Load Bearing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . -:_35d8f900d1c511e1800000215ad4efdf +:p46896f00d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:ifdguid "35d8f900d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "参照記号"@ja-JP , "Bauteiltyp"@de-DE , "参考号"@zh-CN , "Référence"@fr-FR ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; + IFC4-PSD:ifdguid "46896f00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "是否外部构件"@zh-CN , "外部区分"@ja-JP , "Est extérieur"@fr-FR , "Außenbauteil"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier + IFC4-PSD:dataType IFC4:IfcBoolean ] . -:_52753100d1c511e1800000215ad4efdf +:IsExternal a rdf:Property ; + rdfs:seeAlso :p46896f00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p52753100d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for the element.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; IFC4-PSD:definition "Fire rating for the element.\nIt is given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:definitionAlias "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , ""@en ; IFC4-PSD:ifdguid "52753100d1c511e1800000215ad4efdf" ; IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE , "防火等级"@zh-CN , "Résistance au feu"@fr-FR , "耐火等級"@ja-JP ; + IFC4-PSD:nameAlias "Résistance au feu"@fr-FR , "耐火等級"@ja-JP , "防火等级"@zh-CN , "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcLabel ] . -:_46896f00d1c511e1800000215ad4efdf +:p3a051680d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:ifdguid "46896f00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "外部区分"@ja-JP , "是否外部构件"@zh-CN , "Außenbauteil"@de-DE , "Est extérieur"@fr-FR ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; + IFC4-PSD:ifdguid "3a051680d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@de-DE , "Status"@en , "状態"@ja-JP , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" ] . -:Pset_BuildingElementProxyCommon - a IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcBuildingElementProxy" ; - IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuildingElementProxy." ; - IFC4-PSD:definitionAlias "IfcBuildingElementProxyの共通プロパティ情報を定義。明確なオブジェクトタイプが特定できないオブジェクトは、このIfcBuildingElementProxyオブジェクトで表現する。所謂代理(プロキシ)オブジェクト。"@ja-JP , "所有IfcBuildingElementProxy实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" - ] ; - IFC4-PSD:name "Pset_BuildingElementProxyCommon" ; - IFC4-PSD:propertyDef :_52753100d1c511e1800000215ad4efdf , :_35d8f900d1c511e1800000215ad4efdf , :_4ab58c80d1c511e1800000215ad4efdf , :_3a051680d1c511e1800000215ad4efdf , :_4ee1aa00d1c511e1800000215ad4efdf , :_46896f00d1c511e1800000215ad4efdf . +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p4ee1aa00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . diff --git a/converter/src/main/resources/pset/Pset_BuildingElementProxyProvisionForVoid.ttl b/converter/src/main/resources/pset/Pset_BuildingElementProxyProvisionForVoid.ttl new file mode 100644 index 00000000..995b99e4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BuildingElementProxyProvisionForVoid.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5c972f80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The shape form of the provision for void, the minimum set of agreed values includes 'Rectangle', 'Round', and 'Undefined'." ; + rdfs:label "Shape" ; + IFC4-PSD:definition "The shape form of the provision for void, the minimum set of agreed values includes 'Rectangle', 'Round', and 'Undefined'." ; + IFC4-PSD:definitionAlias "空間の形状を定義します。少なくとも「四角形」、「円」、「未定義」の値を含みます。"@ja-JP , "空构件的形状,当前得到认可的值至少包括“矩形”、“圆形”及“未定义”。"@zh-CN , ""@en , "La forme de la réservation. L'ensemble des valeurs autorisées contient au moins \"Rectangle\", \"Round\" et \"Undefined\"."@fr-FR , "Anforderung an die Form des Durchbruchs, vordefinierte Werte sind \"Rechteck\", \"Rund\", und \"Nicht definiert\"."@de-DE ; + IFC4-PSD:ifdguid "5c972f80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Shape" ; + IFC4-PSD:nameAlias "Shape"@en , "Forme"@fr-FR , "形状"@ja-JP , "形状"@zh-CN , "Form"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p720c5980d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "he building service system that requires the provision for voids, e.g. 'Air Conditioning', 'Plumbing', 'Electro', etc." ; + rdfs:label "System" ; + IFC4-PSD:definition "he building service system that requires the provision for voids, e.g. 'Air Conditioning', 'Plumbing', 'Electro', etc." ; + IFC4-PSD:definitionAlias "需要空构件的建筑服务系统,例如,“空调”、“给排水”、“电气”等。"@zh-CN , "Angabe zu welcher Anlage (oder Anlagen) der Durchbruch benötigt wird."@de-DE , "Le système qui requiert la réservation (exemples : \"Conditionnement d'air\", \"Plomberie\", \"Electricité\")"@fr-FR , ""@en , "空間に提示される建物サービスシステムです。例えば「空調」「配管」「電気」です。"@ja-JP ; + IFC4-PSD:ifdguid "720c5980d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "System" ; + IFC4-PSD:nameAlias "System"@en , "システム"@ja-JP , "Anlage"@de-DE , "系统"@zh-CN , "Système"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Width a rdf:Property ; + rdfs:seeAlso :p615be380d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Width . + +:Height a rdf:Property ; + rdfs:seeAlso :p65880100d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Height . + +:Shape a rdf:Property ; + rdfs:seeAlso :p5c972f80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Shape . + +:p6de03c00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The requested depth or thickness of the provision for void." ; + rdfs:label "Depth" ; + IFC4-PSD:definition "The requested depth or thickness of the provision for void." ; + IFC4-PSD:definitionAlias ""@en , "Geforderte Tiefe des Durchbruchs für eine Nische oder Aussparung. Wenn nicht angegeben, dann ist der geforderte Durchbruch eine Durchbruchsöffnung."@de-DE , "空构件的深度或厚度。"@zh-CN , "La profondeur requise ou épaisseur de la réservation."@fr-FR , "空間の厚さに対しての深さが提示されます。"@ja-JP ; + IFC4-PSD:ifdguid "6de03c00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Depth" ; + IFC4-PSD:nameAlias "深さ"@ja-JP , "深度"@zh-CN , "Tiefe"@de-DE , "Depth"@en , "Profondeur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p615be380d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The requested width (horizontal extension in elevation) of the provision for void, only provided if the Shape property is set to \"rectangle\"." ; + rdfs:label "Width" ; + IFC4-PSD:definition "The requested width (horizontal extension in elevation) of the provision for void, only provided if the Shape property is set to \"rectangle\"." ; + IFC4-PSD:definitionAlias "空构件的宽度(在立面图中水平方向的长度),仅当“形状”属性为“矩形”时适用。"@zh-CN , ""@en , "Geforderte Breite des Durchbruchs, wird nur dann angegeben, wenn der Wert des Attributes \"Form\" gleich \"Rechteck\" ist."@de-DE , "空間の幅(高さにおける水平方向の拡張)を求める定義です。「四角形」の形状プロパティのみ提示されます。"@ja-JP , "La largeur requise de la réservation (extension horizontale en élévation). Fournie seulement si la propriété Forme a pour valeur \"Rectangle\"."@fr-FR ; + IFC4-PSD:ifdguid "615be380d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Width" ; + IFC4-PSD:nameAlias "Largeur"@fr-FR , "Width"@en , "Breite"@de-DE , "宽度"@zh-CN , "幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Depth a rdf:Property ; + rdfs:seeAlso :p6de03c00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Depth . + +:p69b41e80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The requested diameter (in elevation) of the provision for void, only provided if the Shape property is set to \"round\"." ; + rdfs:label "Diameter" ; + IFC4-PSD:definition "The requested diameter (in elevation) of the provision for void, only provided if the Shape property is set to \"round\"." ; + IFC4-PSD:definitionAlias ""@en , "Le diamètre requis de la réservation (en élévation). Fournie seulement si la propriété Forme a pour valeur \"Round\"."@fr-FR , "空构件的直径(在立面图中),仅当“形状”属性为“圆形”时适用。"@zh-CN , "Geforderte Durchmesser des Durchbruchs, wird nur dann angegeben, wenn der Wert des Attributes \"Form\" gleich \"Rund\" ist."@de-DE , "空間における直径(高さにおける)を求める定義です。「円」形状プロパティのみに提示されます。"@ja-JP ; + IFC4-PSD:ifdguid "69b41e80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Diameter" ; + IFC4-PSD:nameAlias "Diamètre"@fr-FR , "Durchmesser"@de-DE , "Diameter"@en , "直径"@ja-JP , "直径"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Diameter a rdf:Property ; + rdfs:seeAlso :p69b41e80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Diameter . + +:p65880100d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The requested height (vertical extension in elevation) of the provision for void\", only provided if the Shape property is set to \"rectangle\"." ; + rdfs:label "Height" ; + IFC4-PSD:definition "The requested height (vertical extension in elevation) of the provision for void\", only provided if the Shape property is set to \"rectangle\"." ; + IFC4-PSD:definitionAlias ""@en , "La hauteur requise de la réservation (extension verticale en élévation). Fournie seulement si la propriété Forme a pour valeur \"Rectangle\"."@fr-FR , "空間の高さ(高さにおける垂直方向の拡張)を求める定義です。「四角形」の形状プロパティのみ提示されます。"@ja-JP , "空构件的高度(在立面图中竖直方向的长度),仅当“形状”属性为“矩形”时适用。"@zh-CN , "Geforderte Höhe des Durchbruchs, wird nur dann angegeben, wenn der Wert des Attributes \"Form\" gleich \"Rechteck\" ist."@de-DE ; + IFC4-PSD:ifdguid "65880100d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Height" ; + IFC4-PSD:nameAlias "高度"@zh-CN , "高さ"@ja-JP , "Height"@en , "Höhe"@de-DE , "Hauteur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_BuildingElementProxyProvisionForVoid + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of a provision for void as a special type of an instance of IfcBuildingElementProxy. A provision for void is a spatial provision that might be resolved into a void in a building element. The properties carry requested values." ; + rdfs:label "Pset_BuildingElementProxyProvisionForVoid" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcBuildingElementProxy/PROVISIONFORVOID" ; + IFC4-PSD:definition "Properties common to the definition of a provision for void as a special type of an instance of IfcBuildingElementProxy. A provision for void is a spatial provision that might be resolved into a void in a building element. The properties carry requested values." ; + IFC4-PSD:definitionAlias "所有作为IfcBuildingElementProxy特例的空构件的定义中通用的属性。空构件是一种特殊的构件,可用以挖空其他建筑构件。其属性仅含特定的值。"@zh-CN , ""@en , "IfcBuildingElementProxyオブジェクトを使用して空間の取り合いにおける穴の位置を提案する際に必要な共通プロパティ情報を定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingElementProxyProvisionForVoid" ; + IFC4-PSD:propertyDef :p5c972f80d1c511e1800000215ad4efdf , :p69b41e80d1c511e1800000215ad4efdf , :p720c5980d1c511e1800000215ad4efdf , :p65880100d1c511e1800000215ad4efdf , :p6de03c00d1c511e1800000215ad4efdf , :p615be380d1c511e1800000215ad4efdf . + +:System a rdf:Property ; + rdfs:seeAlso :p720c5980d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:System . diff --git a/converter/src/main/resources/pset/Pset_BuildingStoreyCommon.ttl b/converter/src/main/resources/pset/Pset_BuildingStoreyCommon.ttl index f69f225a..e0d5f9fd 100644 --- a/converter/src/main/resources/pset/Pset_BuildingStoreyCommon.ttl +++ b/converter/src/main/resources/pset/Pset_BuildingStoreyCommon.ttl @@ -1,180 +1,162 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_BuildingStoreyCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pa08a3480d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned area for the building storey. Used for programming the building storey." ; + rdfs:label "GrossPlannedArea" ; + IFC4-PSD:definition "Total planned area for the building storey. Used for programming the building storey." ; + IFC4-PSD:definitionAlias "計画された建物階のグロス面積。建物計画に際に使用。"@ja-JP , "Surface programmée brute totale de l'étage. Telle que définie lors de la programmation."@fr-FR , "Geforderte Bruttofläche des Geschosses laut Raumprogramm."@de-DE , "계획된 건물 층 그로스 면적. 건물 계획시 사용됩니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a08a3480d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "GrossPlannedArea" ; + IFC4-PSD:nameAlias "Bruttofläche nach Raumprogramm"@de-DE , "計画グロス面積"@ja-JP , "Gross Planned Area"@en , "계획 그로스 면적"@ko-KR , "Surface programmée brute"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:SprinklerProtection a rdf:Property ; + rdfs:seeAlso :p90725500d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtection . + +:p82bccf80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this building storey is an entrance level to the building (TRUE), or (FALSE) if otherwise." ; + rdfs:label "EntranceLevel" ; + IFC4-PSD:definition "Indication whether this building storey is an entrance level to the building (TRUE), or (FALSE) if otherwise." ; + IFC4-PSD:definitionAlias "입구 레벨 여부를 나타내는 값"@ko-KR , "Indication si l'étage est au niveau d'une entrée (VRAI) ou non (FAUX)"@fr-FR , "エントランスレベルかどうかを示すブーリアン値。"@ja-JP , "Angabe, ob der Gebäudeeingang sich in diesem Geschoss befinded (WAHR), oder nicht (FALSCH)."@de-DE , ""@en ; + IFC4-PSD:ifdguid "82bccf80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "EntranceLevel" ; + IFC4-PSD:nameAlias "입구 레벨"@ko-KR , "エントランスレベル"@ja-JP , "NiveauEntrée"@fr-FR , "Entrance Level"@en , "Eingangsebene"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pa5e77f00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned net area for the building storey. Used for programming the building storey." ; + rdfs:label "NetPlannedArea" ; + IFC4-PSD:definition "Total planned net area for the building storey. Used for programming the building storey." ; + IFC4-PSD:definitionAlias "Surface programmée nette totale de l'étage. Telle que définie lors de la programmation."@fr-FR , "계획된 건물 층 인터넷 공간이 있습니다. 건물 계획시 사용됩니다."@ko-KR , ""@en , "Geforderte Nettofläche des Geschosses laut Raumprogramm."@de-DE , "計画された建物階のネット面積。建物計画の際に使用。"@ja-JP ; + IFC4-PSD:ifdguid "a5e77f00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "NetPlannedArea" ; + IFC4-PSD:nameAlias "Nettofläche nach Raumprogramm"@de-DE , "Surface programmée nette"@fr-FR , "Net Planned Area"@en , "計画ネット面積"@ja-JP , "계획 인터넷 면적"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:NetPlannedArea a rdf:Property ; + rdfs:seeAlso :pa5e77f00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NetPlannedArea . + +:EntranceLevel a rdf:Property ; + rdfs:seeAlso :p82bccf80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EntranceLevel . + +:p9b2cea00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum load bearing capacity of the floor structure throughtout the storey as designed." ; + rdfs:label "LoadBearingCapacity" ; + IFC4-PSD:definition "Maximum load bearing capacity of the floor structure throughtout the storey as designed." ; + IFC4-PSD:definitionAlias ""@en , "Capacité porteuse maximale de la structure du plancher tel que conçu pour cet étage."@fr-FR , "Maximale Deckentragfähigkeit in diesem Geschoss."@de-DE ; + IFC4-PSD:ifdguid "9b2cea00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearingCapacity" ; + IFC4-PSD:nameAlias "Deckentragfähigkeit"@de-DE , "Load Bearing Capacity"@en , "Capacité porteuse"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlanarForceMeasure + ] . + +:GrossPlannedArea a rdf:Property ; + rdfs:seeAlso :pa08a3480d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GrossPlannedArea . + +:Reference a rdf:Property ; + rdfs:seeAlso :p7d5f8500d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p90725500d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; + rdfs:label "SprinklerProtection" ; + IFC4-PSD:definition "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtimentbénéficie d'une protection par sprinkler (VRAI) ou non (FAUX)"@fr-FR , ""@en , "スプリンクラー設備の有無を示すブーリアン値。"@ja-JP , "Angabe, ob des Geschoss durch eine Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE , "스프링 클러 설비의 유무를 나타내는 값"@ko-KR ; + IFC4-PSD:ifdguid "90725500d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtection" ; + IFC4-PSD:nameAlias "스프링 클러 방어"@ko-KR , "Sprinklerschutz"@de-DE , "スプリンクラー防御"@ja-JP , "Sprinkler Protection"@en , "ProtectionParSprinkler"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7d5f8500d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + IFC4-PSD:definitionAlias "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Identifikator der projektinternen Referenz für dieses Geschoss, z.B. nach der Geschossklassifizierung des Bauherrn. Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE ; + IFC4-PSD:ifdguid "7d5f8500d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "Referenz ID"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:SprinklerProtectionAutomatic + a rdf:Property ; + rdfs:seeAlso :p95cf9f80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtectionAutomatic . + :Pset_BuildingStoreyCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcBuildingStorey" ; - IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuildingStorey. Please note that several building attributes are handled directly at the IfcBuildingStorey instance, the building storey number (or short name) by IfcBuildingStorey.Name, the building storey name (or long name) by IfcBuildingStorey.LongName, and the description (or comments) by IfcBuildingStorey.Description. Actual building storey quantities, like building storey perimeter, building storey area and building storey volume are provided by IfcElementQuantity, and the building storey classification according to national building code by IfcClassificationReference." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de IfcBuildingStorey. Veuillez noter que plusieurs attributs sont portés par l'instance IfcBuildingStorey : le numéro de l'étage ou nom court (IfcBuildingStorey.Name), le nom ou nom long (IfcBuildingStorey.LongName), et la description ou des commentaires (IfcBuildingStorey.Description). Les quantités réelles de l'étage comme le périmètre, la superficie et le volume sont fournis par des instances de IfcElementQuantity et la référence à une classification nationale par IfcClassificationReference."@fr-FR ; - IFC4-PSD:definitionAlias "IfcBuildinStorey(建物階)に関するプロパティセット定義。建物階ナンバーはIfcBuildingStorey.Name、建物階名称はIfcBuildingStorey.LongName、建物階に関する記述はIfcBuildingStorey.Descriptionで設定する。実際の建物階に関する数量、例えば建物階周囲長、建物階面積、建物階体積等はIfcElementQuantitiesで設定する。また、建築基準法の建物階分類に関しては、IfcClassificationReferenceで設定する。"@ja-JP ; - IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_BuildingStoreyCommon" ; - IFC4-PSD:propertyDef :_7d5f8500d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_82bccf80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_89e3dd80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_90725500d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_95cf9f80d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_9b2cea00d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_a08a3480d1c511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_a5e77f00d1c511e1800000215ad4efdf ; -. -:_7d5f8500d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; - IFC4-PSD:definitionAlias "Identifikator der projektinternen Referenz für dieses Geschoss, z.B. nach der Geschossklassifizierung des Bauherrn. Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "7d5f8500d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "Referenz ID"@de-DE ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "참조 ID"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_82bccf80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this building storey is an entrance level to the building (TRUE), or (FALSE) if otherwise." ; - IFC4-PSD:definitionAlias "Angabe, ob der Gebäudeeingang sich in diesem Geschoss befinded (WAHR), oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indication si l'étage est au niveau d'une entrée (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "エントランスレベルかどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "입구 레벨 여부를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "82bccf80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "EntranceLevel" ; - IFC4-PSD:nameAlias "Eingangsebene"@de-DE ; - IFC4-PSD:nameAlias "NiveauEntrée"@fr-FR ; - IFC4-PSD:nameAlias "エントランスレベル"@ja-JP ; - IFC4-PSD:nameAlias "입구 레벨"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_89e3dd80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this building storey is fully above ground (TRUE), or below ground (FALSE), or partially above and below ground (UNKNOWN) - as in sloped terrain." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Geschoss vollständig überhalb oberirdisch ist (WAHR), vollständig unterirdisch (FALSCH), oder teilweise unter- und überirdisch (UNKNOWN)."@de-DE ; - IFC4-PSD:definitionAlias "Indication si l'étage est complètement au dessus du niveau du sol (VRAI), au dessous du niveau du sol (FAUX) ou partiellement enterré (INCONNU) comme dans le cas d'un terrain en pente."@fr-FR ; - IFC4-PSD:definitionAlias "この建物階が地上(TRUE)、地下(FALSE)、一部が地下部分(UNKOWN)かどうかを示すロジカル値。"@ja-JP ; - IFC4-PSD:definitionAlias "이 건물 층이 지상 (TRUE), 지하 (FALSE), 일부 지하 부분 (UNKOWN) 여부를 나타내는 논리 값."@ko-KR ; - IFC4-PSD:ifdguid "89e3dd80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "AboveGround" ; - IFC4-PSD:nameAlias "AuDessusSol"@fr-FR ; - IFC4-PSD:nameAlias "Oberirdisches Geschoss"@de-DE ; - IFC4-PSD:nameAlias "地上判別"@ja-JP ; - IFC4-PSD:nameAlias "지상 여부"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_90725500d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is sprinkler protected (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob des Geschoss durch eine Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtimentbénéficie d'une protection par sprinkler (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "スプリンクラー設備の有無を示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "스프링 클러 설비의 유무를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "90725500d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "SprinklerProtection" ; - IFC4-PSD:nameAlias "ProtectionParSprinkler"@fr-FR ; - IFC4-PSD:nameAlias "Sprinklerschutz"@de-DE ; - IFC4-PSD:nameAlias "スプリンクラー防御"@ja-JP ; - IFC4-PSD:nameAlias "스프링 클러 방어"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_95cf9f80d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE). -It should only be given, if the property \"SprinklerProtection\" is set to TRUE.""" ; - IFC4-PSD:definitionAlias "Angabe, ob das Geschoss durch eine automatische Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtiment bénéficie d'une protection automatique par sprinkler (VRAI) ou non (FAUX). Indication à ne fournir que si la propriété \"SprinklerProtection\" est cochée \"VRAI\"."@fr-FR ; - IFC4-PSD:definitionAlias "スプリンクラー設備が自動かどうか示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "스프링 클러 설비가 자동 여부를 나타내는 값"@ko-KR ; - IFC4-PSD:ifdguid "95cf9f80d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "SprinklerProtectionAutomatic" ; - IFC4-PSD:nameAlias "ProtectionAutomatiqueParSprinkler"@fr-FR ; - IFC4-PSD:nameAlias "Sprinklerschutz automatisch"@de-DE ; - IFC4-PSD:nameAlias "スプリンクラー防御自動区分"@ja-JP ; - IFC4-PSD:nameAlias "스프링 클러 방어 자동 구분"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_9b2cea00d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Maximum load bearing capacity of the floor structure throughtout the storey as designed." ; - IFC4-PSD:definitionAlias "Capacité porteuse maximale de la structure du plancher tel que conçu pour cet étage."@fr-FR ; - IFC4-PSD:definitionAlias "Maximale Deckentragfähigkeit in diesem Geschoss."@de-DE ; - IFC4-PSD:ifdguid "9b2cea00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearingCapacity" ; - IFC4-PSD:nameAlias "Capacité porteuse"@fr-FR ; - IFC4-PSD:nameAlias "Deckentragfähigkeit"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_a08a3480d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned area for the building storey. Used for programming the building storey." ; - IFC4-PSD:definitionAlias "Geforderte Bruttofläche des Geschosses laut Raumprogramm."@de-DE ; - IFC4-PSD:definitionAlias "Surface programmée brute totale de l'étage. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画された建物階のグロス面積。建物計画に際に使用。"@ja-JP ; - IFC4-PSD:definitionAlias "계획된 건물 층 그로스 면적. 건물 계획시 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "a08a3480d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "GrossPlannedArea" ; - IFC4-PSD:nameAlias "Bruttofläche nach Raumprogramm"@de-DE ; - IFC4-PSD:nameAlias "Surface programmée brute"@fr-FR ; - IFC4-PSD:nameAlias "計画グロス面積"@ja-JP ; - IFC4-PSD:nameAlias "계획 그로스 면적"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_a5e77f00d1c511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned net area for the building storey. Used for programming the building storey." ; - IFC4-PSD:definitionAlias "Geforderte Nettofläche des Geschosses laut Raumprogramm."@de-DE ; - IFC4-PSD:definitionAlias "Surface programmée nette totale de l'étage. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画された建物階のネット面積。建物計画の際に使用。"@ja-JP ; - IFC4-PSD:definitionAlias "계획된 건물 층 인터넷 공간이 있습니다. 건물 계획시 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "a5e77f00d1c511e1800000215ad4efdf" ; - IFC4-PSD:name "NetPlannedArea" ; - IFC4-PSD:nameAlias "Nettofläche nach Raumprogramm"@de-DE ; - IFC4-PSD:nameAlias "Surface programmée nette"@fr-FR ; - IFC4-PSD:nameAlias "計画ネット面積"@ja-JP ; - IFC4-PSD:nameAlias "계획 인터넷 면적"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all instances of IfcBuildingStorey. Please note that several building attributes are handled directly at the IfcBuildingStorey instance, the building storey number (or short name) by IfcBuildingStorey.Name, the building storey name (or long name) by IfcBuildingStorey.LongName, and the description (or comments) by IfcBuildingStorey.Description. Actual building storey quantities, like building storey perimeter, building storey area and building storey volume are provided by IfcElementQuantity, and the building storey classification according to national building code by IfcClassificationReference." ; + rdfs:label "Pset_BuildingStoreyCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBuildingStorey ; + IFC4-PSD:applicableTypeValue "IfcBuildingStorey" ; + IFC4-PSD:definition "Properties common to the definition of all instances of IfcBuildingStorey. Please note that several building attributes are handled directly at the IfcBuildingStorey instance, the building storey number (or short name) by IfcBuildingStorey.Name, the building storey name (or long name) by IfcBuildingStorey.LongName, and the description (or comments) by IfcBuildingStorey.Description. Actual building storey quantities, like building storey perimeter, building storey area and building storey volume are provided by IfcElementQuantity, and the building storey classification according to national building code by IfcClassificationReference." ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de IfcBuildingStorey. Veuillez noter que plusieurs attributs sont portés par l'instance IfcBuildingStorey : le numéro de l'étage ou nom court (IfcBuildingStorey.Name), le nom ou nom long (IfcBuildingStorey.LongName), et la description ou des commentaires (IfcBuildingStorey.Description). Les quantités réelles de l'étage comme le périmètre, la superficie et le volume sont fournis par des instances de IfcElementQuantity et la référence à une classification nationale par IfcClassificationReference."@fr-FR , "IfcBuildinStorey(建物階)に関するプロパティセット定義。建物階ナンバーはIfcBuildingStorey.Name、建物階名称はIfcBuildingStorey.LongName、建物階に関する記述はIfcBuildingStorey.Descriptionで設定する。実際の建物階に関する数量、例えば建物階周囲長、建物階面積、建物階体積等はIfcElementQuantitiesで設定する。また、建築基準法の建物階分類に関しては、IfcClassificationReferenceで設定する。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingStoreyCommon" ; + IFC4-PSD:propertyDef :p89e3dd80d1c511e1800000215ad4efdf , :p9b2cea00d1c511e1800000215ad4efdf , :pa5e77f00d1c511e1800000215ad4efdf , :pa08a3480d1c511e1800000215ad4efdf , :p95cf9f80d1c511e1800000215ad4efdf , :p90725500d1c511e1800000215ad4efdf , :p7d5f8500d1c511e1800000215ad4efdf , :p82bccf80d1c511e1800000215ad4efdf . + +:p89e3dd80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this building storey is fully above ground (TRUE), or below ground (FALSE), or partially above and below ground (UNKNOWN) - as in sloped terrain." ; + rdfs:label "AboveGround" ; + IFC4-PSD:definition "Indication whether this building storey is fully above ground (TRUE), or below ground (FALSE), or partially above and below ground (UNKNOWN) - as in sloped terrain." ; + IFC4-PSD:definitionAlias "この建物階が地上(TRUE)、地下(FALSE)、一部が地下部分(UNKOWN)かどうかを示すロジカル値。"@ja-JP , "Angabe, ob dieses Geschoss vollständig überhalb oberirdisch ist (WAHR), vollständig unterirdisch (FALSCH), oder teilweise unter- und überirdisch (UNKNOWN)."@de-DE , "이 건물 층이 지상 (TRUE), 지하 (FALSE), 일부 지하 부분 (UNKOWN) 여부를 나타내는 논리 값."@ko-KR , ""@en , "Indication si l'étage est complètement au dessus du niveau du sol (VRAI), au dessous du niveau du sol (FAUX) ou partiellement enterré (INCONNU) comme dans le cas d'un terrain en pente."@fr-FR ; + IFC4-PSD:ifdguid "89e3dd80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "AboveGround" ; + IFC4-PSD:nameAlias "지상 여부"@ko-KR , "Oberirdisches Geschoss"@de-DE , "AuDessusSol"@fr-FR , "地上判別"@ja-JP , "Above Ground"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLogical + ] . + +:p95cf9f80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE).\nIt should only be given, if the property \"SprinklerProtection\" is set to TRUE." ; + rdfs:label "SprinklerProtectionAutomatic" ; + IFC4-PSD:definition "Indication whether this object has an automatic sprinkler protection (TRUE) or not (FALSE).\nIt should only be given, if the property \"SprinklerProtection\" is set to TRUE." ; + IFC4-PSD:definitionAlias "Indication selon laquelle ce bâtiment bénéficie d'une protection automatique par sprinkler (VRAI) ou non (FAUX). Indication à ne fournir que si la propriété \"SprinklerProtection\" est cochée \"VRAI\"."@fr-FR , "Angabe, ob das Geschoss durch eine automatische Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE , "スプリンクラー設備が自動かどうか示すブーリアン値。"@ja-JP , ""@en , "스프링 클러 설비가 자동 여부를 나타내는 값"@ko-KR ; + IFC4-PSD:ifdguid "95cf9f80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtectionAutomatic" ; + IFC4-PSD:nameAlias "스프링 클러 방어 자동 구분"@ko-KR , "Sprinklerschutz automatisch"@de-DE , "スプリンクラー防御自動区分"@ja-JP , "Sprinkler Protection Automatic"@en , "ProtectionAutomatiqueParSprinkler"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:LoadBearingCapacity a rdf:Property ; + rdfs:seeAlso :p9b2cea00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearingCapacity . + +:AboveGround a rdf:Property ; + rdfs:seeAlso :p89e3dd80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AboveGround . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_BuildingSystemCommon.ttl b/converter/src/main/resources/pset/Pset_BuildingSystemCommon.ttl index eb691853..f7bfc143 100644 --- a/converter/src/main/resources/pset/Pset_BuildingSystemCommon.ttl +++ b/converter/src/main/resources/pset/Pset_BuildingSystemCommon.ttl @@ -1,37 +1,42 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_BuildingSystemCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . +@prefix IFC4: . -:Pset_BuildingSystemCommon - a IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcBuildingSystem ; - IFC4-PSD:applicableTypeValue "IfcBuildingSystem" ; - IFC4-PSD:definition "Properties common to the definition of building systems." ; - IFC4-PSD:definitionAlias ""@en , "所有建筑系统的定义中通用的属性。"@zh-CN , "建物システムの共通プロパティ定義"@ja-JP ; - IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; - IFC4-PSD:version "IFC4" - ] ; - IFC4-PSD:name "Pset_BuildingSystemCommon" ; - IFC4-PSD:propertyDef :_b13aaa80d1c511e1800000215ad4efdf . +:Reference a rdf:Property ; + rdfs:seeAlso :pb13aaa80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . -<> a owl:Ontology ; - owl:imports ; + + a owl:Ontology ; + owl:imports ; owl:versionInfo "Created with BIM-Bots PSD Repository" . -:_b13aaa80d1c511e1800000215ad4efdf +:pb13aaa80d1c511e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified instance of building system in this project (e.g. 'TRA/EL1'), The reference values depend on the local code of practice." ; + rdfs:label "Reference" ; IFC4-PSD:definition "Reference ID for this specified instance of building system in this project (e.g. 'TRA/EL1'), The reference values depend on the local code of practice." ; - IFC4-PSD:definitionAlias "このプロジェクトにおける建物システムの指定されたインスタンスの参照記号"@ja-JP , ""@en , "该项目中该特定建筑系统实例的参考编号(例如,“TRA/EL1”)。该属性值由当地编码规范决定。"@zh-CN , "Kennzeichen für diese bauliche System in dem Projekt (z.B. 'TRA/EL1'). Die Kennzeichensystematik hängt von den jeweiligen nationalen/regionalen Regelungen ab."@de-DE ; + IFC4-PSD:definitionAlias "该项目中该特定建筑系统实例的参考编号(例如,“TRA/EL1”)。该属性值由当地编码规范决定。"@zh-CN , ""@en , "このプロジェクトにおける建物システムの指定されたインスタンスの参照記号"@ja-JP , "Kennzeichen für diese bauliche System in dem Projekt (z.B. 'TRA/EL1'). Die Kennzeichensystematik hängt von den jeweiligen nationalen/regionalen Regelungen ab."@de-DE ; IFC4-PSD:ifdguid "b13aaa80d1c511e1800000215ad4efdf" ; IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "参照記号"@ja-JP , "Kennzeichen"@de-DE , "Reference"@en , "参考号"@zh-CN ; + IFC4-PSD:nameAlias "Reference"@en , "Kennzeichen"@de-DE , "参照記号"@ja-JP , "参考号"@zh-CN ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcIdentifier ] . + +:Pset_BuildingSystemCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of building systems." ; + rdfs:label "Pset_BuildingSystemCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBuildingSystem ; + IFC4-PSD:applicableTypeValue "IfcBuildingSystem" ; + IFC4-PSD:definition "Properties common to the definition of building systems." ; + IFC4-PSD:definitionAlias ""@en , "建物システムの共通プロパティ定義"@ja-JP , "所有建筑系统的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingSystemCommon" ; + IFC4-PSD:propertyDef :pb13aaa80d1c511e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_BuildingUse.ttl b/converter/src/main/resources/pset/Pset_BuildingUse.ttl new file mode 100644 index 00000000..60f66604 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BuildingUse.ttl @@ -0,0 +1,237 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:PlanningControlStatus + a rdf:Property ; + rdfs:seeAlso :pc9122e80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlanningControlStatus . + +:NarrativeText a rdf:Property ; + rdfs:seeAlso :pcf080f80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NarrativeText . + +:pc31c4d80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Subset of category of use e.g. multi-family, 2 bedroom, low rise." ; + rdfs:label "MarketSubCategory" ; + IFC4-PSD:definition "Subset of category of use e.g. multi-family, 2 bedroom, low rise." ; + IFC4-PSD:definitionAlias "Sous catégorie d'usage (exemple : collectif, deux pièces,…)"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "c31c4d80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "MarketSubCategory" ; + IFC4-PSD:nameAlias "Market Sub Category"@en , "SousCategorieMarche"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:TenureModesAvailableFuture + a rdf:Property ; + rdfs:seeAlso :pf1019200d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TenureModesAvailableFuture . + +:pdfb88580d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the sub categories of property that are currently available expressed in terms of IfcLabel." ; + rdfs:label "MarketSubCategoriesAvailableNow" ; + IFC4-PSD:definition "A list of the sub categories of property that are currently available expressed in terms of IfcLabel." ; + IFC4-PSD:definitionAlias ""@en , "Liste de sous catégories actuellement disponibles"@fr-FR ; + IFC4-PSD:ifdguid "dfb88580d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "MarketSubCategoriesAvailableNow" ; + IFC4-PSD:nameAlias "Market Sub Categories Available Now"@en , "DisponibilitesActuellesParSousCategories"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pd3ccc380d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Percentage of vacancy found in the particular category currently." ; + rdfs:label "VacancyRateInCategoryNow" ; + IFC4-PSD:definition "Percentage of vacancy found in the particular category currently." ; + IFC4-PSD:definitionAlias ""@en , "Taux actuel de vacance pour la catégorie."@fr-FR ; + IFC4-PSD:ifdguid "d3ccc380d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "VacancyRateInCategoryNow" ; + IFC4-PSD:nameAlias "TauxVacanceActuelParCategorie"@fr-FR , "Vacancy Rate In Category Now"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:MarketCategory a rdf:Property ; + rdfs:seeAlso :pbd266c80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketCategory . + +:MarketSubCategoriesAvailableNow + a rdf:Property ; + rdfs:seeAlso :pdfb88580d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketSubCategoriesAvailableNow . + +:pc9122e80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label of zoning category or class, or planning control category for the site or facility." ; + rdfs:label "PlanningControlStatus" ; + IFC4-PSD:definition "Label of zoning category or class, or planning control category for the site or facility." ; + IFC4-PSD:definitionAlias ""@en , "Catégorie de zone ou classe, ou catégorie relativement à un planning de contrôle pour le site ou l'ensemble immobilier."@fr-FR ; + IFC4-PSD:ifdguid "c9122e80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "PlanningControlStatus" ; + IFC4-PSD:nameAlias "Planning Control Status"@en , "EtatPlanningControle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:MarketSubCategoriesAvailableFuture + a rdf:Property ; + rdfs:seeAlso :pf6f77300d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketSubCategoriesAvailableFuture . + +:pf6f77300d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the sub categories of property that are expected to be available in the future expressed in terms of IfcLabel." ; + rdfs:label "MarketSubCategoriesAvailableFuture" ; + IFC4-PSD:definition "A list of the sub categories of property that are expected to be available in the future expressed in terms of IfcLabel." ; + IFC4-PSD:definitionAlias ""@en , "Liste de sous catégories disponibles dans le futur."@fr-FR ; + IFC4-PSD:ifdguid "f6f77300d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "MarketSubCategoriesAvailableFuture" ; + IFC4-PSD:nameAlias "Market Sub Categories Available Future"@en , "DisponibilitesFuturesParSousCategories"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:RentalRatesInCategoryNow + a rdf:Property ; + rdfs:seeAlso :pe5ae6680d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RentalRatesInCategoryNow . + +:pd92a0e00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the tenure modes that are currently available expressed in terms of IfcLabel." ; + rdfs:label "TenureModesAvailableNow" ; + IFC4-PSD:definition "A list of the tenure modes that are currently available expressed in terms of IfcLabel." ; + IFC4-PSD:definitionAlias "Liste des possibilités d'occupation actuelles."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "d92a0e00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "TenureModesAvailableNow" ; + IFC4-PSD:nameAlias "Tenure Modes Available Now"@en , "PossibilitesOccupationActuelles"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:VacancyRateInCategoryNow + a rdf:Property ; + rdfs:seeAlso :pd3ccc380d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VacancyRateInCategoryNow . + +:pf1019200d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the tenure modes that are expected to be available in the future expressed in terms of IfcLabel." ; + rdfs:label "TenureModesAvailableFuture" ; + IFC4-PSD:definition "A list of the tenure modes that are expected to be available in the future expressed in terms of IfcLabel." ; + IFC4-PSD:definitionAlias ""@en , "Liste des possibilités d'occupation futures."@fr-FR ; + IFC4-PSD:ifdguid "f1019200d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "TenureModesAvailableFuture" ; + IFC4-PSD:nameAlias "Tenure Modes Available Future"@en , "PossibilitesOccupationFutures"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pff4fae00d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Range of the cost rates for property expected to be available in the future in the required category." ; + rdfs:label "RentalRatesInCategoryFuture" ; + IFC4-PSD:definition "Range of the cost rates for property expected to be available in the future in the required category." ; + IFC4-PSD:definitionAlias "Prix futur des loyers pour la catégorie considérée."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "ff4fae00d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "RentalRatesInCategoryFuture" ; + IFC4-PSD:nameAlias "PrixFuturLoyerParCategorie"@fr-FR , "Rental Rates In Category Future"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcMonetaryMeasure + ] . + +:VacancyRateInCategoryFuture + a rdf:Property ; + rdfs:seeAlso :peba44780d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VacancyRateInCategoryFuture . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe5ae6680d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Range of the cost rates for property currently available in the required category." ; + rdfs:label "RentalRatesInCategoryNow" ; + IFC4-PSD:definition "Range of the cost rates for property currently available in the required category." ; + IFC4-PSD:definitionAlias ""@en , "Prix actuel des loyers pour la catégorie considérée."@fr-FR ; + IFC4-PSD:ifdguid "e5ae6680d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "RentalRatesInCategoryNow" ; + IFC4-PSD:nameAlias "Rental Rates In Category Now"@en , "PrixActuelLoyerParCategorie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcMonetaryMeasure + ] . + +:RentalRatesInCategoryFuture + a rdf:Property ; + rdfs:seeAlso :pff4fae00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RentalRatesInCategoryFuture . + +:pbd266c80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Category of use e.g. residential, commercial, recreation etc." ; + rdfs:label "MarketCategory" ; + IFC4-PSD:definition "Category of use e.g. residential, commercial, recreation etc." ; + IFC4-PSD:definitionAlias "Catégorie d'usage (résidentiel, commercial, loisir,…)"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "bd266c80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "MarketCategory" ; + IFC4-PSD:nameAlias "Market Category"@en , "CategorieMarche"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:peba44780d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Percentage of vacancy found in the particular category expected in the future." ; + rdfs:label "VacancyRateInCategoryFuture" ; + IFC4-PSD:definition "Percentage of vacancy found in the particular category expected in the future." ; + IFC4-PSD:definitionAlias ""@en , "Taux de vacance attendu dans le futur pour la catégorie."@fr-FR ; + IFC4-PSD:ifdguid "eba44780d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "VacancyRateInCategoryFuture" ; + IFC4-PSD:nameAlias "TauxVacanceFuturParCategorie"@fr-FR , "Vacancy Rate In Category Future"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_BuildingUse a IFC4-PSD:PropertySetDef ; + rdfs:comment "Provides information on on the real estate context of the building of interest both current and anticipated." ; + rdfs:label "Pset_BuildingUse" ; + IFC4-PSD:applicableClass IFC4:IfcBuilding ; + IFC4-PSD:applicableTypeValue "IfcBuilding" ; + IFC4-PSD:definition "Provides information on on the real estate context of the building of interest both current and anticipated." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : information sur le contexte immobilier actuel et futur du bâtiment considéré."@fr-FR , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingUse" ; + IFC4-PSD:propertyDef :pcf080f80d1c511e1800000215ad4efdf , :pc31c4d80d1c511e1800000215ad4efdf , :pc9122e80d1c511e1800000215ad4efdf , :pf1019200d1c511e1800000215ad4efdf , :pff4fae00d1c511e1800000215ad4efdf , :peba44780d1c511e1800000215ad4efdf , :pdfb88580d1c511e1800000215ad4efdf , :pf6f77300d1c511e1800000215ad4efdf , :pe5ae6680d1c511e1800000215ad4efdf , :pd3ccc380d1c511e1800000215ad4efdf , :pd92a0e00d1c511e1800000215ad4efdf , :pbd266c80d1c511e1800000215ad4efdf . + +:MarketSubCategory a rdf:Property ; + rdfs:seeAlso :pc31c4d80d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketSubCategory . + +:TenureModesAvailableNow + a rdf:Property ; + rdfs:seeAlso :pd92a0e00d1c511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TenureModesAvailableNow . + +:pcf080f80d1c511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Added information relating to the adjacent building use that is not appropriate to the general descriptive text associated with an entity through the inherited IfcRoot.Description." ; + rdfs:label "NarrativeText" ; + IFC4-PSD:definition "Added information relating to the adjacent building use that is not appropriate to the general descriptive text associated with an entity through the inherited IfcRoot.Description." ; + IFC4-PSD:definitionAlias ""@en , "Information relative aux bâtiments voisins qui n'est pas appropriée au texte d'ordre général que l'on peut saisir dans l'attribut hérité IfcRoot.Description."@fr-FR ; + IFC4-PSD:ifdguid "cf080f80d1c511e1800000215ad4efdf" ; + IFC4-PSD:name "NarrativeText" ; + IFC4-PSD:nameAlias "Narrative Text"@en , "TexteLibre"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . diff --git a/converter/src/main/resources/pset/Pset_BuildingUseAdjacent.ttl b/converter/src/main/resources/pset/Pset_BuildingUseAdjacent.ttl new file mode 100644 index 00000000..b9aba8b3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BuildingUseAdjacent.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1098ba80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Subset of category of use e.g. multi-family, 2 bedroom, low rise." ; + rdfs:label "MarketSubCategory" ; + IFC4-PSD:definition "Subset of category of use e.g. multi-family, 2 bedroom, low rise." ; + IFC4-PSD:definitionAlias ""@en , "Sous catégorie d'usage."@fr-FR ; + IFC4-PSD:ifdguid "1098ba80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "MarketSubCategory" ; + IFC4-PSD:nameAlias "Market Sub Category"@en , "SousCategorieUsage"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:MarketCategory a rdf:Property ; + rdfs:seeAlso :p0b3b7000d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketCategory . + +:NarrativeText a rdf:Property ; + rdfs:seeAlso :p1c847c80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NarrativeText . + +:MarketSubCategory a rdf:Property ; + rdfs:seeAlso :p1098ba80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MarketSubCategory . + +:PlanningControlStatus + a rdf:Property ; + rdfs:seeAlso :p168e9b80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlanningControlStatus . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p1c847c80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Added information relating to the adjacent building use that is not appropriate to the general descriptive text associated with an entity through the inherited IfcRoot.Description." ; + rdfs:label "NarrativeText" ; + IFC4-PSD:definition "Added information relating to the adjacent building use that is not appropriate to the general descriptive text associated with an entity through the inherited IfcRoot.Description." ; + IFC4-PSD:definitionAlias ""@en , "Information sur l'usage des bâtiments voisins"@fr-FR ; + IFC4-PSD:ifdguid "1c847c80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NarrativeText" ; + IFC4-PSD:nameAlias "Narrative Text"@en , "CommentaireUsage"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p0b3b7000d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Category of use e.g. residential, commercial, recreation etc." ; + rdfs:label "MarketCategory" ; + IFC4-PSD:definition "Category of use e.g. residential, commercial, recreation etc." ; + IFC4-PSD:definitionAlias ""@en , "Catégorie d'usage (résidentiel, commercial, loisir,…)"@fr-FR ; + IFC4-PSD:ifdguid "0b3b7000d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "MarketCategory" ; + IFC4-PSD:nameAlias "Market Category"@en , "CategorieUsage"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p168e9b80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label of zoning category or class, or planning control category for the site or facility." ; + rdfs:label "PlanningControlStatus" ; + IFC4-PSD:definition "Label of zoning category or class, or planning control category for the site or facility." ; + IFC4-PSD:definitionAlias "Catégorie de zone ou classe, ou catégorie relativement à un planning de contrôle pour le site ou l'ensemble immobilier."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "168e9b80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "PlanningControlStatus" ; + IFC4-PSD:nameAlias "Planning Control Status"@en , "EtatPlanningControle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_BuildingUseAdjacent + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Provides information on adjacent buildings and their uses to enable their impact on the building of interest to be determined. Note that for each instance of the property set used, where there is an existence of risk, there will be an instance of the property set Pset_Risk (q.v)." ; + rdfs:label "Pset_BuildingUseAdjacent" ; + IFC4-PSD:applicableClass IFC4:IfcBuilding ; + IFC4-PSD:applicableTypeValue "IfcBuilding" ; + IFC4-PSD:definition "Provides information on adjacent buildings and their uses to enable their impact on the building of interest to be determined. Note that for each instance of the property set used, where there is an existence of risk, there will be an instance of the property set Pset_Risk (q.v)." ; + IFC4-PSD:definitionAlias ""@en , "Définition de l'IAI : information sur les bâtiments voisins et sur leur usage pour apprécier leur impact sur le bâtiment auquel on s'intéresse. Veuillez noter que pour chaque instance de ce jeu de propriétés, dès lors qu'un risque existe, il doit exister une instance du jeu de propriétés Pset_Risk (q.v)."@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BuildingUseAdjacent" ; + IFC4-PSD:propertyDef :p1c847c80d1c611e1800000215ad4efdf , :p168e9b80d1c611e1800000215ad4efdf , :p0b3b7000d1c611e1800000215ad4efdf , :p1098ba80d1c611e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_BurnerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_BurnerTypeCommon.ttl new file mode 100644 index 00000000..2d33c9b1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_BurnerTypeCommon.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix xsd: . +@prefix rdfs: . +@prefix IFC4: . + +:EnergySource a rdf:Property ; + rdfs:seeAlso :p3cb43b80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergySource . + +:Reference a rdf:Property ; + rdfs:seeAlso :p273f1180d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p273f1180d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR ; + IFC4-PSD:ifdguid "273f1180d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p2d34f280d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports . + +:p3cb43b80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the energy source or fuel cumbusted to generate heat." ; + rdfs:label "EnergySource" ; + IFC4-PSD:definition "Enumeration defining the energy source or fuel cumbusted to generate heat." ; + IFC4-PSD:definitionAlias "Liste définissant les sources d'énergie ou combustibles pour générer la chaleur."@fr-FR , ""@en , "加熱に使用する燃料のエネルギ種類 (石炭、石炭粉末、電気、ガス、油、プロパン、木材、木材チップ、木材ペレット、木粉、他)"@ja-JP ; + IFC4-PSD:ifdguid "3cb43b80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "EnergySource" ; + IFC4-PSD:nameAlias "SourceEnergie"@fr-FR , "Energy Source"@en , "エネルギ源"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ELECTRICITY" , "WOOD_PULVERIZED" , "PROPANE" , "NOTKNOWN" , "UNSET" , "GAS" , "COAL_PULVERIZED" , "WOOD_CHIP" , "OIL" , "WOOD_PELLET" , "OTHER" , "WOOD" , "COAL" + ] . + +:p2d34f280d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR ; + IFC4-PSD:ifdguid "2d34f280d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en , "Etat"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "NEW" , "EXISTING" , "DEMOLISH" + ] . + +:Pset_BurnerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of burner types." ; + rdfs:label "Pset_BurnerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcBurner ; + IFC4-PSD:applicableTypeValue "IfcBurner" ; + IFC4-PSD:definition "Common attributes of burner types." ; + IFC4-PSD:definitionAlias "バーナータイプの共通属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_BurnerTypeCommon" ; + IFC4-PSD:propertyDef :p3cb43b80d1c611e1800000215ad4efdf , :p273f1180d1c611e1800000215ad4efdf , :p2d34f280d1c611e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierFittingTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CableCarrierFittingTypeCommon.ttl new file mode 100644 index 00000000..2ec6e2ac --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierFittingTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5ce3fa80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다. 참조"@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5ce3fa80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_CableCarrierFittingTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for cable carrier fittings. HISTORY: Added in IFC4." ; + rdfs:label "Pset_CableCarrierFittingTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCableCarrierFitting ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierFitting" ; + IFC4-PSD:definition "Common properties for cable carrier fittings. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "ケーブルキャリアの共通プロパティを定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierFittingTypeCommon" ; + IFC4-PSD:propertyDef :p5ce3fa80d1c611e1800000215ad4efdf , :p61a8ae80d1c611e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p5ce3fa80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p61a8ae80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "61a8ae80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Status a rdf:Property ; + rdfs:seeAlso :p61a8ae80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableLadderSegment.ttl b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableLadderSegment.ttl new file mode 100644 index 00000000..b7bed73d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableLadderSegment.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:LadderConfiguration a rdf:Property ; + rdfs:seeAlso :p83099a80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderConfiguration . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p7e44e680d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:p83099a80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the configuration of the ladder structure used." ; + rdfs:label "LadderConfiguration" ; + IFC4-PSD:definition "Description of the configuration of the ladder structure used." ; + IFC4-PSD:definitionAlias ""@en , "사용되는 사다리 구조의 개요 설명."@ko-KR , "使用されるはしご構造の概要説明。"@ja-JP ; + IFC4-PSD:ifdguid "83099a80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "LadderConfiguration" ; + IFC4-PSD:nameAlias "사다리 설정"@ko-KR , "Ladder Configuration"@en , "梯子設定"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p7e44e680d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the segment." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the segment." ; + IFC4-PSD:definitionAlias "고치수"@ko-KR , "呼び高寸法。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7e44e680d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "公称高"@ja-JP , "Nominal Height"@en , "공칭 높이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p78e79c00d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width of the segment." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width of the segment." ; + IFC4-PSD:definitionAlias "폭 치수."@ko-KR , ""@en , "呼び幅寸法。"@ja-JP ; + IFC4-PSD:ifdguid "78e79c00d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "공칭 폭"@ko-KR , "公称幅"@ja-JP , "Nominal Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :p78e79c00d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . + +:Pset_CableCarrierSegmentTypeCableLadderSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An open carrier segment on which cables are carried on a ladder structure.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure." ; + rdfs:label "Pset_CableCarrierSegmentTypeCableLadderSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierSegment/CABLELADDERSEGMENT" ; + IFC4-PSD:definition "An open carrier segment on which cables are carried on a ladder structure.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure." ; + IFC4-PSD:definitionAlias ""@en , "はしご構造の上にケーブルを乗せる開放型ケーブルキャリアに関するプロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierSegmentTypeCableLadderSegment" ; + IFC4-PSD:propertyDef :p83099a80d1c611e1800000215ad4efdf , :p7e44e680d1c611e1800000215ad4efdf , :p78e79c00d1c611e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTraySegment.ttl b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTraySegment.ttl new file mode 100644 index 00000000..d1cba5fc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTraySegment.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p94eb3d80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:p8f8df300d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width of the segment." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width of the segment." ; + IFC4-PSD:definitionAlias "呼び幅寸法。"@ja-JP , "폭 치수"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8f8df300d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "公称幅"@ja-JP , "공칭 폭"@ko-KR , "Nominal Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p94eb3d80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the segment." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the segment." ; + IFC4-PSD:definitionAlias "呼び高寸法。"@ja-JP , "고 치수"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "94eb3d80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "Nominal Height"@en , "公称高"@ja-JP , "공칭 높이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p99aff180d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the cable tray has a cover (=TRUE) or not (= FALSE). By default, this value should be set to FALSE.." ; + rdfs:label "HasCover" ; + IFC4-PSD:definition "Indication of whether the cable tray has a cover (=TRUE) or not (= FALSE). By default, this value should be set to FALSE.." ; + IFC4-PSD:definitionAlias ""@en , "カバー付かどうか。"@ja-JP , "커버 유무"@ko-KR ; + IFC4-PSD:ifdguid "99aff180d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "HasCover" ; + IFC4-PSD:nameAlias "カバー"@ja-JP , "커버"@ko-KR , "Has Cover"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasCover a rdf:Property ; + rdfs:seeAlso :p99aff180d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasCover . + +:Pset_CableCarrierSegmentTypeCableTraySegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An (typically) open carrier segment onto which cables are laid. \nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure" ; + rdfs:label "Pset_CableCarrierSegmentTypeCableTraySegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierSegment/CABLETRAYSEGMENT" ; + IFC4-PSD:definition "An (typically) open carrier segment onto which cables are laid. \nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure" ; + IFC4-PSD:definitionAlias "典型的な開放型ケーブルキャリアに関するプロパティセット定義。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierSegmentTypeCableTraySegment" ; + IFC4-PSD:propertyDef :p8f8df300d1c611e1800000215ad4efdf , :p99aff180d1c611e1800000215ad4efdf , :p94eb3d80d1c611e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :p8f8df300d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTrunkingSegment.ttl b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTrunkingSegment.ttl new file mode 100644 index 00000000..8ec56535 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCableTrunkingSegment.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:paaf8fe00d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the segment." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the segment." ; + IFC4-PSD:definitionAlias "呼び高寸法。"@ja-JP , "고 치수"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "aaf8fe00d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "공칭높이"@ko-KR , "Nominal Height"@en , "公称高"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfCompartments + a rdf:Property ; + rdfs:seeAlso :pb0eedf00d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfCompartments . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :paaf8fe00d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:pa59bb380d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width of the segment." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width of the segment." ; + IFC4-PSD:definitionAlias "폭 치수"@ko-KR , ""@en , "呼び幅寸法。"@ja-JP ; + IFC4-PSD:ifdguid "a59bb380d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "공칭 폭"@ko-KR , "Nominal Width"@en , "公称幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pb0eedf00d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of separate internal compartments within the trunking." ; + rdfs:label "NumberOfCompartments" ; + IFC4-PSD:definition "The number of separate internal compartments within the trunking." ; + IFC4-PSD:definitionAlias ""@en , "管の区別される内部区画の個数。"@ja-JP , "관 구분되는 내부 파티션 개수"@ko-KR ; + IFC4-PSD:ifdguid "b0eedf00d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfCompartments" ; + IFC4-PSD:nameAlias "Number Of Compartments"@en , "区画数"@ja-JP , "구획 수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:Pset_CableCarrierSegmentTypeCableTrunkingSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An enclosed carrier segment with one or more compartments into which cables are placed.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure" ; + rdfs:label "Pset_CableCarrierSegmentTypeCableTrunkingSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierSegment/CABLETRUNKINGSEGMENT" ; + IFC4-PSD:definition "An enclosed carrier segment with one or more compartments into which cables are placed.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure" ; + IFC4-PSD:definitionAlias "一つ以上の区画にケーブルを収納する密閉型ケーブルキャリアに関するプロパティセット定義。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierSegmentTypeCableTrunkingSegment" ; + IFC4-PSD:propertyDef :pb0eedf00d1c611e1800000215ad4efdf , :paaf8fe00d1c611e1800000215ad4efdf , :pa59bb380d1c611e1800000215ad4efdf . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :pa59bb380d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCommon.ttl new file mode 100644 index 00000000..a4cac0e9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :pbba97400d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pbba97400d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , ""@en , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR ; + IFC4-PSD:ifdguid "bba97400d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_CableCarrierSegmentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for cable carrier segments. HISTORY: Added in IFC4." ; + rdfs:label "Pset_CableCarrierSegmentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCableCarrierSegment ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierSegment" ; + IFC4-PSD:definition "Common properties for cable carrier segments. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "ケーブルキャリアに関する共通プロパティセット定義。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierSegmentTypeCommon" ; + IFC4-PSD:propertyDef :pbba97400d1c611e1800000215ad4efdf , :pc19f5500d1c611e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :pc19f5500d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc19f5500d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c19f5500d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeConduitSegment.ttl b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeConduitSegment.ttl new file mode 100644 index 00000000..c7fe8dcb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableCarrierSegmentTypeConduitSegment.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:IsRigid a rdf:Property ; + rdfs:seeAlso :pf4494d80d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsRigid . + +:Pset_CableCarrierSegmentTypeConduitSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An enclosed tubular carrier segment through which cables are pulled.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure." ; + rdfs:label "Pset_CableCarrierSegmentTypeConduitSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableCarrierSegment/CONDUITSEGMENT" ; + IFC4-PSD:definition "An enclosed tubular carrier segment through which cables are pulled.\nHISTORY: IFC4 - NominalLength deleted. To be handled as a quantity measure." ; + IFC4-PSD:definitionAlias "電線管のプロパティを設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableCarrierSegmentTypeConduitSegment" ; + IFC4-PSD:propertyDef :pd976d900d1c611e1800000215ad4efdf , :pf4494d80d1c611e1800000215ad4efdf , :pdf6cba00d1c611e1800000215ad4efdf , :pe5fb3180d1c611e1800000215ad4efdf . + +:pe5fb3180d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The shape of the conduit segment." ; + rdfs:label "ConduitShapeType" ; + IFC4-PSD:definition "The shape of the conduit segment." ; + IFC4-PSD:definitionAlias "電線管の形状タイプ。\n(円筒形,卵形,その他,不明,なし)"@ja-JP , ""@en , "전선관의 형상 타입. (원통형, 계란 모양, 기타 알 수 없음) \""@ko-KR ; + IFC4-PSD:ifdguid "e5fb3180d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "ConduitShapeType" ; + IFC4-PSD:nameAlias "전선관의 유형"@ko-KR , "電線管のタイプ"@ja-JP , "Conduit Shape Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CIRCULAR" , "OVAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ConduitShapeType a rdf:Property ; + rdfs:seeAlso :pe5fb3180d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConduitShapeType . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :pdf6cba00d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :pd976d900d1c611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . + +:pd976d900d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width of the segment." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width of the segment." ; + IFC4-PSD:definitionAlias ""@en , "呼び幅寸法。"@ja-JP , "폭 치수"@ko-KR ; + IFC4-PSD:ifdguid "d976d900d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "Nominal Width"@en , "공칭 폭"@ko-KR , "公称幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pf4494d80d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the conduit is rigid (= TRUE) or flexible (= FALSE)." ; + rdfs:label "IsRigid" ; + IFC4-PSD:definition "Indication of whether the conduit is rigid (= TRUE) or flexible (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , ""@ko-KR , "鋼管か否か。"@ja-JP ; + IFC4-PSD:ifdguid "f4494d80d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "IsRigid" ; + IFC4-PSD:nameAlias "강관"@ko-KR , "鋼管"@ja-JP , "Is Rigid"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pdf6cba00d1c611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the segment." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the segment." ; + IFC4-PSD:definitionAlias ""@en , "呼び高寸法。"@ja-JP , "고 치수"@ko-KR ; + IFC4-PSD:ifdguid "df6cba00d1c611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "公称高"@ja-JP , "공칭 높이"@ko-KR , "Nominal Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_CableFittingTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CableFittingTypeCommon.ttl new file mode 100644 index 00000000..4a080885 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableFittingTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_CableFittingTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for cable fittings. HISTORY: Added in IFC4." ; + rdfs:label "Pset_CableFittingTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCableFitting ; + IFC4-PSD:applicableTypeValue "IfcCableFitting" ; + IFC4-PSD:definition "Common properties for cable fittings. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "ケーブルの共通プロパティを設定します。\nIFC4にて追加"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableFittingTypeCommon" ; + IFC4-PSD:propertyDef :p00cda600d1c711e1800000215ad4efdf , :p05925a00d1c711e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p00cda600d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p00cda600d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR ; + IFC4-PSD:ifdguid "00cda600d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "参照"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p05925a00d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p05925a00d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "05925a00d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentOccurrence.ttl b/converter/src/main/resources/pset/Pset_CableSegmentOccurrence.ttl new file mode 100644 index 00000000..47a02eeb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentOccurrence.ttl @@ -0,0 +1,269 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p366428fd19e54457a10ad655640758e7 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal conductivity of soil. Generally, within standards such as IEC 60364-5-52, table 52A-16, the resistivity of soil is required (measured in [SI] units of degK.m /W). This is the reciprocal of the conductivity value and needs to be calculated accordingly." ; + rdfs:label "SoilConductivity" ; + IFC4-PSD:definition "Thermal conductivity of soil. Generally, within standards such as IEC 60364-5-52, table 52A-16, the resistivity of soil is required (measured in [SI] units of degK.m /W). This is the reciprocal of the conductivity value and needs to be calculated accordingly." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "366428fd19e54457a10ad655640758e7" ; + IFC4-PSD:name "SoilConductivity" ; + IFC4-PSD:nameAlias "Soil Conductivity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalConductivityMeasure + ] . + +:IsMountedFlatCable a rdf:Property ; + rdfs:seeAlso :p2632b74803d346c0aafd3f7cff1f8d99 ; + rdfs:subPropertyOf IFC4-PSD:IsMountedFlatCable . + +:pbe5fd0db9e234a84b4e07762a0e065e1 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special installation conditions relating to particular types of installation based on IEC60364-5-52:2001 reference installation methods C and D." ; + rdfs:label "InstallationMethodFlagEnum" ; + IFC4-PSD:definition "Special installation conditions relating to particular types of installation based on IEC60364-5-52:2001 reference installation methods C and D." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "be5fd0db9e234a84b4e07762a0e065e1" ; + IFC4-PSD:name "InstallationMethodFlagEnum" ; + IFC4-PSD:nameAlias "Installation Method Flag Enum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "INDUCT" , "INSOIL" , "ONWALL" , "BELOWCEILING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:InstallationMethod a rdf:Property ; + rdfs:seeAlso :p7c0ce24f9d034d9b83da2ac5e4a0634c ; + rdfs:subPropertyOf IFC4-PSD:InstallationMethod . + +:DistanceBetweenParallelCircuits + a rdf:Property ; + rdfs:seeAlso :p977d1cc9f8f548dcaa23820a3e9d0774 ; + rdfs:subPropertyOf IFC4-PSD:DistanceBetweenParallelCircuits . + +:p977d1cc9f8f548dcaa23820a3e9d0774 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance measured between parallel circuits." ; + rdfs:label "DistanceBetweenParallelCircuits" ; + IFC4-PSD:definition "Distance measured between parallel circuits." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "977d1cc9f8f548dcaa23820a3e9d0774" ; + IFC4-PSD:name "DistanceBetweenParallelCircuits" ; + IFC4-PSD:nameAlias "Distance Between Parallel Circuits"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p55fbb56361a24104a0e4b53d8e4cffd5 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The highest and lowest local ambient temperature likely to be encountered." ; + rdfs:label "DesignAmbientTemperature" ; + IFC4-PSD:definition "The highest and lowest local ambient temperature likely to be encountered." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "55fbb56361a24104a0e4b53d8e4cffd5" ; + IFC4-PSD:name "DesignAmbientTemperature" ; + IFC4-PSD:nameAlias "Design Ambient Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p47d6edba8d714af2b05f07d968909ff6 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total loss of power across this cable." ; + rdfs:label "PowerLoss" ; + IFC4-PSD:definition "Total loss of power across this cable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "47d6edba8d714af2b05f07d968909ff6" ; + IFC4-PSD:name "PowerLoss" ; + IFC4-PSD:nameAlias "Power Loss"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:CurrentCarryingCapasity + a rdf:Property ; + rdfs:seeAlso :pa56d336272784003b1418d8169f8652f ; + rdfs:subPropertyOf IFC4-PSD:CurrentCarryingCapasity . + +:SoilConductivity a rdf:Property ; + rdfs:seeAlso :p366428fd19e54457a10ad655640758e7 ; + rdfs:subPropertyOf IFC4-PSD:SoilConductivity . + +:pa008e02d7f54483383e4f8069dde0f37 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum cable length based on voltagedrop. NOTE: This value may also be specified as a constraint within an IFC model if required but is included within the property set at this stage pending implementation of the required capabilities within software applications." ; + rdfs:label "MaximumCableLength" ; + IFC4-PSD:definition "Maximum cable length based on voltagedrop. NOTE: This value may also be specified as a constraint within an IFC model if required but is included within the property set at this stage pending implementation of the required capabilities within software applications." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a008e02d7f54483383e4f8069dde0f37" ; + IFC4-PSD:name "MaximumCableLength" ; + IFC4-PSD:nameAlias "Maximum Cable Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:InstallationMethodFlagEnum + a rdf:Property ; + rdfs:seeAlso :pbe5fd0db9e234a84b4e07762a0e065e1 ; + rdfs:subPropertyOf IFC4-PSD:InstallationMethodFlagEnum . + +:MaximumCableLength a rdf:Property ; + rdfs:seeAlso :pa008e02d7f54483383e4f8069dde0f37 ; + rdfs:subPropertyOf IFC4-PSD:MaximumCableLength . + +:MountingMethod a rdf:Property ; + rdfs:seeAlso :p12584689253640919491fb29d755ac82 ; + rdfs:subPropertyOf IFC4-PSD:MountingMethod . + +:Pset_CableSegmentOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for the occurrence of an electrical cable, core or conductor that conforms to a type as specified by an appropriate type definition within IFC. NOTE: Maximum allowed voltage drop should be derived from the property within Pset_ElectricalCircuit." ; + rdfs:label "Pset_CableSegmentOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcCableSegment ; + IFC4-PSD:applicableTypeValue "IfcCableSegment" ; + IFC4-PSD:definition "Properties for the occurrence of an electrical cable, core or conductor that conforms to a type as specified by an appropriate type definition within IFC. NOTE: Maximum allowed voltage drop should be derived from the property within Pset_ElectricalCircuit." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentOccurrence" ; + IFC4-PSD:propertyDef :pd4ec271863334e1ea8cdd1a1d63c7708 , :pd9a5be4540394d228b6c573471e71f22 , :p7a917ce35e224ad58d1e87bc3656c1b8 , :pa008e02d7f54483383e4f8069dde0f37 , :pa56d336272784003b1418d8169f8652f , :p12584689253640919491fb29d755ac82 , :pbe5fd0db9e234a84b4e07762a0e065e1 , :p2632b74803d346c0aafd3f7cff1f8d99 , :p4a80a2ecf3504fc6ba3f2235e2f25f04 , :p47d6edba8d714af2b05f07d968909ff6 , :p55fbb56361a24104a0e4b53d8e4cffd5 , :p7c0ce24f9d034d9b83da2ac5e4a0634c , :p977d1cc9f8f548dcaa23820a3e9d0774 , :p366428fd19e54457a10ad655640758e7 . + +:p2632b74803d346c0aafd3f7cff1f8d99 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the cable occurrences are mounted flat (= TRUE) or in a trefoil pattern (= FALSE)." ; + rdfs:label "IsMountedFlatCable" ; + IFC4-PSD:definition "Indication of whether the cable occurrences are mounted flat (= TRUE) or in a trefoil pattern (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2632b74803d346c0aafd3f7cff1f8d99" ; + IFC4-PSD:name "IsMountedFlatCable" ; + IFC4-PSD:nameAlias "Is Mounted Flat Cable"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:NumberOfParallelCircuits + a rdf:Property ; + rdfs:seeAlso :p4a80a2ecf3504fc6ba3f2235e2f25f04 ; + rdfs:subPropertyOf IFC4-PSD:NumberOfParallelCircuits . + +:p12584689253640919491fb29d755ac82 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The method of mounting cable segment occurrences on a cable carrier occurrence from which the method required can be selected. This is for the purpose of carrying out 'worst case' cable sizing calculations and may be a conceptual requirement rather than a statement of the physical occurrences of cable and carrier segments." ; + rdfs:label "MountingMethod" ; + IFC4-PSD:definition "The method of mounting cable segment occurrences on a cable carrier occurrence from which the method required can be selected. This is for the purpose of carrying out 'worst case' cable sizing calculations and may be a conceptual requirement rather than a statement of the physical occurrences of cable and carrier segments." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "12584689253640919491fb29d755ac82" ; + IFC4-PSD:name "MountingMethod" ; + IFC4-PSD:nameAlias "Mounting Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PERFORATEDTRAY" , "LADDER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4a80a2ecf3504fc6ba3f2235e2f25f04 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of parallel circuits." ; + rdfs:label "NumberOfParallelCircuits" ; + IFC4-PSD:definition "Number of parallel circuits." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4a80a2ecf3504fc6ba3f2235e2f25f04" ; + IFC4-PSD:name "NumberOfParallelCircuits" ; + IFC4-PSD:nameAlias "Number Of Parallel Circuits"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:PowerLoss a rdf:Property ; + rdfs:seeAlso :p47d6edba8d714af2b05f07d968909ff6 ; + rdfs:subPropertyOf IFC4-PSD:PowerLoss . + +:p7a917ce35e224ad58d1e87bc3656c1b8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of carrier segments (tray, ladder etc.) that are vertically stacked (vertical is measured as the z-axis of the local coordinate system of the carrier segment)." ; + rdfs:label "CarrierStackNumber" ; + IFC4-PSD:definition "Number of carrier segments (tray, ladder etc.) that are vertically stacked (vertical is measured as the z-axis of the local coordinate system of the carrier segment)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7a917ce35e224ad58d1e87bc3656c1b8" ; + IFC4-PSD:name "CarrierStackNumber" ; + IFC4-PSD:nameAlias "Carrier Stack Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pd9a5be4540394d228b6c573471e71f22 + a IFC4-PSD:PropertyDef ; + rdfs:comment "An arbitrary correction factor that may be applied by the user." ; + rdfs:label "UserCorrectionFactor" ; + IFC4-PSD:definition "An arbitrary correction factor that may be applied by the user." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d9a5be4540394d228b6c573471e71f22" ; + IFC4-PSD:name "UserCorrectionFactor" ; + IFC4-PSD:nameAlias "User Correction Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:DesignAmbientTemperature + a rdf:Property ; + rdfs:seeAlso :p55fbb56361a24104a0e4b53d8e4cffd5 ; + rdfs:subPropertyOf IFC4-PSD:DesignAmbientTemperature . + +:pd4ec271863334e1ea8cdd1a1d63c7708 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the cable occurrences are mounted horizontally (= TRUE) or vertically (= FALSE)." ; + rdfs:label "IsHorizontalCable" ; + IFC4-PSD:definition "Indication of whether the cable occurrences are mounted horizontally (= TRUE) or vertically (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d4ec271863334e1ea8cdd1a1d63c7708" ; + IFC4-PSD:name "IsHorizontalCable" ; + IFC4-PSD:nameAlias "Is Horizontal Cable"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pa56d336272784003b1418d8169f8652f + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum value of electric current which can be carried continuously by a conductor, a device or an apparatus, under specified conditions without its steady-state temperature exceeding a specified value. Based on IEC60826-11-13. NOTE: The temperature specified value is maximum Design Ambient Temperature." ; + rdfs:label "CurrentCarryingCapasity" ; + IFC4-PSD:definition "Maximum value of electric current which can be carried continuously by a conductor, a device or an apparatus, under specified conditions without its steady-state temperature exceeding a specified value. Based on IEC60826-11-13. NOTE: The temperature specified value is maximum Design Ambient Temperature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a56d336272784003b1418d8169f8652f" ; + IFC4-PSD:name "CurrentCarryingCapasity" ; + IFC4-PSD:nameAlias "Current Carrying Capasity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:CarrierStackNumber a rdf:Property ; + rdfs:seeAlso :p7a917ce35e224ad58d1e87bc3656c1b8 ; + rdfs:subPropertyOf IFC4-PSD:CarrierStackNumber . + +:p7c0ce24f9d034d9b83da2ac5e4a0634c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Method of installation of cable/conductor. Installation methods are typically defined by reference in standards such as IEC 60364-5-52, table 52A-1 or BS7671 Appendix 4 Table 4A1 etc. Selection of the value to be used should be determined from such a standard according to local usage." ; + rdfs:label "InstallationMethod" ; + IFC4-PSD:definition "Method of installation of cable/conductor. Installation methods are typically defined by reference in standards such as IEC 60364-5-52, table 52A-1 or BS7671 Appendix 4 Table 4A1 etc. Selection of the value to be used should be determined from such a standard according to local usage." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7c0ce24f9d034d9b83da2ac5e4a0634c" ; + IFC4-PSD:name "InstallationMethod" ; + IFC4-PSD:nameAlias "Installation Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:IsHorizontalCable a rdf:Property ; + rdfs:seeAlso :pd4ec271863334e1ea8cdd1a1d63c7708 ; + rdfs:subPropertyOf IFC4-PSD:IsHorizontalCable . + +:UserCorrectionFactor + a rdf:Property ; + rdfs:seeAlso :pd9a5be4540394d228b6c573471e71f22 ; + rdfs:subPropertyOf IFC4-PSD:UserCorrectionFactor . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentTypeBusBarSegment.ttl b/converter/src/main/resources/pset/Pset_CableSegmentTypeBusBarSegment.ttl new file mode 100644 index 00000000..084deef9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentTypeBusBarSegment.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_CableSegmentTypeBusBarSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties specific to busbar cable segments." ; + rdfs:label "Pset_CableSegmentTypeBusBarSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableSegment/BUSBARSEGMENT" ; + IFC4-PSD:definition "Properties specific to busbar cable segments." ; + IFC4-PSD:definitionAlias ""@en , "busbarケーブルの性質、性能。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentTypeBusBarSegment" ; + IFC4-PSD:propertyDef :p1e027480d1c711e1800000215ad4efdf . + +:IsHorizontalBusbar a rdf:Property ; + rdfs:seeAlso :p1e027480d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsHorizontalBusbar . + +:p1e027480d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the busbar occurrences are routed horizontally (= TRUE) or vertically (= FALSE)." ; + rdfs:label "IsHorizontalBusbar" ; + IFC4-PSD:definition "Indication of whether the busbar occurrences are routed horizontally (= TRUE) or vertically (= FALSE)." ; + IFC4-PSD:definitionAlias "母線は、水平方向にルーティングされるかどうかを示す(= TRUE)または垂直方向に(= FALSE)を返します。"@ja-JP , ""@en , "모선은 가로로 라우팅되는지 여부를 나타내는 (= TRUE) 또는 수직 (= FALSE)를 반환합니다."@ko-KR ; + IFC4-PSD:ifdguid "1e027480d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "IsHorizontalBusbar" ; + IFC4-PSD:nameAlias "수평 모선"@ko-KR , "Is Horizontal Busbar"@en , "水平母線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentTypeCableSegment.ttl b/converter/src/main/resources/pset/Pset_CableSegmentTypeCableSegment.ttl new file mode 100644 index 00000000..dd73cbd0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentTypeCableSegment.ttl @@ -0,0 +1,284 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2b1f6380d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The designation of the standard applicable for the definition of the Cable/Bus used." ; + rdfs:label "Standard" ; + IFC4-PSD:definition "The designation of the standard applicable for the definition of the Cable/Bus used." ; + IFC4-PSD:definitionAlias "使用されるケーブル、busbarの定義のために使用される標準仕様。"@ja-JP , ""@en , "사용되는 케이블, busbar의 정의를 위해 사용되는 표준."@ko-KR ; + IFC4-PSD:ifdguid "2b1f6380d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Standard" ; + IFC4-PSD:nameAlias "Standard"@en , "標準"@ja-JP , "표준"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p31154480d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of cores in Cable/Bus." ; + rdfs:label "NumberOfCores" ; + IFC4-PSD:definition "The number of cores in Cable/Bus." ; + IFC4-PSD:definitionAlias "ケーブルや母線の芯数を示す。"@ja-JP , "케이블과 모선의 심수 보여준다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "31154480d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfCores" ; + IFC4-PSD:nameAlias "芯数"@ja-JP , "심수"@ko-KR , "Number Of Cores"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p3ecaca00d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The range of allowed voltage that a device is certified to handle. The upper bound of this value is the maximum." ; + rdfs:label "RatedVoltage" ; + IFC4-PSD:definition "The range of allowed voltage that a device is certified to handle. The upper bound of this value is the maximum." ; + IFC4-PSD:definitionAlias ""@en , "사용할 수있는 권한이있는 허용 전압."@ko-KR , "使用できることが許可されている許容電圧。"@ja-JP ; + IFC4-PSD:ifdguid "3ecaca00d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "RatedVoltage" ; + IFC4-PSD:nameAlias "定格電圧"@ja-JP , "Rated Voltage"@en , "정격 전압"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p44c0ab00d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The range of allowed temerature that a device is certified to handle. The upper bound of this value is the maximum." ; + rdfs:label "RatedTemperature" ; + IFC4-PSD:definition "The range of allowed temerature that a device is certified to handle. The upper bound of this value is the maximum." ; + IFC4-PSD:definitionAlias ""@en , "使用できることが許可されている許容温度。"@ja-JP , "사용할 수있는 권한이있는 허용 온도"@ko-KR ; + IFC4-PSD:ifdguid "44c0ab00d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "RatedTemperature" ; + IFC4-PSD:nameAlias "Rated Temperature"@en , "정격 온도"@ko-KR , "定格温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p87828300d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special construction capabilities like self-supporting, flat devidable cable or bus flat non devidable cable or bus supporting elements inside (steal, textile, concentric conductor). Note that materials used should be agreed between exchange participants before use." ; + rdfs:label "SpecialConstruction" ; + IFC4-PSD:definition "Special construction capabilities like self-supporting, flat devidable cable or bus flat non devidable cable or bus supporting elements inside (steal, textile, concentric conductor). Note that materials used should be agreed between exchange participants before use." ; + IFC4-PSD:definitionAlias ""@en , "특수한 구조를 갖춘 성능 - 예를 들어, 평형 플렉시블 케이블 또는 딱딱한 평형 모선 케이블 또는 모선 내부에 철제, 섬유, 동심 도체로 구성되어있는 지원이있다. 주) 사용하는 재료는 사용 전에 교류 참가자 사이에 동의한다."@ko-KR , "特殊な構造を備えた性能-たとえば、平型フレキシブルケーブルあるいは硬い平型母線ケーブル、あるいは母線で内部に鉄製、繊維、同心導体で構成されているサポートを持っている。\n注記)使用する材料は、使用前に交流参加者間で合意すること。"@ja-JP ; + IFC4-PSD:ifdguid "87828300d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "SpecialConstruction" ; + IFC4-PSD:nameAlias "Special Construction"@en , "특별한 시공 방법"@ko-KR , "特別な施工方法"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Standard a rdf:Property ; + rdfs:seeAlso :p2b1f6380d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Standard . + +:p936e4500d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.1." ; + rdfs:label "SelfExtinguishing60332_1" ; + IFC4-PSD:definition "Self Extinguishing cable/core according to IEC 60332.1." ; + IFC4-PSD:definitionAlias "IEC 60332.1.に規定されている自己消火ケーブル。"@ja-JP , "IEC 60332.1.에 규정되어있는 자기 소화 케이블"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "936e4500d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "SelfExtinguishing60332_1" ; + IFC4-PSD:nameAlias "自己消火ケーブル"@ja-JP , "자기 소화 케이블"@ko-KR , "Self Extinguishing60332_1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:RatedVoltage a rdf:Property ; + rdfs:seeAlso :p3ecaca00d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RatedVoltage . + +:MaximumShortCircuitTemperature + a rdf:Property ; + rdfs:seeAlso :p7f2a4800d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumShortCircuitTemperature . + +:p5904a800d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "One core has protective earth marked insulation, Yellow/Green." ; + rdfs:label "HasProtectiveEarth" ; + IFC4-PSD:definition "One core has protective earth marked insulation, Yellow/Green." ; + IFC4-PSD:definitionAlias "각 케이블은 노란색 또는 녹색으로 도색되었다 절연체를 가지고있다."@ko-KR , ""@en , "各ケーブルは黄色や緑で塗色された絶縁体をもっている。"@ja-JP ; + IFC4-PSD:ifdguid "5904a800d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "HasProtectiveEarth" ; + IFC4-PSD:nameAlias "保護用接地の有無"@ja-JP , "보호 접지의 유무"@ko-KR , "Has Protective Earth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pa54fe800d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cable/bus maintain given properties/functions over a given (tested) time and conditions. According to IEC standard." ; + rdfs:label "FunctionReliable" ; + IFC4-PSD:definition "Cable/bus maintain given properties/functions over a given (tested) time and conditions. According to IEC standard." ; + IFC4-PSD:definitionAlias ""@en , "케이블 및 모선 주어진 시간과 조건에서 규정하는 기능, 성질을 유지한다. 이것은 IEC 기준에 의한다."@ko-KR , "ケーブルや母線が与えられた時間と条件の中で規定される機能、性質を維持すること。これはIEC基準による。"@ja-JP ; + IFC4-PSD:ifdguid "a54fe800d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "FunctionReliable" ; + IFC4-PSD:nameAlias "Function Reliable"@en , "信頼性のある機能"@ja-JP , "신뢰할 수있는 기능"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p99642600d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.3." ; + rdfs:label "SelfExtinguishing60332_3" ; + IFC4-PSD:definition "Self Extinguishing cable/core according to IEC 60332.3." ; + IFC4-PSD:definitionAlias "IEC 60332.3.에 규정되어있는 자기 소화 케이블"@ko-KR , ""@en , "IEC 60332.3.に規定されている自己消火ケーブル。"@ja-JP ; + IFC4-PSD:ifdguid "99642600d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "SelfExtinguishing60332_3" ; + IFC4-PSD:nameAlias "Self Extinguishing60332_3"@en , "자기 소화 케이블"@ko-KR , "自己消火ケーブル"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_CableSegmentTypeCableSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Electrical cable with a specific purpose to lead electric current within a circuit or any other electric construction. Includes all types of electric cables, mainly several electrical segments wrapped together, e.g. cable, tube, busbar. Note that the number of conductors within a cable is determined by an aggregation mechanism that aggregates the conductors within the cable. A single-core cable is defined in IEV 461-06-02 as being 'a cable having only one core'; a multiconductor cable is defined in IEV 461-06-03 as b eing 'a cable having more than one conductor, some of which may be uninsulated'; a mulicore cable is defined in IEV 461-06-04 as being 'a cable having more than one core'." ; + rdfs:label "Pset_CableSegmentTypeCableSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableSegment/CABLESEGMENT" ; + IFC4-PSD:definition "Electrical cable with a specific purpose to lead electric current within a circuit or any other electric construction. Includes all types of electric cables, mainly several electrical segments wrapped together, e.g. cable, tube, busbar. Note that the number of conductors within a cable is determined by an aggregation mechanism that aggregates the conductors within the cable. A single-core cable is defined in IEV 461-06-02 as being 'a cable having only one core'; a multiconductor cable is defined in IEV 461-06-03 as b eing 'a cable having more than one conductor, some of which may be uninsulated'; a mulicore cable is defined in IEV 461-06-04 as being 'a cable having more than one core'." ; + IFC4-PSD:definitionAlias ""@en , "IAIにて定義されるもので、電気回路やその他電源回路などで送電する目的を持った電気関係のケーブル。\nすべての種類の電気ケーブルを含み、主にいくつかの電気層にて保護されている。たとえばケーブル、busbar、チューブ。\n注記)導電帯の中のケーブルの数は集計システムで規定される。単芯ケーブルはIEV 461-06-02で規定される。複芯ケーブルはIEV 461-06-03にて規定される。それは一つ以上の導電帯を持ちいくつかは絶縁されていない。マルチコアケーブルはIEV 461-06-04で規定されて、少なくとも一つ以上のコアで形成されている。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentTypeCableSegment" ; + IFC4-PSD:propertyDef :p9ff29d80d1c711e1800000215ad4efdf , :p99642600d1c711e1800000215ad4efdf , :p31154480d1c711e1800000215ad4efdf , :p44c0ab00d1c711e1800000215ad4efdf , :p38d4e900d1c711e1800000215ad4efdf , :p936e4500d1c711e1800000215ad4efdf , :p8ea99100d1c711e1800000215ad4efdf , :p7f2a4800d1c711e1800000215ad4efdf , :p6de13b80d1c711e1800000215ad4efdf , :p4ab68c00d1c711e1800000215ad4efdf , :p2b1f6380d1c711e1800000215ad4efdf , :p5904a800d1c711e1800000215ad4efdf , :p87828300d1c711e1800000215ad4efdf , :pa54fe800d1c711e1800000215ad4efdf , :p3ecaca00d1c711e1800000215ad4efdf . + +:OverallDiameter a rdf:Property ; + rdfs:seeAlso :p38d4e900d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallDiameter . + +:Weight a rdf:Property ; + rdfs:seeAlso :p8ea99100d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Weight . + +:SpecialConstruction a rdf:Property ; + rdfs:seeAlso :p87828300d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecialConstruction . + +:SelfExtinguishing60332_3 + a rdf:Property ; + rdfs:seeAlso :p99642600d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfExtinguishing60332_3 . + +:HasProtectiveEarth a rdf:Property ; + rdfs:seeAlso :p5904a800d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasProtectiveEarth . + +:p38d4e900d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall diameter of a Cable/Bus." ; + rdfs:label "OverallDiameter" ; + IFC4-PSD:definition "The overall diameter of a Cable/Bus." ; + IFC4-PSD:definitionAlias ""@en , "ケーブルや母線の外形寸法(直径)を示す。"@ja-JP , "케이블과 모선의 외형 치수 (직경)를 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "38d4e900d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "OverallDiameter" ; + IFC4-PSD:nameAlias "직경"@ko-KR , "Overall Diameter"@en , "直径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:RatedTemperature a rdf:Property ; + rdfs:seeAlso :p44c0ab00d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RatedTemperature . + +:ScreenDiameter a rdf:Property ; + rdfs:seeAlso :p4ab68c00d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScreenDiameter . + +:FunctionReliable a rdf:Property ; + rdfs:seeAlso :pa54fe800d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FunctionReliable . + +:NumberOfCores a rdf:Property ; + rdfs:seeAlso :p31154480d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfCores . + +:HalogenProof a rdf:Property ; + rdfs:seeAlso :p9ff29d80d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HalogenProof . + +:p6de13b80d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum temperature at which a cable or bus is certified to operate." ; + rdfs:label "MaximumOperatingTemperature" ; + IFC4-PSD:definition "The maximum temperature at which a cable or bus is certified to operate." ; + IFC4-PSD:definitionAlias ""@en , "케이블과 모선의 최대 작동 온도를 나타낸다."@ko-KR , "ケーブルや母線の最大動作温度を示す。"@ja-JP ; + IFC4-PSD:ifdguid "6de13b80d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumOperatingTemperature" ; + IFC4-PSD:nameAlias "許容最高温度"@ja-JP , "허용 최고 온도"@ko-KR , "Maximum Operating Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p9ff29d80d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Produces small amount of smoke and irritating Deaerator/Gas." ; + rdfs:label "HalogenProof" ; + IFC4-PSD:definition "Produces small amount of smoke and irritating Deaerator/Gas." ; + IFC4-PSD:definitionAlias "煙や刺激臭のあるガスの発生が少ないケーブル。"@ja-JP , "연기와 자극적인 냄새가있는 가스의 발생이 적은 케이블"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "9ff29d80d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "HalogenProof" ; + IFC4-PSD:nameAlias "에코 케이블"@ko-KR , "エコケーブル"@ja-JP , "Halogen Proof"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p4ab68c00d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The diameter of the screen around a cable or bus segment (if present)." ; + rdfs:label "ScreenDiameter" ; + IFC4-PSD:definition "The diameter of the screen around a cable or bus segment (if present)." ; + IFC4-PSD:definitionAlias "遮へい層の径、厚さ。"@ja-JP , ""@en , "차폐 층의 직경, 두께."@ko-KR ; + IFC4-PSD:ifdguid "4ab68c00d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "ScreenDiameter" ; + IFC4-PSD:nameAlias "스크린 지름"@ko-KR , "スクリーン径"@ja-JP , "Screen Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8ea99100d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weight of cable kg/km." ; + rdfs:label "Weight" ; + IFC4-PSD:definition "Weight of cable kg/km." ; + IFC4-PSD:definitionAlias "ケーブルの重量。"@ja-JP , "케이블의 무게"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8ea99100d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Weight" ; + IFC4-PSD:nameAlias "重量"@ja-JP , "무게"@ko-KR , "Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SelfExtinguishing60332_1 + a rdf:Property ; + rdfs:seeAlso :p936e4500d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfExtinguishing60332_1 . + +:p7f2a4800d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum short circuit temperature at which a cable or bus is certified to operate." ; + rdfs:label "MaximumShortCircuitTemperature" ; + IFC4-PSD:definition "The maximum short circuit temperature at which a cable or bus is certified to operate." ; + IFC4-PSD:definitionAlias ""@en , "케이블과 모선의 최대 단락 온도를 나타낸다."@ko-KR , "ケーブルや母線の最大短絡温度を示す。"@ja-JP ; + IFC4-PSD:ifdguid "7f2a4800d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumShortCircuitTemperature" ; + IFC4-PSD:nameAlias "단락 허용 최고 온도"@ko-KR , "短絡許容最高温度"@ja-JP , "Maximum Short Circuit Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:MaximumOperatingTemperature + a rdf:Property ; + rdfs:seeAlso :p6de13b80d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumOperatingTemperature . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CableSegmentTypeCommon.ttl new file mode 100644 index 00000000..b78220b7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :pb4cf3100d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:paf71e680d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당프로젝트에 정의도니 형식의 참조ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "af71e680d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照"@ja-JP , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_CableSegmentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for the definitions of electrical cable segments." ; + rdfs:label "Pset_CableSegmentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCableSegment ; + IFC4-PSD:applicableTypeValue "IfcCableSegment" ; + IFC4-PSD:definition "Properties for the definitions of electrical cable segments." ; + IFC4-PSD:definitionAlias ""@en , "電気ケーブルに関する性質でコアや導電帯、IFCにて定義されたコアや導電帯の性質。\n注記)最大の許容電圧低下はPset_ElectricalCircuit内から定義されるものである。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentTypeCommon" ; + IFC4-PSD:propertyDef :pb4cf3100d1c711e1800000215ad4efdf , :paf71e680d1c711e1800000215ad4efdf . + +:pb4cf3100d1c711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "b4cf3100d1c711e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :paf71e680d1c711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentTypeConductorSegment.ttl b/converter/src/main/resources/pset/Pset_CableSegmentTypeConductorSegment.ttl new file mode 100644 index 00000000..8cc3f428 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentTypeConductorSegment.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p30c97900d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of function for which the conductor is intended." ; + rdfs:label "Function" ; + IFC4-PSD:definition "Type of function for which the conductor is intended." ; + IFC4-PSD:definitionAlias ""@en , "도체의 기능 유형."@ko-KR , "導体の機能のタイプ。"@ja-JP ; + IFC4-PSD:ifdguid "30c97900d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Function" ; + IFC4-PSD:nameAlias "Function"@en , "기능"@ko-KR , "機能"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LINE" , "NEUTRAL" , "PROTECTIVEEARTH" , "PROTECTIVEEARTHNEUTRAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Function a rdf:Property ; + rdfs:seeAlso :p30c97900d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Function . + +:CrossSectionalArea a rdf:Property ; + rdfs:seeAlso :p2a3b0180d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CrossSectionalArea . + +:Material a rdf:Property ; + rdfs:seeAlso :p40e15880d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Material . + +:Construction a rdf:Property ; + rdfs:seeAlso :p4ccd1a80d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Construction . + +:Shape a rdf:Property ; + rdfs:seeAlso :p59ea0980d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Shape . + +:p40e15880d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of material from which the conductor is constructed." ; + rdfs:label "Material" ; + IFC4-PSD:definition "Type of material from which the conductor is constructed." ; + IFC4-PSD:definitionAlias ""@en , "도체를 구성하는 재료의 종류."@ko-KR , "導体を構成する材料のタイプ。"@ja-JP ; + IFC4-PSD:ifdguid "40e15880d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Material" ; + IFC4-PSD:nameAlias "도체의 기능 유형."@ko-KR , "材料"@ja-JP , "Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ALUMINIUM" , "COPPER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p2a3b0180d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cross section area of the phase(s) lead(s)." ; + rdfs:label "CrossSectionalArea" ; + IFC4-PSD:definition "Cross section area of the phase(s) lead(s)." ; + IFC4-PSD:definitionAlias "리드 단면적."@ko-KR , "位相、リードの断面積。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2a3b0180d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "CrossSectionalArea" ; + IFC4-PSD:nameAlias "断面積"@ja-JP , "Cross Sectional Area"@en , "단면적 영역"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p59ea0980d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of the shape of the conductor." ; + rdfs:label "Shape" ; + IFC4-PSD:definition "Indication of the shape of the conductor." ; + IFC4-PSD:definitionAlias "導体の形状を表示。"@ja-JP , ""@en , "도체의 형상을 표시합니다."@ko-KR ; + IFC4-PSD:ifdguid "59ea0980d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Shape" ; + IFC4-PSD:nameAlias "형상"@ko-KR , "形状"@ja-JP , "Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HELICALCONDUCTOR" , "CIRCULARCONDUCTOR" , "SECTORCONDUCTOR" , "RECTANGULARCONDUCTOR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4ccd1a80d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Purpose of informing on how the vonductor is constucted (interwined or solid). I.e. Solid (IEV 461-01-06), stranded (IEV 461-01-07), solid-/finestranded(IEV 461-01-11) (not flexible/flexible)." ; + rdfs:label "Construction" ; + IFC4-PSD:definition "Purpose of informing on how the vonductor is constucted (interwined or solid). I.e. Solid (IEV 461-01-06), stranded (IEV 461-01-07), solid-/finestranded(IEV 461-01-11) (not flexible/flexible)." ; + IFC4-PSD:definitionAlias "도체 구성 (연선 또는 단선)의 정의 즉 단선 (IEV 461-01-06), 트위스트 (IEV 461-01-07), 플렉서블 도체 (IEV 461-01-11) (유연한 아닌지 가) 정의"@ko-KR , ""@en , "導体の構成(より線か単線)の定義。すなわち単線(IEV 461-01-06)、より線(IEV 461-01-07)、フレキシブル導体(IEV 461-01-11)(フレキシブルか否か)で定義。"@ja-JP ; + IFC4-PSD:ifdguid "4ccd1a80d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Construction" ; + IFC4-PSD:nameAlias "構造"@ja-JP , "Construction"@en , "구조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SOLIDCONDUCTOR" , "STRANDEDCONDUCTOR" , "FLEXIBLESTRANDEDCONDUCTOR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_CableSegmentTypeConductorSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An electrical conductor is a single linear element with the specific purpose to lead electric current. The core of one lead is normally single wired or multiwired which are intertwined. According to IEC 60050: IEV 195-01-07, a conductor is a conductive part intended to carry a specified electric current." ; + rdfs:label "Pset_CableSegmentTypeConductorSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableSegment/CONDUCTORSEGMENT" ; + IFC4-PSD:definition "An electrical conductor is a single linear element with the specific purpose to lead electric current. The core of one lead is normally single wired or multiwired which are intertwined. According to IEC 60050: IEV 195-01-07, a conductor is a conductive part intended to carry a specified electric current." ; + IFC4-PSD:definitionAlias "電気導体は電流を導く目的で使用される線状の導体である。\n1本の導体の中心は、1本のワイヤーまたは、寄り合わせた複数のワイヤーからなる。IEC 60050:IEV 195-01-07によると、導体は指定された電流を運ぶことを目的とする伝導部分である。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentTypeConductorSegment" ; + IFC4-PSD:propertyDef :p4ccd1a80d1c811e1800000215ad4efdf , :p2a3b0180d1c811e1800000215ad4efdf , :p40e15880d1c811e1800000215ad4efdf , :p59ea0980d1c811e1800000215ad4efdf , :p30c97900d1c811e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CableSegmentTypeCoreSegment.ttl b/converter/src/main/resources/pset/Pset_CableSegmentTypeCoreSegment.ttl new file mode 100644 index 00000000..1a3f945b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CableSegmentTypeCoreSegment.ttl @@ -0,0 +1,231 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SelfExtinguishing60332_1 + a rdf:Property ; + rdfs:seeAlso :pb64d2900d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfExtinguishing60332_1 . + +:RatedTemperature a rdf:Property ; + rdfs:seeAlso :p7f771300d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RatedTemperature . + +:p869e2100d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The diameter of the screen around a core segment (if present)." ; + rdfs:label "ScreenDiameter" ; + IFC4-PSD:definition "The diameter of the screen around a core segment (if present)." ; + IFC4-PSD:definitionAlias ""@en , "コア部分(存在する場合)の面の直径。"@ja-JP , "코어 부분 (있는 경우)의 측면에 지름."@ko-KR ; + IFC4-PSD:ifdguid "869e2100d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "ScreenDiameter" ; + IFC4-PSD:nameAlias "Screen Diameter"@en , "シールド径"@ja-JP , "실드 직경"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:FunctionReliable a rdf:Property ; + rdfs:seeAlso :pc6fd9f00d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FunctionReliable . + +:pc107be00d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Produces small amount of smoke and irritating deaerator/gas." ; + rdfs:label "HalogenProof" ; + IFC4-PSD:definition "Produces small amount of smoke and irritating deaerator/gas." ; + IFC4-PSD:definitionAlias "少量の煙および刺激する脱気/ガスを生成。"@ja-JP , "소량의 연기와 자극 탈기 / 가스를 생성합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "c107be00d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "HalogenProof" ; + IFC4-PSD:nameAlias "Halogen Proof"@en , "할로겐 증명"@ko-KR , "ハロゲン証明"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p8c940200d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The core identification used Identifiers may be used such as by color (Black, Brown, Grey) or by number (1, 2, 3) or by IEC phase reference (L1, L2, L3) etc." ; + rdfs:label "CoreIdentifier" ; + IFC4-PSD:definition "The core identification used Identifiers may be used such as by color (Black, Brown, Grey) or by number (1, 2, 3) or by IEC phase reference (L1, L2, L3) etc." ; + IFC4-PSD:definitionAlias "코어 식별 색 (블랙, 브라운, 그레이) 또는 번호 (1,2,3) 또는 IEC의 위상 기준 (L1, L2, L3)를 사용."@ko-KR , ""@en , "コアの識別は、色(ブラック、ブラウン、グレー)又は番号(1、2、3)又はIECの位相基準(L1、L2、L3)などを使用。"@ja-JP ; + IFC4-PSD:ifdguid "8c940200d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "CoreIdentifier" ; + IFC4-PSD:nameAlias "コア識別子"@ja-JP , "Core Identifier"@en , "코어 식별자"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pcc5ae980d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The designation of the standard applicable for the definition of the core used." ; + rdfs:label "Standard" ; + IFC4-PSD:definition "The designation of the standard applicable for the definition of the core used." ; + IFC4-PSD:definitionAlias "사용하는 코어의 정의에 적용되는 기준 지정"@ko-KR , "使用するコアの定義に適用される基準の指定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cc5ae980d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Standard" ; + IFC4-PSD:nameAlias "基準"@ja-JP , "기준"@ko-KR , "Standard"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p72f2ba80d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall diameter of a core (maximun space used)." ; + rdfs:label "OverallDiameter" ; + IFC4-PSD:definition "The overall diameter of a core (maximun space used)." ; + IFC4-PSD:definitionAlias "全体の直径(最大スペース)。"@ja-JP , "전체 직경 (최대 공간)."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "72f2ba80d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "OverallDiameter" ; + IFC4-PSD:nameAlias "全径"@ja-JP , "전체 직경"@ko-KR , "Overall Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:HalogenProof a rdf:Property ; + rdfs:seeAlso :pc107be00d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HalogenProof . + +:pb64d2900d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.1." ; + rdfs:label "SelfExtinguishing60332_1" ; + IFC4-PSD:definition "Self Extinguishing cable/core according to IEC 60332.1." ; + IFC4-PSD:definitionAlias "자동 소화 케이블 / 코어는 IEC 60332.1에 준한다"@ko-KR , "自動消火ケーブル/コアはIEC 60332.1に準じる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b64d2900d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "SelfExtinguishing60332_1" ; + IFC4-PSD:nameAlias "Self Extinguishing60332_1"@en , "自動消火60332_1"@ja-JP , "자동 소화 60332_1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p9289e300d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Colour of the core (derived from IEC 60757). Note that the combined color 'GreenAndYellow' shall be used only as Protective Earth (PE) conductors according to the requirements of IEC 60446." ; + rdfs:label "SheathColors" ; + IFC4-PSD:definition "Colour of the core (derived from IEC 60757). Note that the combined color 'GreenAndYellow' shall be used only as Protective Earth (PE) conductors according to the requirements of IEC 60446." ; + IFC4-PSD:definitionAlias ""@en , "녹색과 노란색 혼합 색상의 보호 접지 (PE) 도체는 IEC60446의 요구에 따라주의하여 사용."@ko-KR , "コア色(IEC60757による)。緑と黄色の混合色の保護接地(PE)の導体は、IEC60446の要件に応じて注意して使用。"@ja-JP ; + IFC4-PSD:ifdguid "9289e300d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "SheathColors" ; + IFC4-PSD:nameAlias "シース色"@ja-JP , "코어 색"@ko-KR , "Sheath Colors"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "VIOLET" , "UNSET" , "OTHER" , "PINK" , "GREENANDYELLOW" , "SILVER" , "BLUE" , "GREY" , "GOLD" , "GREEN" , "BROWN" , "NOTKNOWN" , "YELLOW" , "WHITE" , "RED" , "TURQUOISE" , "ORANGE" , "BLACK" + ] . + +:p78e89b80d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The range of allowed voltage that a device is certified to handle. The upper bound of this value is the maximum." ; + rdfs:label "RatedVoltage" ; + IFC4-PSD:definition "The range of allowed voltage that a device is certified to handle. The upper bound of this value is the maximum." ; + IFC4-PSD:definitionAlias "장치를 사용할 보장된 전압. 상한은 최대."@ko-KR , ""@en , "機器を使用できる保障された電圧。上限値は最大値。"@ja-JP ; + IFC4-PSD:ifdguid "78e89b80d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "RatedVoltage" ; + IFC4-PSD:nameAlias "정격 전압"@ko-KR , "定格電圧"@ja-JP , "Rated Voltage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:pc6fd9f00d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core maintain given properties/functions over a given (tested) time and conditions. According to (IEC) standard." ; + rdfs:label "FunctionReliable" ; + IFC4-PSD:definition "Core maintain given properties/functions over a given (tested) time and conditions. According to (IEC) standard." ; + IFC4-PSD:definitionAlias "コアの維持は特定(テスト)の時間と条件でプロパティ/関数を指定する。標準会議(IEC)規格に準拠。"@ja-JP , "핵심 정비는 특정 (테스트) 시간과 조건의 속성 / 함수를 지정한다. 표준 회의 (IEC) 규격을 준수합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "c6fd9f00d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "FunctionReliable" ; + IFC4-PSD:nameAlias "Function Reliable"@en , "機能信頼性"@ja-JP , "기능 신뢰성"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7f771300d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The range of allowed temerature that a device is certified to handle. The upper bound of this value is the maximum." ; + rdfs:label "RatedTemperature" ; + IFC4-PSD:definition "The range of allowed temerature that a device is certified to handle. The upper bound of this value is the maximum." ; + IFC4-PSD:definitionAlias "장치를 사용할 보장된 온도 상한은 최대."@ko-KR , "機器を使用できる保障された温度。上限値は最大値。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7f771300d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "RatedTemperature" ; + IFC4-PSD:nameAlias "정격 온도"@ko-KR , "Rated Temperature"@en , "定格温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:Pset_CableSegmentTypeCoreSegment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An assembly comprising a conductor with its own insulation (and screens if any)" ; + rdfs:label "Pset_CableSegmentTypeCoreSegment" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCableSegment/CORESEGMENT" ; + IFC4-PSD:definition "An assembly comprising a conductor with its own insulation (and screens if any)" ; + IFC4-PSD:definitionAlias ""@en , "絶縁(と、いくつかのシールド)をもった導体の集合。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CableSegmentTypeCoreSegment" ; + IFC4-PSD:propertyDef :p8c940200d1c811e1800000215ad4efdf , :pc6fd9f00d1c811e1800000215ad4efdf , :pc107be00d1c811e1800000215ad4efdf , :p7f771300d1c811e1800000215ad4efdf , :p78e89b80d1c811e1800000215ad4efdf , :p9289e300d1c811e1800000215ad4efdf , :pcc5ae980d1c811e1800000215ad4efdf , :pb1887500d1c811e1800000215ad4efdf , :p869e2100d1c811e1800000215ad4efdf , :pb64d2900d1c811e1800000215ad4efdf , :p72f2ba80d1c811e1800000215ad4efdf , :pbbaa7380d1c811e1800000215ad4efdf . + +:Standard a rdf:Property ; + rdfs:seeAlso :pcc5ae980d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Standard . + +:SelfExtinguishing60332_3 + a rdf:Property ; + rdfs:seeAlso :pbbaa7380d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfExtinguishing60332_3 . + +:ScreenDiameter a rdf:Property ; + rdfs:seeAlso :p869e2100d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScreenDiameter . + +:pb1887500d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weight of core kg/km." ; + rdfs:label "Weight" ; + IFC4-PSD:definition "Weight of core kg/km." ; + IFC4-PSD:definitionAlias "コアkg/kmの重量。"@ja-JP , ""@en , "코어 kg / km의 무게."@ko-KR ; + IFC4-PSD:ifdguid "b1887500d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Weight" ; + IFC4-PSD:nameAlias "무게"@ko-KR , "重量"@ja-JP , "Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:Weight a rdf:Property ; + rdfs:seeAlso :pb1887500d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Weight . + +:OverallDiameter a rdf:Property ; + rdfs:seeAlso :p72f2ba80d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallDiameter . + +:pbbaa7380d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.3." ; + rdfs:label "SelfExtinguishing60332_3" ; + IFC4-PSD:definition "Self Extinguishing cable/core according to IEC 60332.3." ; + IFC4-PSD:definitionAlias ""@en , "自己消化ケーブル/コアはIEC 60332.3.に準じる。"@ja-JP , "자기 소화 케이블 / 코어는 IEC 60332.3.에 준한다."@ko-KR ; + IFC4-PSD:ifdguid "bbaa7380d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "SelfExtinguishing60332_3" ; + IFC4-PSD:nameAlias "자동 소화 60332_3"@ko-KR , "Self Extinguishing60332_3"@en , "自動消火60332_3"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:CoreIdentifier a rdf:Property ; + rdfs:seeAlso :p8c940200d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreIdentifier . + +:SheathColors a rdf:Property ; + rdfs:seeAlso :p9289e300d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SheathColors . + +:RatedVoltage a rdf:Property ; + rdfs:seeAlso :p78e89b80d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RatedVoltage . diff --git a/converter/src/main/resources/pset/Pset_ChillerPHistory.ttl b/converter/src/main/resources/pset/Pset_ChillerPHistory.ttl new file mode 100644 index 00000000..e4282cf5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ChillerPHistory.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe0065000d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The Coefficient of performance (COP) is the ratio of heat removed to energy input. \nThe energy input may be obtained by multiplying \nPset_DistributionPortPHistoryGas.FlowRate on the 'Fuel' port of the IfcChiller by Pset_MaterialFuel.LowerHeatingValue. \nThe IfcDistributionPort for fuel has an associated IfcMaterial with fuel properties and is assigned to an IfcPerformanceHistory object nested within this IfcPerformanceHistory object." ; + rdfs:label "CoefficientOfPerformance" ; + IFC4-PSD:definition "The Coefficient of performance (COP) is the ratio of heat removed to energy input. \nThe energy input may be obtained by multiplying \nPset_DistributionPortPHistoryGas.FlowRate on the 'Fuel' port of the IfcChiller by Pset_MaterialFuel.LowerHeatingValue. \nThe IfcDistributionPort for fuel has an associated IfcMaterial with fuel properties and is assigned to an IfcPerformanceHistory object nested within this IfcPerformanceHistory object." ; + IFC4-PSD:definitionAlias ""@en , "Le coefficient de performance (COP) est le rapport entre l'énergie calorifique fournie sur l'énergie abosrbée.\nL'énergie fournie peut être obtenue en multipliant Pset_DistributionPortHistoryGas.flowRate depuis le port du IfcChiller par Pset_MaterialFuel.LowerHeatingValue.\nLe IfcDistributionPort pour combustible est associé à IfcMaterial pour les propriétés du combustible et est atrribué à l'objet IfcPerformanceHistory situé à l'intérieur même de cet objet IfcPerformanceHistory."@fr-FR ; + IFC4-PSD:ifdguid "e0065000d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "CoefficientOfPerformance" ; + IFC4-PSD:nameAlias "Coefficient Of Performance"@en , "CoefficientDePerformance"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_ChillerPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chiller performance history attributes." ; + rdfs:label "Pset_ChillerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcChiller ; + IFC4-PSD:applicableTypeValue "IfcChiller" ; + IFC4-PSD:definition "Chiller performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ChillerPHistory" ; + IFC4-PSD:propertyDef :pe0065000d1c811e1800000215ad4efdf , :pdbda3280d1c811e1800000215ad4efdf , :pd8df4200d1c811e1800000215ad4efdf . + +:EnergyEfficiencyRatio + a rdf:Property ; + rdfs:seeAlso :pdbda3280d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergyEfficiencyRatio . + +:Capacity a rdf:Property ; + rdfs:seeAlso :pd8df4200d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Capacity . + +:CoefficientOfPerformance + a rdf:Property ; + rdfs:seeAlso :pe0065000d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoefficientOfPerformance . + +:pd8df4200d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The product of the ideal capacity and the overall volumetric efficiency of the compressor." ; + rdfs:label "Capacity" ; + IFC4-PSD:definition "The product of the ideal capacity and the overall volumetric efficiency of the compressor." ; + IFC4-PSD:definitionAlias ""@en , "Le produit de la puissance optimale par le rendement global du compresseur."@fr-FR ; + IFC4-PSD:ifdguid "d8df4200d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Capacity" ; + IFC4-PSD:nameAlias "Capacity"@en , "Puissance"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pdbda3280d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The Energy efficiency ratio (EER) is the ratio of net cooling capacity to the total input rate of electric power applied. By definition, the units are BTU/hour per Watt.\nThe input electric power may be obtained from Pset_DistributionPortPHistoryElectrical.RealPower on the 'Power' port of the IfcChiller." ; + rdfs:label "EnergyEfficiencyRatio" ; + IFC4-PSD:definition "The Energy efficiency ratio (EER) is the ratio of net cooling capacity to the total input rate of electric power applied. By definition, the units are BTU/hour per Watt.\nThe input electric power may be obtained from Pset_DistributionPortPHistoryElectrical.RealPower on the 'Power' port of the IfcChiller." ; + IFC4-PSD:definitionAlias "L'EER ou Energy Efficiency Ratio est le coefficient d'efficacité frigorifique, rapport entre entre l'énergie utile frigorifique divisée parénergie absorbée au compresseur.\nPar définition, l'unité est le BTU/hour par Watt.\nLa puissance électrique fournie peut être obtenue depuis Pset_DistributionPortHistoryElectrical.RealPower sur le port \"Power\" du IfcChiller."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "dbda3280d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "EnergyEfficiencyRatio" ; + IFC4-PSD:nameAlias "Energy Efficiency Ratio"@en , "CoefficientEfficacitéEnergétique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_ChillerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ChillerTypeCommon.ttl new file mode 100644 index 00000000..7caea474 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ChillerTypeCommon.ttl @@ -0,0 +1,220 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalEvaporatingTemperature + a rdf:Property ; + rdfs:seeAlso :p0e842b00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalEvaporatingTemperature . + +:pef859900d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR , ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "ef859900d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en , "Etat"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NominalPowerConsumption + a rdf:Property ; + rdfs:seeAlso :p19d75680d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalPowerConsumption . + +:CapacityCurve a rdf:Property ; + rdfs:seeAlso :p1e9c0a80d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapacityCurve . + +:FullLoadRatioCurve a rdf:Property ; + rdfs:seeAlso :p2fe51700d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FullLoadRatioCurve . + +:NominalEfficiency a rdf:Property ; + rdfs:seeAlso :p04622c80d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalEfficiency . + +:Reference a rdf:Property ; + rdfs:seeAlso :peac0e500d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p147a0c00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + rdfs:label "NominalHeatRejectionRate" ; + IFC4-PSD:definition "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + IFC4-PSD:definitionAlias ""@en , "Somme de l'effet de réfrigération et de la chaleur équivalente à la puisssance absorbée par le compresseur."@fr-FR ; + IFC4-PSD:ifdguid "147a0c00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatRejectionRate" ; + IFC4-PSD:nameAlias "Nominal Heat Rejection Rate"@en , "CoefficientEvacuationNominaleChaleur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p1e9c0a80d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Chiller cooling capacity is a function of condensing temperature and evaporating temperature, data is in table form, Capacity = f (TempCon, TempEvp), capacity = a1+b1*Tei+c1*Tei^2+d1*Tci+e1*Tci^2+f1*Tei*Tci. \nThis table uses multiple input variables; to represent, both DefiningValues and DefinedValues lists are null and IfcTable is attached using IfcPropertyConstraintRelationship and IfcMetric. Columns are specified in the following order: \n1.IfcPowerMeasure:Capacity\n2.IfcThermodynamicTemperatureMeasure:CondensingTemperature\n3.IfcThermodynamicTemperatureMeasure:EvaporatingTemperature" ; + rdfs:label "CapacityCurve" ; + IFC4-PSD:definition "Chiller cooling capacity is a function of condensing temperature and evaporating temperature, data is in table form, Capacity = f (TempCon, TempEvp), capacity = a1+b1*Tei+c1*Tei^2+d1*Tci+e1*Tci^2+f1*Tei*Tci. \nThis table uses multiple input variables; to represent, both DefiningValues and DefinedValues lists are null and IfcTable is attached using IfcPropertyConstraintRelationship and IfcMetric. Columns are specified in the following order: \n1.IfcPowerMeasure:Capacity\n2.IfcThermodynamicTemperatureMeasure:CondensingTemperature\n3.IfcThermodynamicTemperatureMeasure:EvaporatingTemperature" ; + IFC4-PSD:definitionAlias ""@en , "Puissance frigoifique du groupe froid qui est une fonction de la température de condensation et de la température d'évaporation, les informations sont sous la forme d'un tableau, Puissance = f(TempCon,TempEvp), puissance = a1+b1*Tei+c1*Tei^2+d1*Tci+e1*Tci^2+f1*Tei*Tci.\nCe tableau utilises plusieurs entrées variables; pour la représenter, DefiningValues et DefinedValues sont pour les deux nulles et IfcTable est attachée en utilisant IfcPropertyConstraintRelationship et IfcMetric. Les colonnes sont indiquées dans l'ordre suivant:\n1. IfcPowerMeasure: Capacity\n2. IfcThermodynamicTemperatureMeasure: CondensingTemperature\n3. IfcThermodynamicTemperatureMeasure: EvaporatingTemperature"@fr-FR ; + IFC4-PSD:ifdguid "1e9c0a80d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "CapacityCurve" ; + IFC4-PSD:nameAlias "CourbePuissance"@fr-FR , "Capacity Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPowerMeasure ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pef859900d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p278cdc00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Chiller coefficient of performance (COP) is function of condensing temperature and evaporating temperature, data is in table form, COP= f (TempCon, TempEvp), COP = a2+b2*Tei+c2*Tei^2+d2*Tci+e2*Tci^2+f2*Tei*Tci. \nThis table uses multiple input variables; to represent, both DefiningValues and DefinedValues lists are null and IfcTable is attached using IfcPropertyConstraintRelationship and IfcMetric. Columns are specified in the following order: \n1.IfcPositiveRatioMeasure:CoefficientOfPerformance\n2.IfcThermodynamicTemperatureMeasure:CondensingTemperature\n3.IfcThermodynamicTemperatureMeasure:EvaporatingTemperature" ; + rdfs:label "CoefficientOfPerformanceCurve" ; + IFC4-PSD:definition "Chiller coefficient of performance (COP) is function of condensing temperature and evaporating temperature, data is in table form, COP= f (TempCon, TempEvp), COP = a2+b2*Tei+c2*Tei^2+d2*Tci+e2*Tci^2+f2*Tei*Tci. \nThis table uses multiple input variables; to represent, both DefiningValues and DefinedValues lists are null and IfcTable is attached using IfcPropertyConstraintRelationship and IfcMetric. Columns are specified in the following order: \n1.IfcPositiveRatioMeasure:CoefficientOfPerformance\n2.IfcThermodynamicTemperatureMeasure:CondensingTemperature\n3.IfcThermodynamicTemperatureMeasure:EvaporatingTemperature" ; + IFC4-PSD:definitionAlias ""@en , "Coefficient de Performance (COP) du groupe froid qui est une fonction de la température de condensation et de la température d'évaporation, les informations sont sous la forme d'un tableau, COP = f(TempCon,TempEvp), COP = a2+b1*Tei+c2*Tei^2+d2*Tci+e2*Tci^2+f2*Tei*Tci.\nCe tableau utilises plusieurs entrées variables; pour la représenter, DefiningValues et DefinedValues sont pour les deux nulles et IfcTable est attachée en utilisant IfcPropertyConstraintRelationship et IfcMetric. Les colonnes sont indiquées dans l'ordre suivant:\n1. IfcPowerMeasureCapacity\n2. IfcThermodynamicTemperatureMeasure: CondensingTemperature\n3. IfcThermodynamicTemperatureMeasure: EvaporatingTemperature"@fr-FR ; + IFC4-PSD:ifdguid "278cdc00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "CoefficientOfPerformanceCurve" ; + IFC4-PSD:nameAlias "CourbeCOP"@fr-FR , "Coefficient Of Performance Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p2fe51700d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of actual power to full load power as a quadratic function of part load, at certain condensing and evaporating temperature, FracFullLoadPower = f ( PartLoadRatio)." ; + rdfs:label "FullLoadRatioCurve" ; + IFC4-PSD:definition "Ratio of actual power to full load power as a quadratic function of part load, at certain condensing and evaporating temperature, FracFullLoadPower = f ( PartLoadRatio)." ; + IFC4-PSD:definitionAlias "Rapport entre la puissance instantanée et la puissance à pleine charge comme fonction quadratique de charge partielle, pour une certaine température de condensation et une température d'évaporation, FracFullLoadPower= f (CoefficientChargePartielle)"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "2fe51700d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "FullLoadRatioCurve" ; + IFC4-PSD:nameAlias "Full Load Ratio Curve"@en , "CourbeFonctionnementPleineCharge"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_ChillerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chiller type common attributes." ; + rdfs:label "Pset_ChillerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcChiller ; + IFC4-PSD:applicableTypeValue "IfcChiller" ; + IFC4-PSD:definition "Chiller type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ChillerTypeCommon" ; + IFC4-PSD:propertyDef :p0e842b00d1c911e1800000215ad4efdf , :p19d75680d1c911e1800000215ad4efdf , :p2fe51700d1c911e1800000215ad4efdf , :p278cdc00d1c911e1800000215ad4efdf , :p1e9c0a80d1c911e1800000215ad4efdf , :peac0e500d1c811e1800000215ad4efdf , :p0926e080d1c911e1800000215ad4efdf , :pfe6c4b80d1c811e1800000215ad4efdf , :p147a0c00d1c911e1800000215ad4efdf , :pef859900d1c811e1800000215ad4efdf , :p04622c80d1c911e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0926e080d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Chiller condensing temperature." ; + rdfs:label "NominalCondensingTemperature" ; + IFC4-PSD:definition "Chiller condensing temperature." ; + IFC4-PSD:definitionAlias ""@en , "Température de condensation du groupe froid."@fr-FR ; + IFC4-PSD:ifdguid "0926e080d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCondensingTemperature" ; + IFC4-PSD:nameAlias "Nominal Condensing Temperature"@en , "TemperatureCondensationNominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p04622c80d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal chiller efficiency under nominal conditions." ; + rdfs:label "NominalEfficiency" ; + IFC4-PSD:definition "Nominal chiller efficiency under nominal conditions." ; + IFC4-PSD:definitionAlias "Efficactié nominale du groupe froid sous les conditions nominales."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "04622c80d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalEfficiency" ; + IFC4-PSD:nameAlias "EfficacitéNominale"@fr-FR , "Nominal Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:CoefficientOfPerformanceCurve + a rdf:Property ; + rdfs:seeAlso :p278cdc00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoefficientOfPerformanceCurve . + +:p0e842b00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Chiller evaporating temperature." ; + rdfs:label "NominalEvaporatingTemperature" ; + IFC4-PSD:definition "Chiller evaporating temperature." ; + IFC4-PSD:definitionAlias ""@en , "Température d'évaporation du groupe froid."@fr-FR ; + IFC4-PSD:ifdguid "0e842b00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalEvaporatingTemperature" ; + IFC4-PSD:nameAlias "TempératureEvaporationNominale"@fr-FR , "Nominal Evaporating Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:peac0e500d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "eac0e500d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "Référence"@fr-FR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:NominalCondensingTemperature + a rdf:Property ; + rdfs:seeAlso :p0926e080d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCondensingTemperature . + +:pfe6c4b80d1c811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal cooling capacity of chiller at standardized conditions as defined by the agency having jurisdiction." ; + rdfs:label "NominalCapacity" ; + IFC4-PSD:definition "Nominal cooling capacity of chiller at standardized conditions as defined by the agency having jurisdiction." ; + IFC4-PSD:definitionAlias "Puissance froid nominale du groupe froid aux conditions standardisées telles que définies par l'organisation faisant autorité."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "fe6c4b80d1c811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCapacity" ; + IFC4-PSD:nameAlias "Nominal Capacity"@en , "PuissanceNominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:NominalHeatRejectionRate + a rdf:Property ; + rdfs:seeAlso :p147a0c00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatRejectionRate . + +:NominalCapacity a rdf:Property ; + rdfs:seeAlso :pfe6c4b80d1c811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCapacity . + +:p19d75680d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal total power consumption." ; + rdfs:label "NominalPowerConsumption" ; + IFC4-PSD:definition "Nominal total power consumption." ; + IFC4-PSD:definitionAlias ""@en , "Puissance de consommation totale nominale."@fr-FR ; + IFC4-PSD:ifdguid "19d75680d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalPowerConsumption" ; + IFC4-PSD:nameAlias "Nominal Power Consumption"@en , "ConsommationPuissanceNominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ChimneyCommon.ttl b/converter/src/main/resources/pset/Pset_ChimneyCommon.ttl index ef2830ac..3513ec7f 100644 --- a/converter/src/main/resources/pset/Pset_ChimneyCommon.ttl +++ b/converter/src/main/resources/pset/Pset_ChimneyCommon.ttl @@ -1,185 +1,144 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_ChimneyCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_ChimneyCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcChimney" ; - IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of chimneys." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "IfcChimneyタイプとそのすべての実体の定義に共通な属性。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcChimney实例和类型的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "IFC4" ; - ] ; - IFC4-PSD:name "Pset_ChimneyCommon" ; - IFC4-PSD:propertyDef :_412e2380d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_468b6e00d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_573be400d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5c992e80d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_61f67900d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_6753c380d1c911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_6cb10e00d1c911e1800000215ad4efdf ; -. -:_412e2380d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:definitionAlias "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP ; - IFC4-PSD:ifdguid "412e2380d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@en ; - IFC4-PSD:nameAlias "Référence"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_468b6e00d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "468b6e00d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Status"@en ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_573be400d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Number of the chimney drafts, continuous holes in the chimney through which the air passes, within the single chimney." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Anzahl der Schornsteinzüge innerhalb eines Schornsteins. Gewöhnlich ein-, zwei, drei oder vierzügig."@de-DE ; - IFC4-PSD:definitionAlias "Nombre de conduits, percements continus par lesquels passe l'air à l'intérieur d'une cheminée simple."@fr-FR ; - IFC4-PSD:definitionAlias "一つの煙突で、煙突の筒(chimney draft)、空気が流れる連続した穴の数。"@ja-JP ; - IFC4-PSD:definitionAlias "单根烟囱内的烟道数目,烟道即烟囱内供空气流通的连续孔道。"@zh-CN ; - IFC4-PSD:ifdguid "573be400d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "NumberOfDrafts" ; - IFC4-PSD:nameAlias "Nombre de conduits"@fr-FR ; - IFC4-PSD:nameAlias "Number Of Drafts"@en ; - IFC4-PSD:nameAlias "Zügigkeit"@de-DE ; - IFC4-PSD:nameAlias "烟道数"@zh-CN ; - IFC4-PSD:nameAlias "穴の数"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_5c992e80d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "この要素が外部に用いられるか(TRUE)、否か(FALSE)を示す。(TRUE)の場合、これは外部要素で、建物の外部に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "5c992e80d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "Est extérieur"@fr-FR ; - IFC4-PSD:nameAlias "Is External"@en ; - IFC4-PSD:nameAlias "外部"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_61f67900d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of an element. Here the total thermal transmittance coefficient through the chimney within the direction of the thermal flow (including all materials)." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la cheminée dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient des Schornsteins (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."""@de-DE ; - IFC4-PSD:definitionAlias "材料の熱貫流率(U値)。ここでは、煙突全体の熱の流れる方向の熱貫流率(全ての材料を含む)。"@ja-JP ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示该烟囱在传热方向上的整体导热系数(包括所有材料)。"""@zh-CN ; - IFC4-PSD:ifdguid "61f67900d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "Thermal Transmittance"@en ; - IFC4-PSD:nameAlias "Transmission thermique surfacique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_6753c380d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "オブジェクトが荷重を保持するか(TRUE)、保持しないか(FALSE)を示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "6753c380d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Load Bearing"@en ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_6cb10e00d1c911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for the element. It is given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "当該オブジェクトの耐火等級。国で定めた耐火安全等級分類による。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "6cb10e00d1c911e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "Fire Rating"@en ; - IFC4-PSD:nameAlias "Résistance au feu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p468b6e00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; + IFC4-PSD:ifdguid "468b6e00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Statut"@fr-FR , "Status"@de-DE , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p6753c380d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:p61f67900d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of an element. Here the total thermal transmittance coefficient through the chimney within the direction of the thermal flow (including all materials)." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of an element. Here the total thermal transmittance coefficient through the chimney within the direction of the thermal flow (including all materials)." ; + IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la cheminée dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "材料の熱貫流率(U値)。ここでは、煙突全体の熱の流れる方向の熱貫流率(全ての材料を含む)。"@ja-JP , "材料的导热系数(U值)。\n表示该烟囱在传热方向上的整体导热系数(包括所有材料)。"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Schornsteins (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , ""@en ; + IFC4-PSD:ifdguid "61f67900d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "U-Wert"@de-DE , "导热系数"@zh-CN , "熱貫流率"@ja-JP , "Thermal Transmittance"@en , "Transmission thermique surfacique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:p412e2380d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , ""@en , "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; + IFC4-PSD:ifdguid "412e2380d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "Référence"@fr-FR , "参考号"@zh-CN , "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p6cb10e00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:Reference a rdf:Property ; + rdfs:seeAlso :p412e2380d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p5c992e80d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p61f67900d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p6753c380d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , "オブジェクトが荷重を保持するか(TRUE)、保持しないか(FALSE)を示す。"@ja-JP , ""@en , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; + IFC4-PSD:ifdguid "6753c380d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "Porteur"@fr-FR , "耐力部材"@ja-JP , "是否承重"@zh-CN , "Tragendes Bauteil"@de-DE , "Load Bearing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NumberOfDrafts a rdf:Property ; + rdfs:seeAlso :p573be400d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfDrafts . + +:Status a rdf:Property ; + rdfs:seeAlso :p468b6e00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_ChimneyCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of chimneys." ; + rdfs:label "Pset_ChimneyCommon" ; + IFC4-PSD:applicableClass IFC4:IfcChimney ; + IFC4-PSD:applicableTypeValue "IfcChimney" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of chimneys." ; + IFC4-PSD:definitionAlias "所有IfcChimney实例和类型的定义中通用的属性。"@zh-CN , "IfcChimneyタイプとそのすべての実体の定義に共通な属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ChimneyCommon" ; + IFC4-PSD:propertyDef :p412e2380d1c911e1800000215ad4efdf , :p6753c380d1c911e1800000215ad4efdf , :p6cb10e00d1c911e1800000215ad4efdf , :p5c992e80d1c911e1800000215ad4efdf , :p573be400d1c911e1800000215ad4efdf , :p61f67900d1c911e1800000215ad4efdf , :p468b6e00d1c911e1800000215ad4efdf . + +:p6cb10e00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for the element. It is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for the element. It is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias ""@en , "当該オブジェクトの耐火等級。国で定めた耐火安全等級分類による。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "6cb10e00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Résistance au feu"@fr-FR , "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE , "耐火等級"@ja-JP , "防火等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p5c992e80d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN , ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "この要素が外部に用いられるか(TRUE)、否か(FALSE)を示す。(TRUE)の場合、これは外部要素で、建物の外部に面している。"@ja-JP ; + IFC4-PSD:ifdguid "5c992e80d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "是否外部构件"@zh-CN , "外部"@ja-JP , "Est extérieur"@fr-FR , "Außenbauteil"@de-DE , "Is External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p573be400d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of the chimney drafts, continuous holes in the chimney through which the air passes, within the single chimney." ; + rdfs:label "NumberOfDrafts" ; + IFC4-PSD:definition "Number of the chimney drafts, continuous holes in the chimney through which the air passes, within the single chimney." ; + IFC4-PSD:definitionAlias "Anzahl der Schornsteinzüge innerhalb eines Schornsteins. Gewöhnlich ein-, zwei, drei oder vierzügig."@de-DE , "Nombre de conduits, percements continus par lesquels passe l'air à l'intérieur d'une cheminée simple."@fr-FR , "单根烟囱内的烟道数目,烟道即烟囱内供空气流通的连续孔道。"@zh-CN , ""@en , "一つの煙突で、煙突の筒(chimney draft)、空気が流れる連続した穴の数。"@ja-JP ; + IFC4-PSD:ifdguid "573be400d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfDrafts" ; + IFC4-PSD:nameAlias "Nombre de conduits"@fr-FR , "Zügigkeit"@de-DE , "穴の数"@ja-JP , "烟道数"@zh-CN , "Number Of Drafts"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_CivilElementCommon.ttl b/converter/src/main/resources/pset/Pset_CivilElementCommon.ttl index feafae26..2888ded3 100644 --- a/converter/src/main/resources/pset/Pset_CivilElementCommon.ttl +++ b/converter/src/main/resources/pset/Pset_CivilElementCommon.ttl @@ -1,34 +1,46 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . - -<> a owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" . +@prefix IFC4: . :Pset_CivilElementCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of civil element." ; + rdfs:label "Pset_CivilElementCommon" ; IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of civil element." ; IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; IFC4-PSD:version "IFC4" ] ; IFC4-PSD:name "Pset_CivilElementCommon" ; - IFC4-PSD:propertyDef :_0c528b1c7565457c85ee19a5f19a76f1 , :_70725207486940a2a2df14795defd067 . + IFC4-PSD:propertyDef :p70725207486940a2a2df14795defd067 , :p0c528b1c7565457c85ee19a5f19a76f1 . + +:Reference a rdf:Property ; + rdfs:seeAlso :p70725207486940a2a2df14795defd067 ; + rdfs:subPropertyOf IFC4-PSD:Reference . -:_0c528b1c7565457c85ee19a5f19a76f1 +:p0c528b1c7565457c85ee19a5f19a76f1 a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; IFC4-PSD:ifdguid "0c528b1c7565457c85ee19a5f19a76f1" ; IFC4-PSD:name "Status" ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "UNSET" , "NOTKNOWN" , "OTHER" , "TEMPORARY" , "DEMOLISH" , "EXISTING" , "NEW" + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" ] . -:_70725207486940a2a2df14795defd067 +:p70725207486940a2a2df14795defd067 a IFC4-PSD:PropertyDef ; + rdfs:label "Reference" ; IFC4-PSD:ifdguid "70725207486940a2a2df14795defd067" ; IFC4-PSD:name "Reference" ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p0c528b1c7565457c85ee19a5f19a76f1 ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_CoilOccurrence.ttl b/converter/src/main/resources/pset/Pset_CoilOccurrence.ttl new file mode 100644 index 00000000..f257ec52 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoilOccurrence.ttl @@ -0,0 +1,41 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_CoilOccurrence a IFC4-PSD:PropertySetDef ; + rdfs:comment "Coil occurrence attributes attached to an instance of IfcCoil." ; + rdfs:label "Pset_CoilOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcCoil ; + IFC4-PSD:applicableTypeValue "IfcCoil" ; + IFC4-PSD:definition "Coil occurrence attributes attached to an instance of IfcCoil." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoilOccurrence" ; + IFC4-PSD:propertyDef :p789cd000d1c911e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p789cd000d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the coil has sound attenuation, FALSE if it does not." ; + rdfs:label "HasSoundAttenuation" ; + IFC4-PSD:definition "TRUE if the coil has sound attenuation, FALSE if it does not." ; + IFC4-PSD:definitionAlias ""@en , "VRAI si la batterie possède une correction acoustique, FAUX si ce n'est pas le cas."@fr-FR ; + IFC4-PSD:ifdguid "789cd000d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "HasSoundAttenuation" ; + IFC4-PSD:nameAlias "PossedeCorrectionAcoustique"@fr-FR , "Has Sound Attenuation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasSoundAttenuation a rdf:Property ; + rdfs:seeAlso :p789cd000d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSoundAttenuation . diff --git a/converter/src/main/resources/pset/Pset_CoilPHistory.ttl b/converter/src/main/resources/pset/Pset_CoilPHistory.ttl new file mode 100644 index 00000000..672bf5f6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoilPHistory.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_CoilPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Coil performance history common attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_CoilPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCoil ; + IFC4-PSD:applicableTypeValue "IfcCoil" ; + IFC4-PSD:definition "Coil performance history common attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoilPHistory" ; + IFC4-PSD:propertyDef :p87838280d1c911e1800000215ad4efdf , :p8b170980d1c911e1800000215ad4efdf , :p84889200d1c911e1800000215ad4efdf , :p8e11fa00d1c911e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FaceVelocity a rdf:Property ; + rdfs:seeAlso :p8e11fa00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaceVelocity . + +:AtmosphericPressure a rdf:Property ; + rdfs:seeAlso :p84889200d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericPressure . + +:AirPressureDropCurve + a rdf:Property ; + rdfs:seeAlso :p87838280d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurve . + +:p8b170980d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Regenerated sound versus air-flow rate." ; + rdfs:label "SoundCurve" ; + IFC4-PSD:definition "Regenerated sound versus air-flow rate." ; + IFC4-PSD:definitionAlias ""@en , "Son généré par rapport au débit aéraulique."@fr-FR ; + IFC4-PSD:ifdguid "8b170980d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "SoundCurve" ; + IFC4-PSD:nameAlias "Sound Curve"@en , "CourbeSon"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p87838280d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop curve, pressure drop – flow rate curve, AirPressureDrop = f (AirflowRate)." ; + rdfs:label "AirPressureDropCurve" ; + IFC4-PSD:definition "Air pressure drop curve, pressure drop – flow rate curve, AirPressureDrop = f (AirflowRate)." ; + IFC4-PSD:definitionAlias "Courbe de perte de charge aéraulique, courbe perte de charge/débit."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "87838280d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurve" ; + IFC4-PSD:nameAlias "Air Pressure Drop Curve"@en , "CourbePerteDeChargeAir"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SoundCurve a rdf:Property ; + rdfs:seeAlso :p8b170980d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoundCurve . + +:p8e11fa00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air velocity through the coil." ; + rdfs:label "FaceVelocity" ; + IFC4-PSD:definition "Air velocity through the coil." ; + IFC4-PSD:definitionAlias ""@en , "Vitesse de l'air à travers la batterie."@fr-FR ; + IFC4-PSD:ifdguid "8e11fa00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "FaceVelocity" ; + IFC4-PSD:nameAlias "VitesseFace"@fr-FR , "Face Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p84889200d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient atmospheric pressure." ; + rdfs:label "AtmosphericPressure" ; + IFC4-PSD:definition "Ambient atmospheric pressure." ; + IFC4-PSD:definitionAlias ""@en , "Pression atmosphérique ambiante."@fr-FR ; + IFC4-PSD:ifdguid "84889200d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericPressure" ; + IFC4-PSD:nameAlias "Pression atmosphérique"@fr-FR , "Atmospheric Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_CoilTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CoilTypeCommon.ttl new file mode 100644 index 00000000..90cc671b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoilTypeCommon.ttl @@ -0,0 +1,163 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pbb5ea800d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal sensible capacity." ; + rdfs:label "NominalSensibleCapacity" ; + IFC4-PSD:definition "Nominal sensible capacity." ; + IFC4-PSD:definitionAlias ""@en , "Puissance sensible nominale."@fr-FR ; + IFC4-PSD:ifdguid "bb5ea800d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSensibleCapacity" ; + IFC4-PSD:nameAlias "Nominal Sensible Capacity"@en , "PuissanceSensibleNominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:pc580a680d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal UA value." ; + rdfs:label "NominalUA" ; + IFC4-PSD:definition "Nominal UA value." ; + IFC4-PSD:definitionAlias "Valeur nominale du coefficient de transmission thermique totale."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "c580a680d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalUA" ; + IFC4-PSD:nameAlias "Nominal UA"@en , "UANominale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:pc0235c00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal latent capacity." ; + rdfs:label "NominalLatentCapacity" ; + IFC4-PSD:definition "Nominal latent capacity." ; + IFC4-PSD:definitionAlias "Puissance latente nominale."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "c0235c00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalLatentCapacity" ; + IFC4-PSD:nameAlias "PuissanceLatenteNominale"@fr-FR , "Nominal Latent Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:PlacementType a rdf:Property ; + rdfs:seeAlso :pc9acc400d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlacementType . + +:Reference a rdf:Property ; + rdfs:seeAlso :p979b6200d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:NominalUA a rdf:Property ; + rdfs:seeAlso :pc580a680d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalUA . + +:p979b6200d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "979b6200d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Référence"@fr-FR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pb4d03080d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Possible range of airflow that can be delivered. For cases where there is no airflow across the coil (e.g. electric coil in a floor slab), then the value is zero." ; + rdfs:label "AirflowRateRange" ; + IFC4-PSD:definition "Possible range of airflow that can be delivered. For cases where there is no airflow across the coil (e.g. electric coil in a floor slab), then the value is zero." ; + IFC4-PSD:definitionAlias ""@en , "Plage possible de débit aéraulique pouvant être délivré. Pour les cas où il n'y a pas de débit à travers la batterie (par ex. batterie électrique en plancher), alors la valeur est zéro."@fr-FR ; + IFC4-PSD:ifdguid "b4d03080d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowRateRange" ; + IFC4-PSD:nameAlias "Airflow Rate Range"@en , "PlageDébitAéraulique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Pset_CoilTypeCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Coil type common attributes." ; + rdfs:label "Pset_CoilTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCoil ; + IFC4-PSD:applicableTypeValue "IfcCoil" ; + IFC4-PSD:definition "Coil type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoilTypeCommon" ; + IFC4-PSD:propertyDef :p979b6200d1c911e1800000215ad4efdf , :pc580a680d1c911e1800000215ad4efdf , :pc0235c00d1c911e1800000215ad4efdf , :pbb5ea800d1c911e1800000215ad4efdf , :pb4d03080d1c911e1800000215ad4efdf , :pad108c00d1c911e1800000215ad4efdf , :p9ec27000d1c911e1800000215ad4efdf , :pc9acc400d1c911e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p9ec27000d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:NominalSensibleCapacity + a rdf:Property ; + rdfs:seeAlso :pbb5ea800d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSensibleCapacity . + +:AirflowRateRange a rdf:Property ; + rdfs:seeAlso :pb4d03080d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowRateRange . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalLatentCapacity + a rdf:Property ; + rdfs:seeAlso :pc0235c00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalLatentCapacity . + +:pc9acc400d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the placement of the coil. \nFLOOR indicates an under floor heater (if coil type is WATERHEATINGCOIL or ELECTRICHEATINGCOIL); \nCEILING indicates a cooling ceiling (if coil type is WATERCOOLINGCOIL);\nUNIT indicates that the coil is part of a cooling or heating unit, like cooled beam, etc." ; + rdfs:label "PlacementType" ; + IFC4-PSD:definition "Indicates the placement of the coil. \nFLOOR indicates an under floor heater (if coil type is WATERHEATINGCOIL or ELECTRICHEATINGCOIL); \nCEILING indicates a cooling ceiling (if coil type is WATERCOOLINGCOIL);\nUNIT indicates that the coil is part of a cooling or heating unit, like cooled beam, etc." ; + IFC4-PSD:definitionAlias ""@en , "Précise l'implantation de la batterie.\nPLANCHER indique que c'est un plancher chauffant (si le type de batterie is BATTERIEEAUCHAUDE ou CABLECHAUFFANTLECTRIQUE);\nPLAFOND indique un plafond rafraïchissant (si le type de la batterie est BATTERIEEAUFROIDE); UNITE indique que la batterie fait partie d'une unité de chauffage ou de refroidissement, tel que poutre froide, etc."@fr-FR ; + IFC4-PSD:ifdguid "c9acc400d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "PlacementType" ; + IFC4-PSD:nameAlias "TypeImplantation"@fr-FR , "Placement Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FLOOR" , "CEILING" , "UNIT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:OperationalTemperatureRange + a rdf:Property ; + rdfs:seeAlso :pad108c00d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationalTemperatureRange . + +:pad108c00d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operational air temperature range." ; + rdfs:label "OperationalTemperatureRange" ; + IFC4-PSD:definition "Allowable operational air temperature range." ; + IFC4-PSD:definitionAlias ""@en , "Plage de température fonctionnelle admissible."@fr-FR ; + IFC4-PSD:ifdguid "ad108c00d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "OperationalTemperatureRange" ; + IFC4-PSD:nameAlias "Operational Temperature Range"@en , "PlageTemperatureFonctionnelle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p9ec27000d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR ; + IFC4-PSD:ifdguid "9ec27000d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Etat"@fr-FR , "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_CoilTypeHydronic.ttl b/converter/src/main/resources/pset/Pset_CoilTypeHydronic.ttl new file mode 100644 index 00000000..eee729bc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoilTypeHydronic.ttl @@ -0,0 +1,253 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:BypassFactor a rdf:Property ; + rdfs:seeAlso :p3758f000d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BypassFactor . + +:FluidPressureRange a rdf:Property ; + rdfs:seeAlso :pdc26fd80d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FluidPressureRange . + +:TotalUACurves a rdf:Property ; + rdfs:seeAlso :p26a87a00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalUACurves . + +:p2f00b500d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water pressure drop curve, pressure drop – flow rate curve, WaterPressureDrop = f(WaterflowRate)." ; + rdfs:label "WaterPressureDropCurve" ; + IFC4-PSD:definition "Water pressure drop curve, pressure drop – flow rate curve, WaterPressureDrop = f(WaterflowRate)." ; + IFC4-PSD:definitionAlias "Courbe de perte de charge hydraulique, courbe perte de charge - débit, perte de charge = f(DébitHydraulique)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "2f00b500d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterPressureDropCurve" ; + IFC4-PSD:nameAlias "Water Pressure Drop Curve"@en , "CourbePerteChargeHydraulique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:CoilFaceArea a rdf:Property ; + rdfs:seeAlso :p0b3d6f00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilFaceArea . + +:pe1844800d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The fluid used for heating or cooling used by the hydronic coil." ; + rdfs:label "CoilCoolant" ; + IFC4-PSD:definition "The fluid used for heating or cooling used by the hydronic coil." ; + IFC4-PSD:definitionAlias ""@en , "Le fluide utilisé pour chauffer ou refroidir dans la batterie deux tubes."@fr-FR ; + IFC4-PSD:ifdguid "e1844800d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "CoilCoolant" ; + IFC4-PSD:nameAlias "Coil Coolant"@en , "RefrigerantBatterie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WATER" , "BRINE" , "GLYCOL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:CoilCoolant a rdf:Property ; + rdfs:seeAlso :pe1844800d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilCoolant . + +:p42ac1b80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of coil surface area that is wet (0-1)." ; + rdfs:label "WetCoilFraction" ; + IFC4-PSD:definition "Fraction of coil surface area that is wet (0-1)." ; + IFC4-PSD:definitionAlias "Fraction de la surface de la batterie qui est humide (0 à 1)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "42ac1b80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "WetCoilFraction" ; + IFC4-PSD:nameAlias "Wet Coil Fraction"@en , "FractionBatterieHumide"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:peea13700d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Coil connection direction (facing into the air stream)." ; + rdfs:label "CoilConnectionDirection" ; + IFC4-PSD:definition "Coil connection direction (facing into the air stream)." ; + IFC4-PSD:definitionAlias ""@en , "Direction de la connexion à la batterie (en face du jet d'air)"@fr-FR ; + IFC4-PSD:ifdguid "eea13700d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "CoilConnectionDirection" ; + IFC4-PSD:nameAlias "DirectionConnexionBatterie"@fr-FR , "Coil Connection Direction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LEFT" , "RIGHT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SensibleHeatRatio a rdf:Property ; + rdfs:seeAlso :p3cb63a80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleHeatRatio . + +:Pset_CoilTypeHydronic + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Hydronic coil type attributes." ; + rdfs:label "Pset_CoilTypeHydronic" ; + IFC4-PSD:applicableClass IFC4:IfcCoil ; + IFC4-PSD:applicableTypeValue "IfcCoil" ; + IFC4-PSD:definition "Hydronic coil type attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoilTypeHydronic" ; + IFC4-PSD:propertyDef :pdc26fd80d1c911e1800000215ad4efdf , :pfd87e980d1c911e1800000215ad4efdf , :p2f00b500d1ca11e1800000215ad4efdf , :p3cb63a80d1ca11e1800000215ad4efdf , :p109ab980d1ca11e1800000215ad4efdf , :p3758f000d1ca11e1800000215ad4efdf , :p15f80400d1ca11e1800000215ad4efdf , :p1abcb800d1ca11e1800000215ad4efdf , :peea13700d1c911e1800000215ad4efdf , :p42ac1b80d1ca11e1800000215ad4efdf , :pe1844800d1c911e1800000215ad4efdf , :p0b3d6f00d1ca11e1800000215ad4efdf , :p26a87a00d1ca11e1800000215ad4efdf . + +:PrimarySurfaceArea a rdf:Property ; + rdfs:seeAlso :p15f80400d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimarySurfaceArea . + +:pdc26fd80d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable water working pressure range inside the tube." ; + rdfs:label "FluidPressureRange" ; + IFC4-PSD:definition "Allowable water working pressure range inside the tube." ; + IFC4-PSD:definitionAlias ""@en , "Plage de pression hydraulique fonctionnelle admissible dans le tube."@fr-FR ; + IFC4-PSD:ifdguid "dc26fd80d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "FluidPressureRange" ; + IFC4-PSD:nameAlias "PlagePressionFluide"@fr-FR , "Fluid Pressure Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p3cb63a80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air-side sensible heat ratio, or fraction of sensible heat transfer to the total heat transfer." ; + rdfs:label "SensibleHeatRatio" ; + IFC4-PSD:definition "Air-side sensible heat ratio, or fraction of sensible heat transfer to the total heat transfer." ; + IFC4-PSD:definitionAlias "Ratio de chaleur sensible, ou fraction d'échange thermique sensible sur la chaleur thermique totale échangée."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "3cb63a80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleHeatRatio" ; + IFC4-PSD:nameAlias "Sensible Heat Ratio"@en , "RatioChaleurSensible"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p26a87a00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total UA curves, UA - air and water velocities, UA = [(C1 * AirFlowRate^0.8)^-1 + (C2 * WaterFlowRate^0.8)^-1]^-1. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: AirFlowRate,WaterFlowRate,UA. The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + rdfs:label "TotalUACurves" ; + IFC4-PSD:definition "Total UA curves, UA - air and water velocities, UA = [(C1 * AirFlowRate^0.8)^-1 + (C2 * WaterFlowRate^0.8)^-1]^-1. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: AirFlowRate,WaterFlowRate,UA. The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." ; + IFC4-PSD:definitionAlias "Courbes de coefficient de transmission thermique total - vitesses de l'eau et de l'air, U.S = [(C1*DébitAéraulique^0,8)^-1 + (C2*DébitHydraulique^0,8)^-1]^-1.\nRemarque: comme deux variables sont utilisées, ValeursDefinir et ValeursDéfinies sont nulles, et les valeurs sont enregistrées dans IfcTable dans l'ordre suivant:\nDébitAéraulique, DebitHydraulique, U.S.\nLe IfcTable est lié à IfcPropertyTableValue en utilisant IfcMetric et IfcPropertyConstraintRelationship."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "26a87a00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalUACurves" ; + IFC4-PSD:nameAlias "CourbesCoefficientTransmissionThermiqueTotal"@fr-FR , "Total UACurves"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcVolumetricFlowRateMeasure ; + IFC4-PSD:definingValue IFC4:IfcReal + ] . + +:p15f80400d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Primary heat transfer surface area of the tubes and headers." ; + rdfs:label "PrimarySurfaceArea" ; + IFC4-PSD:definition "Primary heat transfer surface area of the tubes and headers." ; + IFC4-PSD:definitionAlias ""@en , "Surface d'échange thermique au primaire des tubes et aux collecteurs."@fr-FR ; + IFC4-PSD:ifdguid "15f80400d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "PrimarySurfaceArea" ; + IFC4-PSD:nameAlias "SurfaceEchangePrimaire"@fr-FR , "Primary Surface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:CoilConnectionDirection + a rdf:Property ; + rdfs:seeAlso :peea13700d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilConnectionDirection . + +:CoilFluidArrangement + a rdf:Property ; + rdfs:seeAlso :pfd87e980d1c911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilFluidArrangement . + +:WetCoilFraction a rdf:Property ; + rdfs:seeAlso :p42ac1b80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WetCoilFraction . + +:WaterPressureDropCurve + a rdf:Property ; + rdfs:seeAlso :p2f00b500d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterPressureDropCurve . + +:p0b3d6f00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Coil face area in the direction against air the flow." ; + rdfs:label "CoilFaceArea" ; + IFC4-PSD:definition "Coil face area in the direction against air the flow." ; + IFC4-PSD:definitionAlias ""@en , "Surface d'échange de la batterie dans la direction contraire du jet."@fr-FR ; + IFC4-PSD:ifdguid "0b3d6f00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "CoilFaceArea" ; + IFC4-PSD:nameAlias "SurfaceEchangeBatterie"@fr-FR , "Coil Face Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p1abcb800d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Secondary heat transfer surface area created by fins." ; + rdfs:label "SecondarySurfaceArea" ; + IFC4-PSD:definition "Secondary heat transfer surface area created by fins." ; + IFC4-PSD:definitionAlias ""@en , "Surface d'échange thermique au secondaire crée par les ailettes."@fr-FR ; + IFC4-PSD:ifdguid "1abcb800d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "SecondarySurfaceArea" ; + IFC4-PSD:nameAlias "Secondary Surface Area"@en , "SurfaceEchangeSecondaire"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p3758f000d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of air that is bypassed by the coil (0-1)." ; + rdfs:label "BypassFactor" ; + IFC4-PSD:definition "Fraction of air that is bypassed by the coil (0-1)." ; + IFC4-PSD:definitionAlias ""@en , "Fraction de l'air qui est bypassé par la batterie (0 à 1)."@fr-FR ; + IFC4-PSD:ifdguid "3758f000d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "BypassFactor" ; + IFC4-PSD:nameAlias "Bypass Factor"@en , "FacteurBypass"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:pfd87e980d1c911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fluid flow arrangement of the coil.\n\nCrossCounterFlow: Air and water flow enter in different directions.\nCrossFlow: Air and water flow are perpendicular.\nCrossParallelFlow: Air and water flow enter in same directions." ; + rdfs:label "CoilFluidArrangement" ; + IFC4-PSD:definition "Fluid flow arrangement of the coil.\n\nCrossCounterFlow: Air and water flow enter in different directions.\nCrossFlow: Air and water flow are perpendicular.\nCrossParallelFlow: Air and water flow enter in same directions." ; + IFC4-PSD:definitionAlias "Disposition du flux du fluide dans la batterie."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "fd87e980d1c911e1800000215ad4efdf" ; + IFC4-PSD:name "CoilFluidArrangement" ; + IFC4-PSD:nameAlias "Coil Fluid Arrangement"@en , "DispositionFluideBatterie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CROSSFLOW" , "CROSSCOUNTERFLOW" , "CROSSPARALLELFLOW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p109ab980d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat exchange surface area associated with U-value." ; + rdfs:label "HeatExchangeSurfaceArea" ; + IFC4-PSD:definition "Heat exchange surface area associated with U-value." ; + IFC4-PSD:definitionAlias ""@en , "Surface d'échange thermique associé à la valeur U."@fr-FR ; + IFC4-PSD:ifdguid "109ab980d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatExchangeSurfaceArea" ; + IFC4-PSD:nameAlias "Heat Exchange Surface Area"@en , "SurfaceEchangeThermique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:SecondarySurfaceArea + a rdf:Property ; + rdfs:seeAlso :p1abcb800d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondarySurfaceArea . + +:HeatExchangeSurfaceArea + a rdf:Property ; + rdfs:seeAlso :p109ab980d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatExchangeSurfaceArea . diff --git a/converter/src/main/resources/pset/Pset_ColumnCommon.ttl b/converter/src/main/resources/pset/Pset_ColumnCommon.ttl index 715264ce..87c181e5 100644 --- a/converter/src/main/resources/pset/Pset_ColumnCommon.ttl +++ b/converter/src/main/resources/pset/Pset_ColumnCommon.ttl @@ -1,210 +1,161 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_ColumnCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_ColumnCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcColumn ; - IFC4-PSD:applicableTypeValue "IfcColumn" ; - IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of column." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcColumn"@fr-FR ; - IFC4-PSD:definitionAlias "IfcColumn(柱)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcColumn实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_ColumnCommon" ; - IFC4-PSD:propertyDef :_522b6480d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5a839f80d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_6bccac00d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_71c28d00d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_77b86e00d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7c7d2200d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8141d600d1ca11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8737b700d1ca11e1800000215ad4efdf ; -. -:_522b6480d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "522b6480d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier ; - ] ; -. -:_5a839f80d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "5a839f80d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_6bccac00d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Slope angle - relative to horizontal (0.0 degrees). - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.""" ; - IFC4-PSD:definitionAlias "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; - IFC4-PSD:definitionAlias """Neigungswinkel der Stütze relative zur Horizontalen (0 Grad). - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias "傾斜角度。水平を0度とする。"@ja-JP ; - IFC4-PSD:definitionAlias """相对于水平(0.0度)方向的坡度角。 -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"""@zh-CN ; - IFC4-PSD:ifdguid "6bccac00d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "Slope" ; - IFC4-PSD:nameAlias "Inclinaison"@fr-FR ; - IFC4-PSD:nameAlias "Neigungswinkel"@de-DE ; - IFC4-PSD:nameAlias "傾斜"@ja-JP ; - IFC4-PSD:nameAlias "坡度"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_71c28d00d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Rotation against the longitudinal axis - relative to the global X direction for all columns that are vertical in regard to the global coordinate system (Profile direction equals global X is Roll = 0.). For all non-vertical columns the following applies: Roll is relative to the global Z direction f(Profile direction of non-vertical columns that equals global Z is Roll = 0.) - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only. - -Note: new property in IFC4""" ; - IFC4-PSD:definitionAlias """Drehwinkel der Stütze relative zur globalen X Ausrichtung (O Grad). Bei nicht-vertikalen Stützen wird die Verdrehung analog zu den Balken (Verkippung gegen die Vertikale) angegeben. - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias """Rotation autour de l'axe longitudinal - relativement à l'axe X pour tous les poteaux qui sont verticaux relativement au repère absolu (la direction du profil est celle de l'axe X si la valeur est 0). Pour tous les poteaux non verticaux, la valeur de la propriété est relative à l'axe Z (la direction du profil des poteaux non verticaux est celle de l'axe Z si la valeur est 0). -Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété. Note : nouvelle propriété de la version IFC2x4."""@fr-FR ; - IFC4-PSD:definitionAlias "柱の長軸に対する回転。"@ja-JP ; - IFC4-PSD:definitionAlias """相对于纵轴的旋转角。对全局坐标系中的垂直柱,该属性为相对于X轴的角度。(若轮廓方向在X轴上,则转角为0。)对全局坐标系中的非垂直柱,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。) -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。 -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:ifdguid "71c28d00d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "Roll" ; - IFC4-PSD:nameAlias "Drehwinkel"@de-DE ; - IFC4-PSD:nameAlias "RotationAutourAxeLongitudinal"@fr-FR ; - IFC4-PSD:nameAlias "回転"@ja-JP ; - IFC4-PSD:nameAlias "转角"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_77b86e00d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "77b86e00d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_7c7d2200d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the column within the direction of the thermal flow (including all materials). - -Nore: new property in IFC4""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le poteau dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 - -表示该柱在传热方向上的整体导热系数(包括所有材料)。 - -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここでは柱を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "7c7d2200d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. -:_8141d600d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "8141d600d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_8737b700d1ca11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for the element. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "8737b700d1ca11e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p522b6480d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , ""@en , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "522b6480d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE , "参考号"@zh-CN , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p5a839f80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; + IFC4-PSD:ifdguid "5a839f80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@de-DE , "Statut"@fr-FR , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p71c28d00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Rotation against the longitudinal axis - relative to the global X direction for all columns that are vertical in regard to the global coordinate system (Profile direction equals global X is Roll = 0.). For all non-vertical columns the following applies: Roll is relative to the global Z direction f(Profile direction of non-vertical columns that equals global Z is Roll = 0.)\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.\n\nNote: new property in IFC4" ; + rdfs:label "Roll" ; + IFC4-PSD:definition "Rotation against the longitudinal axis - relative to the global X direction for all columns that are vertical in regard to the global coordinate system (Profile direction equals global X is Roll = 0.). For all non-vertical columns the following applies: Roll is relative to the global Z direction f(Profile direction of non-vertical columns that equals global Z is Roll = 0.)\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.\n\nNote: new property in IFC4" ; + IFC4-PSD:definitionAlias "相对于纵轴的旋转角。对全局坐标系中的垂直柱,该属性为相对于X轴的角度。(若轮廓方向在X轴上,则转角为0。)对全局坐标系中的非垂直柱,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。)\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。\n注:IFC2x4新添属性"@zh-CN , "柱の長軸に対する回転。"@ja-JP , "Rotation autour de l'axe longitudinal - relativement à l'axe X pour tous les poteaux qui sont verticaux relativement au repère absolu (la direction du profil est celle de l'axe X si la valeur est 0). Pour tous les poteaux non verticaux, la valeur de la propriété est relative à l'axe Z (la direction du profil des poteaux non verticaux est celle de l'axe Z si la valeur est 0). \nCette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété. Note : nouvelle propriété de la version IFC2x4."@fr-FR , "Drehwinkel der Stütze relative zur globalen X Ausrichtung (O Grad). Bei nicht-vertikalen Stützen wird die Verdrehung analog zu den Balken (Verkippung gegen die Vertikale) angegeben.\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE , ""@en ; + IFC4-PSD:ifdguid "71c28d00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Roll" ; + IFC4-PSD:nameAlias "回転"@ja-JP , "RotationAutourAxeLongitudinal"@fr-FR , "转角"@zh-CN , "Drehwinkel"@de-DE , "Roll"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Slope a rdf:Property ; + rdfs:seeAlso :p6bccac00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Slope . + +:Roll a rdf:Property ; + rdfs:seeAlso :p71c28d00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Roll . + +:p8141d600d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , ""@en , "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP , "表示该对象是否需要承重。"@zh-CN , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "8141d600d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE , "是否承重"@zh-CN , "耐力部材"@ja-JP , "Load Bearing"@en , "Porteur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7c7d2200d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the column within the direction of the thermal flow (including all materials).\n\nNore: new property in IFC4" ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of the element. Here the total thermal transmittance coefficient through the column within the direction of the thermal flow (including all materials).\n\nNore: new property in IFC4" ; + IFC4-PSD:definitionAlias "材料的导热系数(U值)。\n\n表示该柱在传热方向上的整体导热系数(包括所有材料)。\n\n注:IFC2x4新添属性"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , ""@en , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le poteau dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。ここでは柱を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; + IFC4-PSD:ifdguid "7c7d2200d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "U-Wert"@de-DE , "熱貫流率"@ja-JP , "TransmissionThermique"@fr-FR , "导热系数"@zh-CN , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p5a839f80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p77b86e00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; + IFC4-PSD:ifdguid "77b86e00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "是否外部构件"@zh-CN , "外部区分"@ja-JP , "Außenbauteil"@de-DE , "EstExterieur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_ColumnCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of column." ; + rdfs:label "Pset_ColumnCommon" ; + IFC4-PSD:applicableClass IFC4:IfcColumn ; + IFC4-PSD:applicableTypeValue "IfcColumn" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of column." ; + IFC4-PSD:definitionAlias ""@en , "IfcColumn(柱)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "所有IfcColumn实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcColumn"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ColumnCommon" ; + IFC4-PSD:propertyDef :p8141d600d1ca11e1800000215ad4efdf , :p6bccac00d1ca11e1800000215ad4efdf , :p77b86e00d1ca11e1800000215ad4efdf , :p8737b700d1ca11e1800000215ad4efdf , :p5a839f80d1ca11e1800000215ad4efdf , :p71c28d00d1ca11e1800000215ad4efdf , :p522b6480d1ca11e1800000215ad4efdf , :p7c7d2200d1ca11e1800000215ad4efdf . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p7c7d2200d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p77b86e00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p8737b700d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for the element.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for the element.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; + IFC4-PSD:ifdguid "8737b700d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "耐火等級"@ja-JP , "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE , "ResistanceAuFeu"@fr-FR , "Fire Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p8737b700d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p6bccac00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Slope angle - relative to horizontal (0.0 degrees).\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + rdfs:label "Slope" ; + IFC4-PSD:definition "Slope angle - relative to horizontal (0.0 degrees).\n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + IFC4-PSD:definitionAlias "傾斜角度。水平を0度とする。"@ja-JP , "Neigungswinkel der Stütze relative zur Horizontalen (0 Grad).\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE , ""@en , "相对于水平(0.0度)方向的坡度角。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"@zh-CN , "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; + IFC4-PSD:ifdguid "6bccac00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Slope" ; + IFC4-PSD:nameAlias "傾斜"@ja-JP , "坡度"@zh-CN , "Inclinaison"@fr-FR , "Neigungswinkel"@de-DE , "Slope"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p522b6480d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p8141d600d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . diff --git a/converter/src/main/resources/pset/Pset_CommunicationsAppliancePHistory.ttl b/converter/src/main/resources/pset/Pset_CommunicationsAppliancePHistory.ttl new file mode 100644 index 00000000..a14b4d61 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CommunicationsAppliancePHistory.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_CommunicationsAppliancePHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Captures realtime information for communications devices, such as for server farm energy usage. HISTORY: Added in IFC4." ; + rdfs:label "Pset_CommunicationsAppliancePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCommunicationsAppliance ; + IFC4-PSD:applicableTypeValue "IfcCommunicationsAppliance" ; + IFC4-PSD:definition "Captures realtime information for communications devices, such as for server farm energy usage. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CommunicationsAppliancePHistory" ; + IFC4-PSD:propertyDef :p90c11f00d1ca11e1800000215ad4efdf . + +:p90c11f00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the power state of the device where True is on and False is off." ; + rdfs:label "PowerState" ; + IFC4-PSD:definition "Indicates the power state of the device where True is on and False is off." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "90c11f00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "PowerState" ; + IFC4-PSD:nameAlias "Power State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PowerState a rdf:Property ; + rdfs:seeAlso :p90c11f00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerState . diff --git a/converter/src/main/resources/pset/Pset_CommunicationsApplianceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CommunicationsApplianceTypeCommon.ttl new file mode 100644 index 00000000..85c66225 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CommunicationsApplianceTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9fa7d180d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "9fa7d180d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p9fa7d180d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :p9ae31d80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p9ae31d80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "9ae31d80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照"@ja-JP , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_CommunicationsApplianceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for communications appliances. HISTORY: Added in IFC4." ; + rdfs:label "Pset_CommunicationsApplianceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCommunicationsAppliance ; + IFC4-PSD:applicableTypeValue "IfcCommunicationsAppliance" ; + IFC4-PSD:definition "Common properties for communications appliances. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "通信機器の共通プロパティ。\nIFC4にて追加。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CommunicationsApplianceTypeCommon" ; + IFC4-PSD:propertyDef :p9fa7d180d1ca11e1800000215ad4efdf , :p9ae31d80d1ca11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CompressorPHistory.ttl b/converter/src/main/resources/pset/Pset_CompressorPHistory.ttl new file mode 100644 index 00000000..5151a874 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CompressorPHistory.ttl @@ -0,0 +1,272 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe4336d00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the actual volume of gas entering the compressor to the theoretical displacement of the compressor." ; + rdfs:label "VolumetricEfficiency" ; + IFC4-PSD:definition "Ratio of the actual volume of gas entering the compressor to the theoretical displacement of the compressor." ; + IFC4-PSD:definitionAlias "Rapport entre le volume effectif de gaz rentrant dans le compresseur et le volume déplacé théorique du compresseur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "e4336d00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "VolumetricEfficiency" ; + IFC4-PSD:nameAlias "Volumetric Efficiency"@en , "RendementVolumétrique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pe09fe600d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Coefficient of performance (COP)." ; + rdfs:label "CoefficientOfPerformance" ; + IFC4-PSD:definition "Coefficient of performance (COP)." ; + IFC4-PSD:definitionAlias ""@en , "Coefficient de performance (COP)."@fr-FR ; + IFC4-PSD:ifdguid "e09fe600d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "CoefficientOfPerformance" ; + IFC4-PSD:nameAlias "Coefficient Of Performance"@en , "CoefficientPerformance"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CompressionEfficiency + a rdf:Property ; + rdfs:seeAlso :pe72e5d80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressionEfficiency . + +:pf4e3e300d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual shaft power input to the compressor." ; + rdfs:label "ShaftPower" ; + IFC4-PSD:definition "The actual shaft power input to the compressor." ; + IFC4-PSD:definitionAlias "La puissance mécanique appliquée au niveau de l'arbre du compresseur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "f4e3e300d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "ShaftPower" ; + IFC4-PSD:nameAlias "Shaft Power"@en , "PuissanceArbre"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ShaftPower a rdf:Property ; + rdfs:seeAlso :pf4e3e300d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShaftPower . + +:p0200d200d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Compressor total heat gain." ; + rdfs:label "CompressorTotalHeatGain" ; + IFC4-PSD:definition "Compressor total heat gain." ; + IFC4-PSD:definitionAlias "Gain thermique total au niveau du compresseur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "0200d200d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorTotalHeatGain" ; + IFC4-PSD:nameAlias "Compressor Total Heat Gain"@en , "GainThermiqueTotalCompresseur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:EnergyEfficiencyRatio + a rdf:Property ; + rdfs:seeAlso :pdd0c5f00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergyEfficiencyRatio . + +:pfc0af100d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lubricant pump heat gain." ; + rdfs:label "LubricantPumpHeatGain" ; + IFC4-PSD:definition "Lubricant pump heat gain." ; + IFC4-PSD:definitionAlias ""@en , "Gain thermique par lubrification de la pompe à chaleur."@fr-FR ; + IFC4-PSD:ifdguid "fc0af100d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "LubricantPumpHeatGain" ; + IFC4-PSD:nameAlias "GainThermiqueLubrifiantPompe"@fr-FR , "Lubricant Pump Heat Gain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FullLoadRatio a rdf:Property ; + rdfs:seeAlso :p05945900d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FullLoadRatio . + +:Pset_CompressorPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Compressor performance history attributes." ; + rdfs:label "Pset_CompressorPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCompressor ; + IFC4-PSD:applicableTypeValue "IfcCompressor" ; + IFC4-PSD:definition "Compressor performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CompressorPHistory" ; + IFC4-PSD:propertyDef :pff05e180d1ca11e1800000215ad4efdf , :pfc0af100d1ca11e1800000215ad4efdf , :pdd0c5f00d1ca11e1800000215ad4efdf , :pda116e80d1ca11e1800000215ad4efdf , :pe4336d00d1ca11e1800000215ad4efdf , :pf0b7c580d1ca11e1800000215ad4efdf , :pe72e5d80d1ca11e1800000215ad4efdf , :pf8776a00d1ca11e1800000215ad4efdf , :p05945900d1cb11e1800000215ad4efdf , :p0200d200d1cb11e1800000215ad4efdf , :ped243e80d1ca11e1800000215ad4efdf , :pf4e3e300d1ca11e1800000215ad4efdf , :pea294e00d1ca11e1800000215ad4efdf , :pe09fe600d1ca11e1800000215ad4efdf . + +:pff05e180d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Friction heat gain." ; + rdfs:label "FrictionHeatGain" ; + IFC4-PSD:definition "Friction heat gain." ; + IFC4-PSD:definitionAlias "Gain thermique par friction."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "ff05e180d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "FrictionHeatGain" ; + IFC4-PSD:nameAlias "Friction Heat Gain"@en , "GainThermiqueFriction"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CompressorCapacity a rdf:Property ; + rdfs:seeAlso :pda116e80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorCapacity . + +:CompressorTotalEfficiency + a rdf:Property ; + rdfs:seeAlso :pf0b7c580d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorTotalEfficiency . + +:pda116e80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The product of the ideal capacity and the overall volumetric efficiency of the compressor." ; + rdfs:label "CompressorCapacity" ; + IFC4-PSD:definition "The product of the ideal capacity and the overall volumetric efficiency of the compressor." ; + IFC4-PSD:definitionAlias "Le produit de la puissance optimale par le rendement global du compresseur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "da116e80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorCapacity" ; + IFC4-PSD:nameAlias "PuissanceCompresseur"@fr-FR , "Compressor Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:InputPower a rdf:Property ; + rdfs:seeAlso :pf8776a00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InputPower . + +:FrictionHeatGain a rdf:Property ; + rdfs:seeAlso :pff05e180d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrictionHeatGain . + +:CoefficientOfPerformance + a rdf:Property ; + rdfs:seeAlso :pe09fe600d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoefficientOfPerformance . + +:CompressorTotalHeatGain + a rdf:Property ; + rdfs:seeAlso :p0200d200d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorTotalHeatGain . + +:pe72e5d80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the work required for isentropic compression of the gas to the work delivered to the gas within the compression volume (as obtained by measurement)." ; + rdfs:label "CompressionEfficiency" ; + IFC4-PSD:definition "Ratio of the work required for isentropic compression of the gas to the work delivered to the gas within the compression volume (as obtained by measurement)." ; + IFC4-PSD:definitionAlias "Rapport entre le travail requis pour une compression isentropique du gaz et le travail fourni au gaz dans le volume comprimé (telq qu'obtenu par mesure)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "e72e5d80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressionEfficiency" ; + IFC4-PSD:nameAlias "Compression Efficiency"@en , "RendementCompression"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pea294e00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the work (as measured) delivered to the gas to the work input to the compressor shaft." ; + rdfs:label "MechanicalEfficiency" ; + IFC4-PSD:definition "Ratio of the work (as measured) delivered to the gas to the work input to the compressor shaft." ; + IFC4-PSD:definitionAlias ""@en , "Rapport entre le travail fourni (tel que mesuré) au gaz et le travail fourni à l'arbre du compresseur."@fr-FR ; + IFC4-PSD:ifdguid "ea294e00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "MechanicalEfficiency" ; + IFC4-PSD:nameAlias "RendementMécanique"@fr-FR , "Mechanical Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf8776a00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Input power to the compressor motor." ; + rdfs:label "InputPower" ; + IFC4-PSD:definition "Input power to the compressor motor." ; + IFC4-PSD:definitionAlias ""@en , "Puissance fournie au moteur du compresseur."@fr-FR ; + IFC4-PSD:ifdguid "f8776a00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "InputPower" ; + IFC4-PSD:nameAlias "Input Power"@en , "PuissanceEntréeMoteur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ped243e80d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the work required for isentropic compression of the gas to work input to the compressor shaft." ; + rdfs:label "IsentropicEfficiency" ; + IFC4-PSD:definition "Ratio of the work required for isentropic compression of the gas to work input to the compressor shaft." ; + IFC4-PSD:definitionAlias "Rapport entre le travail requis pour une compression isentropique du gaz et le travail fourni à l'arbre du compresseur."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "ed243e80d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "IsentropicEfficiency" ; + IFC4-PSD:nameAlias "RendementIsentropique"@fr-FR , "Isentropic Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:MechanicalEfficiency + a rdf:Property ; + rdfs:seeAlso :pea294e00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MechanicalEfficiency . + +:LubricantPumpHeatGain + a rdf:Property ; + rdfs:seeAlso :pfc0af100d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LubricantPumpHeatGain . + +:VolumetricEfficiency + a rdf:Property ; + rdfs:seeAlso :pe4336d00d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VolumetricEfficiency . + +:IsentropicEfficiency + a rdf:Property ; + rdfs:seeAlso :ped243e80d1ca11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsentropicEfficiency . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf0b7c580d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the thermal cooling capacity to electrical input." ; + rdfs:label "CompressorTotalEfficiency" ; + IFC4-PSD:definition "Ratio of the thermal cooling capacity to electrical input." ; + IFC4-PSD:definitionAlias "Rapport entre la puissance frigorifique et l'énergie électrique absorbée."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "f0b7c580d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorTotalEfficiency" ; + IFC4-PSD:nameAlias "Compressor Total Efficiency"@en , "RendementGlobalIsentropique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pdd0c5f00d1ca11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Energy efficiency ratio (EER)." ; + rdfs:label "EnergyEfficiencyRatio" ; + IFC4-PSD:definition "Energy efficiency ratio (EER)." ; + IFC4-PSD:definitionAlias ""@en , "EER, coefficient d'efficacité Thermique"@fr-FR ; + IFC4-PSD:ifdguid "dd0c5f00d1ca11e1800000215ad4efdf" ; + IFC4-PSD:name "EnergyEfficiencyRatio" ; + IFC4-PSD:nameAlias "CoefficientEfficacitéThermique"@fr-FR , "Energy Efficiency Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p05945900d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of actual power to full load power as a quadratic function of part load, at certain condensing and evaporating temperature, FracFullLoadPower = f ( PartLoadRatio)." ; + rdfs:label "FullLoadRatio" ; + IFC4-PSD:definition "Ratio of actual power to full load power as a quadratic function of part load, at certain condensing and evaporating temperature, FracFullLoadPower = f ( PartLoadRatio)." ; + IFC4-PSD:definitionAlias ""@en , "Rapport entre puissance actuelle sur la puissance à pleine charge, comme fonction quadratique de la charge partielle, à une température de condensation et une température d'évaporation donnée, FracFullLoadPower = f (RapportChargePartielle)."@fr-FR ; + IFC4-PSD:ifdguid "05945900d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "FullLoadRatio" ; + IFC4-PSD:nameAlias "Full Load Ratio"@en , "CoefficientChargeTotale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_CompressorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CompressorTypeCommon.ttl new file mode 100644 index 00000000..b948ec30 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CompressorTypeCommon.ttl @@ -0,0 +1,231 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p278ddb80d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of power driving the compressor." ; + rdfs:label "PowerSource" ; + IFC4-PSD:definition "Type of power driving the compressor." ; + IFC4-PSD:definitionAlias "Type de puissance fournie au compresseur"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "278ddb80d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "PowerSource" ; + IFC4-PSD:nameAlias "SourcePuissance"@fr-FR , "Power Source"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MOTORDRIVEN" , "ENGINEDRIVEN" , "GASTURBINE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p5310c600d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum part load ratio as a fraction of nominal capacity." ; + rdfs:label "MaximumPartLoadRatio" ; + IFC4-PSD:definition "Maximum part load ratio as a fraction of nominal capacity." ; + IFC4-PSD:definitionAlias "Coefficient maximal de charge partielle en tant que fraction de la puissance nominale."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "5310c600d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPartLoadRatio" ; + IFC4-PSD:nameAlias "CoefficientMaximalChargePartielle"@fr-FR , "Maximum Part Load Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_CompressorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Compressor type common attributes." ; + rdfs:label "Pset_CompressorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCompressor ; + IFC4-PSD:applicableTypeValue "IfcCompressor" ; + IFC4-PSD:definition "Compressor type common attributes." ; + IFC4-PSD:definitionAlias "コンプレッサー型の共通プロパティ属性設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CompressorTypeCommon" ; + IFC4-PSD:propertyDef :p5dcb5b00d1cb11e1800000215ad4efdf , :p36748e00d1cb11e1800000215ad4efdf , :p6b80e080d1cb11e1800000215ad4efdf , :p70de2b00d1cb11e1800000215ad4efdf , :p4db37b80d1cb11e1800000215ad4efdf , :p0fb65780d1cb11e1800000215ad4efdf , :p1513a200d1cb11e1800000215ad4efdf , :p278ddb80d1cb11e1800000215ad4efdf , :p6459d280d1cb11e1800000215ad4efdf , :p76d40c00d1cb11e1800000215ad4efdf , :p5310c600d1cb11e1800000215ad4efdf , :p57d57a00d1cb11e1800000215ad4efdf . + +:p76d40c00d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diameter of compressor impeller - used to scale performance of geometrically similar compressors." ; + rdfs:label "ImpellerDiameter" ; + IFC4-PSD:definition "Diameter of compressor impeller - used to scale performance of geometrically similar compressors." ; + IFC4-PSD:definitionAlias ""@en , "Diamètre du rotor du compresseur - utilisé pour dimensionner les performances des compresseurs géométriquement similaires."@fr-FR ; + IFC4-PSD:ifdguid "76d40c00d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "ImpellerDiameter" ; + IFC4-PSD:nameAlias "DiametreRotor"@fr-FR , "Impeller Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0fb65780d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Identification de référence pour ce type spécifique à ce projet, c'est-à-dire type'A-1', fourni à partir du moment où, s'il n'y a pas de référence de classification par rapport à un système de classification reconnu et en usage."@fr-FR ; + IFC4-PSD:ifdguid "0fb65780d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP , "Référence"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:RefrigerantClass a rdf:Property ; + rdfs:seeAlso :p36748e00d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefrigerantClass . + +:IdealCapacity a rdf:Property ; + rdfs:seeAlso :p6459d280d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IdealCapacity . + +:p36748e00d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Refrigerant class used by the compressor.\n\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + rdfs:label "RefrigerantClass" ; + IFC4-PSD:definition "Refrigerant class used by the compressor.\n\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + IFC4-PSD:definitionAlias "Classe de réfrigérant utilisé par le compresseur.\n\nCFC\nHCFC\nHFC"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "36748e00d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "RefrigerantClass" ; + IFC4-PSD:nameAlias "ClasseRéfrigérant"@fr-FR , "Refrigerant Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AMMONIA" , "HFC" , "HYDROCARBONS" , "CO2" , "UNSET" , "CFC" , "H2O" , "OTHER" , "HCFC" , "NOTKNOWN" + ] . + +:MaximumPartLoadRatio + a rdf:Property ; + rdfs:seeAlso :p5310c600d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPartLoadRatio . + +:p57d57a00d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Compressor speed." ; + rdfs:label "CompressorSpeed" ; + IFC4-PSD:definition "Compressor speed." ; + IFC4-PSD:definitionAlias "Vitesse du compresseur"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "57d57a00d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorSpeed" ; + IFC4-PSD:nameAlias "Compressor Speed"@en , "VitesseCompresseur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRotationalFrequencyMeasure + ] . + +:IdealShaftPower a rdf:Property ; + rdfs:seeAlso :p6b80e080d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IdealShaftPower . + +:CompressorSpeed a rdf:Property ; + rdfs:seeAlso :p57d57a00d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorSpeed . + +:ImpellerDiameter a rdf:Property ; + rdfs:seeAlso :p76d40c00d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ImpellerDiameter . + +:NominalCapacity a rdf:Property ; + rdfs:seeAlso :p5dcb5b00d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCapacity . + +:p6459d280d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Compressor capacity under ideal conditions." ; + rdfs:label "IdealCapacity" ; + IFC4-PSD:definition "Compressor capacity under ideal conditions." ; + IFC4-PSD:definitionAlias "Puissance maximale sous des conditions idéales"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "6459d280d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "IdealCapacity" ; + IFC4-PSD:nameAlias "Ideal Capacity"@en , "PuissanceMaximale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p4db37b80d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum part load ratio as a fraction of nominal capacity." ; + rdfs:label "MinimumPartLoadRatio" ; + IFC4-PSD:definition "Minimum part load ratio as a fraction of nominal capacity." ; + IFC4-PSD:definitionAlias "Coefficient minimum de charge partielle en tant que fraction de la puissance nominale."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "4db37b80d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumPartLoadRatio" ; + IFC4-PSD:nameAlias "CoefficientMinimalChargePartielle"@fr-FR , "Minimum Part Load Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:MinimumPartLoadRatio + a rdf:Property ; + rdfs:seeAlso :p4db37b80d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumPartLoadRatio . + +:Status a rdf:Property ; + rdfs:seeAlso :p1513a200d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p6b80e080d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Compressor shaft power under ideal conditions." ; + rdfs:label "IdealShaftPower" ; + IFC4-PSD:definition "Compressor shaft power under ideal conditions." ; + IFC4-PSD:definitionAlias "Puissance au niveau de l'arbre du compresseur sous conditions idéales."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "6b80e080d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "IdealShaftPower" ; + IFC4-PSD:nameAlias "PuissanceArbreMaximale"@fr-FR , "Ideal Shaft Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:HasHotGasBypass a rdf:Property ; + rdfs:seeAlso :p70de2b00d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasHotGasBypass . + +:p1513a200d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "Etat de l'élément, utilisé avant tout pour les projets de rénovation et réaménagement. L'état assigné peut être \"Nouveau\" - l'élément prévu pour du neuf, \"Existant\" - l'élément existait et est maintenu, \"Démoli\" - l'élément existait mais doit être démoli/supprimé, \"Provisoire\" - l'élément existera à titre provisoire seulement (comme un support structurel par exemple)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "1513a200d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Etat"@fr-FR , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5dcb5b00d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Compressor nameplate capacity." ; + rdfs:label "NominalCapacity" ; + IFC4-PSD:definition "Compressor nameplate capacity." ; + IFC4-PSD:definitionAlias ""@en , "Puissance du compresseur au niveau de sa plaque."@fr-FR ; + IFC4-PSD:ifdguid "5dcb5b00d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCapacity" ; + IFC4-PSD:nameAlias "PuissanceCompresseur"@fr-FR , "Nominal Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p70de2b00d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Whether or not hot gas bypass is provided for the compressor. TRUE = Yes, FALSE = No." ; + rdfs:label "HasHotGasBypass" ; + IFC4-PSD:definition "Whether or not hot gas bypass is provided for the compressor. TRUE = Yes, FALSE = No." ; + IFC4-PSD:definitionAlias "Qu'il y ait ou non un bypass du gaz chaud fourni au niveau du compresseur, VRAI= oui, FAUX= Non."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "70de2b00d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "HasHotGasBypass" ; + IFC4-PSD:nameAlias "Has Hot Gas Bypass"@en , "PossedeBypassGazChaud"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p0fb65780d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:PowerSource a rdf:Property ; + rdfs:seeAlso :p278ddb80d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerSource . diff --git a/converter/src/main/resources/pset/Pset_ConcreteElementGeneral.ttl b/converter/src/main/resources/pset/Pset_ConcreteElementGeneral.ttl index f55e930f..257bd81f 100644 --- a/converter/src/main/resources/pset/Pset_ConcreteElementGeneral.ttl +++ b/converter/src/main/resources/pset/Pset_ConcreteElementGeneral.ttl @@ -1,199 +1,236 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_ConcreteElementGeneral -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pb88ca2252c4b4014bcf289bbbd596398 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification of the reinforcement strength in accordance with the concrete design code which is applied in the project. The reinforcing strength class often combines strength and ductility." ; + rdfs:label "ReinforcementStrengthClass" ; + IFC4-PSD:definition "Classification of the reinforcement strength in accordance with the concrete design code which is applied in the project. The reinforcing strength class often combines strength and ductility." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b88ca2252c4b4014bcf289bbbd596398" ; + IFC4-PSD:name "ReinforcementStrengthClass" ; + IFC4-PSD:nameAlias "Reinforcement Strength Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:DimensionalAccuracyClass + a rdf:Property ; + rdfs:seeAlso :pa4b95080d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DimensionalAccuracyClass . + +:ConcreteCoverAtMainBars + a rdf:Property ; + rdfs:seeAlso :pb8fd4d80d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConcreteCoverAtMainBars . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0764b8e36a7c4275859f1534ea3eec09 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The protective concrete cover at the reinforcing bars according to local building regulations." ; + rdfs:label "ConcreteCover" ; + IFC4-PSD:definition "The protective concrete cover at the reinforcing bars according to local building regulations." ; + IFC4-PSD:definitionAlias "Abstand zwischen der Betonoberfläche und der Außenkante einer vom Beton umhüllten Bewehrung."@de-DE , ""@en ; + IFC4-PSD:ifdguid "0764b8e36a7c4275859f1534ea3eec09" ; + IFC4-PSD:name "ConcreteCover" ; + IFC4-PSD:nameAlias "Concrete Cover"@en , "Betonüberdeckung"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p96390dc443fd41d88cb6aca86dce4993 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification of the concrete strength in accordance with the concrete design code which is applied in the project." ; + rdfs:label "StrengthClass" ; + IFC4-PSD:definition "Classification of the concrete strength in accordance with the concrete design code which is applied in the project." ; + IFC4-PSD:definitionAlias ""@en , "Klassifikation der Betonfestigkeit gemäß der aktuellen, im Projekt angewandten, Norm."@de-DE ; + IFC4-PSD:ifdguid "96390dc443fd41d88cb6aca86dce4993" ; + IFC4-PSD:name "StrengthClass" ; + IFC4-PSD:nameAlias "Strength Class"@en , "Betonfestigkeitsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ReinforcementVolumeRatio + a rdf:Property ; + rdfs:seeAlso :pa1c0e785c9bc41878ddbc67fd0ff3d26 ; + rdfs:subPropertyOf IFC4-PSD:ReinforcementVolumeRatio . + +:p9bee0bf72ad34a66bef57b71b7ca175b + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification of exposure to environmental conditions, usually specified in accordance with the concrete design code which is applied in the project." ; + rdfs:label "ExposureClass" ; + IFC4-PSD:definition "Classification of exposure to environmental conditions, usually specified in accordance with the concrete design code which is applied in the project." ; + IFC4-PSD:definitionAlias ""@en , "Klassifikation der Widerstandsfähigkeit gegenüber chemischen und physikalischen Einwirkungen gemäß der aktuellen, im Projekt angewandten, Norm."@de-DE ; + IFC4-PSD:ifdguid "9bee0bf72ad34a66bef57b71b7ca175b" ; + IFC4-PSD:name "ExposureClass" ; + IFC4-PSD:nameAlias "Exposure Class"@en , "Expositionsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + :Pset_ConcreteElementGeneral - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcBuildingElement ; - IFC4-PSD:applicableTypeValue "IfcBuildingElement" ; - IFC4-PSD:definition "General properties common to different types of concrete elements, including reinforced concrete elements. The property set can be used by a number of subtypes of IfcBuildingElement, indicated that such element is designed or constructed using a concrete construction method." ; - IFC4-PSD:definitionAlias "Generelle Eigenschaften die allen Betonbauteilen, einschließlich Stahlbetonbauteilen, gemeinsam sind. Dieser Eigenschaftssatz kann den verschiedenen Bauelementklassen (Subtypen von IfcBuildingElement) zugeordnet werden."@de ; - IFC4-PSD:definitionAlias "コンクリート要素の異なるタイプに対する共通の一般的な属性。 Pset は IfcBuildingElement の多くのサブタイプによって使うことができる。"@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_ConcreteElementGeneral" ; - IFC4-PSD:propertyDef :_036938642cbf49e2a90d346134ac7475 ; - IFC4-PSD:propertyDef :_0764b8e36a7c4275859f1534ea3eec09 ; - IFC4-PSD:propertyDef :_64af56b30b4540c2b43d74b49a28b9db ; - IFC4-PSD:propertyDef :_84899180d1cb11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_96390dc443fd41d88cb6aca86dce4993 ; - IFC4-PSD:propertyDef :_9bee0bf72ad34a66bef57b71b7ca175b ; - IFC4-PSD:propertyDef :_a1c0e785c9bc41878ddbc67fd0ff3d26 ; - IFC4-PSD:propertyDef :_a4b95080d1cb11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_abe05e80d1cb11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b88ca2252c4b4014bcf289bbbd596398 ; - IFC4-PSD:propertyDef :_b8fd4d80d1cb11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_bef32e80d1cb11e1800000215ad4efdf ; -. -:_036938642cbf49e2a90d346134ac7475 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The required ratio of the effective area of the reinforcement to the effective area of the concrete At any section of a reinforced concrete structural element." ; - IFC4-PSD:definitionAlias "Das geforderte Verhältnis der effektiven flächenbezogenen Masse der Bewehrung im Verhältnis zur effektiven Fläche des Betons für dieses Element."@de-DE ; - IFC4-PSD:ifdguid "036938642cbf49e2a90d346134ac7475" ; - IFC4-PSD:name "ReinforcementAreaRatio" ; - IFC4-PSD:nameAlias "Bewehrungsgrad Fläche"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcAreaDensityMeasure ; - ] ; -. -:_0764b8e36a7c4275859f1534ea3eec09 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The protective concrete cover at the reinforcing bars according to local building regulations." ; - IFC4-PSD:definitionAlias "Abstand zwischen der Betonoberfläche und der Außenkante einer vom Beton umhüllten Bewehrung."@de-DE ; - IFC4-PSD:ifdguid "0764b8e36a7c4275859f1534ea3eec09" ; - IFC4-PSD:name "ConcreteCover" ; - IFC4-PSD:nameAlias "Betonüberdeckung"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_64af56b30b4540c2b43d74b49a28b9db - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Designator for whether the concrete element is constructed on site or prefabricated. Allowed values are: 'In-Situ' vs 'Precast'." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Betonbauteil als Ortbeton (\"In-Situ\") oder als Fertigteil (\"Precast\") ausgeführt werden soll."@de-DE ; - IFC4-PSD:ifdguid "64af56b30b4540c2b43d74b49a28b9db" ; - IFC4-PSD:name "ConstructionMethod" ; - IFC4-PSD:nameAlias "Ausführung"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_84899180d1cb11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The structural class defined for the concrete structure (e.g. '1')." ; - IFC4-PSD:definitionAlias "構造クラスはコンクリート構造を定義した。(例えば「1」)"@ja-JP ; - IFC4-PSD:definitionAlias "구조 클래스는 콘크리트 구조를 정의했다 (예를 들어 \"1\")"@ko-KR ; - IFC4-PSD:ifdguid "84899180d1cb11e1800000215ad4efdf" ; - IFC4-PSD:name "StructuralClass" ; - IFC4-PSD:nameAlias "構造クラス"@ja-JP ; - IFC4-PSD:nameAlias "구조 클래스"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_96390dc443fd41d88cb6aca86dce4993 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification of the concrete strength in accordance with the concrete design code which is applied in the project." ; - IFC4-PSD:definitionAlias "Klassifikation der Betonfestigkeit gemäß der aktuellen, im Projekt angewandten, Norm."@de-DE ; - IFC4-PSD:ifdguid "96390dc443fd41d88cb6aca86dce4993" ; - IFC4-PSD:name "StrengthClass" ; - IFC4-PSD:nameAlias "Betonfestigkeitsklasse"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_9bee0bf72ad34a66bef57b71b7ca175b - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification of exposure to environmental conditions, usually specified in accordance with the concrete design code which is applied in the project." ; - IFC4-PSD:definitionAlias "Klassifikation der Widerstandsfähigkeit gegenüber chemischen und physikalischen Einwirkungen gemäß der aktuellen, im Projekt angewandten, Norm."@de-DE ; - IFC4-PSD:ifdguid "9bee0bf72ad34a66bef57b71b7ca175b" ; - IFC4-PSD:name "ExposureClass" ; - IFC4-PSD:nameAlias "Expositionsklasse"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_a1c0e785c9bc41878ddbc67fd0ff3d26 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The required ratio of the effective mass of the reinforcement to the effective volume of the concrete of a reinforced concrete structural element." ; - IFC4-PSD:definitionAlias "Das geforderte Verhältnis der effektiven Masse der Bewehrung im Verhältnis zur effektiven Masse des Betons für dieses Element."@de-DE ; - IFC4-PSD:ifdguid "a1c0e785c9bc41878ddbc67fd0ff3d26" ; - IFC4-PSD:name "ReinforcementVolumeRatio" ; - IFC4-PSD:nameAlias "Bewehrungsgrad Volumen"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassDensityMeasure ; - ] ; -. -:_a4b95080d1cb11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification designation of the dimensional accuracy requirement according to local standards." ; - IFC4-PSD:definitionAlias "国の基準が求める寸法精度の分類指定。"@ja-JP ; - IFC4-PSD:definitionAlias "국가 표준이 요구하는 치수 정밀도의 분류 지정"@ko-KR ; - IFC4-PSD:ifdguid "a4b95080d1cb11e1800000215ad4efdf" ; - IFC4-PSD:name "DimensionalAccuracyClass" ; - IFC4-PSD:nameAlias "寸法精度クラス"@ja-JP ; - IFC4-PSD:nameAlias "치수 정밀도 클래스"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_abe05e80d1cb11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification designation of the on-site construction tolerances according to local standards." ; - IFC4-PSD:definitionAlias "国の基準が求める現場での製造許容の分類指定。"@ja-JP ; - IFC4-PSD:definitionAlias "국가 표준이 요구하는 현장에서 제조 허용 범주 지정"@ko-KR ; - IFC4-PSD:ifdguid "abe05e80d1cb11e1800000215ad4efdf" ; - IFC4-PSD:name "ConstructionToleranceClass" ; - IFC4-PSD:nameAlias "製造許容クラス"@ja-JP ; - IFC4-PSD:nameAlias "제조 허용 클래스"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_b88ca2252c4b4014bcf289bbbd596398 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification of the reinforcement strength in accordance with the concrete design code which is applied in the project. The reinforcing strength class often combines strength and ductility." ; - IFC4-PSD:ifdguid "b88ca2252c4b4014bcf289bbbd596398" ; - IFC4-PSD:name "ReinforcementStrengthClass" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_b8fd4d80d1cb11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The protective concrete cover at the main reinforcing bars according to local building regulations." ; - IFC4-PSD:definitionAlias "Abstand zwischen der Betonoberfläche und der Außenkante den vom Beton umhüllten Bewehrungshauptstäben."@de-DE ; - IFC4-PSD:definitionAlias "国の建築基準に従い、主鉄筋をコンクリートの被りで保護する。"@ja-JP ; - IFC4-PSD:definitionAlias "국가의 건축 기준에 따라 주로 철근을 콘크리트 입고로 보호"@ko-KR ; - IFC4-PSD:ifdguid "b8fd4d80d1cb11e1800000215ad4efdf" ; - IFC4-PSD:name "ConcreteCoverAtMainBars" ; - IFC4-PSD:nameAlias "Betonüberdeckung Hauptstäbe"@de-DE ; - IFC4-PSD:nameAlias "主筋のコンクリート被り"@ja-JP ; - IFC4-PSD:nameAlias "주근 콘크리트 입고"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_bef32e80d1cb11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The protective concrete cover at the reinforcement links according to local building regulations." ; - IFC4-PSD:definitionAlias "Abstand zwischen der Betonoberfläche und der Außenkante der vom Beton umhüllten Bewehrungsverbindungsstäben."@de-DE ; - IFC4-PSD:definitionAlias "国の建築基準に従い、補強筋をコンクリートの被りで保護する。"@ja-JP ; - IFC4-PSD:definitionAlias "국가의 건축 기준에 따라 보강근 콘크리트의 입고로 보호"@ko-KR ; - IFC4-PSD:ifdguid "bef32e80d1cb11e1800000215ad4efdf" ; - IFC4-PSD:name "ConcreteCoverAtLinks" ; - IFC4-PSD:nameAlias "Betonüberdeckung Verbindungsstäbe"@de-DE ; - IFC4-PSD:nameAlias "補強筋のコンクリート被り"@ja-JP ; - IFC4-PSD:nameAlias "보강근 콘크리트 입고"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "General properties common to different types of concrete elements, including reinforced concrete elements. The property set can be used by a number of subtypes of IfcBuildingElement, indicated that such element is designed or constructed using a concrete construction method." ; + rdfs:label "Pset_ConcreteElementGeneral" ; + IFC4-PSD:applicableClass IFC4:IfcMember , IFC4:IfcWall , IFC4:IfcChimney , IFC4:IfcRampFlight , IFC4:IfcRailing , IFC4:IfcCivilElement , IFC4:IfcPlate , IFC4:IfcRamp , IFC4:IfcRoof , IFC4:IfcColumn , IFC4:IfcStair , IFC4:IfcStairFlight , IFC4:IfcSlab , IFC4:IfcBuildingElementProxy , IFC4:IfcPile , IFC4:IfcBeam , IFC4:IfcFooting ; + IFC4-PSD:applicableTypeValue "IfcBeam,IfcBuildingElementProxy,IfcChimney,IfcColumn,IfcFooting,IfcMember,IfcPile,IfcPlate,IfcRailing,IfcRamp,IfcRampFlight,IfcRoof,IfcSlab,IfcStair,IfcStairFlight,IfcWall,IfcCivilElement" ; + IFC4-PSD:definition "General properties common to different types of concrete elements, including reinforced concrete elements. The property set can be used by a number of subtypes of IfcBuildingElement, indicated that such element is designed or constructed using a concrete construction method." ; + IFC4-PSD:definitionAlias "コンクリート要素の異なるタイプに対する共通の一般的な属性。 Pset は IfcBuildingElement の多くのサブタイプによって使うことができる。"@ja-JP , ""@en , "Generelle Eigenschaften die allen Betonbauteilen, einschließlich Stahlbetonbauteilen, gemeinsam sind. Dieser Eigenschaftssatz kann den verschiedenen Bauelementklassen (Subtypen von IfcBuildingElement) zugeordnet werden."@de ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ConcreteElementGeneral" ; + IFC4-PSD:propertyDef :pb88ca2252c4b4014bcf289bbbd596398 , :pb8fd4d80d1cb11e1800000215ad4efdf , :p0764b8e36a7c4275859f1534ea3eec09 , :pabe05e80d1cb11e1800000215ad4efdf , :pbef32e80d1cb11e1800000215ad4efdf , :p9bee0bf72ad34a66bef57b71b7ca175b , :pa4b95080d1cb11e1800000215ad4efdf , :p84899180d1cb11e1800000215ad4efdf , :p64af56b30b4540c2b43d74b49a28b9db , :p036938642cbf49e2a90d346134ac7475 , :p96390dc443fd41d88cb6aca86dce4993 , :pa1c0e785c9bc41878ddbc67fd0ff3d26 . + +:pa4b95080d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification designation of the dimensional accuracy requirement according to local standards." ; + rdfs:label "DimensionalAccuracyClass" ; + IFC4-PSD:definition "Classification designation of the dimensional accuracy requirement according to local standards." ; + IFC4-PSD:definitionAlias "국가 표준이 요구하는 치수 정밀도의 분류 지정"@ko-KR , "国の基準が求める寸法精度の分類指定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a4b95080d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "DimensionalAccuracyClass" ; + IFC4-PSD:nameAlias "Dimensional Accuracy Class"@en , "寸法精度クラス"@ja-JP , "치수 정밀도 클래스"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ReinforcementAreaRatio + a rdf:Property ; + rdfs:seeAlso :p036938642cbf49e2a90d346134ac7475 ; + rdfs:subPropertyOf IFC4-PSD:ReinforcementAreaRatio . + +:pabe05e80d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification designation of the on-site construction tolerances according to local standards." ; + rdfs:label "ConstructionToleranceClass" ; + IFC4-PSD:definition "Classification designation of the on-site construction tolerances according to local standards." ; + IFC4-PSD:definitionAlias "国の基準が求める現場での製造許容の分類指定。"@ja-JP , "국가 표준이 요구하는 현장에서 제조 허용 범주 지정"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "abe05e80d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "ConstructionToleranceClass" ; + IFC4-PSD:nameAlias "製造許容クラス"@ja-JP , "제조 허용 클래스"@ko-KR , "Construction Tolerance Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p036938642cbf49e2a90d346134ac7475 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The required ratio of the effective area of the reinforcement to the effective area of the concrete At any section of a reinforced concrete structural element." ; + rdfs:label "ReinforcementAreaRatio" ; + IFC4-PSD:definition "The required ratio of the effective area of the reinforcement to the effective area of the concrete At any section of a reinforced concrete structural element." ; + IFC4-PSD:definitionAlias ""@en , "Das geforderte Verhältnis der effektiven flächenbezogenen Masse der Bewehrung im Verhältnis zur effektiven Fläche des Betons für dieses Element."@de-DE ; + IFC4-PSD:ifdguid "036938642cbf49e2a90d346134ac7475" ; + IFC4-PSD:name "ReinforcementAreaRatio" ; + IFC4-PSD:nameAlias "Reinforcement Area Ratio"@en , "Bewehrungsgrad Fläche"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaDensityMeasure + ] . + +:p64af56b30b4540c2b43d74b49a28b9db + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designator for whether the concrete element is constructed on site or prefabricated. Allowed values are: 'In-Situ' vs 'Precast'." ; + rdfs:label "ConstructionMethod" ; + IFC4-PSD:definition "Designator for whether the concrete element is constructed on site or prefabricated. Allowed values are: 'In-Situ' vs 'Precast'." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Betonbauteil als Ortbeton (\"In-Situ\") oder als Fertigteil (\"Precast\") ausgeführt werden soll."@de-DE , ""@en ; + IFC4-PSD:ifdguid "64af56b30b4540c2b43d74b49a28b9db" ; + IFC4-PSD:name "ConstructionMethod" ; + IFC4-PSD:nameAlias "Construction Method"@en , "Ausführung"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ConcreteCoverAtLinks + a rdf:Property ; + rdfs:seeAlso :pbef32e80d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConcreteCoverAtLinks . + +:pb8fd4d80d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The protective concrete cover at the main reinforcing bars according to local building regulations." ; + rdfs:label "ConcreteCoverAtMainBars" ; + IFC4-PSD:definition "The protective concrete cover at the main reinforcing bars according to local building regulations." ; + IFC4-PSD:definitionAlias "国の建築基準に従い、主鉄筋をコンクリートの被りで保護する。"@ja-JP , ""@en , "Abstand zwischen der Betonoberfläche und der Außenkante den vom Beton umhüllten Bewehrungshauptstäben."@de-DE , "국가의 건축 기준에 따라 주로 철근을 콘크리트 입고로 보호"@ko-KR ; + IFC4-PSD:ifdguid "b8fd4d80d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "ConcreteCoverAtMainBars" ; + IFC4-PSD:nameAlias "주근 콘크리트 입고"@ko-KR , "Concrete Cover At Main Bars"@en , "Betonüberdeckung Hauptstäbe"@de-DE , "主筋のコンクリート被り"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ExposureClass a rdf:Property ; + rdfs:seeAlso :p9bee0bf72ad34a66bef57b71b7ca175b ; + rdfs:subPropertyOf IFC4-PSD:ExposureClass . + +:ReinforcementStrengthClass + a rdf:Property ; + rdfs:seeAlso :pb88ca2252c4b4014bcf289bbbd596398 ; + rdfs:subPropertyOf IFC4-PSD:ReinforcementStrengthClass . + +:StrengthClass a rdf:Property ; + rdfs:seeAlso :p96390dc443fd41d88cb6aca86dce4993 ; + rdfs:subPropertyOf IFC4-PSD:StrengthClass . + +:ConcreteCover a rdf:Property ; + rdfs:seeAlso :p0764b8e36a7c4275859f1534ea3eec09 ; + rdfs:subPropertyOf IFC4-PSD:ConcreteCover . + +:pa1c0e785c9bc41878ddbc67fd0ff3d26 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The required ratio of the effective mass of the reinforcement to the effective volume of the concrete of a reinforced concrete structural element." ; + rdfs:label "ReinforcementVolumeRatio" ; + IFC4-PSD:definition "The required ratio of the effective mass of the reinforcement to the effective volume of the concrete of a reinforced concrete structural element." ; + IFC4-PSD:definitionAlias ""@en , "Das geforderte Verhältnis der effektiven Masse der Bewehrung im Verhältnis zur effektiven Masse des Betons für dieses Element."@de-DE ; + IFC4-PSD:ifdguid "a1c0e785c9bc41878ddbc67fd0ff3d26" ; + IFC4-PSD:name "ReinforcementVolumeRatio" ; + IFC4-PSD:nameAlias "Bewehrungsgrad Volumen"@de-DE , "Reinforcement Volume Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassDensityMeasure + ] . + +:pbef32e80d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The protective concrete cover at the reinforcement links according to local building regulations." ; + rdfs:label "ConcreteCoverAtLinks" ; + IFC4-PSD:definition "The protective concrete cover at the reinforcement links according to local building regulations." ; + IFC4-PSD:definitionAlias ""@en , "Abstand zwischen der Betonoberfläche und der Außenkante der vom Beton umhüllten Bewehrungsverbindungsstäben."@de-DE , "国の建築基準に従い、補強筋をコンクリートの被りで保護する。"@ja-JP , "국가의 건축 기준에 따라 보강근 콘크리트의 입고로 보호"@ko-KR ; + IFC4-PSD:ifdguid "bef32e80d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "ConcreteCoverAtLinks" ; + IFC4-PSD:nameAlias "補強筋のコンクリート被り"@ja-JP , "Concrete Cover At Links"@en , "Betonüberdeckung Verbindungsstäbe"@de-DE , "보강근 콘크리트 입고"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:StructuralClass a rdf:Property ; + rdfs:seeAlso :p84899180d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StructuralClass . + +:p84899180d1cb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The structural class defined for the concrete structure (e.g. '1')." ; + rdfs:label "StructuralClass" ; + IFC4-PSD:definition "The structural class defined for the concrete structure (e.g. '1')." ; + IFC4-PSD:definitionAlias "구조 클래스는 콘크리트 구조를 정의했다 (예를 들어 \"1\")"@ko-KR , "構造クラスはコンクリート構造を定義した。(例えば「1」)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "84899180d1cb11e1800000215ad4efdf" ; + IFC4-PSD:name "StructuralClass" ; + IFC4-PSD:nameAlias "構造クラス"@ja-JP , "Structural Class"@en , "구조 클래스"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ConstructionToleranceClass + a rdf:Property ; + rdfs:seeAlso :pabe05e80d1cb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConstructionToleranceClass . + +:ConstructionMethod a rdf:Property ; + rdfs:seeAlso :p64af56b30b4540c2b43d74b49a28b9db ; + rdfs:subPropertyOf IFC4-PSD:ConstructionMethod . diff --git a/converter/src/main/resources/pset/Pset_CondenserPHistory.ttl b/converter/src/main/resources/pset/Pset_CondenserPHistory.ttl new file mode 100644 index 00000000..5748d0b6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CondenserPHistory.ttl @@ -0,0 +1,221 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:WaterFoulingResistance + a rdf:Property ; + rdfs:seeAlso :p84d65c80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterFoulingResistance . + +:p640e0700d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Exterior heat transfer coefficient associated with exterior surface area." ; + rdfs:label "ExteriorHeatTransferCoefficient" ; + IFC4-PSD:definition "Exterior heat transfer coefficient associated with exterior surface area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "640e0700d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ExteriorHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "Exterior Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CompressorCondenserHeatGain + a rdf:Property ; + rdfs:seeAlso :p7a1bc780d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorCondenserHeatGain . + +:UAcurves a rdf:Property ; + rdfs:seeAlso :p76884080d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UAcurves . + +:Pset_CondenserPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Condenser performance history attributes." ; + rdfs:label "Pset_CondenserPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCondenser ; + IFC4-PSD:applicableTypeValue "IfcCondenser" ; + IFC4-PSD:definition "Condenser performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CondenserPHistory" ; + IFC4-PSD:propertyDef :p6ec89c00d1cc11e1800000215ad4efdf , :p5fe1e980d1cc11e1800000215ad4efdf , :p7a1bc780d1cc11e1800000215ad4efdf , :p67a18e00d1cc11e1800000215ad4efdf , :p7daf4e80d1cc11e1800000215ad4efdf , :p6bcdab80d1cc11e1800000215ad4efdf , :p8142d580d1cc11e1800000215ad4efdf , :p84d65c80d1cc11e1800000215ad4efdf , :p76884080d1cc11e1800000215ad4efdf , :p72f4b980d1cc11e1800000215ad4efdf , :p640e0700d1cc11e1800000215ad4efdf . + +:p76884080d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "UV = f (VExterior, VInterior), UV as a function of interior and exterior fluid flow velocity at the entrance." ; + rdfs:label "UAcurves" ; + IFC4-PSD:definition "UV = f (VExterior, VInterior), UV as a function of interior and exterior fluid flow velocity at the entrance." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "76884080d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "UAcurves" ; + IFC4-PSD:nameAlias "UAcurves"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p6ec89c00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Refrigerant condensing temperature." ; + rdfs:label "CondensingTemperature" ; + IFC4-PSD:definition "Refrigerant condensing temperature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6ec89c00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "CondensingTemperature" ; + IFC4-PSD:nameAlias "Condensing Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p6bcdab80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fouling resistance on the refrigerant side." ; + rdfs:label "RefrigerantFoulingResistance" ; + IFC4-PSD:definition "Fouling resistance on the refrigerant side." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6bcdab80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "RefrigerantFoulingResistance" ; + IFC4-PSD:nameAlias "Refrigerant Fouling Resistance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p67a18e00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Interior heat transfer coefficient associated with interior surface area." ; + rdfs:label "InteriorHeatTransferCoefficient" ; + IFC4-PSD:definition "Interior heat transfer coefficient associated with interior surface area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "67a18e00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "Interior Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:InteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :p67a18e00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorHeatTransferCoefficient . + +:p7daf4e80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure drop between condenser inlet and compressor outlet." ; + rdfs:label "CompressorCondenserPressureDrop" ; + IFC4-PSD:definition "Pressure drop between condenser inlet and compressor outlet." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7daf4e80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorCondenserPressureDrop" ; + IFC4-PSD:nameAlias "Compressor Condenser Pressure Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p84d65c80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fouling resistance on water/air side." ; + rdfs:label "WaterFoulingResistance" ; + IFC4-PSD:definition "Fouling resistance on water/air side." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "84d65c80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterFoulingResistance" ; + IFC4-PSD:nameAlias "Water Fouling Resistance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:HeatRejectionRate a rdf:Property ; + rdfs:seeAlso :p5fe1e980d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatRejectionRate . + +:CondenserMeanVoidFraction + a rdf:Property ; + rdfs:seeAlso :p8142d580d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CondenserMeanVoidFraction . + +:p5fe1e980d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + rdfs:label "HeatRejectionRate" ; + IFC4-PSD:definition "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5fe1e980d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatRejectionRate" ; + IFC4-PSD:nameAlias "Heat Rejection Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CompressorCondenserPressureDrop + a rdf:Property ; + rdfs:seeAlso :p7daf4e80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorCondenserPressureDrop . + +:p72f4b980d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Logarithmic mean temperature difference between refrigerant and water or air." ; + rdfs:label "LogarithmicMeanTemperatureDifference" ; + IFC4-PSD:definition "Logarithmic mean temperature difference between refrigerant and water or air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "72f4b980d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "LogarithmicMeanTemperatureDifference" ; + IFC4-PSD:nameAlias "Logarithmic Mean Temperature Difference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ExteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :p640e0700d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExteriorHeatTransferCoefficient . + +:CondensingTemperature + a rdf:Property ; + rdfs:seeAlso :p6ec89c00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CondensingTemperature . + +:p8142d580d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mean void fraction in condenser." ; + rdfs:label "CondenserMeanVoidFraction" ; + IFC4-PSD:definition "Mean void fraction in condenser." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8142d580d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "CondenserMeanVoidFraction" ; + IFC4-PSD:nameAlias "Condenser Mean Void Fraction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p7a1bc780d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gain between condenser inlet to compressor outlet." ; + rdfs:label "CompressorCondenserHeatGain" ; + IFC4-PSD:definition "Heat gain between condenser inlet to compressor outlet." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7a1bc780d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorCondenserHeatGain" ; + IFC4-PSD:nameAlias "Compressor Condenser Heat Gain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LogarithmicMeanTemperatureDifference + a rdf:Property ; + rdfs:seeAlso :p72f4b980d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LogarithmicMeanTemperatureDifference . + +:RefrigerantFoulingResistance + a rdf:Property ; + rdfs:seeAlso :p6bcdab80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefrigerantFoulingResistance . diff --git a/converter/src/main/resources/pset/Pset_CondenserTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CondenserTypeCommon.ttl new file mode 100644 index 00000000..ddea5ade --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CondenserTypeCommon.ttl @@ -0,0 +1,177 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:InternalRefrigerantVolume + a rdf:Property ; + rdfs:seeAlso :pbc450900d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalRefrigerantVolume . + +:pc6670780d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal heat transfer surface area associated with nominal overall heat transfer coefficient." ; + rdfs:label "NominalHeatTransferArea" ; + IFC4-PSD:definition "Nominal heat transfer surface area associated with nominal overall heat transfer coefficient." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c6670780d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatTransferArea" ; + IFC4-PSD:nameAlias "Nominal Heat Transfer Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pbc450900d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal volume of condenser (refrigerant side)." ; + rdfs:label "InternalRefrigerantVolume" ; + IFC4-PSD:definition "Internal volume of condenser (refrigerant side)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bc450900d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "InternalRefrigerantVolume" ; + IFC4-PSD:nameAlias "Internal Refrigerant Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pd296b7a0f2bb4e309010357681bd4adc ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:InternalWaterVolume a rdf:Property ; + rdfs:seeAlso :pc1a25380d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalWaterVolume . + +:Reference a rdf:Property ; + rdfs:seeAlso :p8f90f180d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pb6e7be80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal surface area." ; + rdfs:label "InternalSurfaceArea" ; + IFC4-PSD:definition "Internal surface area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b6e7be80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "InternalSurfaceArea" ; + IFC4-PSD:nameAlias "Internal Surface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p94ee3c00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Refrigerant class used by the condenser.\n\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + rdfs:label "RefrigerantClass" ; + IFC4-PSD:definition "Refrigerant class used by the condenser.\n\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "94ee3c00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "RefrigerantClass" ; + IFC4-PSD:nameAlias "Refrigerant Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CFC" , "H2O" , "OTHER" , "AMMONIA" , "CO2" , "NOTKNOWN" , "HFC" , "UNSET" , "HYDROCARBONS" , "HCFC" + ] . + +:pc1a25380d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal volume of condenser (water side)." ; + rdfs:label "InternalWaterVolume" ; + IFC4-PSD:definition "Internal volume of condenser (water side)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c1a25380d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "InternalWaterVolume" ; + IFC4-PSD:nameAlias "Internal Water Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:NominalHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :pcbc45200d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatTransferCoefficient . + +:pcbc45200d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal overall heat transfer coefficient associated with nominal heat transfer area." ; + rdfs:label "NominalHeatTransferCoefficient" ; + IFC4-PSD:definition "Nominal overall heat transfer coefficient associated with nominal heat transfer area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cbc45200d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "Nominal Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:ExternalSurfaceArea a rdf:Property ; + rdfs:seeAlso :pb0f1dd80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExternalSurfaceArea . + +:Pset_CondenserTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Condenser type common attributes." ; + rdfs:label "Pset_CondenserTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCondenser ; + IFC4-PSD:applicableTypeValue "IfcCondenser" ; + IFC4-PSD:definition "Condenser type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "コンデンサー型の共通プロパティ属性設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CondenserTypeCommon" ; + IFC4-PSD:propertyDef :pb6e7be80d1cc11e1800000215ad4efdf , :pd296b7a0f2bb4e309010357681bd4adc , :pb0f1dd80d1cc11e1800000215ad4efdf , :pbc450900d1cc11e1800000215ad4efdf , :pc1a25380d1cc11e1800000215ad4efdf , :p94ee3c00d1cc11e1800000215ad4efdf , :pc6670780d1cc11e1800000215ad4efdf , :pcbc45200d1cc11e1800000215ad4efdf , :p8f90f180d1cc11e1800000215ad4efdf . + +:RefrigerantClass a rdf:Property ; + rdfs:seeAlso :p94ee3c00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefrigerantClass . + +:p8f90f180d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8f90f180d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:InternalSurfaceArea a rdf:Property ; + rdfs:seeAlso :pb6e7be80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalSurfaceArea . + +:pd296b7a0f2bb4e309010357681bd4adc + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "d296b7a0f2bb4e309010357681bd4adc" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalHeatTransferArea + a rdf:Property ; + rdfs:seeAlso :pc6670780d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatTransferArea . + +:pb0f1dd80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "External surface area (both primary and secondary area)." ; + rdfs:label "ExternalSurfaceArea" ; + IFC4-PSD:definition "External surface area (both primary and secondary area)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b0f1dd80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ExternalSurfaceArea" ; + IFC4-PSD:nameAlias "External Surface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_Condition.ttl b/converter/src/main/resources/pset/Pset_Condition.ttl new file mode 100644 index 00000000..3e98a5c2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_Condition.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AssessmentCondition a rdf:Property ; + rdfs:seeAlso :pdbdc3180d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssessmentCondition . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AssessmentDescription + a rdf:Property ; + rdfs:seeAlso :pe1397c00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssessmentDescription . + +:Pset_Condition a IFC4-PSD:PropertySetDef ; + rdfs:comment "Determines the state or condition of an element at a particular point in time." ; + rdfs:label "Pset_Condition" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "Determines the state or condition of an element at a particular point in time." ; + IFC4-PSD:definitionAlias "ある時点における、FM要素の状態・状況を規定する属性情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_Condition" ; + IFC4-PSD:propertyDef :pe1397c00d1cc11e1800000215ad4efdf , :pdbdc3180d1cc11e1800000215ad4efdf , :pd7177d80d1cc11e1800000215ad4efdf . + +:AssessmentDate a rdf:Property ; + rdfs:seeAlso :pd7177d80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssessmentDate . + +:pd7177d80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date on which the overall condition is assessed" ; + rdfs:label "AssessmentDate" ; + IFC4-PSD:definition "Date on which the overall condition is assessed" ; + IFC4-PSD:definitionAlias ""@en , "全体状況を評価した日。"@ja-JP ; + IFC4-PSD:ifdguid "d7177d80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "AssessmentDate" ; + IFC4-PSD:nameAlias "評価日"@ja-JP , "Assessment Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + +:pdbdc3180d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall condition of a product based on an assessment of the contributions to the overall condition made by the various criteria considered. The meanings given to the values of assessed condition should be agreed and documented by local agreements. For instance, is overall condition measured on a scale of 1 - 10 or by assigning names such as Good, OK, Poor." ; + rdfs:label "AssessmentCondition" ; + IFC4-PSD:definition "The overall condition of a product based on an assessment of the contributions to the overall condition made by the various criteria considered. The meanings given to the values of assessed condition should be agreed and documented by local agreements. For instance, is overall condition measured on a scale of 1 - 10 or by assigning names such as Good, OK, Poor." ; + IFC4-PSD:definitionAlias ""@en , "様々な基準を用いた評価による製品に関する全体的な状態。評価された状態値の意味は、ローカル協定によって同意され、文書化されなければならない。例えば、状態を1から10の値で計測したり、Good, Ok, Poor等で表す。"@ja-JP ; + IFC4-PSD:ifdguid "dbdc3180d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "AssessmentCondition" ; + IFC4-PSD:nameAlias "評価状態"@ja-JP , "Assessment Condition"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pe1397c00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Qualitative description of the condition." ; + rdfs:label "AssessmentDescription" ; + IFC4-PSD:definition "Qualitative description of the condition." ; + IFC4-PSD:definitionAlias ""@en , "状態に関する定性的な記述。"@ja-JP ; + IFC4-PSD:ifdguid "e1397c00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "AssessmentDescription" ; + IFC4-PSD:nameAlias "評価記述"@ja-JP , "Assessment Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . diff --git a/converter/src/main/resources/pset/Pset_ConstructionResource.ttl b/converter/src/main/resources/pset/Pset_ConstructionResource.ttl new file mode 100644 index 00000000..497b6db9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ConstructionResource.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pee566b00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The scheduled work on behalf of the resource allocation." ; + rdfs:label "ScheduleWork" ; + IFC4-PSD:definition "The scheduled work on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias ""@en , "資源配分のための予定された作業。"@ja-JP ; + IFC4-PSD:ifdguid "ee566b00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ScheduleWork" ; + IFC4-PSD:nameAlias "Schedule Work"@en , "予定作業時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:RemainingWork a rdf:Property ; + rdfs:seeAlso :pf3b3b580d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RemainingWork . + +:ScheduleCompletion a rdf:Property ; + rdfs:seeAlso :pfe6e4a80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScheduleCompletion . + +:ActualCompletion a rdf:Property ; + rdfs:seeAlso :p00d0a480d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActualCompletion . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ConstructionResource + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for tracking resource usage over time." ; + rdfs:label "Pset_ConstructionResource" ; + IFC4-PSD:applicableClass IFC4:IfcConstructionResource ; + IFC4-PSD:applicableTypeValue "IfcConstructionResource" ; + IFC4-PSD:definition "Properties for tracking resource usage over time." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ConstructionResource" ; + IFC4-PSD:propertyDef :pf1515b80d1cc11e1800000215ad4efdf , :pfe6e4a80d1cc11e1800000215ad4efdf , :pee566b00d1cc11e1800000215ad4efdf , :pf3b3b580d1cc11e1800000215ad4efdf , :pf6aea600d1cc11e1800000215ad4efdf , :p00d0a480d1cd11e1800000215ad4efdf , :pfb735a00d1cc11e1800000215ad4efdf , :pf9110000d1cc11e1800000215ad4efdf . + +:RemainingCost a rdf:Property ; + rdfs:seeAlso :pfb735a00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RemainingCost . + +:pf1515b80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual work on behalf of the resource allocation." ; + rdfs:label "ActualWork" ; + IFC4-PSD:definition "The actual work on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias "資源配分のための実績の作業。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f1515b80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ActualWork" ; + IFC4-PSD:nameAlias "Actual Work"@en , "実績作業時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pfb735a00d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The remaining cost on behalf of the resource allocation." ; + rdfs:label "RemainingCost" ; + IFC4-PSD:definition "The remaining cost on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias ""@en , "資源配分のための残存しているコスト。"@ja-JP ; + IFC4-PSD:ifdguid "fb735a00d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "RemainingCost" ; + IFC4-PSD:nameAlias "Remaining Cost"@en , "残存コスト"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ScheduleWork a rdf:Property ; + rdfs:seeAlso :pee566b00d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScheduleWork . + +:p00d0a480d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual completion percentage of the allocation." ; + rdfs:label "ActualCompletion" ; + IFC4-PSD:definition "The actual completion percentage of the allocation." ; + IFC4-PSD:definitionAlias ""@en , "実績の完了率。"@ja-JP ; + IFC4-PSD:ifdguid "00d0a480d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ActualCompletion" ; + IFC4-PSD:nameAlias "Actual Completion"@en , "実績完了率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf3b3b580d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The remaining work on behalf of the resource allocation." ; + rdfs:label "RemainingWork" ; + IFC4-PSD:definition "The remaining work on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias ""@en , "資源配分のための残存している作業。"@ja-JP ; + IFC4-PSD:ifdguid "f3b3b580d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "RemainingWork" ; + IFC4-PSD:nameAlias "Remaining Work"@en , "残存作業時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf9110000d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual cost on behalf of the resource allocation." ; + rdfs:label "ActualCost" ; + IFC4-PSD:definition "The actual cost on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias ""@en , "資源配分のための実績のコスト。"@ja-JP ; + IFC4-PSD:ifdguid "f9110000d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ActualCost" ; + IFC4-PSD:nameAlias "Actual Cost"@en , "実績コスト"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ActualWork a rdf:Property ; + rdfs:seeAlso :pf1515b80d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActualWork . + +:ScheduleCost a rdf:Property ; + rdfs:seeAlso :pf6aea600d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScheduleCost . + +:ActualCost a rdf:Property ; + rdfs:seeAlso :pf9110000d1cc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActualCost . + +:pfe6e4a80d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The scheduled completion percentage of the allocation." ; + rdfs:label "ScheduleCompletion" ; + IFC4-PSD:definition "The scheduled completion percentage of the allocation." ; + IFC4-PSD:definitionAlias ""@en , "予定された完了率。"@ja-JP ; + IFC4-PSD:ifdguid "fe6e4a80d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ScheduleCompletion" ; + IFC4-PSD:nameAlias "予定完了率"@ja-JP , "Schedule Completion"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf6aea600d1cc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The budgeted cost on behalf of the resource allocation." ; + rdfs:label "ScheduleCost" ; + IFC4-PSD:definition "The budgeted cost on behalf of the resource allocation." ; + IFC4-PSD:definitionAlias "資源配分のための予定されているコスト。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f6aea600d1cc11e1800000215ad4efdf" ; + IFC4-PSD:name "ScheduleCost" ; + IFC4-PSD:nameAlias "Schedule Cost"@en , "予定コスト"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_ControllerPHistory.ttl b/converter/src/main/resources/pset/Pset_ControllerPHistory.ttl new file mode 100644 index 00000000..1e1a69d1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerPHistory.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Quality a rdf:Property ; + rdfs:seeAlso :p0cbc6680d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Quality . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p09c17600d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the Value property on the corresponding occurrence property set (Pset_ControllerTypeFloating, Pset_ControllerTypeProportional, Pset_ControllerTypeMultiPosition, or Pset_ControllerTypeTwoPosition)." ; + rdfs:label "Value" ; + IFC4-PSD:definition "Indicates values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the Value property on the corresponding occurrence property set (Pset_ControllerTypeFloating, Pset_ControllerTypeProportional, Pset_ControllerTypeMultiPosition, or Pset_ControllerTypeTwoPosition)." ; + IFC4-PSD:definitionAlias "시간이 지남에 오류 상태를 나타내는 Pset_ControllerTypeValue.Fault에 대응 ※ 설정 가능한 정보는 IfcTimeSeries 속성 참조"@ko-KR , "時間とともに値を示す。\nPset_ControllerTypeValue.Valueに対応\n※ 設定可能情報は IfcTimeSeriesプロパティ参照"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "09c17600d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "デフォルト出力時系列定数"@ja-JP , "Value"@en , "이상 출력 시계열 상수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_ControllerPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history of controller values. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ControllerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcController ; + IFC4-PSD:applicableTypeValue "IfcController" ; + IFC4-PSD:definition "Properties for history of controller values. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "コントローラの性能履歴属性。\nIFC4 にて新規追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerPHistory" ; + IFC4-PSD:propertyDef :p0cbc6680d1cd11e1800000215ad4efdf , :p0f1ec080d1cd11e1800000215ad4efdf , :p09c17600d1cd11e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p0f1ec080d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p0f1ec080d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0f1ec080d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Value a rdf:Property ; + rdfs:seeAlso :p09c17600d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + +:p0cbc6680d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + rdfs:label "Quality" ; + IFC4-PSD:definition "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + IFC4-PSD:definitionAlias ""@en , "시간이 지남에 값을 나타내는 Pset_ControllerTypeValue.Value에 대응 ※ 설정 가능한 정보는 IfcTimeSeries 속성 참조"@ko-KR ; + IFC4-PSD:ifdguid "0cbc6680d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Quality" ; + IFC4-PSD:nameAlias "기본 출력 시계열 상수"@ko-KR , "Quality"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeCommon.ttl new file mode 100644 index 00000000..6b556500 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ControllerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Controller type common attributes." ; + rdfs:label "Pset_ControllerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcController ; + IFC4-PSD:applicableTypeValue "IfcController" ; + IFC4-PSD:definition "Controller type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "コントローラ共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeCommon" ; + IFC4-PSD:propertyDef :p1c3baf80d1cd11e1800000215ad4efdf , :p1776fb80d1cd11e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p1776fb80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p1c3baf80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p1c3baf80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1c3baf80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p1776fb80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1776fb80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조ID"@ko-KR , "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeFloating.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeFloating.ttl new file mode 100644 index 00000000..27ce5ca5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeFloating.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SignalFactor a rdf:Property ; + rdfs:seeAlso :p6de43a00d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SignalFactor . + +:p2eb5e900d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of signal modification effected and applicable ports: \n\nCONSTANT: No inputs; SignalOffset is written to the output value.\nMODIFIER: Single analog input is read, added to SignalOffset, multiplied by SignalFactor, and written to the output value.\nABSOLUTE: Single analog input is read and absolute value is written to the output value.\nINVERSE: Single analog input is read, 1.0 is divided by the input value and written to the output value.\nHYSTERISIS: Single analog input is read, delayed according to SignalTime, and written to the output value.\nRUNNINGAVERAGE: Single analog input is read, averaged over SignalTime, and written to the output value.\nDERIVATIVE: Single analog input is read and the rate of change during the SignalTime is written to the output value.\nINTEGRAL: Single analog input is read and the average value during the SignalTime is written to the output value.\nBINARY: Single binary input is read and SignalOffset is written to the output value if True.\nACCUMULATOR: Single binary input is read, and for each pulse the SignalOffset is added to the accumulator, and while the accumulator is greater than the SignalFactor, the accumulator is decremented by SignalFactor and the integer result is incremented by one.\nPULSECONVERTER: Single integer input is read, and for each increment the SignalMultiplier is added and written to the output value.\nSUM: Two analog inputs are read, added, and written to the output value.\nSUBTRACT: Two analog inputs are read, subtracted, and written to the output value.\nPRODUCT: Two analog inputs are read, multiplied, and written to the output value.\nDIVIDE: Two analog inputs are read, divided, and written to the output value.\nAVERAGE: Two analog inputs are read and the average is written to the output value.\nMAXIMUM: Two analog inputs are read and the maximum is written to the output value.\nMINIMUM: Two analog inputs are read and the minimum is written to the output value..\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of signal modification effected and applicable ports: \n\nCONSTANT: No inputs; SignalOffset is written to the output value.\nMODIFIER: Single analog input is read, added to SignalOffset, multiplied by SignalFactor, and written to the output value.\nABSOLUTE: Single analog input is read and absolute value is written to the output value.\nINVERSE: Single analog input is read, 1.0 is divided by the input value and written to the output value.\nHYSTERISIS: Single analog input is read, delayed according to SignalTime, and written to the output value.\nRUNNINGAVERAGE: Single analog input is read, averaged over SignalTime, and written to the output value.\nDERIVATIVE: Single analog input is read and the rate of change during the SignalTime is written to the output value.\nINTEGRAL: Single analog input is read and the average value during the SignalTime is written to the output value.\nBINARY: Single binary input is read and SignalOffset is written to the output value if True.\nACCUMULATOR: Single binary input is read, and for each pulse the SignalOffset is added to the accumulator, and while the accumulator is greater than the SignalFactor, the accumulator is decremented by SignalFactor and the integer result is incremented by one.\nPULSECONVERTER: Single integer input is read, and for each increment the SignalMultiplier is added and written to the output value.\nSUM: Two analog inputs are read, added, and written to the output value.\nSUBTRACT: Two analog inputs are read, subtracted, and written to the output value.\nPRODUCT: Two analog inputs are read, multiplied, and written to the output value.\nDIVIDE: Two analog inputs are read, divided, and written to the output value.\nAVERAGE: Two analog inputs are read and the average is written to the output value.\nMAXIMUM: Two analog inputs are read and the maximum is written to the output value.\nMINIMUM: Two analog inputs are read and the minimum is written to the output value..\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + IFC4-PSD:definitionAlias "컨트롤러는 항상 하나의 출력 포트와 가변 입력 포트 유형에 따라있는 한결 : output = SignalOffset 수정자 : output = input * SignalFactor + SignalOffset 절대치 : output = | input | 역수 : output = 1.0 / input 지연 : output = 지연 (input, SignalTime 후) 이동 평균 : output = 평균 (inputN, SignalTime 사이) 미분 : output = 미분 (inputN, SignalTime 사이) 적분 : output = 적분 (inputN, SignalTime 사이) 바이너리 : output = SignalOffset ※ input = TRUE의 경우 누적 : output = accumulator ※ accumulator = 펄스 카운트 * SignalOffset ※ if (accumulator> SignalFactor) accumulator - = SignalFactor ??? 펄스 카운터 : output = input * SignalMultiplier ※ input 펄스 카운트, SignalMultiplier은 원인 불명 ??? 총 : output = input1 + input2 뺄셈 : output = input1 - input2 적립 : output = input1 * input2 나누기 : output = input1 / input2 평균 : output = (input1 + input2) / 2 최대 : output = input1 or input2 ※보다 큰 최소 : output = input1 or input2 ※보다 작은"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "2eb5e900d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en , "FLOATING 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SUBTRACT" , "HYSTERESIS" , "SPLIT" , "OTHER" , "DIVIDE" , "MINIMUM" , "AVERAGE" , "LOWERLIMITCONTROL" , "ACCUMULATOR" , "REPORT" , "INTEGRAL" , "VARIABLE" , "INVERSE" , "NOTKNOWN" , "BINARY" , "ABSOLUTE" , "SUM" , "PULSECONVERTER" , "OUTPUT" , "UNSET" , "DERIVATIVE" , "RUNNINGAVERAGE" , "PRODUCT" , "INPUT" , "UPPERLIMITCONTROL" , "CONSTANT" , "MODIFIER" , "MAXIMUM" + ] . + +:Range a rdf:Property ; + rdfs:seeAlso :p5efd8780d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Range . + +:p63c23b80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The expected range and default value. While the property data type is IfcReal (to support all cases including when the units are unknown), a unit may optionally be provided to indicate the measure and unit. The LowerLimitValue and UpperLimitValue must fall within the physical Range and may be used to determine extents when charting Pset_ControllerPHistory.Value." ; + rdfs:label "Value" ; + IFC4-PSD:definition "The expected range and default value. While the property data type is IfcReal (to support all cases including when the units are unknown), a unit may optionally be provided to indicate the measure and unit. The LowerLimitValue and UpperLimitValue must fall within the physical Range and may be used to determine extents when charting Pset_ControllerPHistory.Value." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "63c23b80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p6de43a00d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Factor multiplied onto offset signal." ; + rdfs:label "SignalFactor" ; + IFC4-PSD:definition "Factor multiplied onto offset signal." ; + IFC4-PSD:definitionAlias "인자는 오프셋 신호 곱셈"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "6de43a00d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SignalFactor" ; + IFC4-PSD:nameAlias "요소"@ko-KR , "Signal Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p72a8ee00d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Time factor used for integral and running average controllers." ; + rdfs:label "SignalTime" ; + IFC4-PSD:definition "Time factor used for integral and running average controllers." ; + IFC4-PSD:definitionAlias "시간 요소는 INTEGRAL (적분)과 AVERAGE ((이동) 평균) 컨트롤러에 사용됨"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "72a8ee00d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SignalTime" ; + IFC4-PSD:nameAlias "시간 요소"@ko-KR , "Signal Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p69b81c80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Offset constant added to modfied signal." ; + rdfs:label "SignalOffset" ; + IFC4-PSD:definition "Offset constant added to modfied signal." ; + IFC4-PSD:definitionAlias ""@en , "오프셋 상수 변경 신호에 추가됨"@ko-KR ; + IFC4-PSD:ifdguid "69b81c80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SignalOffset" ; + IFC4-PSD:nameAlias "Signal Offset"@en , "옵셋"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Value a rdf:Property ; + rdfs:seeAlso :p63c23b80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + +:SignalOffset a rdf:Property ; + rdfs:seeAlso :p69b81c80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SignalOffset . + +:p5efd8780d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical range of values supported by the device." ; + rdfs:label "Range" ; + IFC4-PSD:definition "The physical range of values supported by the device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5efd8780d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Range" ; + IFC4-PSD:nameAlias "Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Pset_ControllerTypeFloating + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued output. HISTORY: IFC4 adapted from Pset_ControllerTypeCommon and applicable predefined type made specific to FLOATING; ACCUMULATOR and PULSECONVERTER types added; additional properties added to replace Pset_AnalogInput and Pset_AnalogOutput." ; + rdfs:label "Pset_ControllerTypeFloating" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcController/FLOATING" ; + IFC4-PSD:definition "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued output. HISTORY: IFC4 adapted from Pset_ControllerTypeCommon and applicable predefined type made specific to FLOATING; ACCUMULATOR and PULSECONVERTER types added; additional properties added to replace Pset_AnalogInput and Pset_AnalogOutput." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeFloating" ; + IFC4-PSD:propertyDef :p2eb5e900d1cd11e1800000215ad4efdf , :p63c23b80d1cd11e1800000215ad4efdf , :p56a54c80d1cd11e1800000215ad4efdf , :p5efd8780d1cd11e1800000215ad4efdf , :p6de43a00d1cd11e1800000215ad4efdf , :p72a8ee00d1cd11e1800000215ad4efdf , :p69b81c80d1cd11e1800000215ad4efdf . + +:Labels a rdf:Property ; + rdfs:seeAlso :p56a54c80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Labels . + +:p56a54c80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping values to labels, where such labels indicate transition points such as 'Hi', 'Lo', 'HiHi', or 'LoLo'." ; + rdfs:label "Labels" ; + IFC4-PSD:definition "Table mapping values to labels, where such labels indicate transition points such as 'Hi', 'Lo', 'HiHi', or 'LoLo'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "56a54c80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Labels" ; + IFC4-PSD:nameAlias "Labels"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcReal + ] . + +:ControlType a rdf:Property ; + rdfs:seeAlso :p2eb5e900d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SignalTime a rdf:Property ; + rdfs:seeAlso :p72a8ee00d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SignalTime . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeMultiPosition.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeMultiPosition.ttl new file mode 100644 index 00000000..7e837dc0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeMultiPosition.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Labels a rdf:Property ; + rdfs:seeAlso :p89e7db80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Labels . + +:Value a rdf:Property ; + rdfs:seeAlso :p95d39d80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + +:Range a rdf:Property ; + rdfs:seeAlso :p910ee980d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Range . + +:Pset_ControllerTypeMultiPosition + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for discrete inputs, outputs, and values within a programmable logic controller. HISTORY: New in IFC4, replaces Pset_MultiStateInput and Pset_MultiStateOutput." ; + rdfs:label "Pset_ControllerTypeMultiPosition" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcController/MULTIPOSITION" ; + IFC4-PSD:definition "Properties for discrete inputs, outputs, and values within a programmable logic controller. HISTORY: New in IFC4, replaces Pset_MultiStateInput and Pset_MultiStateOutput." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeMultiPosition" ; + IFC4-PSD:propertyDef :p89e7db80d1cd11e1800000215ad4efdf , :p7e94b000d1cd11e1800000215ad4efdf , :p910ee980d1cd11e1800000215ad4efdf , :p95d39d80d1cd11e1800000215ad4efdf . + +:p910ee980d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical range of values supported by the device." ; + rdfs:label "Range" ; + IFC4-PSD:definition "The physical range of values supported by the device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "910ee980d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Range" ; + IFC4-PSD:nameAlias "Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7e94b000d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of signal modification effected and applicable ports:\n\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of signal modification effected and applicable ports:\n\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7e94b000d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "INPUT" , "OUTPUT" , "VARIABLE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ControlType a rdf:Property ; + rdfs:seeAlso :p7e94b000d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + +:p89e7db80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping values to labels, where each entry corresponds to an integer within the ValueRange." ; + rdfs:label "Labels" ; + IFC4-PSD:definition "Table mapping values to labels, where each entry corresponds to an integer within the ValueRange." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "89e7db80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Labels" ; + IFC4-PSD:nameAlias "Labels"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcInteger + ] . + +:p95d39d80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The expected range and default value. The LowerLimitValue and UpperLimitValue must fall within the physical Range." ; + rdfs:label "Value" ; + IFC4-PSD:definition "The expected range and default value. The LowerLimitValue and UpperLimitValue must fall within the physical Range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "95d39d80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeProgrammable.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeProgrammable.ttl new file mode 100644 index 00000000..5a291bf8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeProgrammable.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SoftwareVersion a rdf:Property ; + rdfs:seeAlso :pb0a61200d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoftwareVersion . + +:ControlType a rdf:Property ; + rdfs:seeAlso :pa126c900d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + +:Application a rdf:Property ; + rdfs:seeAlso :p5a95c146e11d4ab09a7b5dbaa356881c ; + rdfs:subPropertyOf IFC4-PSD:Application . + +:pa126c900d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of discrete digital controller: \n\nPRIMARY: Controller has built-in communication interface for PC connection, may manage secondary controllers.\nSECONDARY: Controller communicates with primary controller and its own managed devices." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of discrete digital controller: \n\nPRIMARY: Controller has built-in communication interface for PC connection, may manage secondary controllers.\nSECONDARY: Controller communicates with primary controller and its own managed devices." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a126c900d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PRIMARY" , "SECONDARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_ControllerTypeProgrammable + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for Discrete Digital Control (DDC) or programmable logic controllers. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ControllerTypeProgrammable" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcController/PROGRAMMABLE" ; + IFC4-PSD:definition "Properties for Discrete Digital Control (DDC) or programmable logic controllers. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeProgrammable" ; + IFC4-PSD:propertyDef :pb0a61200d1cd11e1800000215ad4efdf , :p5a95c146e11d4ab09a7b5dbaa356881c , :pa126c900d1cd11e1800000215ad4efdf , :pab48c780d1cd11e1800000215ad4efdf . + +:pab48c780d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates version of device firmware according to device manufacturer." ; + rdfs:label "FirmwareVersion" ; + IFC4-PSD:definition "Indicates version of device firmware according to device manufacturer." ; + IFC4-PSD:definitionAlias "컨트롤러 펌웨어 버전"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "ab48c780d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "FirmwareVersion" ; + IFC4-PSD:nameAlias "펌웨어 버전"@ko-KR , "Firmware Version"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pb0a61200d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates version of application software according to systems integrator." ; + rdfs:label "SoftwareVersion" ; + IFC4-PSD:definition "Indicates version of application software according to systems integrator." ; + IFC4-PSD:definitionAlias ""@en , "컨트롤러 소프트웨어 버전"@ko-KR ; + IFC4-PSD:ifdguid "b0a61200d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SoftwareVersion" ; + IFC4-PSD:nameAlias "소프트웨어 버전"@ko-KR , "Software Version"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FirmwareVersion a rdf:Property ; + rdfs:seeAlso :pab48c780d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FirmwareVersion . + +:p5a95c146e11d4ab09a7b5dbaa356881c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates application of controller." ; + rdfs:label "Application" ; + IFC4-PSD:definition "Indicates application of controller." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5a95c146e11d4ab09a7b5dbaa356881c" ; + IFC4-PSD:name "Application" ; + IFC4-PSD:nameAlias "Application"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONSTANTLIGHTCONTROLLER" , "REALTIMEBASEDSCHEDULER" , "FANCOILUNITCONTROLLER" , "UNSET" , "OCCUPANCYCONTROLLER" , "PARTITIONWALLCONTROLLER" , "UNITVENTILATORCONTROLLER" , "SUNBLINDCONTROLLER" , "BOILERCONTROLLER" , "NOTKNOWN" , "PUMPCONTROLLER" , "ROOFTOPUNITCONTROLLER" , "REALTIMEKEEPER" , "MODEMCONTROLLER" , "DISCHARGEAIRCONTROLLER" , "TELEPHONEDIRECTORY" , "SCENECONTROLLER" , "VAV" , "LIGHTINGPANELCONTROLLER" , "OTHER" , "SPACECONFORTCONTROLLER" + ] . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeProportional.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeProportional.ttl new file mode 100644 index 00000000..6803ea19 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeProportional.ttl @@ -0,0 +1,180 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe1864700d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The proportional gain factor of the controller (usually referred to as Kp)." ; + rdfs:label "ProportionalConstant" ; + IFC4-PSD:definition "The proportional gain factor of the controller (usually referred to as Kp)." ; + IFC4-PSD:definitionAlias ""@en , "비례 게인 (Kp)"@ko-KR ; + IFC4-PSD:ifdguid "e1864700d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ProportionalConstant" ; + IFC4-PSD:nameAlias "Proportional Constant"@en , "비례 게인 (Kp)"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:peba84580d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The derivative gain factor of the controller (usually referred to as Kd). Asserted where ControlType is PROPORTIONALINTEGRALDERIVATIVE." ; + rdfs:label "DerivativeConstant" ; + IFC4-PSD:definition "The derivative gain factor of the controller (usually referred to as Kd). Asserted where ControlType is PROPORTIONALINTEGRALDERIVATIVE." ; + IFC4-PSD:definitionAlias ""@en , "미분 게인 (Kd)"@ko-KR ; + IFC4-PSD:ifdguid "eba84580d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "DerivativeConstant" ; + IFC4-PSD:nameAlias "Derivative Constant"@en , "미분 게인 (Kd)"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:DerivativeConstant a rdf:Property ; + rdfs:seeAlso :peba84580d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DerivativeConstant . + +:pda5f3900d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The expected range and default value. While the property data type is IfcReal (to support all cases including when the units are unknown), a unit may optionally be provided to indicate the measure and unit." ; + rdfs:label "Value" ; + IFC4-PSD:definition "The expected range and default value. While the property data type is IfcReal (to support all cases including when the units are unknown), a unit may optionally be provided to indicate the measure and unit." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "da5f3900d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:pe6e39180d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The integral gain factor of the controller (usually referred to as Ki). Asserted where ControlType is PROPORTIONALINTEGRAL or PROPORTIONALINTEGRALDERIVATIVE." ; + rdfs:label "IntegralConstant" ; + IFC4-PSD:definition "The integral gain factor of the controller (usually referred to as Ki). Asserted where ControlType is PROPORTIONALINTEGRAL or PROPORTIONALINTEGRALDERIVATIVE." ; + IFC4-PSD:definitionAlias "적분 게인 (Ki)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e6e39180d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "IntegralConstant" ; + IFC4-PSD:nameAlias "적분 게인 (Ki)"@ko-KR , "Integral Constant"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:pbd2a6a80d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of signal modification.\nPROPORTIONAL: Output is proportional to the control error. The gain of a proportional control (Kp) will have the effect of reducing the rise time and reducing , but never eliminating, the steady-state error of the variable controlled. \nPROPORTIONALINTEGRAL: Part of the output is proportional to the control error and part is proportional to the time integral of the control error. Adding the gain of an integral control (Ki) will have the effect of eliminating the steady-state error of the variable controlled, but it may make the transient response worse. \nPROPORTIONALINTEGRALDERIVATIVE: Part of the output is proportional to the control error, part is proportional to the time integral of the control error and part is proportional to the time derivative of the control error. Adding the gain of a derivative control (Kd) will have the effect of increasing the stability of the system, reducing the overshoot, and improving the transient response of the variable controlled." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of signal modification.\nPROPORTIONAL: Output is proportional to the control error. The gain of a proportional control (Kp) will have the effect of reducing the rise time and reducing , but never eliminating, the steady-state error of the variable controlled. \nPROPORTIONALINTEGRAL: Part of the output is proportional to the control error and part is proportional to the time integral of the control error. Adding the gain of an integral control (Ki) will have the effect of eliminating the steady-state error of the variable controlled, but it may make the transient response worse. \nPROPORTIONALINTEGRALDERIVATIVE: Part of the output is proportional to the control error, part is proportional to the time integral of the control error and part is proportional to the time derivative of the control error. Adding the gain of a derivative control (Kd) will have the effect of increasing the stability of the system, reducing the overshoot, and improving the transient response of the variable controlled." ; + IFC4-PSD:definitionAlias "신호 변경 유형 P (비례), I (적분), D (미분)의 조합 PROPORTIONAL : P (비례) 제어 PROPORTIONALINTEGRAL : PI (비례 적분) 제어 PROPORTIONALINTEGRALDERIVATIVE : PID (비례 적분 미분) 제어"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "bd2a6a80d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en , "PROPORTIONAL 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PROPORTIONAL" , "PROPORTIONALINTEGRAL" , "PROPORTIONALINTEGRALDERIVATIVE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pcc111d00d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping values to labels, where such labels indicate transition points such as 'Hi', 'Lo', 'HiHi', or 'LoLo'." ; + rdfs:label "Labels" ; + IFC4-PSD:definition "Table mapping values to labels, where such labels indicate transition points such as 'Hi', 'Lo', 'HiHi', or 'LoLo'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cc111d00d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Labels" ; + IFC4-PSD:nameAlias "Labels"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcReal + ] . + +:ControlType a rdf:Property ; + rdfs:seeAlso :pbd2a6a80d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Labels a rdf:Property ; + rdfs:seeAlso :pcc111d00d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Labels . + +:pf236bd00d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Time factor used for exponential increase." ; + rdfs:label "SignalTimeIncrease" ; + IFC4-PSD:definition "Time factor used for exponential increase." ; + IFC4-PSD:definitionAlias ""@en , "적분 시간 (Ti)"@ko-KR ; + IFC4-PSD:ifdguid "f236bd00d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SignalTimeIncrease" ; + IFC4-PSD:nameAlias "적분 시간 (Ti)"@ko-KR , "Signal Time Increase"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:Value a rdf:Property ; + rdfs:seeAlso :pda5f3900d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + +:SignalTimeDecrease a rdf:Property ; + rdfs:seeAlso :pf7940780d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SignalTimeDecrease . + +:SignalTimeIncrease a rdf:Property ; + rdfs:seeAlso :pf236bd00d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SignalTimeIncrease . + +:Pset_ControllerTypeProportional + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for signal handling for an proportional controller taking setpoint and feedback inputs and creating a single valued output. HISTORY: In IFC4, SignalFactor1, SignalFactor2 and SignalFactor3 changed to ProportionalConstant, IntegralConstant and DerivativeConstant. SignalTime1 and SignalTime2 changed to SignalTimeIncrease and SignalTimeDecrease." ; + rdfs:label "Pset_ControllerTypeProportional" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcController/PROPORTIONAL" ; + IFC4-PSD:definition "Properties for signal handling for an proportional controller taking setpoint and feedback inputs and creating a single valued output. HISTORY: In IFC4, SignalFactor1, SignalFactor2 and SignalFactor3 changed to ProportionalConstant, IntegralConstant and DerivativeConstant. SignalTime1 and SignalTime2 changed to SignalTimeIncrease and SignalTimeDecrease." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeProportional" ; + IFC4-PSD:propertyDef :pcc111d00d1cd11e1800000215ad4efdf , :pe1864700d1cd11e1800000215ad4efdf , :pbd2a6a80d1cd11e1800000215ad4efdf , :pf236bd00d1cd11e1800000215ad4efdf , :pd4695800d1cd11e1800000215ad4efdf , :pda5f3900d1cd11e1800000215ad4efdf , :pf7940780d1cd11e1800000215ad4efdf , :peba84580d1cd11e1800000215ad4efdf , :pe6e39180d1cd11e1800000215ad4efdf . + +:IntegralConstant a rdf:Property ; + rdfs:seeAlso :pe6e39180d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IntegralConstant . + +:ProportionalConstant + a rdf:Property ; + rdfs:seeAlso :pe1864700d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProportionalConstant . + +:pd4695800d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical range of values." ; + rdfs:label "Range" ; + IFC4-PSD:definition "The physical range of values." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d4695800d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "Range" ; + IFC4-PSD:nameAlias "Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Range a rdf:Property ; + rdfs:seeAlso :pd4695800d1cd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Range . + +:pf7940780d1cd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Time factor used for exponential decrease." ; + rdfs:label "SignalTimeDecrease" ; + IFC4-PSD:definition "Time factor used for exponential decrease." ; + IFC4-PSD:definitionAlias "미분 시간 (Td)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f7940780d1cd11e1800000215ad4efdf" ; + IFC4-PSD:name "SignalTimeDecrease" ; + IFC4-PSD:nameAlias "미분 시간 (Td)"@ko-KR , "Signal Time Decrease"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ControllerTypeTwoPosition.ttl b/converter/src/main/resources/pset/Pset_ControllerTypeTwoPosition.ttl new file mode 100644 index 00000000..03160bf7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ControllerTypeTwoPosition.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ControllerTypeTwoPosition + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued binary output. HISTORY: In IFC4, extended properties to replace Pset_BinaryInput and Pset_BinaryOutput." ; + rdfs:label "Pset_ControllerTypeTwoPosition" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcController/TWOPOSITION" ; + IFC4-PSD:definition "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued binary output. HISTORY: In IFC4, extended properties to replace Pset_BinaryInput and Pset_BinaryOutput." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ControllerTypeTwoPosition" ; + IFC4-PSD:propertyDef :p201c0180d1ce11e1800000215ad4efdf , :p02e73300d1ce11e1800000215ad4efdf , :p2d38f080d1ce11e1800000215ad4efdf , :p27dba600d1ce11e1800000215ad4efdf . + +:p27dba600d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "True indicates normal polarity; False indicates reverse polarity." ; + rdfs:label "Polarity" ; + IFC4-PSD:definition "True indicates normal polarity; False indicates reverse polarity." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "27dba600d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "Polarity" ; + IFC4-PSD:nameAlias "Polarity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Polarity a rdf:Property ; + rdfs:seeAlso :p27dba600d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Polarity . + +:p201c0180d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping values to labels, where such labels indicate the meanings of True and False, such as 'Open' and 'Closed'" ; + rdfs:label "Labels" ; + IFC4-PSD:definition "Table mapping values to labels, where such labels indicate the meanings of True and False, such as 'Open' and 'Closed'" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "201c0180d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "Labels" ; + IFC4-PSD:nameAlias "Labels"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcBoolean + ] . + +:Labels a rdf:Property ; + rdfs:seeAlso :p201c0180d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Labels . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Value a rdf:Property ; + rdfs:seeAlso :p2d38f080d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + +:p02e73300d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of signal modification effected and applicable ports:\n\nLOWERLIMITSWITCH: Single analog input is read and if less than Value.LowerBound then True is written to the output value.\nUPPERLIMITSWITCH: Single analog input is read and if more than Value.UpperBound then True is written to the output value.\nLOWERBANDSWITCH: Single analog input is read and if less than Value.LowerBound+BandWidth then True is written to the output value.\nUPPERBANDSWITCH: Single analog input is read and if more than Value.UpperBound-BandWidth then True is written to the output value.\nNOT: Single binary input is read and the opposite value is written to the output value.\nAND: Two binary inputs are read and if both are True then True is written to the output value.\nOR: Two binary inputs are read and if either is True then True is written to the output value.\nXOR: Two binary inputs are read and if one is true then True is written to the output value.\nCALENDAR: No inputs; the current time is compared with an IfcWorkCalendar to which the IfcController is assigned and True is written if active.\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of signal modification effected and applicable ports:\n\nLOWERLIMITSWITCH: Single analog input is read and if less than Value.LowerBound then True is written to the output value.\nUPPERLIMITSWITCH: Single analog input is read and if more than Value.UpperBound then True is written to the output value.\nLOWERBANDSWITCH: Single analog input is read and if less than Value.LowerBound+BandWidth then True is written to the output value.\nUPPERBANDSWITCH: Single analog input is read and if more than Value.UpperBound-BandWidth then True is written to the output value.\nNOT: Single binary input is read and the opposite value is written to the output value.\nAND: Two binary inputs are read and if both are True then True is written to the output value.\nOR: Two binary inputs are read and if either is True then True is written to the output value.\nXOR: Two binary inputs are read and if one is true then True is written to the output value.\nCALENDAR: No inputs; the current time is compared with an IfcWorkCalendar to which the IfcController is assigned and True is written if active.\nINPUT: Controller element is a dedicated input.\nOUTPUT: Controller element is a dedicated output.\nVARIABLE: Controller element is an in-memory variable." ; + IFC4-PSD:definitionAlias "신호 변경 유형 리미트 스위치가 범위를 Pset_ControllerTypeValue 값을 묶여 속성에 의해 결정 하한 : if (Value.LowerBound> Input) output = TRUE 상한 : if (Value.UpperBound Input) output = TRUE 최대 - 불감대 : if (Value.UpperBound - BandWidth . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HeatingWaterFlowRate + a rdf:Property ; + rdfs:seeAlso :p493c9200d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingWaterFlowRate . + +:p59ed0800d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Return water temperature in cooling mode." ; + rdfs:label "ReturnWaterTemperatureCooling" ; + IFC4-PSD:definition "Return water temperature in cooling mode." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "59ed0800d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "ReturnWaterTemperatureCooling" ; + IFC4-PSD:nameAlias "Return Water Temperature Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SupplyWaterTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p5ce7f880d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupplyWaterTemperatureHeating . + +:p39bd4900d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total cooling capacity. This includes cooling capacity of beam and cooling capacity of supply air." ; + rdfs:label "TotalCoolingCapacity" ; + IFC4-PSD:definition "Total cooling capacity. This includes cooling capacity of beam and cooling capacity of supply air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "39bd4900d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalCoolingCapacity" ; + IFC4-PSD:nameAlias "Total Cooling Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p5063a000d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Correction factor k as a function of water flow rate (used to calculate heating capacity)." ; + rdfs:label "CorrectionFactorForHeating" ; + IFC4-PSD:definition "Correction factor k as a function of water flow rate (used to calculate heating capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5063a000d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "CorrectionFactorForHeating" ; + IFC4-PSD:nameAlias "Correction Factor For Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_CooledBeamPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common performance history attributes for a cooled beam." ; + rdfs:label "Pset_CooledBeamPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCooledBeam ; + IFC4-PSD:applicableTypeValue "IfcCooledBeam" ; + IFC4-PSD:definition "Common performance history attributes for a cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CooledBeamPHistory" ; + IFC4-PSD:propertyDef :p4641a180d1ce11e1800000215ad4efdf , :p3cb83980d1ce11e1800000215ad4efdf , :p4cd01900d1ce11e1800000215ad4efdf , :p578aae00d1ce11e1800000215ad4efdf , :p53f72700d1ce11e1800000215ad4efdf , :p59ed0800d1ce11e1800000215ad4efdf , :p5063a000d1ce11e1800000215ad4efdf , :p404bc080d1ce11e1800000215ad4efdf , :p39bd4900d1ce11e1800000215ad4efdf , :p4346b100d1ce11e1800000215ad4efdf , :p493c9200d1ce11e1800000215ad4efdf , :p5ce7f880d1ce11e1800000215ad4efdf , :p607b7f80d1ce11e1800000215ad4efdf . + +:ReturnWaterTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :p59ed0800d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReturnWaterTemperatureCooling . + +:CoolingWaterFlowRate + a rdf:Property ; + rdfs:seeAlso :p4641a180d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingWaterFlowRate . + +:p53f72700d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water pressure drop as function of water flow rate." ; + rdfs:label "WaterPressureDropCurves" ; + IFC4-PSD:definition "Water pressure drop as function of water flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "53f72700d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterPressureDropCurves" ; + IFC4-PSD:nameAlias "Water Pressure Drop Curves"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p493c9200d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water flow rate for heating." ; + rdfs:label "HeatingWaterFlowRate" ; + IFC4-PSD:definition "Water flow rate for heating." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "493c9200d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingWaterFlowRate" ; + IFC4-PSD:nameAlias "Heating Water Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p404bc080d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cooling capacity of beam. This excludes cooling capacity of supply air." ; + rdfs:label "BeamCoolingCapacity" ; + IFC4-PSD:definition "Cooling capacity of beam. This excludes cooling capacity of supply air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "404bc080d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "BeamCoolingCapacity" ; + IFC4-PSD:nameAlias "Beam Cooling Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p5ce7f880d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Supply water temperature in heating mode." ; + rdfs:label "SupplyWaterTemperatureHeating" ; + IFC4-PSD:definition "Supply water temperature in heating mode." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5ce7f880d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "SupplyWaterTemperatureHeating" ; + IFC4-PSD:nameAlias "Supply Water Temperature Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CorrectionFactorForCooling + a rdf:Property ; + rdfs:seeAlso :p4cd01900d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CorrectionFactorForCooling . + +:ReturnWaterTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p607b7f80d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReturnWaterTemperatureHeating . + +:p4346b100d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heating capacity of beam. This excludes heating capacity of supply air." ; + rdfs:label "BeamHeatingCapacity" ; + IFC4-PSD:definition "Heating capacity of beam. This excludes heating capacity of supply air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4346b100d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "BeamHeatingCapacity" ; + IFC4-PSD:nameAlias "Beam Heating Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4cd01900d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Correction factor k as a function of water flow rate (used to calculate cooling capacity)." ; + rdfs:label "CorrectionFactorForCooling" ; + IFC4-PSD:definition "Correction factor k as a function of water flow rate (used to calculate cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4cd01900d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "CorrectionFactorForCooling" ; + IFC4-PSD:nameAlias "Correction Factor For Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4641a180d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water flow rate for cooling." ; + rdfs:label "CoolingWaterFlowRate" ; + IFC4-PSD:definition "Water flow rate for cooling." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4641a180d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingWaterFlowRate" ; + IFC4-PSD:nameAlias "Cooling Water Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:WaterPressureDropCurves + a rdf:Property ; + rdfs:seeAlso :p53f72700d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterPressureDropCurves . + +:CorrectionFactorForHeating + a rdf:Property ; + rdfs:seeAlso :p5063a000d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CorrectionFactorForHeating . + +:TotalCoolingCapacity + a rdf:Property ; + rdfs:seeAlso :p39bd4900d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalCoolingCapacity . + +:p607b7f80d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Return water temperature in heating mode." ; + rdfs:label "ReturnWaterTemperatureHeating" ; + IFC4-PSD:definition "Return water temperature in heating mode." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "607b7f80d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "ReturnWaterTemperatureHeating" ; + IFC4-PSD:nameAlias "Return Water Temperature Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:TotalHeatingCapacity + a rdf:Property ; + rdfs:seeAlso :p3cb83980d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatingCapacity . + +:p578aae00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Supply water temperature in cooling mode." ; + rdfs:label "SupplyWaterTemperatureCooling" ; + IFC4-PSD:definition "Supply water temperature in cooling mode." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "578aae00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "SupplyWaterTemperatureCooling" ; + IFC4-PSD:nameAlias "Supply Water Temperature Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:BeamCoolingCapacity a rdf:Property ; + rdfs:seeAlso :p404bc080d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BeamCoolingCapacity . + +:BeamHeatingCapacity a rdf:Property ; + rdfs:seeAlso :p4346b100d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BeamHeatingCapacity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p3cb83980d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heating capacity. This includes heating capacity of beam and heating capacity of supply air." ; + rdfs:label "TotalHeatingCapacity" ; + IFC4-PSD:definition "Total heating capacity. This includes heating capacity of beam and heating capacity of supply air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3cb83980d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatingCapacity" ; + IFC4-PSD:nameAlias "Total Heating Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SupplyWaterTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :p578aae00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupplyWaterTemperatureCooling . diff --git a/converter/src/main/resources/pset/Pset_CooledBeamPHistoryActive.ttl b/converter/src/main/resources/pset/Pset_CooledBeamPHistoryActive.ttl new file mode 100644 index 00000000..ab2919c4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CooledBeamPHistoryActive.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p6c674180d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flow rate." ; + rdfs:label "AirFlowRate" ; + IFC4-PSD:definition "Air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6c674180d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowRate" ; + IFC4-PSD:nameAlias "Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_CooledBeamPHistoryActive + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Performance history attributes for an active cooled beam." ; + rdfs:label "Pset_CooledBeamPHistoryActive" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCooledBeam/ACTIVE" ; + IFC4-PSD:definition "Performance history attributes for an active cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CooledBeamPHistoryActive" ; + IFC4-PSD:propertyDef :p72f5b900d1ce11e1800000215ad4efdf , :p6ffac880d1ce11e1800000215ad4efdf , :p6c674180d1ce11e1800000215ad4efdf . + +:Throw a rdf:Property ; + rdfs:seeAlso :p6ffac880d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Throw . + +:AirPressureDropCurves + a rdf:Property ; + rdfs:seeAlso :p72f5b900d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurves . + +:AirFlowRate a rdf:Property ; + rdfs:seeAlso :p6c674180d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowRate . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p6ffac880d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance cooled beam throws the air." ; + rdfs:label "Throw" ; + IFC4-PSD:definition "Distance cooled beam throws the air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6ffac880d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "Throw" ; + IFC4-PSD:nameAlias "Throw"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p72f5b900d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop as function of air flow rate." ; + rdfs:label "AirPressureDropCurves" ; + IFC4-PSD:definition "Air pressure drop as function of air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "72f5b900d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurves" ; + IFC4-PSD:nameAlias "Air Pressure Drop Curves"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_CooledBeamTypeActive.ttl b/converter/src/main/resources/pset/Pset_CooledBeamTypeActive.ttl new file mode 100644 index 00000000..619d70cc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CooledBeamTypeActive.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AirflowRateRange a rdf:Property ; + rdfs:seeAlso :p8acd3d00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirflowRateRange . + +:p915bb480d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The manner in which the pipe connection is made to the cooled beam." ; + rdfs:label "SupplyAirConnectionType" ; + IFC4-PSD:definition "The manner in which the pipe connection is made to the cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "915bb480d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "SupplyAirConnectionType" ; + IFC4-PSD:nameAlias "Supply Air Connection Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "STRAIGHT" , "RIGHT" , "LEFT" , "TOP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p8acd3d00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Possible range of airflow that can be delivered." ; + rdfs:label "AirflowRateRange" ; + IFC4-PSD:definition "Possible range of airflow that can be delivered." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8acd3d00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "AirflowRateRange" ; + IFC4-PSD:nameAlias "Airflow Rate Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p7c7f2100d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flow configuration type of cooled beam." ; + rdfs:label "AirFlowConfiguration" ; + IFC4-PSD:definition "Air flow configuration type of cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7c7f2100d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowConfiguration" ; + IFC4-PSD:nameAlias "Air Flow Configuration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BIDIRECTIONAL" , "UNIDIRECTIONALRIGHT" , "UNIDIRECTIONALLEFT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :pa0426700d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:pa0426700d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Duct connection diameter." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "Duct connection diameter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a0426700d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SupplyAirConnectionType + a rdf:Property ; + rdfs:seeAlso :p915bb480d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupplyAirConnectionType . + +:AirFlowConfiguration + a rdf:Property ; + rdfs:seeAlso :p7c7f2100d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowConfiguration . + +:Pset_CooledBeamTypeActive + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Active (ventilated) cooled beam common attributes." ; + rdfs:label "Pset_CooledBeamTypeActive" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCooledBeam/ACTIVE" ; + IFC4-PSD:definition "Active (ventilated) cooled beam common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CooledBeamTypeActive" ; + IFC4-PSD:propertyDef :p8acd3d00d1ce11e1800000215ad4efdf , :p7c7f2100d1ce11e1800000215ad4efdf , :p915bb480d1ce11e1800000215ad4efdf , :pa0426700d1ce11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CooledBeamTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CooledBeamTypeCommon.ttl new file mode 100644 index 00000000..cb04be58 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CooledBeamTypeCommon.ttl @@ -0,0 +1,395 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pd54eb980d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable water circuit working pressure range." ; + rdfs:label "WaterPressureRange" ; + IFC4-PSD:definition "Allowable water circuit working pressure range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d54eb980d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterPressureRange" ; + IFC4-PSD:nameAlias "Water Pressure Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pf6170f00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal water flow (refers to nominal cooling capacity)." ; + rdfs:label "NominalWaterFlowCooling" ; + IFC4-PSD:definition "Nominal water flow (refers to nominal cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f6170f00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWaterFlowCooling" ; + IFC4-PSD:nameAlias "Nominal Water Flow Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pfc0cf000d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal heating capacity." ; + rdfs:label "NominalHeatingCapacity" ; + IFC4-PSD:definition "Nominal heating capacity." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fc0cf000d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatingCapacity" ; + IFC4-PSD:nameAlias "Nominal Heating Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:Pset_CooledBeamTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Cooled beam common attributes.\nSoundLevel and SoundAttenuation attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_CooledBeamTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCooledBeam ; + IFC4-PSD:applicableTypeValue "IfcCooledBeam" ; + IFC4-PSD:definition "Cooled beam common attributes.\nSoundLevel and SoundAttenuation attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CooledBeamTypeCommon" ; + IFC4-PSD:propertyDef :peb5c7a00d1ce11e1800000215ad4efdf , :pe697c600d1ce11e1800000215ad4efdf , :p016a3a80d1cf11e1800000215ad4efdf , :p0af3a280d1cf11e1800000215ad4efdf , :paafcfc00d1ce11e1800000215ad4efdf , :p062eee80d1cf11e1800000215ad4efdf , :pdbdd3100d1ce11e1800000215ad4efdf , :pf6170f00d1ce11e1800000215ad4efdf , :pf0b9c480d1ce11e1800000215ad4efdf , :pb05a4680d1ce11e1800000215ad4efdf , :pfc0cf000d1ce11e1800000215ad4efdf , :pbfd98f80d1ce11e1800000215ad4efdf , :p3a0a1400d1cf11e1800000215ad4efdf , :p34acc980d1cf11e1800000215ad4efdf , :p15ae3780d1cf11e1800000215ad4efdf , :p1050ed00d1cf11e1800000215ad4efdf , :pd54eb980d1ce11e1800000215ad4efdf , :pe1d31200d1ce11e1800000215ad4efdf , :p3ecec800d1cf11e1800000215ad4efdf , :pc536da00d1ce11e1800000215ad4efdf , :p25c61700d1cf11e1800000215ad4efdf . + +:p15ae3780d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Integrated lighting in cooled beam." ; + rdfs:label "IntegratedLightingType" ; + IFC4-PSD:definition "Integrated lighting in cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "15ae3780d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "IntegratedLightingType" ; + IFC4-PSD:nameAlias "Integrated Lighting Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "DIRECT" , "INDIRECT" , "DIRECTANDINDIRECT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pb05a4680d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "b05a4680d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :paafcfc00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pbfd98f80d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Is it free hanging type (not mounted in a false ceiling)?" ; + rdfs:label "IsFreeHanging" ; + IFC4-PSD:definition "Is it free hanging type (not mounted in a false ceiling)?" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bfd98f80d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "IsFreeHanging" ; + IFC4-PSD:nameAlias "Is Free Hanging"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:NominalReturnWaterTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :pf0b9c480d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalReturnWaterTemperatureCooling . + +:p016a3a80d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal surrounding temperature (refers to nominal heating capacity)." ; + rdfs:label "NominalSurroundingTemperatureHeating" ; + IFC4-PSD:definition "Nominal surrounding temperature (refers to nominal heating capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "016a3a80d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSurroundingTemperatureHeating" ; + IFC4-PSD:nameAlias "Nominal Surrounding Temperature Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NominalSurroundingTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p016a3a80d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSurroundingTemperatureHeating . + +:Status a rdf:Property ; + rdfs:seeAlso :pb05a4680d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:PipeConnection a rdf:Property ; + rdfs:seeAlso :p25c61700d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PipeConnection . + +:p3ecec800d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Width of coil." ; + rdfs:label "CoilWidth" ; + IFC4-PSD:definition "Width of coil." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3ecec800d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "CoilWidth" ; + IFC4-PSD:nameAlias "Coil Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:IntegratedLightingType + a rdf:Property ; + rdfs:seeAlso :p15ae3780d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IntegratedLightingType . + +:NominalReturnWaterTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p0af3a280d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalReturnWaterTemperatureHeating . + +:peb5c7a00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal supply water temperature (refers to nominal cooling capacity)." ; + rdfs:label "NominalSupplyWaterTemperatureCooling" ; + IFC4-PSD:definition "Nominal supply water temperature (refers to nominal cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "eb5c7a00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSupplyWaterTemperatureCooling" ; + IFC4-PSD:nameAlias "Nominal Supply Water Temperature Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NominalWaterFlowCooling + a rdf:Property ; + rdfs:seeAlso :pf6170f00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWaterFlowCooling . + +:pf0b9c480d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal return water temperature (refers to nominal cooling capacity)." ; + rdfs:label "NominalReturnWaterTemperatureCooling" ; + IFC4-PSD:definition "Nominal return water temperature (refers to nominal cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f0b9c480d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalReturnWaterTemperatureCooling" ; + IFC4-PSD:nameAlias "Nominal Return Water Temperature Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:CoilWidth a rdf:Property ; + rdfs:seeAlso :p3ecec800d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilWidth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WaterFlowControlSystemType + a rdf:Property ; + rdfs:seeAlso :pc536da00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterFlowControlSystemType . + +:p062eee80d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal supply water temperature (refers to nominal heating capacity)." ; + rdfs:label "NominalSupplyWaterTemperatureHeating" ; + IFC4-PSD:definition "Nominal supply water temperature (refers to nominal heating capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "062eee80d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSupplyWaterTemperatureHeating" ; + IFC4-PSD:nameAlias "Nominal Supply Water Temperature Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:CoilLength a rdf:Property ; + rdfs:seeAlso :p3a0a1400d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilLength . + +:p3a0a1400d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of coil." ; + rdfs:label "CoilLength" ; + IFC4-PSD:definition "Length of coil." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3a0a1400d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "CoilLength" ; + IFC4-PSD:nameAlias "Coil Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p34acc980d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Finish color for cooled beam." ; + rdfs:label "FinishColor" ; + IFC4-PSD:definition "Finish color for cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "34acc980d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "FinishColor" ; + IFC4-PSD:nameAlias "Finish Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:paafcfc00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "aafcfc00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p1050ed00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal water flow (refers to nominal heating capacity)." ; + rdfs:label "NominalWaterFlowHeating" ; + IFC4-PSD:definition "Nominal water flow (refers to nominal heating capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1050ed00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWaterFlowHeating" ; + IFC4-PSD:nameAlias "Nominal Water Flow Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:NominalWaterFlowHeating + a rdf:Property ; + rdfs:seeAlso :p1050ed00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWaterFlowHeating . + +:FinishColor a rdf:Property ; + rdfs:seeAlso :p34acc980d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FinishColor . + +:NominalCoolingCapacity + a rdf:Property ; + rdfs:seeAlso :pdbdd3100d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCoolingCapacity . + +:NominalSurroundingHumidityCooling + a rdf:Property ; + rdfs:seeAlso :pe697c600d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSurroundingHumidityCooling . + +:NominalHeatingCapacity + a rdf:Property ; + rdfs:seeAlso :pfc0cf000d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatingCapacity . + +:NominalSupplyWaterTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :peb5c7a00d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSupplyWaterTemperatureCooling . + +:pc536da00d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Factory fitted waterflow control system." ; + rdfs:label "WaterFlowControlSystemType" ; + IFC4-PSD:definition "Factory fitted waterflow control system." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c536da00d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterFlowControlSystemType" ; + IFC4-PSD:nameAlias "Water Flow Control System Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "ONOFFVALVE" , "2WAYVALVE" , "3WAYVALVE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p0af3a280d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal return water temperature (refers to nominal heating capacity)." ; + rdfs:label "NominalReturnWaterTemperatureHeating" ; + IFC4-PSD:definition "Nominal return water temperature (refers to nominal heating capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0af3a280d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalReturnWaterTemperatureHeating" ; + IFC4-PSD:nameAlias "Nominal Return Water Temperature Heating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NominalSurroundingTemperatureCooling + a rdf:Property ; + rdfs:seeAlso :pe1d31200d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSurroundingTemperatureCooling . + +:pe697c600d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal surrounding humidity (refers to nominal cooling capacity)." ; + rdfs:label "NominalSurroundingHumidityCooling" ; + IFC4-PSD:definition "Nominal surrounding humidity (refers to nominal cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e697c600d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSurroundingHumidityCooling" ; + IFC4-PSD:nameAlias "Nominal Surrounding Humidity Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p25c61700d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The manner in which the pipe connection is made to the cooled beam." ; + rdfs:label "PipeConnection" ; + IFC4-PSD:definition "The manner in which the pipe connection is made to the cooled beam." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "25c61700d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "PipeConnection" ; + IFC4-PSD:nameAlias "Pipe Connection Enum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "STRAIGHT" , "RIGHT" , "LEFT" , "TOP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IsFreeHanging a rdf:Property ; + rdfs:seeAlso :pbfd98f80d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsFreeHanging . + +:WaterPressureRange a rdf:Property ; + rdfs:seeAlso :pd54eb980d1ce11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterPressureRange . + +:pdbdd3100d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal cooling capacity." ; + rdfs:label "NominalCoolingCapacity" ; + IFC4-PSD:definition "Nominal cooling capacity." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "dbdd3100d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCoolingCapacity" ; + IFC4-PSD:nameAlias "Nominal Cooling Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:NominalSupplyWaterTemperatureHeating + a rdf:Property ; + rdfs:seeAlso :p062eee80d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSupplyWaterTemperatureHeating . + +:pe1d31200d1ce11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal surrounding temperature (refers to nominal cooling capacity)." ; + rdfs:label "NominalSurroundingTemperatureCooling" ; + IFC4-PSD:definition "Nominal surrounding temperature (refers to nominal cooling capacity)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e1d31200d1ce11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSurroundingTemperatureCooling" ; + IFC4-PSD:nameAlias "Nominal Surrounding Temperature Cooling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_CoolingTowerPHistory.ttl b/converter/src/main/resources/pset/Pset_CoolingTowerPHistory.ttl new file mode 100644 index 00000000..afe6f5e6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoolingTowerPHistory.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5443f200d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "UA value as a function of fan speed at certain water flow rate, UA = f ( fan speed)." ; + rdfs:label "UACurve" ; + IFC4-PSD:definition "UA value as a function of fan speed at certain water flow rate, UA = f ( fan speed)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5443f200d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "UACurve" ; + IFC4-PSD:nameAlias "UACurve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p57d77900d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water temperature change as a function of wet-bulb temperature, water entering temperature, water flow rate, air flow rate, Tdiff = f ( Twet-bulb, Twater,in, mwater, mair)." ; + rdfs:label "Performance" ; + IFC4-PSD:definition "Water temperature change as a function of wet-bulb temperature, water entering temperature, water flow rate, air flow rate, Tdiff = f ( Twet-bulb, Twater,in, mwater, mair)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "57d77900d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "Performance" ; + IFC4-PSD:nameAlias "Performance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:UACurve a rdf:Property ; + rdfs:seeAlso :p5443f200d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UACurve . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Capacity a rdf:Property ; + rdfs:seeAlso :p4aba8a00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Capacity . + +:p4aba8a00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream." ; + rdfs:label "Capacity" ; + IFC4-PSD:definition "Cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4aba8a00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "Capacity" ; + IFC4-PSD:nameAlias "Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4db57a80d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat transfer coefficient-area product." ; + rdfs:label "HeatTransferCoefficient" ; + IFC4-PSD:definition "Heat transfer coefficient-area product." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4db57a80d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatTransferCoefficient" ; + IFC4-PSD:nameAlias "Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:HeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :p4db57a80d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatTransferCoefficient . + +:SumpHeaterPower a rdf:Property ; + rdfs:seeAlso :p50b06b00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SumpHeaterPower . + +:p50b06b00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Electrical heat power of sump heater." ; + rdfs:label "SumpHeaterPower" ; + IFC4-PSD:definition "Electrical heat power of sump heater." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "50b06b00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "SumpHeaterPower" ; + IFC4-PSD:nameAlias "Sump Heater Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Performance a rdf:Property ; + rdfs:seeAlso :p57d77900d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Performance . + +:Pset_CoolingTowerPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Cooling tower performance history attributes." ; + rdfs:label "Pset_CoolingTowerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcCoolingTower ; + IFC4-PSD:applicableTypeValue "IfcCoolingTower" ; + IFC4-PSD:definition "Cooling tower performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoolingTowerPHistory" ; + IFC4-PSD:propertyDef :p50b06b00d1cf11e1800000215ad4efdf , :p4aba8a00d1cf11e1800000215ad4efdf , :p57d77900d1cf11e1800000215ad4efdf , :p4db57a80d1cf11e1800000215ad4efdf , :p5443f200d1cf11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_CoolingTowerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_CoolingTowerTypeCommon.ttl new file mode 100644 index 00000000..990624d8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoolingTowerTypeCommon.ttl @@ -0,0 +1,284 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p89504480d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "CounterFlow: Air and water flow enter in different directions.\nCrossFlow: Air and water flow are perpendicular.\nParallelFlow: air and water flow enter in same directions." ; + rdfs:label "FlowArrangement" ; + IFC4-PSD:definition "CounterFlow: Air and water flow enter in different directions.\nCrossFlow: Air and water flow are perpendicular.\nParallelFlow: air and water flow enter in same directions." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "89504480d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "FlowArrangement" ; + IFC4-PSD:nameAlias "Flow Arrangement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COUNTERFLOW" , "CROSSFLOW" , "PARALLELFLOW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FlowArrangement a rdf:Property ; + rdfs:seeAlso :p89504480d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowArrangement . + +:CapacityControl a rdf:Property ; + rdfs:seeAlso :pa553e600d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapacityControl . + +:AmbientDesignWetBulbTemperature + a rdf:Property ; + rdfs:seeAlso :pef3ccc00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AmbientDesignWetBulbTemperature . + +:p95d49d00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "SprayFilled: Water is sprayed into airflow.\nSplashTypeFill: water cascades over successive rows of splash bars.\nFilmTypeFill: water flows in a thin layer over closely spaced sheets." ; + rdfs:label "SprayType" ; + IFC4-PSD:definition "SprayFilled: Water is sprayed into airflow.\nSplashTypeFill: water cascades over successive rows of splash bars.\nFilmTypeFill: water flows in a thin layer over closely spaced sheets." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "95d49d00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "SprayType" ; + IFC4-PSD:nameAlias "Spray Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SPRAYFILLED" , "SPLASHTYPEFILL" , "FILMTYPEFILL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_CoolingTowerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Cooling tower type common attributes.\nWaterRequirement attribute unit type modified in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_CoolingTowerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCoolingTower ; + IFC4-PSD:applicableTypeValue "IfcCoolingTower" ; + IFC4-PSD:definition "Cooling tower type common attributes.\nWaterRequirement attribute unit type modified in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoolingTowerTypeCommon" ; + IFC4-PSD:propertyDef :pa553e600d1cf11e1800000215ad4efdf , :pe9df8180d1cf11e1800000215ad4efdf , :p7b022880d1cf11e1800000215ad4efdf , :p75a4de00d1cf11e1800000215ad4efdf , :pdb916580d1cf11e1800000215ad4efdf , :pc583a500d1cf11e1800000215ad4efdf , :pe0561980d1cf11e1800000215ad4efdf , :p6160e100d1cf11e1800000215ad4efdf , :pd6341b00d1cf11e1800000215ad4efdf , :pef3ccc00d1cf11e1800000215ad4efdf , :p66be2b80d1cf11e1800000215ad4efdf , :p89504480d1cf11e1800000215ad4efdf , :p95d49d00d1cf11e1800000215ad4efdf , :pe51acd80d1cf11e1800000215ad4efdf , :pd0d6d080d1cf11e1800000215ad4efdf . + +:NominalCapacity a rdf:Property ; + rdfs:seeAlso :p75a4de00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCapacity . + +:SprayType a rdf:Property ; + rdfs:seeAlso :p95d49d00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprayType . + +:p6160e100d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "6160e100d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:NumberOfCells a rdf:Property ; + rdfs:seeAlso :pd0d6d080d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfCells . + +:p7b022880d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "OpenCircuit: Exposes water directly to the cooling atmosphere.\nCloseCircuit: The fluid is separated from the atmosphere by a heat exchanger.\nWet: The air stream or the heat exchange surface is evaporatively cooled.\nDry: No evaporation into the air stream.\nDryWet: A combination of a dry tower and a wet tower." ; + rdfs:label "CircuitType" ; + IFC4-PSD:definition "OpenCircuit: Exposes water directly to the cooling atmosphere.\nCloseCircuit: The fluid is separated from the atmosphere by a heat exchanger.\nWet: The air stream or the heat exchange surface is evaporatively cooled.\nDry: No evaporation into the air stream.\nDryWet: A combination of a dry tower and a wet tower." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7b022880d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "CircuitType" ; + IFC4-PSD:nameAlias "Circuit Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OPENCIRCUIT" , "CLOSEDCIRCUITWET" , "CLOSEDCIRCUITDRY" , "CLOSEDCIRCUITDRYWET" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pdb916580d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Elevation difference between cooling tower sump and the top of the tower." ; + rdfs:label "LiftElevationDifference" ; + IFC4-PSD:definition "Elevation difference between cooling tower sump and the top of the tower." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "db916580d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "LiftElevationDifference" ; + IFC4-PSD:nameAlias "Lift Elevation Difference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ControlStrategy a rdf:Property ; + rdfs:seeAlso :pc583a500d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlStrategy . + +:pef3ccc00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient design wet bulb temperature used for selecting the cooling tower." ; + rdfs:label "AmbientDesignWetBulbTemperature" ; + IFC4-PSD:definition "Ambient design wet bulb temperature used for selecting the cooling tower." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ef3ccc00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "AmbientDesignWetBulbTemperature" ; + IFC4-PSD:nameAlias "Ambient Design Wet Bulb Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:LiftElevationDifference + a rdf:Property ; + rdfs:seeAlso :pdb916580d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LiftElevationDifference . + +:Reference a rdf:Property ; + rdfs:seeAlso :p6160e100d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:WaterRequirement a rdf:Property ; + rdfs:seeAlso :pe0561980d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterRequirement . + +:AmbientDesignDryBulbTemperature + a rdf:Property ; + rdfs:seeAlso :pe9df8180d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AmbientDesignDryBulbTemperature . + +:pe0561980d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Make-up water requirements." ; + rdfs:label "WaterRequirement" ; + IFC4-PSD:definition "Make-up water requirements." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e0561980d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterRequirement" ; + IFC4-PSD:nameAlias "Water Requirement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p66be2b80d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "66be2b80d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:CircuitType a rdf:Property ; + rdfs:seeAlso :p7b022880d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CircuitType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd0d6d080d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of cells in one cooling tower unit." ; + rdfs:label "NumberOfCells" ; + IFC4-PSD:definition "Number of cells in one cooling tower unit." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d0d6d080d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfCells" ; + IFC4-PSD:nameAlias "Number Of Cells"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pc583a500d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "FixedExitingWaterTemp: The capacity is controlled to maintain a fixed exiting water temperature.\nWetBulbTempReset: The set-point is reset based on the wet-bulb temperature." ; + rdfs:label "ControlStrategy" ; + IFC4-PSD:definition "FixedExitingWaterTemp: The capacity is controlled to maintain a fixed exiting water temperature.\nWetBulbTempReset: The set-point is reset based on the wet-bulb temperature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c583a500d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "ControlStrategy" ; + IFC4-PSD:nameAlias "Control Strategy"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FIXEDEXITINGWATERTEMP" , "WETBULBTEMPRESET" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p66be2b80d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pe51acd80d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operation ambient air temperature range." ; + rdfs:label "OperationTemperatureRange" ; + IFC4-PSD:definition "Allowable operation ambient air temperature range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e51acd80d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "OperationTemperatureRange" ; + IFC4-PSD:nameAlias "Operation Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:BasinReserveVolume a rdf:Property ; + rdfs:seeAlso :pd6341b00d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BasinReserveVolume . + +:pa553e600d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "FanCycling: Fan is cycled on and off to control duty.\nTwoSpeedFan: Fan is switched between low and high speed to control duty.\nVariableSpeedFan: Fan speed is varied to control duty.\nDampersControl: Dampers modulate the air flow to control duty.\nBypassValveControl: Bypass valve modulates the water flow to control duty.\nMultipleSeriesPumps: Turn on/off multiple series pump to control duty.\nTwoSpeedPump: Switch between high/low pump speed to control duty.\nVariableSpeedPump: vary pump speed to control duty." ; + rdfs:label "CapacityControl" ; + IFC4-PSD:definition "FanCycling: Fan is cycled on and off to control duty.\nTwoSpeedFan: Fan is switched between low and high speed to control duty.\nVariableSpeedFan: Fan speed is varied to control duty.\nDampersControl: Dampers modulate the air flow to control duty.\nBypassValveControl: Bypass valve modulates the water flow to control duty.\nMultipleSeriesPumps: Turn on/off multiple series pump to control duty.\nTwoSpeedPump: Switch between high/low pump speed to control duty.\nVariableSpeedPump: vary pump speed to control duty." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a553e600d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "CapacityControl" ; + IFC4-PSD:nameAlias "Capacity Control"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DAMPERSCONTROL" , "NOTKNOWN" , "MULTIPLESERIESPUMPS" , "VARIABLESPEEDFAN" , "BYPASSVALVECONTROL" , "VARIABLESPEEDPUMP" , "TWOSPEEDFAN" , "OTHER" , "TWOSPEEDPUMP" , "UNSET" , "FANCYCLING" + ] . + +:pe9df8180d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient design dry bulb temperature used for selecting the cooling tower." ; + rdfs:label "AmbientDesignDryBulbTemperature" ; + IFC4-PSD:definition "Ambient design dry bulb temperature used for selecting the cooling tower." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e9df8180d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "AmbientDesignDryBulbTemperature" ; + IFC4-PSD:nameAlias "Ambient Design Dry Bulb Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:OperationTemperatureRange + a rdf:Property ; + rdfs:seeAlso :pe51acd80d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationTemperatureRange . + +:pd6341b00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volume between operating and overflow levels in cooling tower basin." ; + rdfs:label "BasinReserveVolume" ; + IFC4-PSD:definition "Volume between operating and overflow levels in cooling tower basin." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d6341b00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "BasinReserveVolume" ; + IFC4-PSD:nameAlias "Basin Reserve Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:p75a4de00d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream at nominal conditions." ; + rdfs:label "NominalCapacity" ; + IFC4-PSD:definition "Nominal cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream at nominal conditions." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "75a4de00d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCapacity" ; + IFC4-PSD:nameAlias "Nominal Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_CoveringCeiling.ttl b/converter/src/main/resources/pset/Pset_CoveringCeiling.ttl new file mode 100644 index 00000000..1741cb6b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoveringCeiling.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pfebc1500d1cf11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the permeability of the ceiling.\nThe ration can be used to indicate an open ceiling (that enables identification of whether ceiling construction should be considered as impeding distribution of sprinkler water, light etc. from installations within the ceiling area)." ; + rdfs:label "Permeability" ; + IFC4-PSD:definition "Ratio of the permeability of the ceiling.\nThe ration can be used to indicate an open ceiling (that enables identification of whether ceiling construction should be considered as impeding distribution of sprinkler water, light etc. from installations within the ceiling area)." ; + IFC4-PSD:definitionAlias "Durchlässigkeit der Unterdecke als Faktor zwischen 0 Undurchlässig und 1 völlig durchlässig. Der Faktor kann zur Abschätzung genutzt werden, ob die Unterdecke zur Decke hin offen und durchlässig (für Licht, Wasser und Sicht) ist."@de-DE , "Ratio de perméabilité du plafond. Ce ratio peut être utilisé pour désigner un plafond ouvert (cela permet de savoir si la pose du plafond empêche la distribution de fluides à partir d'installations situées dans le faux plafond)."@fr-FR , "天花板的渗透比率。\n该比率可用以表示开敞式天花板(表示天花板能否阻隔其内侧的喷淋水、光线等的)。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "febc1500d1cf11e1800000215ad4efdf" ; + IFC4-PSD:name "Permeability" ; + IFC4-PSD:nameAlias "Perméabilité"@fr-FR , "渗透率"@zh-CN , "Durchlässigkeit"@de-DE , "Permeability"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:Permeability a rdf:Property ; + rdfs:seeAlso :pfebc1500d1cf11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Permeability . + +:Pset_CoveringCeiling + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to CEILING." ; + rdfs:label "Pset_CoveringCeiling" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcCovering/CEILING" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to CEILING." ; + IFC4-PSD:definitionAlias ""@en , "所有PredefinedType设置为CEILING的IfcCovering实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoveringCeiling" ; + IFC4-PSD:propertyDef :pfebc1500d1cf11e1800000215ad4efdf , :p04195f80d1d011e1800000215ad4efdf , :p0976aa00d1d011e1800000215ad4efdf . + +:TileWidth a rdf:Property ; + rdfs:seeAlso :p0976aa00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TileWidth . + +:TileLength a rdf:Property ; + rdfs:seeAlso :p04195f80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TileLength . + +:p0976aa00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Width of ceiling tiles. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "TileWidth" ; + IFC4-PSD:definition "Width of ceiling tiles. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Largeur des carreaux de plafond. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "Breite der Unterdeckenplatten, oder -panele, die zur Verkleidung verwendet werden."@de-DE , "天花板面砖的宽度。\n该属性所提供的尺寸信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的尺寸属性不符,应以几何参数为准。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "0976aa00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "TileWidth" ; + IFC4-PSD:nameAlias "Tile Width"@en , "面砖宽度"@zh-CN , "Largeur des carreaux"@fr-FR , "Deckenplattenbreite"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p04195f80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of ceiling tiles. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "TileLength" ; + IFC4-PSD:definition "Length of ceiling tiles. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Länge der Unterdeckenplatten, oder -panele, die zur Verkleidung verwendet werden."@de-DE , "Longueur des carreaux de plafond. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en , "天花板面砖的长度。\n该属性所提供的尺寸信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的尺寸属性不符,应以几何参数为准。"@zh-CN ; + IFC4-PSD:ifdguid "04195f80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "TileLength" ; + IFC4-PSD:nameAlias "Deckenplattenlänge"@de-DE , "Tile Length"@en , "Longueur des carreaux"@fr-FR , "面砖长度"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_CoveringCommon.ttl b/converter/src/main/resources/pset/Pset_CoveringCommon.ttl index f35bb80f..d7eb5e10 100644 --- a/converter/src/main/resources/pset/Pset_CoveringCommon.ttl +++ b/converter/src/main/resources/pset/Pset_CoveringCommon.ttl @@ -1,247 +1,213 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_CoveringCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" ; -. -:Pset_CoveringCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcCovering ; - IFC4-PSD:applicableTypeValue "IfcCovering" ; - IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of covering" ; - IFC4-PSD:definitionAlias "IfcCoveringオブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcCovering实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_CoveringCommon" ; - IFC4-PSD:propertyDef :_14c9d580d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1a272000d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_28753c00d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2e6b1d00d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3460fe00d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_39be4880d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3f1b9300d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_45aa0a80d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4b9feb80d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_50fd3600d1d011e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_565a8080d1d011e1800000215ad4efdf ; -. -:_14c9d580d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)"@ja-JP ; - IFC4-PSD:definitionAlias "该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "14c9d580d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Référence"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1a272000d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "1a272000d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_28753c00d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for this object. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandsklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "耐火等級。当該国の建築法規による。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "28753c00d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "Résistance au feu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2e6b1d00d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias """遮音等級。当該国の建築法規による。 -このオブジェクトの音の透過損失を等級値で示す。"""@ja-JP ; - IFC4-PSD:ifdguid "2e6b1d00d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "Isolation acoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_3460fe00d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Flammability Rating for this object. -It is given according to the national building code that governs the rating of flammability for materials.""" ; - IFC4-PSD:definitionAlias "Angabe zur Entflammbarkeit des Materials gemäß der nationalen oder regionalen Normen."@de-DE ; - IFC4-PSD:definitionAlias "Classement de l'inflammabilité de l'élément selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "可燃性等級。当該国の建築法規による。"@ja-JP ; - IFC4-PSD:ifdguid "3460fe00d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "FlammabilityRating" ; - IFC4-PSD:nameAlias "Entflammbarkeitsklasse"@de-DE ; - IFC4-PSD:nameAlias "Inflammabilité"@fr-FR ; - IFC4-PSD:nameAlias "可燃性等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_39be4880d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication on the fragility of the covering (e.g., under fire conditions). It is given according to the national building code that might provide a classification for fragility." ; - IFC4-PSD:definitionAlias "Angabe zur Zerbrechlichkeit des Materials (zum Beispiel unter Brandlast oder Erschütterung) gemäß der nationalen oder regionalen Normen."@de-DE ; - IFC4-PSD:definitionAlias "Indication de la fragilité du revêtement selon une classification nationale."@fr-FR ; - IFC4-PSD:definitionAlias "脆弱性等級。当該国の建築法規による。"@ja-JP ; - IFC4-PSD:ifdguid "39be4880d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "FragilityRating" ; - IFC4-PSD:nameAlias "Fragilitätsklasse"@de-DE ; - IFC4-PSD:nameAlias "Fragilité"@fr-FR ; - IFC4-PSD:nameAlias "脆弱性等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_3f1b9300d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication on how the flames spread around the surface, -It is given according to the national building code that governs the fire behaviour for materials.""" ; - IFC4-PSD:definitionAlias "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR ; - IFC4-PSD:definitionAlias "火炎表面伝播性。当該国の建築法規による。"@ja-JP ; - IFC4-PSD:ifdguid "3f1b9300d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "SurfaceSpreadOfFlame" ; - IFC4-PSD:nameAlias "Brandverhalten"@de-DE ; - IFC4-PSD:nameAlias "Propagation des flammes en surface"@fr-FR ; - IFC4-PSD:nameAlias "火炎表面伝播性"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_45aa0a80d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否由可燃材料制成。"@zh-CN ; - IFC4-PSD:ifdguid "45aa0a80d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "Combustible" ; - IFC4-PSD:nameAlias "Brennbares Material"@de-DE ; - IFC4-PSD:nameAlias "Combustible"@fr-FR ; - IFC4-PSD:nameAlias "可燃性区分"@ja-JP ; - IFC4-PSD:nameAlias "是否可燃"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_4b9feb80d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieser Bekleidung eine Außenbekleidung ist (JA) oder ein Innenbekleidung (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "4b9feb80d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "Est extérieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_50fd3600d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of an element. -Here the total thermal transmittance coefficient through the covering (including all materials).""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le revêtement dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Bekleidung (für alle Schichten)."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示穿过该覆盖层的整体导热系数(包括所有材料)。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここではカバリングを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "50fd3600d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "Transmission thermique surfacique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_565a8080d1d011e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Finish selection for this object. -Here specification of the surface finish for informational purposes.""" ; - IFC4-PSD:definitionAlias "Finition de cet objet. Spécification de la finition donnée à titre informatif."@fr-FR ; - IFC4-PSD:definitionAlias "Oberflächenbehandlung oder Oberflächengüte, wie \"poliert\", \"schalungsrau\", imprägniert."@de-DE ; - IFC4-PSD:definitionAlias "仕上げ選択に関する情報。表面仕上げに関する仕様。"@ja-JP ; - IFC4-PSD:definitionAlias "该构件的表面处理方式。仅供参考。"@zh-CN ; - IFC4-PSD:ifdguid "565a8080d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "Finish" ; - IFC4-PSD:nameAlias "Finition"@fr-FR ; - IFC4-PSD:nameAlias "Oberflächengüte"@de-DE ; - IFC4-PSD:nameAlias "仕上げ"@ja-JP ; - IFC4-PSD:nameAlias "表面处理"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:Finish a rdf:Property ; + rdfs:seeAlso :p565a8080d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Finish . + +:p565a8080d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Finish selection for this object.\nHere specification of the surface finish for informational purposes." ; + rdfs:label "Finish" ; + IFC4-PSD:definition "Finish selection for this object.\nHere specification of the surface finish for informational purposes." ; + IFC4-PSD:definitionAlias "仕上げ選択に関する情報。表面仕上げに関する仕様。"@ja-JP , ""@en , "Finition de cet objet. Spécification de la finition donnée à titre informatif."@fr-FR , "Oberflächenbehandlung oder Oberflächengüte, wie \"poliert\", \"schalungsrau\", imprägniert."@de-DE , "该构件的表面处理方式。仅供参考。"@zh-CN ; + IFC4-PSD:ifdguid "565a8080d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Finish" ; + IFC4-PSD:nameAlias "Oberflächengüte"@de-DE , "Finition"@fr-FR , "仕上げ"@ja-JP , "Finish"@en , "表面处理"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :p2e6b1d00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:p50fd3600d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of an element. \nHere the total thermal transmittance coefficient through the covering (including all materials)." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of an element. \nHere the total thermal transmittance coefficient through the covering (including all materials)." ; + IFC4-PSD:definitionAlias ""@en , "材料的导热系数(U值)。\n表示穿过该覆盖层的整体导热系数(包括所有材料)。"@zh-CN , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le revêtement dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。ここではカバリングを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Bekleidung (für alle Schichten)."@de-DE ; + IFC4-PSD:ifdguid "50fd3600d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "导热系数"@zh-CN , "Transmission thermique surfacique"@fr-FR , "U-Wert"@de-DE , "熱貫流率"@ja-JP , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:Pset_CoveringCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of covering" ; + rdfs:label "Pset_CoveringCommon" ; + IFC4-PSD:applicableClass IFC4:IfcCovering ; + IFC4-PSD:applicableTypeValue "IfcCovering" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of covering" ; + IFC4-PSD:definitionAlias "IfcCoveringオブジェクトに関する共通プロパティセット定義。"@ja-JP , ""@en , "所有IfcCovering实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoveringCommon" ; + IFC4-PSD:propertyDef :p14c9d580d1d011e1800000215ad4efdf , :p3460fe00d1d011e1800000215ad4efdf , :p4b9feb80d1d011e1800000215ad4efdf , :p28753c00d1d011e1800000215ad4efdf , :p2e6b1d00d1d011e1800000215ad4efdf , :p39be4880d1d011e1800000215ad4efdf , :p45aa0a80d1d011e1800000215ad4efdf , :p1a272000d1d011e1800000215ad4efdf , :p565a8080d1d011e1800000215ad4efdf , :p50fd3600d1d011e1800000215ad4efdf , :p3f1b9300d1d011e1800000215ad4efdf . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p4b9feb80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p3460fe00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flammability Rating for this object.\nIt is given according to the national building code that governs the rating of flammability for materials." ; + rdfs:label "FlammabilityRating" ; + IFC4-PSD:definition "Flammability Rating for this object.\nIt is given according to the national building code that governs the rating of flammability for materials." ; + IFC4-PSD:definitionAlias "Angabe zur Entflammbarkeit des Materials gemäß der nationalen oder regionalen Normen."@de-DE , "Classement de l'inflammabilité de l'élément selon la classification nationale de sécurité incendie."@fr-FR , "可燃性等級。当該国の建築法規による。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3460fe00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "FlammabilityRating" ; + IFC4-PSD:nameAlias "Entflammbarkeitsklasse"@de-DE , "可燃性等級"@ja-JP , "Inflammabilité"@fr-FR , "Flammability Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p14c9d580d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)"@ja-JP , ""@en , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "14c9d580d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "参照記号"@ja-JP , "Bauteiltyp"@de-DE , "Reference"@en , "Référence"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p39be4880d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication on the fragility of the covering (e.g., under fire conditions). It is given according to the national building code that might provide a classification for fragility." ; + rdfs:label "FragilityRating" ; + IFC4-PSD:definition "Indication on the fragility of the covering (e.g., under fire conditions). It is given according to the national building code that might provide a classification for fragility." ; + IFC4-PSD:definitionAlias "脆弱性等級。当該国の建築法規による。"@ja-JP , ""@en , "Indication de la fragilité du revêtement selon une classification nationale."@fr-FR , "Angabe zur Zerbrechlichkeit des Materials (zum Beispiel unter Brandlast oder Erschütterung) gemäß der nationalen oder regionalen Normen."@de-DE ; + IFC4-PSD:ifdguid "39be4880d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "FragilityRating" ; + IFC4-PSD:nameAlias "脆弱性等級"@ja-JP , "Fragilitätsklasse"@de-DE , "Fragilité"@fr-FR , "Fragility Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:SurfaceSpreadOfFlame + a rdf:Property ; + rdfs:seeAlso :p3f1b9300d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceSpreadOfFlame . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p50fd3600d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p3f1b9300d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + rdfs:label "SurfaceSpreadOfFlame" ; + IFC4-PSD:definition "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + IFC4-PSD:definitionAlias "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR , ""@en , "火炎表面伝播性。当該国の建築法規による。"@ja-JP ; + IFC4-PSD:ifdguid "3f1b9300d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceSpreadOfFlame" ; + IFC4-PSD:nameAlias "Surface Spread Of Flame"@en , "Propagation des flammes en surface"@fr-FR , "Brandverhalten"@de-DE , "火炎表面伝播性"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p28753c00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias ""@en , "耐火等級。当該国の建築法規による。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Feuerwiderstandsklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:ifdguid "28753c00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "防火等级"@zh-CN , "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE , "耐火等級"@ja-JP , "Résistance au feu"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p28753c00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p45aa0a80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + rdfs:label "Combustible" ; + IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE , "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR , "表示该构件是否由可燃材料制成。"@zh-CN , ""@en , "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "45aa0a80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Combustible" ; + IFC4-PSD:nameAlias "可燃性区分"@ja-JP , "是否可燃"@zh-CN , "Combustible"@fr-FR , "Combustible"@en , "Brennbares Material"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FragilityRating a rdf:Property ; + rdfs:seeAlso :p39be4880d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FragilityRating . + +:Reference a rdf:Property ; + rdfs:seeAlso :p14c9d580d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p1a272000d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p1a272000d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "1a272000d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Status"@de-DE , "状態"@ja-JP , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p2e6b1d00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias ""@en , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "遮音等級。当該国の建築法規による。\nこのオブジェクトの音の透過損失を等級値で示す。"@ja-JP , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN ; + IFC4-PSD:ifdguid "2e6b1d00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "Acoustic Rating"@en , "遮音等級"@ja-JP , "Schallschutzklasse"@de-DE , "Isolation acoustique"@fr-FR , "隔音等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Combustible a rdf:Property ; + rdfs:seeAlso :p45aa0a80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Combustible . + +:p4b9feb80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "Angabe, ob dieser Bekleidung eine Außenbekleidung ist (JA) oder ein Innenbekleidung (NEIN)."@de-DE , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4b9feb80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "外部区分"@ja-JP , "Est extérieur"@fr-FR , "Is External"@en , "是否外部构件"@zh-CN , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FlammabilityRating a rdf:Property ; + rdfs:seeAlso :p3460fe00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlammabilityRating . diff --git a/converter/src/main/resources/pset/Pset_CoveringFlooring.ttl b/converter/src/main/resources/pset/Pset_CoveringFlooring.ttl new file mode 100644 index 00000000..c09d2204 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_CoveringFlooring.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HasAntiStaticSurface + a rdf:Property ; + rdfs:seeAlso :p683c2380d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasAntiStaticSurface . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasNonSkidSurface a rdf:Property ; + rdfs:seeAlso :p62ded900d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasNonSkidSurface . + +:p62ded900d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + rdfs:label "HasNonSkidSurface" ; + IFC4-PSD:definition "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "表示表面处理是否设计为防滑的。"@zh-CN , "Angabe, ob der Bodenbelag eine nichtrutschende Oberfläche hat (JA), oder nicht (NEIN)."@de-DE , ""@en , "Indique si la finition est conçue pour être anti dérapante (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "62ded900d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "HasNonSkidSurface" ; + IFC4-PSD:nameAlias "Anti dérapant"@fr-FR , "Has Non Skid Surface"@en , "表面是否防滑"@zh-CN , "Nichtrutschende Oberfläche"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_CoveringFlooring + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to FLOORING." ; + rdfs:label "Pset_CoveringFlooring" ; + IFC4-PSD:applicableClass , IFC4: ; + IFC4-PSD:applicableTypeValue "IfcCovering/FLOORING," ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to FLOORING." ; + IFC4-PSD:definitionAlias ""@en , "所有PredefinedType设置为FLOORING的IfcCovering实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_CoveringFlooring" ; + IFC4-PSD:propertyDef :p62ded900d1d011e1800000215ad4efdf , :p683c2380d1d011e1800000215ad4efdf . + +:p683c2380d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the surface finish is designed to prevent electrostatic charge (TRUE) or not (FALSE)." ; + rdfs:label "HasAntiStaticSurface" ; + IFC4-PSD:definition "Indication whether the surface finish is designed to prevent electrostatic charge (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si la finition est conçue pour être anti statique (VRAI) ou non (FAUX)."@fr-FR , ""@en , "表示表面处理是否设计为防静电的。"@zh-CN , "Angabe, ob der Bodenbelag eine antistatische Oberfläche hat (JA), oder nicht (NEIN)."@de-DE ; + IFC4-PSD:ifdguid "683c2380d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "HasAntiStaticSurface" ; + IFC4-PSD:nameAlias "Has Anti Static Surface"@en , "Antistatische Oberfläche"@de-DE , "表面是否防静电"@zh-CN , "Anti statique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_CurtainWallCommon.ttl b/converter/src/main/resources/pset/Pset_CurtainWallCommon.ttl index ebb49246..50fe09eb 100644 --- a/converter/src/main/resources/pset/Pset_CurtainWallCommon.ttl +++ b/converter/src/main/resources/pset/Pset_CurtainWallCommon.ttl @@ -1,111 +1,163 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . +@prefix IFC4: . -:_a6394780d1d011e1800000215ad4efdf +:p915cb400d1d011e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "a6394780d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR , "Außenbauteil"@de-DE , "Is External"@en , "是否外部构件"@zh-CN , "外部区分"@ja-JP ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean - ] . - -:_75f1a900d1d011e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:ifdguid "75f1a900d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "参照記号"@ja-JP , "Reference"@fr-FR , "Reference"@en , "参考号"@zh-CN ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier - ] . - -<> a owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" . - -:_9c174900d1d011e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; - IFC4-PSD:definitionAlias "炎がどのように材料の表面を広がるかという指標。材料の炎に対する振る舞いについての国家建築規則に従って提供される。"@ja-JP , ""@en , "German-description-5"@de-DE , "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR ; - IFC4-PSD:ifdguid "9c174900d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "SurfaceSpreadOfFlame" ; - IFC4-PSD:nameAlias "Surface Spread Of Flame"@en , "SurfacePropagationFlamme"@fr-FR , "Brandverhalten"@de-DE , "火炎伝播性"@ja-JP ; + rdfs:comment "Fire rating given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , ""@en , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:ifdguid "915cb400d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "耐火等級"@ja-JP , "Fire Rating"@en , "ResistanceAuFeu"@fr-FR , "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcLabel ] . :Pset_CurtainWallCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcCurtainWall." ; + rdfs:label "Pset_CurtainWallCommon" ; IFC4-PSD:applicableClass IFC4:IfcCurtainWall ; IFC4-PSD:applicableTypeValue "IfcCurtainWall" ; IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcCurtainWall." ; - IFC4-PSD:definitionAlias "IfcCurtainWall(カーテンウォール)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les occurrences de la classe IfcCurtainWall"@fr-FR , ""@en , "所有IfcCurtainWall实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:definitionAlias ""@en , "IfcCurtainWall(カーテンウォール)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les occurrences de la classe IfcCurtainWall"@fr-FR , "所有IfcCurtainWall实例的定义中通用的属性。"@zh-CN ; IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; IFC4-PSD:version "IFC4" ] ; IFC4-PSD:name "Pset_CurtainWallCommon" ; - IFC4-PSD:propertyDef :_a1749380d1d011e1800000215ad4efdf , :_75f1a900d1d011e1800000215ad4efdf , :_a6394780d1d011e1800000215ad4efdf , :_9c174900d1d011e1800000215ad4efdf , :_7be78a00d1d011e1800000215ad4efdf , :_915cb400d1d011e1800000215ad4efdf , :_96b9fe80d1d011e1800000215ad4efdf , :_8b66d300d1d011e1800000215ad4efdf . + IFC4-PSD:propertyDef :p915cb400d1d011e1800000215ad4efdf , :p9c174900d1d011e1800000215ad4efdf , :pa1749380d1d011e1800000215ad4efdf , :p8b66d300d1d011e1800000215ad4efdf , :p7be78a00d1d011e1800000215ad4efdf , :p96b9fe80d1d011e1800000215ad4efdf , :p75f1a900d1d011e1800000215ad4efdf , :pa6394780d1d011e1800000215ad4efdf . -:_915cb400d1d011e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias ""@en , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN ; - IFC4-PSD:ifdguid "915cb400d1d011e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE , "ResistanceAuFeu"@fr-FR , "Fire Rating"@en , "耐火等級"@ja-JP ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel - ] . - -:_96b9fe80d1d011e1800000215ad4efdf +:p96b9fe80d1d011e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + rdfs:label "Combustible" ; IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR , "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP , "表示该构件是否由可燃材料制成。"@zh-CN , ""@en , "German-description-4"@de-DE ; + IFC4-PSD:definitionAlias "表示该构件是否由可燃材料制成。"@zh-CN , "German-description-4"@de-DE , "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR , "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP , ""@en ; IFC4-PSD:ifdguid "96b9fe80d1d011e1800000215ad4efdf" ; IFC4-PSD:name "Combustible" ; - IFC4-PSD:nameAlias "Brennbares Material"@de-DE , "Combustible"@fr-FR , "Combustible"@en , "是否可燃"@zh-CN , "可燃性区分"@ja-JP ; + IFC4-PSD:nameAlias "Combustible"@en , "Combustible"@fr-FR , "Brennbares Material"@de-DE , "可燃性区分"@ja-JP , "是否可燃"@zh-CN ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcBoolean ] . -:_7be78a00d1d011e1800000215ad4efdf +:AcousticRating a rdf:Property ; + rdfs:seeAlso :p8b66d300d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:p7be78a00d1d011e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; IFC4-PSD:ifdguid "7be78a00d1d011e1800000215ad4efdf" ; IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@de-DE , "Status"@en , "Statut"@fr-FR ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "Status"@en , "Status"@de-DE , "状態"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "UNSET" , "NOTKNOWN" , "OTHER" , "TEMPORARY" , "DEMOLISH" , "EXISTING" , "NEW" + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" ] . -:_a1749380d1d011e1800000215ad4efdf +:pa1749380d1d011e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the wall (including all materials)." ; + rdfs:label "ThermalTransmittance" ; IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the wall (including all materials)." ; - IFC4-PSD:definitionAlias "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le mur dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。ここではカーテンウォールを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "材料的导热系数(U值)。\n表示穿过该墙的整体导热系数(包括所有材料)。"@zh-CN , ""@en ; + IFC4-PSD:definitionAlias "材料的导热系数(U值)。\n表示穿过该墙的整体导热系数(包括所有材料)。"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , ""@en , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le mur dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "熱貫流率U値。ここではカーテンウォールを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; IFC4-PSD:ifdguid "a1749380d1d011e1800000215ad4efdf" ; IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "U-Wert"@de-DE , "TransmissionThermique"@fr-FR , "熱貫流率"@ja-JP , "导热系数"@zh-CN , "Thermal Transmittance"@en ; + IFC4-PSD:nameAlias "导热系数"@zh-CN , "TransmissionThermique"@fr-FR , "Thermal Transmittance"@en , "熱貫流率"@ja-JP , "U-Wert"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ] . -:_8b66d300d1d011e1800000215ad4efdf +:p75f1a900d1d011e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "75f1a900d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "参考号"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p8b66d300d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , ""@en , "遮音等級情報。関連する建築基準法を参照。"@ja-JP , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN ; + IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "遮音等級情報。関連する建築基準法を参照。"@ja-JP , ""@en , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; IFC4-PSD:ifdguid "8b66d300d1d011e1800000215ad4efdf" ; IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "Acoustic Rating"@en , "IsolationAcoustique"@fr-FR , "隔音等级"@zh-CN , "Schallschutzklasse"@de-DE , "遮音等級"@ja-JP ; + IFC4-PSD:nameAlias "Acoustic Rating"@en , "遮音等級"@ja-JP , "Schallschutzklasse"@de-DE , "IsolationAcoustique"@fr-FR , "隔音等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p915cb400d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:Combustible a rdf:Property ; + rdfs:seeAlso :p96b9fe80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Combustible . + +:Status a rdf:Property ; + rdfs:seeAlso :p7be78a00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pa6394780d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p75f1a900d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p9c174900d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + rdfs:label "SurfaceSpreadOfFlame" ; + IFC4-PSD:definition "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + IFC4-PSD:definitionAlias "German-description-5"@de-DE , "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR , ""@en , "炎がどのように材料の表面を広がるかという指標。材料の炎に対する振る舞いについての国家建築規則に従って提供される。"@ja-JP ; + IFC4-PSD:ifdguid "9c174900d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceSpreadOfFlame" ; + IFC4-PSD:nameAlias "Surface Spread Of Flame"@en , "SurfacePropagationFlamme"@fr-FR , "Brandverhalten"@de-DE , "火炎伝播性"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcLabel ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pa1749380d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:SurfaceSpreadOfFlame + a rdf:Property ; + rdfs:seeAlso :p9c174900d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceSpreadOfFlame . + +:pa6394780d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , ""@en ; + IFC4-PSD:ifdguid "a6394780d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "EstExterieur"@fr-FR , "Außenbauteil"@de-DE , "Is External"@en , "外部区分"@ja-JP , "是否外部构件"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_DamperOccurrence.ttl b/converter/src/main/resources/pset/Pset_DamperOccurrence.ttl new file mode 100644 index 00000000..85e00ea4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperOccurrence.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DamperOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Damper occurrence attributes attached to an instance of IfcDamper" ; + rdfs:label "Pset_DamperOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcDamper ; + IFC4-PSD:applicableTypeValue "IfcDamper" ; + IFC4-PSD:definition "Damper occurrence attributes attached to an instance of IfcDamper" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperOccurrence" ; + IFC4-PSD:propertyDef :pb2250980d1d011e1800000215ad4efdf . + +:SizingMethod a rdf:Property ; + rdfs:seeAlso :pb2250980d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SizingMethod . + +:pb2250980d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies whether the damper is sized nominally or with exact measurements:\n\nNOMINAL: Nominal sizing method. \nEXACT: Exact sizing method." ; + rdfs:label "SizingMethod" ; + IFC4-PSD:definition "Identifies whether the damper is sized nominally or with exact measurements:\n\nNOMINAL: Nominal sizing method. \nEXACT: Exact sizing method." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b2250980d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "SizingMethod" ; + IFC4-PSD:nameAlias "Sizing Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NOMINAL" , "EXACT" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_DamperPHistory.ttl b/converter/src/main/resources/pset/Pset_DamperPHistory.ttl new file mode 100644 index 00000000..9621515e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperPHistory.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:PressureDrop a rdf:Property ; + rdfs:seeAlso :pc9fc8d80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureDrop . + +:pc7019d00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air leakage rate." ; + rdfs:label "Leakage" ; + IFC4-PSD:definition "Air leakage rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c7019d00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Leakage" ; + IFC4-PSD:nameAlias "Leakage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pd2ed5f00d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure loss coefficient." ; + rdfs:label "PressureLossCoefficient" ; + IFC4-PSD:definition "Pressure loss coefficient." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d2ed5f00d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "PressureLossCoefficient" ; + IFC4-PSD:nameAlias "Pressure Loss Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:BladePositionAngle a rdf:Property ; + rdfs:seeAlso :pcc5ee780d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BladePositionAngle . + +:pc9fc8d80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure drop." ; + rdfs:label "PressureDrop" ; + IFC4-PSD:definition "Pressure drop." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c9fc8d80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "PressureDrop" ; + IFC4-PSD:nameAlias "Pressure Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pcc5ee780d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Blade position angle; angle between the blade and flow direction ( 0 - 90)." ; + rdfs:label "BladePositionAngle" ; + IFC4-PSD:definition "Blade position angle; angle between the blade and flow direction ( 0 - 90)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cc5ee780d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "BladePositionAngle" ; + IFC4-PSD:nameAlias "Blade Position Angle"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_DamperPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Damper performance history attributes." ; + rdfs:label "Pset_DamperPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcDamper ; + IFC4-PSD:applicableTypeValue "IfcDamper" ; + IFC4-PSD:definition "Damper performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperPHistory" ; + IFC4-PSD:propertyDef :pc36e1600d1d011e1800000215ad4efdf , :pcc5ee780d1d011e1800000215ad4efdf , :pd2ed5f00d1d011e1800000215ad4efdf , :pcff26e80d1d011e1800000215ad4efdf , :pc9fc8d80d1d011e1800000215ad4efdf , :pc7019d00d1d011e1800000215ad4efdf . + +:Leakage a rdf:Property ; + rdfs:seeAlso :pc7019d00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Leakage . + +:pcff26e80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Damper position (0-1); damper position ( 0=closed=90deg position angle, 1=open=0deg position angle." ; + rdfs:label "DamperPosition" ; + IFC4-PSD:definition "Damper position (0-1); damper position ( 0=closed=90deg position angle, 1=open=0deg position angle." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cff26e80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "DamperPosition" ; + IFC4-PSD:nameAlias "Damper Position"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:DamperPosition a rdf:Property ; + rdfs:seeAlso :pcff26e80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DamperPosition . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PressureLossCoefficient + a rdf:Property ; + rdfs:seeAlso :pd2ed5f00d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureLossCoefficient . + +:pc36e1600d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air flow rate." ; + rdfs:label "AirFlowRate" ; + IFC4-PSD:definition "Air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c36e1600d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowRate" ; + IFC4-PSD:nameAlias "Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirFlowRate a rdf:Property ; + rdfs:seeAlso :pc36e1600d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowRate . diff --git a/converter/src/main/resources/pset/Pset_DamperTypeCommon.ttl b/converter/src/main/resources/pset/Pset_DamperTypeCommon.ttl new file mode 100644 index 00000000..d2f46bbd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperTypeCommon.ttl @@ -0,0 +1,438 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:BladeAction a rdf:Property ; + rdfs:seeAlso :p16e06400d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BladeAction . + +:p67f05800d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Leakage when fully closed." ; + rdfs:label "LeakageFullyClosed" ; + IFC4-PSD:definition "Leakage when fully closed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "67f05800d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "LeakageFullyClosed" ; + IFC4-PSD:nameAlias "Leakage Fully Closed"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p93734280d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the damper frame material." ; + rdfs:label "FrameThickness" ; + IFC4-PSD:definition "The thickness of the damper frame material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "93734280d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FrameThickness" ; + IFC4-PSD:nameAlias "Frame Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0def9280d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the damper blade." ; + rdfs:label "BladeThickness" ; + IFC4-PSD:definition "The thickness of the damper blade." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0def9280d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "BladeThickness" ; + IFC4-PSD:nameAlias "Blade Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OpenPressureDrop a rdf:Property ; + rdfs:seeAlso :p632ba400d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OpenPressureDrop . + +:FrameType a rdf:Property ; + rdfs:seeAlso :p85252680d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrameType . + +:p4c854d00d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature range." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Temperature range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4c854d00d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p47c09900d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum allowable air flow rate." ; + rdfs:label "MaximumAirFlowRate" ; + IFC4-PSD:definition "Maximum allowable air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "47c09900d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumAirFlowRate" ; + IFC4-PSD:nameAlias "Maximum Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p3d060400d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of blades." ; + rdfs:label "NumberofBlades" ; + IFC4-PSD:definition "Number of blades." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3d060400d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "NumberofBlades" ; + IFC4-PSD:nameAlias "Numberof Blades"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p16e06400d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Blade action." ; + rdfs:label "BladeAction" ; + IFC4-PSD:definition "Blade action." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "16e06400d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "BladeAction" ; + IFC4-PSD:nameAlias "Blade Action"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FOLDINGCURTAIN" , "PARALLEL" , "OPPOSED" , "SINGLE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p6cb50c00d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loss coefficient – blade position angle curve; ratio of pressure drop to velocity pressure versus blade angle; C = f (blade angle position)." ; + rdfs:label "LossCoefficentCurve" ; + IFC4-PSD:definition "Loss coefficient – blade position angle curve; ratio of pressure drop to velocity pressure versus blade angle; C = f (blade angle position)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6cb50c00d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "LossCoefficentCurve" ; + IFC4-PSD:nameAlias "Loss Coefficent Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcPositivePlaneAngleMeasure + ] . + +:p632ba400d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total pressure drop across damper." ; + rdfs:label "OpenPressureDrop" ; + IFC4-PSD:definition "Total pressure drop across damper." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "632ba400d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "OpenPressureDrop" ; + IFC4-PSD:nameAlias "Open Pressure Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pfca68600d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The intended orientation for the damper as specified by the manufacturer." ; + rdfs:label "Orientation" ; + IFC4-PSD:definition "The intended orientation for the damper as specified by the manufacturer." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fca68600d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Orientation" ; + IFC4-PSD:nameAlias "Orientation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "VERTICAL" , "HORIZONTAL" , "VERTICALORHORIZONTAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:BladeShape a rdf:Property ; + rdfs:seeAlso :p252e8000d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BladeShape . + +:p31b2d880d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Blade edge." ; + rdfs:label "BladeEdge" ; + IFC4-PSD:definition "Blade edge." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "31b2d880d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "BladeEdge" ; + IFC4-PSD:nameAlias "Blade Edge"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CRIMPED" , "UNCRIMPED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:BladeThickness a rdf:Property ; + rdfs:seeAlso :p0def9280d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BladeThickness . + +:MaximumAirFlowRate a rdf:Property ; + rdfs:seeAlso :p47c09900d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumAirFlowRate . + +:RegeneratedSoundCurve + a rdf:Property ; + rdfs:seeAlso :p7d658200d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RegeneratedSoundCurve . + +:p85252680d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of frame used by the damper (e.g., Standard, Single Flange, Single Reversed Flange, Double Flange, etc.)." ; + rdfs:label "FrameType" ; + IFC4-PSD:definition "The type of frame used by the damper (e.g., Standard, Single Flange, Single Reversed Flange, Double Flange, etc.)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "85252680d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FrameType" ; + IFC4-PSD:nameAlias "Frame Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:TemperatureRating a rdf:Property ; + rdfs:seeAlso :p5909a580d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRating . + +:pe1d41180d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e1d41180d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p42634e80d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Face area open to the airstream." ; + rdfs:label "FaceArea" ; + IFC4-PSD:definition "Face area open to the airstream." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "42634e80d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FaceArea" ; + IFC4-PSD:nameAlias "Face Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :p4c854d00d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:MaximumWorkingPressure + a rdf:Property ; + rdfs:seeAlso :p53ac5b00d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumWorkingPressure . + +:NumberofBlades a rdf:Property ; + rdfs:seeAlso :p3d060400d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberofBlades . + +:Pset_DamperTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Damper type common attributes." ; + rdfs:label "Pset_DamperTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDamper ; + IFC4-PSD:applicableTypeValue "IfcDamper" ; + IFC4-PSD:definition "Damper type common attributes." ; + IFC4-PSD:definitionAlias "ダンパー型の共通プロパティ属性設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperTypeCommon" ; + IFC4-PSD:propertyDef :p93734280d1d111e1800000215ad4efdf , :p53ac5b00d1d111e1800000215ad4efdf , :p98d08d00d1d111e1800000215ad4efdf , :p632ba400d1d111e1800000215ad4efdf , :p5e66f000d1d111e1800000215ad4efdf , :p6cb50c00d1d111e1800000215ad4efdf , :p47c09900d1d111e1800000215ad4efdf , :p5909a580d1d111e1800000215ad4efdf , :p42634e80d1d111e1800000215ad4efdf , :p7d658200d1d111e1800000215ad4efdf , :p31b2d880d1d111e1800000215ad4efdf , :p85252680d1d111e1800000215ad4efdf , :p8b1b0780d1d111e1800000215ad4efdf , :pe1d41180d1d011e1800000215ad4efdf , :pfca68600d1d011e1800000215ad4efdf , :p252e8000d1d111e1800000215ad4efdf , :p4c854d00d1d111e1800000215ad4efdf , :p3d060400d1d111e1800000215ad4efdf , :p16e06400d1d111e1800000215ad4efdf , :pdc76c700d1d011e1800000215ad4efdf , :p0def9280d1d111e1800000215ad4efdf , :p750d4700d1d111e1800000215ad4efdf , :pf0222d80d1d011e1800000215ad4efdf , :p67f05800d1d111e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Orientation a rdf:Property ; + rdfs:seeAlso :pfca68600d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Orientation . + +:Status a rdf:Property ; + rdfs:seeAlso :pe1d41180d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :pdc76c700d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LossCoefficentCurve a rdf:Property ; + rdfs:seeAlso :p6cb50c00d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LossCoefficentCurve . + +:Operation a rdf:Property ; + rdfs:seeAlso :pf0222d80d1d011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Operation . + +:NominalAirFlowRate a rdf:Property ; + rdfs:seeAlso :p5e66f000d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalAirFlowRate . + +:LeakageFullyClosed a rdf:Property ; + rdfs:seeAlso :p67f05800d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeakageFullyClosed . + +:FrameDepth a rdf:Property ; + rdfs:seeAlso :p8b1b0780d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrameDepth . + +:p98d08d00d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Close off rating." ; + rdfs:label "CloseOffRating" ; + IFC4-PSD:definition "Close off rating." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "98d08d00d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "CloseOffRating" ; + IFC4-PSD:nameAlias "Close Off Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p750d4700d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Leakage versus pressure drop; Leakage = f (pressure)." ; + rdfs:label "LeakageCurve" ; + IFC4-PSD:definition "Leakage versus pressure drop; Leakage = f (pressure)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "750d4700d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "LeakageCurve" ; + IFC4-PSD:nameAlias "Leakage Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pdc76c700d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "dc76c700d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p5909a580d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature rating." ; + rdfs:label "TemperatureRating" ; + IFC4-PSD:definition "Temperature rating." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5909a580d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRating" ; + IFC4-PSD:nameAlias "Temperature Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:FaceArea a rdf:Property ; + rdfs:seeAlso :p42634e80d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaceArea . + +:LeakageCurve a rdf:Property ; + rdfs:seeAlso :p750d4700d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeakageCurve . + +:BladeEdge a rdf:Property ; + rdfs:seeAlso :p31b2d880d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BladeEdge . + +:p5e66f000d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal air flow rate." ; + rdfs:label "NominalAirFlowRate" ; + IFC4-PSD:definition "Nominal air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5e66f000d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "NominalAirFlowRate" ; + IFC4-PSD:nameAlias "Nominal Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p53ac5b00d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum working pressure." ; + rdfs:label "MaximumWorkingPressure" ; + IFC4-PSD:definition "Maximum working pressure." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "53ac5b00d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumWorkingPressure" ; + IFC4-PSD:nameAlias "Maximum Working Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:FrameThickness a rdf:Property ; + rdfs:seeAlso :p93734280d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrameThickness . + +:CloseOffRating a rdf:Property ; + rdfs:seeAlso :p98d08d00d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CloseOffRating . + +:p252e8000d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Blade shape. Flat means triple V-groove." ; + rdfs:label "BladeShape" ; + IFC4-PSD:definition "Blade shape. Flat means triple V-groove." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "252e8000d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "BladeShape" ; + IFC4-PSD:nameAlias "Blade Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FLAT" , "FABRICATEDAIRFOIL" , "EXTRUDEDAIRFOIL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pf0222d80d1d011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The operational mechanism for the damper operation." ; + rdfs:label "Operation" ; + IFC4-PSD:definition "The operational mechanism for the damper operation." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f0222d80d1d011e1800000215ad4efdf" ; + IFC4-PSD:name "Operation" ; + IFC4-PSD:nameAlias "Operation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AUTOMATIC" , "MANUAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p7d658200d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Regenerated sound versus air flow rate." ; + rdfs:label "RegeneratedSoundCurve" ; + IFC4-PSD:definition "Regenerated sound versus air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7d658200d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "RegeneratedSoundCurve" ; + IFC4-PSD:nameAlias "Regenerated Sound Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcSoundPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p8b1b0780d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length (or depth) of the damper frame." ; + rdfs:label "FrameDepth" ; + IFC4-PSD:definition "The length (or depth) of the damper frame." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8b1b0780d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FrameDepth" ; + IFC4-PSD:nameAlias "Frame Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DamperTypeControlDamper.ttl b/converter/src/main/resources/pset/Pset_DamperTypeControlDamper.ttl new file mode 100644 index 00000000..f8f2864f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperTypeControlDamper.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TorqueRange a rdf:Property ; + rdfs:seeAlso :pa38b2200d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TorqueRange . + +:paa199980d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The inherent characteristic of the control damper operation." ; + rdfs:label "ControlDamperOperation" ; + IFC4-PSD:definition "The inherent characteristic of the control damper operation." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "aa199980d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ControlDamperOperation" ; + IFC4-PSD:nameAlias "Control Damper Operation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LINEAR" , "EXPONENTIAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_DamperTypeControlDamper + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Control damper type attributes.\nPset renamed from Pset_DamperTypeControl to Pset_DamperTypeControlDamper in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_DamperTypeControlDamper" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDamper/CONTROLDAMPER" ; + IFC4-PSD:definition "Control damper type attributes.\nPset renamed from Pset_DamperTypeControl to Pset_DamperTypeControlDamper in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperTypeControlDamper" ; + IFC4-PSD:propertyDef :paa199980d1d111e1800000215ad4efdf , :pa38b2200d1d111e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa38b2200d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Torque range: minimum operational torque to maximum allowable torque." ; + rdfs:label "TorqueRange" ; + IFC4-PSD:definition "Torque range: minimum operational torque to maximum allowable torque." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a38b2200d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "TorqueRange" ; + IFC4-PSD:nameAlias "Torque Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcTorqueMeasure + ] . + +:ControlDamperOperation + a rdf:Property ; + rdfs:seeAlso :paa199980d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlDamperOperation . diff --git a/converter/src/main/resources/pset/Pset_DamperTypeFireDamper.ttl b/converter/src/main/resources/pset/Pset_DamperTypeFireDamper.ttl new file mode 100644 index 00000000..0158790b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperTypeFireDamper.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FireResistanceRating + a rdf:Property ; + rdfs:seeAlso :pd6351a80d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireResistanceRating . + +:FusibleLinkTemperature + a rdf:Property ; + rdfs:seeAlso :pdc2afb80d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FusibleLinkTemperature . + +:ClosureRatingEnum a rdf:Property ; + rdfs:seeAlso :pc9182b80d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClosureRatingEnum . + +:pdc2afb80d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature that the fusible link melts." ; + rdfs:label "FusibleLinkTemperature" ; + IFC4-PSD:definition "The temperature that the fusible link melts." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "dc2afb80d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FusibleLinkTemperature" ; + IFC4-PSD:nameAlias "Fusible Link Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pd6351a80d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure of the fire resistance rating in hours (e.g., 1.5 hours, 2 hours, etc.)." ; + rdfs:label "FireResistanceRating" ; + IFC4-PSD:definition "Measure of the fire resistance rating in hours (e.g., 1.5 hours, 2 hours, etc.)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d6351a80d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "FireResistanceRating" ; + IFC4-PSD:nameAlias "Fire Resistance Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ActuationType a rdf:Property ; + rdfs:seeAlso :pbc93d300d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActuationType . + +:pc9182b80d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the closure rating for the damper." ; + rdfs:label "ClosureRatingEnum" ; + IFC4-PSD:definition "Enumeration that identifies the closure rating for the damper." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c9182b80d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ClosureRatingEnum" ; + IFC4-PSD:nameAlias "Closure Rating Enum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DYNAMIC" , "STATIC" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pbc93d300d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the different types of dampers." ; + rdfs:label "ActuationType" ; + IFC4-PSD:definition "Enumeration that identifies the different types of dampers." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bc93d300d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ActuationType" ; + IFC4-PSD:nameAlias "Actuation Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "GRAVITY" , "SPRING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_DamperTypeFireDamper + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fire damper type attributes.\nPset renamed from Pset_DamperTypeFire to Pset_DamperTypeFireDamper in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_DamperTypeFireDamper" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDamper/FIREDAMPER" ; + IFC4-PSD:definition "Fire damper type attributes.\nPset renamed from Pset_DamperTypeFire to Pset_DamperTypeFireDamper in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperTypeFireDamper" ; + IFC4-PSD:propertyDef :pc9182b80d1d111e1800000215ad4efdf , :pbc93d300d1d111e1800000215ad4efdf , :pdc2afb80d1d111e1800000215ad4efdf , :pd6351a80d1d111e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_DamperTypeFireSmokeDamper.ttl b/converter/src/main/resources/pset/Pset_DamperTypeFireSmokeDamper.ttl new file mode 100644 index 00000000..d772c5b2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperTypeFireSmokeDamper.ttl @@ -0,0 +1,112 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pfa90f700d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the closure rating for the damper." ; + rdfs:label "ClosureRatingEnum" ; + IFC4-PSD:definition "Enumeration that identifies the closure rating for the damper." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fa90f700d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ClosureRatingEnum" ; + IFC4-PSD:nameAlias "Closure Rating Enum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DYNAMIC" , "STATIC" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pe77e2700d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.)." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e77e2700d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ClosureRatingEnum a rdf:Property ; + rdfs:seeAlso :pfa90f700d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClosureRatingEnum . + +:FusibleLinkTemperature + a rdf:Property ; + rdfs:seeAlso :p0bda0380d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FusibleLinkTemperature . + +:ControlType a rdf:Property ; + rdfs:seeAlso :pe77e2700d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + +:ped740800d1d111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the different types of dampers." ; + rdfs:label "ActuationType" ; + IFC4-PSD:definition "Enumeration that identifies the different types of dampers." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ed740800d1d111e1800000215ad4efdf" ; + IFC4-PSD:name "ActuationType" ; + IFC4-PSD:nameAlias "Actuation Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "GRAVITY" , "SPRING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FireResistanceRating + a rdf:Property ; + rdfs:seeAlso :p07154f80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireResistanceRating . + +:Pset_DamperTypeFireSmokeDamper + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Combination Fire and Smoke damper type attributes.\nNew Pset in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_DamperTypeFireSmokeDamper" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDamper/FIRESMOKEDAMPER" ; + IFC4-PSD:definition "Combination Fire and Smoke damper type attributes.\nNew Pset in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperTypeFireSmokeDamper" ; + IFC4-PSD:propertyDef :pfa90f700d1d111e1800000215ad4efdf , :p07154f80d1d211e1800000215ad4efdf , :pe77e2700d1d111e1800000215ad4efdf , :ped740800d1d111e1800000215ad4efdf , :p0bda0380d1d211e1800000215ad4efdf . + +:p07154f80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure of the fire resistance rating in hours (e.g., 1.5 hours, 2 hours, etc.)." ; + rdfs:label "FireResistanceRating" ; + IFC4-PSD:definition "Measure of the fire resistance rating in hours (e.g., 1.5 hours, 2 hours, etc.)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "07154f80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FireResistanceRating" ; + IFC4-PSD:nameAlias "Fire Resistance Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ActuationType a rdf:Property ; + rdfs:seeAlso :ped740800d1d111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActuationType . + +:p0bda0380d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature that the fusible link melts." ; + rdfs:label "FusibleLinkTemperature" ; + IFC4-PSD:definition "The temperature that the fusible link melts." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0bda0380d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FusibleLinkTemperature" ; + IFC4-PSD:nameAlias "Fusible Link Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DamperTypeSmokeDamper.ttl b/converter/src/main/resources/pset/Pset_DamperTypeSmokeDamper.ttl new file mode 100644 index 00000000..37574c17 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DamperTypeSmokeDamper.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p172d2f00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.) ." ; + rdfs:label "ControlType" ; + IFC4-PSD:definition "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.) ." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "172d2f00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ControlType" ; + IFC4-PSD:nameAlias "Control Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_DamperTypeSmokeDamper + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Smoke damper type attributes.\nPset renamed from Pset_DamperTypeSmoke to Pset_DamperTypeSmokeDamper in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_DamperTypeSmokeDamper" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDamper/SMOKEDAMPER" ; + IFC4-PSD:definition "Smoke damper type attributes.\nPset renamed from Pset_DamperTypeSmoke to Pset_DamperTypeSmokeDamper in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DamperTypeSmokeDamper" ; + IFC4-PSD:propertyDef :p172d2f00d1d211e1800000215ad4efdf . + +:ControlType a rdf:Property ; + rdfs:seeAlso :p172d2f00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ControlType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryColumnShoe.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryColumnShoe.ttl new file mode 100644 index 00000000..3bd0c3d7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryColumnShoe.ttl @@ -0,0 +1,133 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2613e180d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the column shoe base plate." ; + rdfs:label "ColumnShoeBasePlateThickness" ; + IFC4-PSD:definition "The thickness of the column shoe base plate." ; + IFC4-PSD:definitionAlias "柱脚ベースプレートの板厚。"@ja-JP , "기둥 다리베이스 플레이트의 두께"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "2613e180d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeBasePlateThickness" ; + IFC4-PSD:nameAlias "베이스 플레이트 두께"@ko-KR , "Column Shoe Base Plate Thickness"@en , "ベースプレート厚"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DiscreteAccessoryColumnShoe + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shape properties common to column shoes." ; + rdfs:label "Pset_DiscreteAccessoryColumnShoe" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/SHOE" ; + IFC4-PSD:definition "Shape properties common to column shoes." ; + IFC4-PSD:definitionAlias "柱脚の共通形状特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryColumnShoe" ; + IFC4-PSD:propertyDef :p30ce7680d1d211e1800000215ad4efdf , :p362bc100d1d211e1800000215ad4efdf , :p2c09c280d1d211e1800000215ad4efdf , :p2613e180d1d211e1800000215ad4efdf , :p404dbf80d1d211e1800000215ad4efdf , :p3af07500d1d211e1800000215ad4efdf . + +:ColumnShoeCasingHeight + a rdf:Property ; + rdfs:seeAlso :p362bc100d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeCasingHeight . + +:p3af07500d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the column shoe casing." ; + rdfs:label "ColumnShoeCasingWidth" ; + IFC4-PSD:definition "The width of the column shoe casing." ; + IFC4-PSD:definitionAlias "기둥 다리 케이스의 폭"@ko-KR , ""@en , "柱脚ケーシングの幅。"@ja-JP ; + IFC4-PSD:ifdguid "3af07500d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeCasingWidth" ; + IFC4-PSD:nameAlias "케이스 폭"@ko-KR , "Column Shoe Casing Width"@en , "ケーシング幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p30ce7680d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the column shoe base plate." ; + rdfs:label "ColumnShoeBasePlateDepth" ; + IFC4-PSD:definition "The depth of the column shoe base plate." ; + IFC4-PSD:definitionAlias "기둥 다리 받침판 구성"@ko-KR , ""@en , "柱脚ベースプレートの成。"@ja-JP ; + IFC4-PSD:ifdguid "30ce7680d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeBasePlateDepth" ; + IFC4-PSD:nameAlias "Column Shoe Base Plate Depth"@en , "베이스 플레이트 구성"@ko-KR , "ベースプレート成"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p2c09c280d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the column shoe base plate." ; + rdfs:label "ColumnShoeBasePlateWidth" ; + IFC4-PSD:definition "The width of the column shoe base plate." ; + IFC4-PSD:definitionAlias "柱脚ベースプレートの幅。"@ja-JP , ""@en , "기둥 다리 받침판 폭"@ko-KR ; + IFC4-PSD:ifdguid "2c09c280d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeBasePlateWidth" ; + IFC4-PSD:nameAlias "ベースプレート幅"@ja-JP , "베이스 플레이트 폭"@ko-KR , "Column Shoe Base Plate Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ColumnShoeCasingWidth + a rdf:Property ; + rdfs:seeAlso :p3af07500d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeCasingWidth . + +:ColumnShoeCasingDepth + a rdf:Property ; + rdfs:seeAlso :p404dbf80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeCasingDepth . + +:ColumnShoeBasePlateThickness + a rdf:Property ; + rdfs:seeAlso :p2613e180d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeBasePlateThickness . + +:p362bc100d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The height of the column shoe casing." ; + rdfs:label "ColumnShoeCasingHeight" ; + IFC4-PSD:definition "The height of the column shoe casing." ; + IFC4-PSD:definitionAlias "기둥 다리 케이스의 두께"@ko-KR , ""@en , "柱脚ケーシングの板厚。"@ja-JP ; + IFC4-PSD:ifdguid "362bc100d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeCasingHeight" ; + IFC4-PSD:nameAlias "케이스 두께"@ko-KR , "ケーシング厚"@ja-JP , "Column Shoe Casing Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ColumnShoeBasePlateWidth + a rdf:Property ; + rdfs:seeAlso :p2c09c280d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeBasePlateWidth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ColumnShoeBasePlateDepth + a rdf:Property ; + rdfs:seeAlso :p30ce7680d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColumnShoeBasePlateDepth . + +:p404dbf80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the column shoe casing." ; + rdfs:label "ColumnShoeCasingDepth" ; + IFC4-PSD:definition "The depth of the column shoe casing." ; + IFC4-PSD:definitionAlias "기둥 다리 케이스의 구성"@ko-KR , ""@en , "柱脚ケーシングの成。"@ja-JP ; + IFC4-PSD:ifdguid "404dbf80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "ColumnShoeCasingDepth" ; + IFC4-PSD:nameAlias "ケーシング成"@ja-JP , "Column Shoe Casing Depth"@en , "케이스 구성"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryCornerFixingPlate.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryCornerFixingPlate.ttl new file mode 100644 index 00000000..278d8124 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryCornerFixingPlate.ttl @@ -0,0 +1,97 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p4ba0eb00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the L-shaped corner plate." ; + rdfs:label "CornerFixingPlateLength" ; + IFC4-PSD:definition "The length of the L-shaped corner plate." ; + IFC4-PSD:definitionAlias "L型コーナープレートの長さ。"@ja-JP , "L 형 코너 플레이트의 길이"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "4ba0eb00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "CornerFixingPlateLength" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "길이"@ko-KR , "Corner Fixing Plate Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CornerFixingPlateFlangeWidthInPlaneX + a rdf:Property ; + rdfs:seeAlso :p5bb8ca80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CornerFixingPlateFlangeWidthInPlaneX . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CornerFixingPlateThickness + a rdf:Property ; + rdfs:seeAlso :p50fe3580d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CornerFixingPlateThickness . + +:Pset_DiscreteAccessoryCornerFixingPlate + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties specific to corner fixing plates." ; + rdfs:label "Pset_DiscreteAccessoryCornerFixingPlate" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Corner fixing plate" ; + IFC4-PSD:definition "Properties specific to corner fixing plates." ; + IFC4-PSD:definitionAlias "コーナーを固定するプレートの固有特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryCornerFixingPlate" ; + IFC4-PSD:propertyDef :p565b8000d1d211e1800000215ad4efdf , :p5bb8ca80d1d211e1800000215ad4efdf , :p4ba0eb00d1d211e1800000215ad4efdf , :p50fe3580d1d211e1800000215ad4efdf . + +:CornerFixingPlateLength + a rdf:Property ; + rdfs:seeAlso :p4ba0eb00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CornerFixingPlateLength . + +:p50fe3580d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the L-shaped corner plate." ; + rdfs:label "CornerFixingPlateThickness" ; + IFC4-PSD:definition "The thickness of the L-shaped corner plate." ; + IFC4-PSD:definitionAlias ""@en , "L 형 코너 플레이트의 두께"@ko-KR , "L型コーナープレートの板厚。"@ja-JP ; + IFC4-PSD:ifdguid "50fe3580d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "CornerFixingPlateThickness" ; + IFC4-PSD:nameAlias "두께"@ko-KR , "板厚"@ja-JP , "Corner Fixing Plate Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p5bb8ca80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The flange width of the L-shaped corner plate in plane X." ; + rdfs:label "CornerFixingPlateFlangeWidthInPlaneX" ; + IFC4-PSD:definition "The flange width of the L-shaped corner plate in plane X." ; + IFC4-PSD:definitionAlias "L型コーナープレートのX面のフランジ幅。"@ja-JP , ""@en , "L 형 코너 플레이트 X면 플랜지 폭"@ko-KR ; + IFC4-PSD:ifdguid "5bb8ca80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "CornerFixingPlateFlangeWidthInPlaneX" ; + IFC4-PSD:nameAlias "Corner Fixing Plate Flange Width In Plane X"@en , "フランジ幅X"@ja-JP , "플랜지 폭 X"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CornerFixingPlateFlangeWidthInPlaneZ + a rdf:Property ; + rdfs:seeAlso :p565b8000d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CornerFixingPlateFlangeWidthInPlaneZ . + +:p565b8000d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The flange width of the L-shaped corner plate in plane Z." ; + rdfs:label "CornerFixingPlateFlangeWidthInPlaneZ" ; + IFC4-PSD:definition "The flange width of the L-shaped corner plate in plane Z." ; + IFC4-PSD:definitionAlias "L型コーナープレートのZ面のフランジ幅。"@ja-JP , "L 형 코너 플레이트 Z면 플랜지 폭"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "565b8000d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "CornerFixingPlateFlangeWidthInPlaneZ" ; + IFC4-PSD:nameAlias "フランジ幅Z"@ja-JP , "Corner Fixing Plate Flange Width In Plane Z"@en , "플랜지 폭 Z"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryDiagonalTrussConnector.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryDiagonalTrussConnector.ttl new file mode 100644 index 00000000..7f1d08e0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryDiagonalTrussConnector.ttl @@ -0,0 +1,131 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p6d01d700d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall length of the truss connector." ; + rdfs:label "DiagonalTrussLength" ; + IFC4-PSD:definition "The overall length of the truss connector." ; + IFC4-PSD:definitionAlias "トラス接続部材の全体の長さ。"@ja-JP , "트러스 연결 부재의 전체 길이"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "6d01d700d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussLength" ; + IFC4-PSD:nameAlias "전체 길이"@ko-KR , "Diagonal Truss Length"@en , "全体長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p71c68b00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The spacing between diagonal cross-bar sections." ; + rdfs:label "DiagonalTrussCrossBarSpacing" ; + IFC4-PSD:definition "The spacing between diagonal cross-bar sections." ; + IFC4-PSD:definitionAlias ""@en , "대각선 크로스바 간격"@ko-KR , "斜めのクロスバーの間隔。"@ja-JP ; + IFC4-PSD:ifdguid "71c68b00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussCrossBarSpacing" ; + IFC4-PSD:nameAlias "クロスバー間隔"@ja-JP , "Diagonal Truss Cross Bar Spacing"@en , "크로스바 간격"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DiagonalTrussCrossBarDiameter + a rdf:Property ; + rdfs:seeAlso :p81de6a80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussCrossBarDiameter . + +:p7c812000d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the secondary bar." ; + rdfs:label "DiagonalTrussSecondaryBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the secondary bar." ; + IFC4-PSD:definitionAlias "二次バーの公称直径。"@ja-JP , ""@en , "보조 막대의 공칭 지름"@ko-KR ; + IFC4-PSD:ifdguid "7c812000d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussSecondaryBarDiameter" ; + IFC4-PSD:nameAlias "二次バー径"@ja-JP , "Diagonal Truss Secondary Bar Diameter"@en , "보조 막대 지름"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DiscreteAccessoryDiagonalTrussConnector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shape properties specific to connecting accessories in truss form with diagonal cross-bars." ; + rdfs:label "Pset_DiscreteAccessoryDiagonalTrussConnector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Diagonal truss connector" ; + IFC4-PSD:definition "Shape properties specific to connecting accessories in truss form with diagonal cross-bars." ; + IFC4-PSD:definitionAlias "斜めのクロスバーを使って接続したトラスの形状定義。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryDiagonalTrussConnector" ; + IFC4-PSD:propertyDef :p67a48c80d1d211e1800000215ad4efdf , :p71c68b00d1d211e1800000215ad4efdf , :p6d01d700d1d211e1800000215ad4efdf , :p7723d580d1d211e1800000215ad4efdf , :p81de6a80d1d211e1800000215ad4efdf , :p7c812000d1d211e1800000215ad4efdf . + +:p7723d580d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the base bar." ; + rdfs:label "DiagonalTrussBaseBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the base bar." ; + IFC4-PSD:definitionAlias ""@en , "ベースバーの公称直径。"@ja-JP , "기반 막대의 공칭 지름"@ko-KR ; + IFC4-PSD:ifdguid "7723d580d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussBaseBarDiameter" ; + IFC4-PSD:nameAlias "ベースバー径"@ja-JP , "Diagonal Truss Base Bar Diameter"@en , "기반 막대 지름"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DiagonalTrussBaseBarDiameter + a rdf:Property ; + rdfs:seeAlso :p7723d580d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussBaseBarDiameter . + +:DiagonalTrussCrossBarSpacing + a rdf:Property ; + rdfs:seeAlso :p71c68b00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussCrossBarSpacing . + +:DiagonalTrussSecondaryBarDiameter + a rdf:Property ; + rdfs:seeAlso :p7c812000d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussSecondaryBarDiameter . + +:DiagonalTrussHeight a rdf:Property ; + rdfs:seeAlso :p67a48c80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussHeight . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p67a48c80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall height of the truss connector." ; + rdfs:label "DiagonalTrussHeight" ; + IFC4-PSD:definition "The overall height of the truss connector." ; + IFC4-PSD:definitionAlias "トラス接続部材の全体の高さ。"@ja-JP , ""@en , "트러스 연결 부재의 전체 높이"@ko-KR ; + IFC4-PSD:ifdguid "67a48c80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussHeight" ; + IFC4-PSD:nameAlias "Diagonal Truss Height"@en , "全体高さ"@ja-JP , "전체 높이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p81de6a80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the diagonal cross-bars." ; + rdfs:label "DiagonalTrussCrossBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the diagonal cross-bars." ; + IFC4-PSD:definitionAlias "대각선 크로스바 공칭 지름"@ko-KR , "斜めクロスバーの公称直径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "81de6a80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "DiagonalTrussCrossBarDiameter" ; + IFC4-PSD:nameAlias "크로스바 지름"@ko-KR , "Diagonal Truss Cross Bar Diameter"@en , "クロスバー径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DiagonalTrussLength a rdf:Property ; + rdfs:seeAlso :p6d01d700d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiagonalTrussLength . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryEdgeFixingPlate.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryEdgeFixingPlate.ttl new file mode 100644 index 00000000..2616d3fb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryEdgeFixingPlate.ttl @@ -0,0 +1,97 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:EdgeFixingPlateFlangeWidthInPlaneX + a rdf:Property ; + rdfs:seeAlso :p9d497580d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeFixingPlateFlangeWidthInPlaneX . + +:p9d497580d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The flange width of the L-shaped edge plate in plane X." ; + rdfs:label "EdgeFixingPlateFlangeWidthInPlaneX" ; + IFC4-PSD:definition "The flange width of the L-shaped edge plate in plane X." ; + IFC4-PSD:definitionAlias ""@en , "L 형 단부 플레이트 X면 플랜지 폭"@ko-KR , "L型端部プレートのX面フランジ幅。"@ja-JP ; + IFC4-PSD:ifdguid "9d497580d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeFixingPlateFlangeWidthInPlaneX" ; + IFC4-PSD:nameAlias "플랜지 폭 X"@ko-KR , "Edge Fixing Plate Flange Width In Plane X"@en , "フランジ幅X"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:EdgeFixingPlateLength + a rdf:Property ; + rdfs:seeAlso :p8d319600d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeFixingPlateLength . + +:p8d319600d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the L-shaped edge plate." ; + rdfs:label "EdgeFixingPlateLength" ; + IFC4-PSD:definition "The length of the L-shaped edge plate." ; + IFC4-PSD:definitionAlias "L型端部プレートの長さ。"@ja-JP , "L 형 단부 플레이트의 길이"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8d319600d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeFixingPlateLength" ; + IFC4-PSD:nameAlias "길이"@ko-KR , "Edge Fixing Plate Length"@en , "長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DiscreteAccessoryEdgeFixingPlate + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties specific to edge fixing plates." ; + rdfs:label "Pset_DiscreteAccessoryEdgeFixingPlate" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Edge fixing plate" ; + IFC4-PSD:definition "Properties specific to edge fixing plates." ; + IFC4-PSD:definitionAlias "端部固定プレートの固有。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryEdgeFixingPlate" ; + IFC4-PSD:propertyDef :p928ee080d1d211e1800000215ad4efdf , :p97ec2b00d1d211e1800000215ad4efdf , :p9d497580d1d211e1800000215ad4efdf , :p8d319600d1d211e1800000215ad4efdf . + +:p928ee080d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the L-shaped edge plate." ; + rdfs:label "EdgeFixingPlateThickness" ; + IFC4-PSD:definition "The thickness of the L-shaped edge plate." ; + IFC4-PSD:definitionAlias ""@en , "L型端部プレートの板厚。"@ja-JP , "L 형 단부 플레이트의 두께"@ko-KR ; + IFC4-PSD:ifdguid "928ee080d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeFixingPlateThickness" ; + IFC4-PSD:nameAlias "Edge Fixing Plate Thickness"@en , "두께"@ko-KR , "板厚"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:EdgeFixingPlateThickness + a rdf:Property ; + rdfs:seeAlso :p928ee080d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeFixingPlateThickness . + +:p97ec2b00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The flange width of the L-shaped edge plate in plane Z." ; + rdfs:label "EdgeFixingPlateFlangeWidthInPlaneZ" ; + IFC4-PSD:definition "The flange width of the L-shaped edge plate in plane Z." ; + IFC4-PSD:definitionAlias "L 형 단부 플레이트 Z면 플랜지 폭"@ko-KR , ""@en , "L型端部プレートのZ面フランジ幅。"@ja-JP ; + IFC4-PSD:ifdguid "97ec2b00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeFixingPlateFlangeWidthInPlaneZ" ; + IFC4-PSD:nameAlias "Edge Fixing Plate Flange Width In Plane Z"@en , "플랜지 폭 Z"@ko-KR , "フランジ幅Z"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:EdgeFixingPlateFlangeWidthInPlaneZ + a rdf:Property ; + rdfs:seeAlso :p97ec2b00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeFixingPlateFlangeWidthInPlaneZ . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryFixingSocket.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryFixingSocket.ttl new file mode 100644 index 00000000..126b1bf1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryFixingSocket.ttl @@ -0,0 +1,96 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FixingSocketThreadDiameter + a rdf:Property ; + rdfs:seeAlso :pb0f4dc00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FixingSocketThreadDiameter . + +:pb6522680d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the threaded part of the fixing socket." ; + rdfs:label "FixingSocketThreadLength" ; + IFC4-PSD:definition "The length of the threaded part of the fixing socket." ; + IFC4-PSD:definitionAlias "고정 소켓의 전체 길이 나사부의 길이"@ko-KR , "固定ソケットの全体長さねじ部の長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b6522680d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FixingSocketThreadLength" ; + IFC4-PSD:nameAlias "ねじ部長さ"@ja-JP , "나사부 길이"@ko-KR , "Fixing Socket Thread Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa9353780d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type reference for the fixing socket according to local standards." ; + rdfs:label "FixingSocketTypeReference" ; + IFC4-PSD:definition "Type reference for the fixing socket according to local standards." ; + IFC4-PSD:definitionAlias "固定ソケットが参照するローカル標準。"@ja-JP , "고정 소켓이 참조하는 로컬 표준"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a9353780d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FixingSocketTypeReference" ; + IFC4-PSD:nameAlias "참조 기준"@ko-KR , "参照基準"@ja-JP , "Fixing Socket Type Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcExternalReference + ] . + +:Pset_DiscreteAccessoryFixingSocket + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to fixing sockets." ; + rdfs:label "Pset_DiscreteAccessoryFixingSocket" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Fixing socket" ; + IFC4-PSD:definition "Properties common to fixing sockets." ; + IFC4-PSD:definitionAlias ""@en , "固定ソケットの共通特性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryFixingSocket" ; + IFC4-PSD:propertyDef :pab979180d1d211e1800000215ad4efdf , :pb6522680d1d211e1800000215ad4efdf , :pb0f4dc00d1d211e1800000215ad4efdf , :pa9353780d1d211e1800000215ad4efdf . + +:FixingSocketHeight a rdf:Property ; + rdfs:seeAlso :pab979180d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FixingSocketHeight . + +:FixingSocketThreadLength + a rdf:Property ; + rdfs:seeAlso :pb6522680d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FixingSocketThreadLength . + +:pb0f4dc00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the thread." ; + rdfs:label "FixingSocketThreadDiameter" ; + IFC4-PSD:definition "The nominal diameter of the thread." ; + IFC4-PSD:definitionAlias "線の公称直径。"@ja-JP , "고정 소켓의 전체 길이"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "b0f4dc00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FixingSocketThreadDiameter" ; + IFC4-PSD:nameAlias "Fixing Socket Thread Diameter"@en , "공칭 지름"@ko-KR , "公称径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pab979180d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall height of the fixing socket." ; + rdfs:label "FixingSocketHeight" ; + IFC4-PSD:definition "The overall height of the fixing socket." ; + IFC4-PSD:definitionAlias "고정 소켓의 전체 길이"@ko-KR , "固定ソケットの全体長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ab979180d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "FixingSocketHeight" ; + IFC4-PSD:nameAlias "전체 길이"@ko-KR , "全体長さ"@ja-JP , "Fixing Socket Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:FixingSocketTypeReference + a rdf:Property ; + rdfs:seeAlso :pa9353780d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FixingSocketTypeReference . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryLadderTrussConnector.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryLadderTrussConnector.ttl new file mode 100644 index 00000000..ec3ac078 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryLadderTrussConnector.ttl @@ -0,0 +1,131 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc23de880d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall height of the truss connector." ; + rdfs:label "LadderTrussHeight" ; + IFC4-PSD:definition "The overall height of the truss connector." ; + IFC4-PSD:definitionAlias "트러스 연결 부재의 전체 높이"@ko-KR , ""@en , "トラス接続部材の全体の高さ。"@ja-JP ; + IFC4-PSD:ifdguid "c23de880d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussHeight" ; + IFC4-PSD:nameAlias "Ladder Truss Height"@en , "전체 높이"@ko-KR , "全体高さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DiscreteAccessoryLadderTrussConnector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shape properties specific to connecting accessories in truss form with straight cross-bars in ladder shape." ; + rdfs:label "Pset_DiscreteAccessoryLadderTrussConnector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Ladder truss connector" ; + IFC4-PSD:definition "Shape properties specific to connecting accessories in truss form with straight cross-bars in ladder shape." ; + IFC4-PSD:definitionAlias "はじご状のまっすぐなクロスバーを使って接合したトラスの形状特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryLadderTrussConnector" ; + IFC4-PSD:propertyDef :pcd911400d1d211e1800000215ad4efdf , :pd84ba900d1d211e1800000215ad4efdf , :pdda8f380d1d211e1800000215ad4efdf , :pc23de880d1d211e1800000215ad4efdf , :pd255c800d1d211e1800000215ad4efdf , :pc7029c80d1d211e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:LadderTrussBaseBarDiameter + a rdf:Property ; + rdfs:seeAlso :pd255c800d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussBaseBarDiameter . + +:pdda8f380d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the straight cross-bars." ; + rdfs:label "LadderTrussCrossBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the straight cross-bars." ; + IFC4-PSD:definitionAlias "똑바른 크로스바 공칭 지름"@ko-KR , "まっすぐなクロスバーの公称直径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "dda8f380d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussCrossBarDiameter" ; + IFC4-PSD:nameAlias "Ladder Truss Cross Bar Diameter"@en , "크로스바 지름"@ko-KR , "クロスバー径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LadderTrussHeight a rdf:Property ; + rdfs:seeAlso :pc23de880d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussHeight . + +:pcd911400d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The spacing between the straight cross-bars." ; + rdfs:label "LadderTrussCrossBarSpacing" ; + IFC4-PSD:definition "The spacing between the straight cross-bars." ; + IFC4-PSD:definitionAlias "まっすぐなのクロスバーの間隔。"@ja-JP , "똑바른 크로스바 간격"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "cd911400d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussCrossBarSpacing" ; + IFC4-PSD:nameAlias "Ladder Truss Cross Bar Spacing"@en , "크로스바 간격"@ko-KR , "クロスバー間隔"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pd255c800d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the base bar." ; + rdfs:label "LadderTrussBaseBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the base bar." ; + IFC4-PSD:definitionAlias ""@en , "기반 막대의 공칭 지름"@ko-KR , "ベースバーの公称直径。"@ja-JP ; + IFC4-PSD:ifdguid "d255c800d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussBaseBarDiameter" ; + IFC4-PSD:nameAlias "Ladder Truss Base Bar Diameter"@en , "기반 막대 지름"@ko-KR , "ベースバー径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LadderTrussLength a rdf:Property ; + rdfs:seeAlso :pc7029c80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussLength . + +:pc7029c80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The overall length of the truss connector." ; + rdfs:label "LadderTrussLength" ; + IFC4-PSD:definition "The overall length of the truss connector." ; + IFC4-PSD:definitionAlias ""@en , "トラス接続部材の全体の長さ。"@ja-JP , "트러스 연결 부재의 전체 길이"@ko-KR ; + IFC4-PSD:ifdguid "c7029c80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussLength" ; + IFC4-PSD:nameAlias "Ladder Truss Length"@en , "전체길이"@ko-KR , "全体長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LadderTrussSecondaryBarDiameter + a rdf:Property ; + rdfs:seeAlso :pd84ba900d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussSecondaryBarDiameter . + +:pd84ba900d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the secondary bar." ; + rdfs:label "LadderTrussSecondaryBarDiameter" ; + IFC4-PSD:definition "The nominal diameter of the secondary bar." ; + IFC4-PSD:definitionAlias ""@en , "보조 막대의 공칭 지름"@ko-KR , "二次バーの公称直径。"@ja-JP ; + IFC4-PSD:ifdguid "d84ba900d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "LadderTrussSecondaryBarDiameter" ; + IFC4-PSD:nameAlias "보조막대 지름"@ko-KR , "Ladder Truss Secondary Bar Diameter"@en , "二次バー径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LadderTrussCrossBarSpacing + a rdf:Property ; + rdfs:seeAlso :pcd911400d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussCrossBarSpacing . + +:LadderTrussCrossBarDiameter + a rdf:Property ; + rdfs:seeAlso :pdda8f380d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LadderTrussCrossBarDiameter . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryStandardFixingPlate.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryStandardFixingPlate.ttl new file mode 100644 index 00000000..92fa7946 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryStandardFixingPlate.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:StandardFixingPlateDepth + a rdf:Property ; + rdfs:seeAlso :peef20000d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StandardFixingPlateDepth . + +:pe8fc1f00d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the standard fixing plate." ; + rdfs:label "StandardFixingPlateWidth" ; + IFC4-PSD:definition "The width of the standard fixing plate." ; + IFC4-PSD:definitionAlias "표준 고정 플레이트의 폭"@ko-KR , "標準的な固定プレートの幅。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e8fc1f00d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "StandardFixingPlateWidth" ; + IFC4-PSD:nameAlias "폭"@ko-KR , "幅"@ja-JP , "Standard Fixing Plate Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DiscreteAccessoryStandardFixingPlate + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties specific to standard fixing plates." ; + rdfs:label "Pset_DiscreteAccessoryStandardFixingPlate" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Standard fixing plate" ; + IFC4-PSD:definition "Properties specific to standard fixing plates." ; + IFC4-PSD:definitionAlias "標準的な固定プレートの固有特性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryStandardFixingPlate" ; + IFC4-PSD:propertyDef :pf44f4a80d1d211e1800000215ad4efdf , :peef20000d1d211e1800000215ad4efdf , :pe8fc1f00d1d211e1800000215ad4efdf . + +:StandardFixingPlateWidth + a rdf:Property ; + rdfs:seeAlso :pe8fc1f00d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StandardFixingPlateWidth . + +:StandardFixingPlateThickness + a rdf:Property ; + rdfs:seeAlso :pf44f4a80d1d211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StandardFixingPlateThickness . + +:peef20000d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the standard fixing plate." ; + rdfs:label "StandardFixingPlateDepth" ; + IFC4-PSD:definition "The depth of the standard fixing plate." ; + IFC4-PSD:definitionAlias "標準的な固定プレートの成。"@ja-JP , "표준 고정 플레이트 구성"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "eef20000d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "StandardFixingPlateDepth" ; + IFC4-PSD:nameAlias "成"@ja-JP , "Standard Fixing Plate Depth"@en , "구성"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf44f4a80d1d211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the standard fixing plate." ; + rdfs:label "StandardFixingPlateThickness" ; + IFC4-PSD:definition "The thickness of the standard fixing plate." ; + IFC4-PSD:definitionAlias "표준 고정 플레이트의 두께"@ko-KR , ""@en , "標準的な固定プレートの板厚。"@ja-JP ; + IFC4-PSD:ifdguid "f44f4a80d1d211e1800000215ad4efdf" ; + IFC4-PSD:name "StandardFixingPlateThickness" ; + IFC4-PSD:nameAlias "板厚"@ja-JP , "두께"@ko-KR , "Standard Fixing Plate Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DiscreteAccessoryWireLoop.ttl b/converter/src/main/resources/pset/Pset_DiscreteAccessoryWireLoop.ttl new file mode 100644 index 00000000..abd30e76 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DiscreteAccessoryWireLoop.ttl @@ -0,0 +1,130 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p32e50500d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the fastening loop part of the wire." ; + rdfs:label "WireLoopLength" ; + IFC4-PSD:definition "The length of the fastening loop part of the wire." ; + IFC4-PSD:definitionAlias "ワイヤーの留め具部分の長さ。"@ja-JP , ""@en , "와이어 클램프 부분의 길이"@ko-KR ; + IFC4-PSD:ifdguid "32e50500d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireLoopLength" ; + IFC4-PSD:nameAlias "留め具長さ"@ja-JP , "클램프 길이"@ko-KR , "Wire Loop Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p05985700d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the base plate." ; + rdfs:label "WireLoopBasePlateWidth" ; + IFC4-PSD:definition "The width of the base plate." ; + IFC4-PSD:definitionAlias "ベースプレートの幅。"@ja-JP , "베이스 플레이트 폭"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "05985700d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireLoopBasePlateWidth" ; + IFC4-PSD:nameAlias "베이스 플레이트 폭"@ko-KR , "ベースプレート幅"@ja-JP , "Wire Loop Base Plate Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WireLoopBasePlateThickness + a rdf:Property ; + rdfs:seeAlso :p003b0c80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireLoopBasePlateThickness . + +:WireLoopBasePlateLength + a rdf:Property ; + rdfs:seeAlso :p0e892880d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireLoopBasePlateLength . + +:p1648cd00d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the wire." ; + rdfs:label "WireDiameter" ; + IFC4-PSD:definition "The nominal diameter of the wire." ; + IFC4-PSD:definitionAlias "와이어의 공칭 지름"@ko-KR , ""@en , "ワイヤーの公称直径。"@ja-JP ; + IFC4-PSD:ifdguid "1648cd00d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireDiameter" ; + IFC4-PSD:nameAlias "Wire Diameter"@en , "와이어 지름"@ko-KR , "ワイヤー径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p252f7f80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the part of wire which is embedded in the precast concrete element." ; + rdfs:label "WireEmbeddingLength" ; + IFC4-PSD:definition "The length of the part of wire which is embedded in the precast concrete element." ; + IFC4-PSD:definitionAlias "プレキャストコンクリート部材の中に埋め込まれたワイヤーの長さ。"@ja-JP , ""@en , "프리 캐스트 콘크리트 부재속에 묻힌 철사의 길이"@ko-KR ; + IFC4-PSD:ifdguid "252f7f80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireEmbeddingLength" ; + IFC4-PSD:nameAlias "포함 길이"@ko-KR , "Wire Embedding Length"@en , "埋め込み長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DiscreteAccessoryWireLoop + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shape properties common to wire loop joint connectors." ; + rdfs:label "Pset_DiscreteAccessoryWireLoop" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDiscreteAccessory/Wire loop" ; + IFC4-PSD:definition "Shape properties common to wire loop joint connectors." ; + IFC4-PSD:definitionAlias ""@en , "ワイヤー留め具による接続部の形状特性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DiscreteAccessoryWireLoop" ; + IFC4-PSD:propertyDef :p1648cd00d1d311e1800000215ad4efdf , :p32e50500d1d311e1800000215ad4efdf , :p003b0c80d1d311e1800000215ad4efdf , :p05985700d1d311e1800000215ad4efdf , :p0e892880d1d311e1800000215ad4efdf , :p252f7f80d1d311e1800000215ad4efdf . + +:p003b0c80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the base plate." ; + rdfs:label "WireLoopBasePlateThickness" ; + IFC4-PSD:definition "The thickness of the base plate." ; + IFC4-PSD:definitionAlias "베이스 플레이트 두께"@ko-KR , "ベースプレートの板厚。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "003b0c80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireLoopBasePlateThickness" ; + IFC4-PSD:nameAlias "베이스 플레이트 두께"@ko-KR , "ベースプレート厚"@ja-JP , "Wire Loop Base Plate Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0e892880d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the base plate." ; + rdfs:label "WireLoopBasePlateLength" ; + IFC4-PSD:definition "The length of the base plate." ; + IFC4-PSD:definitionAlias "플레이트 길이"@ko-KR , ""@en , "ベースプレートの長さ。"@ja-JP ; + IFC4-PSD:ifdguid "0e892880d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WireLoopBasePlateLength" ; + IFC4-PSD:nameAlias "ベースプレート長さ"@ja-JP , "Wire Loop Base Plate Length"@en , "플레이트 길이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WireEmbeddingLength a rdf:Property ; + rdfs:seeAlso :p252f7f80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireEmbeddingLength . + +:WireLoopLength a rdf:Property ; + rdfs:seeAlso :p32e50500d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireLoopLength . + +:WireLoopBasePlateWidth + a rdf:Property ; + rdfs:seeAlso :p05985700d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireLoopBasePlateWidth . + +:WireDiameter a rdf:Property ; + rdfs:seeAlso :p1648cd00d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WireDiameter . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementCommon.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementCommon.ttl new file mode 100644 index 00000000..a619e987 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :p54de8780d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_DistributionChamberElementCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties of all occurrences of IfcDistributionChamberElement." ; + rdfs:label "Pset_DistributionChamberElementCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDistributionChamberElement ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement" ; + IFC4-PSD:definition "Common properties of all occurrences of IfcDistributionChamberElement." ; + IFC4-PSD:definitionAlias "全てのIfcDistributionChamberElement.オブジェクトに関する共通の属性情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementCommon" ; + IFC4-PSD:propertyDef :p54de8780d1d311e1800000215ad4efdf , :p5e67ef80d1d311e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p54de8780d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specific instance (e.g. 'WWS/VS1/400/001', which indicates the occurrence belongs to system WWS, subsystems VSI/400, and has the component number 001)." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specific instance (e.g. 'WWS/VS1/400/001', which indicates the occurrence belongs to system WWS, subsystems VSI/400, and has the component number 001)." ; + IFC4-PSD:definitionAlias "具体的な参照ID(例えば、“WWS/VS1/400/001”はWWS系統、VS1/400サブシステム001番部品)。"@ja-JP , ""@en , "구체적인 참조 ID (예 : \"WWS/VS1/400/001\"는 WWS 계통, VS1/400 서브 시스템 001 번 부품)"@ko-KR ; + IFC4-PSD:ifdguid "54de8780d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조 기호"@ko-KR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p5e67ef80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5e67ef80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p5e67ef80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeFormedDuct.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeFormedDuct.ttl new file mode 100644 index 00000000..7da6e4a7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeFormedDuct.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AccessCoverLoadRating + a rdf:Property ; + rdfs:seeAlso :p88b9ad00d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverLoadRating . + +:ClearWidth a rdf:Property ; + rdfs:seeAlso :p73448300d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearWidth . + +:p88b9ad00d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + rdfs:label "AccessCoverLoadRating" ; + IFC4-PSD:definition "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + IFC4-PSD:definitionAlias ""@en , "アクセス(点検)カバーの耐荷重(数字或いはアルファベットで定義する)。"@ja-JP , "사용 (체크) 커버 하중 (숫자 혹은 알파벳에서 정의됨)"@ko-KR ; + IFC4-PSD:ifdguid "88b9ad00d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverLoadRating" ; + IFC4-PSD:nameAlias "사용(체크)커버 하중"@ko-KR , "Access Cover Load Rating"@en , "アクセス(点検)カバーの耐荷重"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ClearDepth a rdf:Property ; + rdfs:seeAlso :p78a1cd80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearDepth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p78a1cd80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the formed space in the duct." ; + rdfs:label "ClearDepth" ; + IFC4-PSD:definition "The depth of the formed space in the duct." ; + IFC4-PSD:definitionAlias ""@en , "ダクトスペースの深さ。"@ja-JP , "덕트 공간의 깊이"@ko-KR ; + IFC4-PSD:ifdguid "78a1cd80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "ClearDepth" ; + IFC4-PSD:nameAlias "Clear Depth"@en , "深さ"@ja-JP , "깊이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WallThickness a rdf:Property ; + rdfs:seeAlso :p7e97ae80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallThickness . + +:Pset_DistributionChamberElementTypeFormedDuct + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space formed in the ground for the passage of pipes, cables, ducts." ; + rdfs:label "Pset_DistributionChamberElementTypeFormedDuct" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/FORMEDDUCT" ; + IFC4-PSD:definition "Space formed in the ground for the passage of pipes, cables, ducts." ; + IFC4-PSD:definitionAlias "BS6100 100 3410より定義: 地中に配管、配線、ダクトを設置するためのダクトスペース。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeFormedDuct" ; + IFC4-PSD:propertyDef :p88b9ad00d1d311e1800000215ad4efdf , :p7e97ae80d1d311e1800000215ad4efdf , :p78a1cd80d1d311e1800000215ad4efdf , :p73448300d1d311e1800000215ad4efdf , :p835c6280d1d311e1800000215ad4efdf . + +:BaseThickness a rdf:Property ; + rdfs:seeAlso :p835c6280d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseThickness . + +:p7e97ae80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the duct wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + rdfs:label "WallThickness" ; + IFC4-PSD:definition "The thickness of the duct wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias ""@en , "덕트 공간 벽 두께 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , "ダクトスペース壁の厚さ。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "7e97ae80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WallThickness" ; + IFC4-PSD:nameAlias "Wall Thickness"@en , "壁の厚さ"@ja-JP , "벽 두께"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p835c6280d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the duct base construction\nNOTE: It is assumed that duct base will be constructed at a single thickness." ; + rdfs:label "BaseThickness" ; + IFC4-PSD:definition "The thickness of the duct base construction\nNOTE: It is assumed that duct base will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "덕트 공간 바닥의 두께 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR , ""@en , "ダクトスペース床面の厚さ。\n注:ダクトスペースの床は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "835c6280d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "BaseThickness" ; + IFC4-PSD:nameAlias "基部の厚さ"@ja-JP , "바닥두께"@ko-KR , "Base Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p73448300d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the formed space in the duct." ; + rdfs:label "ClearWidth" ; + IFC4-PSD:definition "The width of the formed space in the duct." ; + IFC4-PSD:definitionAlias "ダクトスペースの幅。"@ja-JP , ""@en , "덕트 공간 폭"@ko-KR ; + IFC4-PSD:ifdguid "73448300d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "ClearWidth" ; + IFC4-PSD:nameAlias "Clear Width"@en , "폭"@ko-KR , "幅員"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionChamber.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionChamber.ttl new file mode 100644 index 00000000..ae000dd2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionChamber.ttl @@ -0,0 +1,249 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc61e3a80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the chamber access cover where the plan shape of the cover is not circular." ; + rdfs:label "AccessWidth" ; + IFC4-PSD:definition "The width of the chamber access cover where the plan shape of the cover is not circular." ; + IFC4-PSD:definitionAlias ""@en , "사용 (체크) 커버 폭"@ko-KR , "アクセス(点検)カバーの幅。"@ja-JP ; + IFC4-PSD:ifdguid "c61e3a80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "AccessWidth" ; + IFC4-PSD:nameAlias "アクセス(点検)カバーの幅"@ja-JP , "Access Width"@en , "사용 (체크)커버 폭"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd46c5680d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + rdfs:label "AccessCoverLoadRating" ; + IFC4-PSD:definition "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + IFC4-PSD:definitionAlias "アクセス(点検)カバーの耐荷重(数字或いはアルファベットで定義する)。"@ja-JP , ""@en , "사용 (체크) 커버 하중 (숫자 혹은 알파벳에서 정의됨)"@ko-KR ; + IFC4-PSD:ifdguid "d46c5680d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverLoadRating" ; + IFC4-PSD:nameAlias "Access Cover Load Rating"@en , "사용 (체크)커버 하중"@ko-KR , "アクセス(点検)カバーの耐荷重"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:pc0c0f000d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the chamber access cover or, where the plan shape of the cover is circular, the radius." ; + rdfs:label "AccessLengthOrRadius" ; + IFC4-PSD:definition "The length of the chamber access cover or, where the plan shape of the cover is circular, the radius." ; + IFC4-PSD:definitionAlias "アクセス(点検)カバーの長さ、或いは円形カバーの半径。"@ja-JP , "사용 (체크) 덮개 길이, 혹은 원형 커버 반경"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "c0c0f000d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "AccessLengthOrRadius" ; + IFC4-PSD:nameAlias "사용(체크)덮개 길이 혹은 반경"@ko-KR , "アクセス(点検)カバーの長さ或いは半径"@ja-JP , "Access Length Or Radius"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WallThickness a rdf:Property ; + rdfs:seeAlso :pab4bc600d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallThickness . + +:BaseThickness a rdf:Property ; + rdfs:seeAlso :pb30b6a80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseThickness . + +:pab4bc600d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + rdfs:label "WallThickness" ; + IFC4-PSD:definition "The thickness of the chamber wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "덕트 공간 벽 두께 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , ""@en , "ダクトスペース壁の厚さ。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "ab4bc600d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WallThickness" ; + IFC4-PSD:nameAlias "Wall Thickness"@en , "壁厚さ"@ja-JP , "벽 두께"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:AccessLengthOrRadius + a rdf:Property ; + rdfs:seeAlso :pc0c0f000d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessLengthOrRadius . + +:WithBackdrop a rdf:Property ; + rdfs:seeAlso :pb868b500d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WithBackdrop . + +:pb0107a00d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + rdfs:label "BaseMaterial" ; + IFC4-PSD:definition "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 바닥의 재질 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR , ""@en , "ダクトスペース床面の材質。\n注:ダクトスペースの床は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "b0107a00d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "BaseMaterial" ; + IFC4-PSD:nameAlias "床の材質"@ja-JP , "바닥의 재질"@ko-KR , "Base Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:AccessCoverLoadRating + a rdf:Property ; + rdfs:seeAlso :pd46c5680d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverLoadRating . + +:pbdc5ff80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "AccessCoverMaterial" ; + IFC4-PSD:definition "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "アクセス(点検)カバーの材質。\n注:バイブスペースの壁は単層と仮定する"@ja-JP , ""@en , "액세스 (체크) 커버의 재질 주 : 챔퍼 공간의 벽은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "bdc5ff80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverMaterial" ; + IFC4-PSD:nameAlias "アクセス(点検)カバーの材質"@ja-JP , "사용(체크)커버의 재질"@ko-KR , "Access Cover Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:BaseMaterial a rdf:Property ; + rdfs:seeAlso :pb0107a00d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseMaterial . + +:Pset_DistributionChamberElementTypeInspectionChamber + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits visible inspection." ; + rdfs:label "Pset_DistributionChamberElementTypeInspectionChamber" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/INSPECTIONCHAMBER" ; + IFC4-PSD:definition "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits visible inspection." ; + IFC4-PSD:definitionAlias "排水、下水管の上にある・点検用可移動カバー付けパイプスペース。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeInspectionChamber" ; + IFC4-PSD:propertyDef :pab4bc600d1d311e1800000215ad4efdf , :pc0c0f000d1d311e1800000215ad4efdf , :p93744200d1d311e1800000215ad4efdf , :pb0107a00d1d311e1800000215ad4efdf , :pc61e3a80d1d311e1800000215ad4efdf , :pb30b6a80d1d311e1800000215ad4efdf , :p98d18c80d1d311e1800000215ad4efdf , :pd46c5680d1d311e1800000215ad4efdf , :p9e2ed700d1d311e1800000215ad4efdf , :pa850d580d1d311e1800000215ad4efdf , :pbdc5ff80d1d311e1800000215ad4efdf , :pa25af480d1d311e1800000215ad4efdf , :pb868b500d1d311e1800000215ad4efdf . + +:p93744200d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + rdfs:label "ChamberLengthOrRadius" ; + IFC4-PSD:definition "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + IFC4-PSD:definitionAlias ""@en , "챔버의 길이 또는 원형 챔버의 반경"@ko-KR , "チャンバーの長さあるいは円形チャンバーの半径。"@ja-JP ; + IFC4-PSD:ifdguid "93744200d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberLengthOrRadius" ; + IFC4-PSD:nameAlias "챔버 (파이프 공간)의 길이 또는 반경"@ko-KR , "Chamber Length Or Radius"@en , "チャンバー(バイブスペース?)の長さあるいは半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ChamberWidth a rdf:Property ; + rdfs:seeAlso :p98d18c80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberWidth . + +:pa25af480d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Level of the highest internal part of the cross section as measured from ground level." ; + rdfs:label "SoffitLevel" ; + IFC4-PSD:definition "Level of the highest internal part of the cross section as measured from ground level." ; + IFC4-PSD:definitionAlias ""@en , "단면의 가장 높은 부분의 깊이 (지상에서)"@ko-KR , "断面の最も高い部分の深さ(地面から)。"@ja-JP ; + IFC4-PSD:ifdguid "a25af480d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "SoffitLevel" ; + IFC4-PSD:nameAlias "최소깊이"@ko-KR , "最小深さ"@ja-JP , "Soffit Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:InvertLevel a rdf:Property ; + rdfs:seeAlso :p9e2ed700d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InvertLevel . + +:AccessCoverMaterial a rdf:Property ; + rdfs:seeAlso :pbdc5ff80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverMaterial . + +:pa850d580d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "WallMaterial" ; + IFC4-PSD:definition "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 벽의 재질 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , ""@en , "ダクトスペース壁の材質。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "a850d580d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WallMaterial" ; + IFC4-PSD:nameAlias "壁の材質"@ja-JP , "벽의 재질"@ko-KR , "Wall Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:ChamberLengthOrRadius + a rdf:Property ; + rdfs:seeAlso :p93744200d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberLengthOrRadius . + +:pb30b6a80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber base construction\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + rdfs:label "BaseThickness" ; + IFC4-PSD:definition "The thickness of the chamber base construction\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias ""@en , "ダクトスペース床面の厚さ。\n注:ダクトスペースの床は単層と仮定する"@ja-JP , "덕트 공간 바닥의 두께 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "b30b6a80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "BaseThickness" ; + IFC4-PSD:nameAlias "床の厚さ"@ja-JP , "Base Thickness"@en , "바닥의 두께"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WallMaterial a rdf:Property ; + rdfs:seeAlso :pa850d580d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallMaterial . + +:pb868b500d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the chamber has a backdrop or tumbling bay (TRUE) or not (FALSE)." ; + rdfs:label "WithBackdrop" ; + IFC4-PSD:definition "Indicates whether the chamber has a backdrop or tumbling bay (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "덕트 공간 백드롭 혹은 보 표시 여부 (TRUE 또는 FALSE)"@ko-KR , ""@en , "ダクトスペースはバックドロップ或いは堰付けかどうか(TRUE或いはFALSE)。"@ja-JP ; + IFC4-PSD:ifdguid "b868b500d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "WithBackdrop" ; + IFC4-PSD:nameAlias "백 드롭 지정"@ko-KR , "With Backdrop"@en , "バックドロップ付け"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:AccessWidth a rdf:Property ; + rdfs:seeAlso :pc61e3a80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessWidth . + +:SoffitLevel a rdf:Property ; + rdfs:seeAlso :pa25af480d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoffitLevel . + +:p9e2ed700d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Level of the lowest part of the cross section as measured from ground level." ; + rdfs:label "InvertLevel" ; + IFC4-PSD:definition "Level of the lowest part of the cross section as measured from ground level." ; + IFC4-PSD:definitionAlias "단면의 가장 낮은 부분의 깊이 (지상에서)"@ko-KR , ""@en , "断面の最も低い部分の深さ(地面から)。"@ja-JP ; + IFC4-PSD:ifdguid "9e2ed700d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "InvertLevel" ; + IFC4-PSD:nameAlias "最大深さ"@ja-JP , "Invert Level"@en , "최대 깊이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p98d18c80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Width, in the event of the shape being non circular in plan." ; + rdfs:label "ChamberWidth" ; + IFC4-PSD:definition "Width, in the event of the shape being non circular in plan." ; + IFC4-PSD:definitionAlias "비원 챔버의 폭"@ko-KR , "非円形チャンバーの幅。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "98d18c80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberWidth" ; + IFC4-PSD:nameAlias "챔버 (파이프 공간)의 너비"@ko-KR , "チャンバー(バイブスペース?)の幅"@ja-JP , "Chamber Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionPit.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionPit.ttl new file mode 100644 index 00000000..3c817936 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeInspectionPit.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Length a rdf:Property ; + rdfs:seeAlso :pe0581880d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Length . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Depth a rdf:Property ; + rdfs:seeAlso :pec43da80d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Depth . + +:pe6e69000d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the pit." ; + rdfs:label "Width" ; + IFC4-PSD:definition "The width of the pit." ; + IFC4-PSD:definitionAlias "ピット幅。"@ja-JP , "피트 폭"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e6e69000d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "Width" ; + IFC4-PSD:nameAlias "Width"@en , "폭"@ko-KR , "幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pec43da80d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the pit." ; + rdfs:label "Depth" ; + IFC4-PSD:definition "The depth of the pit." ; + IFC4-PSD:definitionAlias ""@en , "구덩이 깊이"@ko-KR , "ピット深さ。"@ja-JP ; + IFC4-PSD:ifdguid "ec43da80d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "Depth" ; + IFC4-PSD:nameAlias "深さ"@ja-JP , "깊이"@ko-KR , "Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Width a rdf:Property ; + rdfs:seeAlso :pe6e69000d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Width . + +:Pset_DistributionChamberElementTypeInspectionPit + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Recess or chamber formed to permit access for inspection of substructure and services (definition modified from BS6100 221 4128)." ; + rdfs:label "Pset_DistributionChamberElementTypeInspectionPit" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/INSPECTIONPIT" ; + IFC4-PSD:definition "Recess or chamber formed to permit access for inspection of substructure and services (definition modified from BS6100 221 4128)." ; + IFC4-PSD:definitionAlias ""@en , "基礎の点検とサービスのためにアクセスできるピット(凹所)あるいはチャンバ(空間)。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeInspectionPit" ; + IFC4-PSD:propertyDef :pe6e69000d1d311e1800000215ad4efdf , :pec43da80d1d311e1800000215ad4efdf , :pe0581880d1d311e1800000215ad4efdf . + +:pe0581880d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the pit." ; + rdfs:label "Length" ; + IFC4-PSD:definition "The length of the pit." ; + IFC4-PSD:definitionAlias "피트 길이"@ko-KR , ""@en , "ピット長さ。"@ja-JP ; + IFC4-PSD:ifdguid "e0581880d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "Length" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "길이"@ko-KR , "Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeManhole.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeManhole.ttl new file mode 100644 index 00000000..9b20927c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeManhole.ttl @@ -0,0 +1,248 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:WallMaterial a rdf:Property ; + rdfs:seeAlso :p01206e00d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallMaterial . + +:IsShallow a rdf:Property ; + rdfs:seeAlso :p13021100d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsShallow . + +:p0da4c680d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber base construction\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + rdfs:label "BaseThickness" ; + IFC4-PSD:definition "The thickness of the chamber base construction\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "ダクトスペース床面の厚さ。\n注:ダクトスペースの床は単層と仮定する"@ja-JP , "덕트 공간 바닥의 두께 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "0da4c680d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseThickness" ; + IFC4-PSD:nameAlias "Base Thickness"@en , "바닥의 두께"@ko-KR , "床の厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p185f5b80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the chamber has steps (TRUE) or not (FALSE)." ; + rdfs:label "HasSteps" ; + IFC4-PSD:definition "Indicates whether the chamber has steps (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "덕트 공간은 계단 표시 여부 (TRUE 또는 FALSE)"@ko-KR , ""@en , "ダクトスペースは階段付けかどうか(TRUE或いはFALSE)。"@ja-JP ; + IFC4-PSD:ifdguid "185f5b80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "HasSteps" ; + IFC4-PSD:nameAlias "Has Steps"@en , "계단 지정"@ko-KR , "階段付け"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pfc5bba00d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Level of the highest internal part of the cross section as measured from ground level." ; + rdfs:label "SoffitLevel" ; + IFC4-PSD:definition "Level of the highest internal part of the cross section as measured from ground level." ; + IFC4-PSD:definitionAlias "단면의 가장 높은 부분의 깊이 (지상에서)"@ko-KR , ""@en , "断面の最も高い部分の深さ(地面から)。"@ja-JP ; + IFC4-PSD:ifdguid "fc5bba00d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "SoffitLevel" ; + IFC4-PSD:nameAlias "Soffit Level"@en , "최소깊이"@ko-KR , "最小深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:InvertLevel a rdf:Property ; + rdfs:seeAlso :pf7970600d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InvertLevel . + +:p13021100d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the chamber has been designed as being shallow (TRUE) or deep (FALSE)." ; + rdfs:label "IsShallow" ; + IFC4-PSD:definition "Indicates whether the chamber has been designed as being shallow (TRUE) or deep (FALSE)." ; + IFC4-PSD:definitionAlias "덕트 공간이 얕은 여부 (TRUE 또는 FALSE)"@ko-KR , "ダクトスペースは浅いかどうか(TRUE或いはFALSE)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "13021100d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "IsShallow" ; + IFC4-PSD:nameAlias "Is Shallow"@en , "덕트공간"@ko-KR , "浅いか"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p1dbca600d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the chamber has a backdrop or tumbling bay (TRUE) or not (FALSE)." ; + rdfs:label "WithBackdrop" ; + IFC4-PSD:definition "Indicates whether the chamber has a backdrop or tumbling bay (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "ダクトスペースはバックドロップ或いは堰付けかどうか(TRUE或いはFALSE)。"@ja-JP , "덕트 공간 백드롭 혹은 보 표시 여부 (TRUE 또는 FALSE)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "1dbca600d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WithBackdrop" ; + IFC4-PSD:nameAlias "With Backdrop"@en , "バックドロップ付け"@ja-JP , "백 드롭 지정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p01206e00d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "WallMaterial" ; + IFC4-PSD:definition "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 벽의 재질 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , "ダクトスペース壁の材質。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "01206e00d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallMaterial" ; + IFC4-PSD:nameAlias "壁の材質"@ja-JP , "Wall Material"@en , "벽의 재질"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:p26ad7780d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the chamber access cover or, where the plan shape of the cover is circular, the radius." ; + rdfs:label "AccessLengthOrRadius" ; + IFC4-PSD:definition "The length of the chamber access cover or, where the plan shape of the cover is circular, the radius." ; + IFC4-PSD:definitionAlias "사용 (체크) 덮개 길이, 혹은 원형 커버 반경"@ko-KR , ""@en , "アクセス(点検)カバーの長さ、或いは円形カバーの半径。"@ja-JP ; + IFC4-PSD:ifdguid "26ad7780d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessLengthOrRadius" ; + IFC4-PSD:nameAlias "Access Length Or Radius"@en , "사용(체크)덮개 길이 혹은 반경"@ko-KR , "アクセス(点検)カバーの長さ或いは半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:HasSteps a rdf:Property ; + rdfs:seeAlso :p185f5b80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSteps . + +:pf7970600d1d311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Level of the lowest part of the cross section as measured from ground level." ; + rdfs:label "InvertLevel" ; + IFC4-PSD:definition "Level of the lowest part of the cross section as measured from ground level." ; + IFC4-PSD:definitionAlias "단면의 가장 낮은 부분의 깊이 (지상에서)"@ko-KR , "断面の最も低い部分の深さ(地面から)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f7970600d1d311e1800000215ad4efdf" ; + IFC4-PSD:name "InvertLevel" ; + IFC4-PSD:nameAlias "Invert Level"@en , "最大深さ"@ja-JP , "최대 깊이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:WithBackdrop a rdf:Property ; + rdfs:seeAlso :p1dbca600d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WithBackdrop . + +:AccessCoverMaterial a rdf:Property ; + rdfs:seeAlso :p23b28700d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverMaterial . + +:p2ca35880d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the chamber access cover where the plan shape of the cover is not circular." ; + rdfs:label "AccessWidth" ; + IFC4-PSD:definition "The width of the chamber access cover where the plan shape of the cover is not circular." ; + IFC4-PSD:definitionAlias ""@en , "アクセス(点検)カバーの幅。"@ja-JP , "사용 (체크) 커버 폭"@ko-KR ; + IFC4-PSD:ifdguid "2ca35880d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessWidth" ; + IFC4-PSD:nameAlias "사용 (체크)커버 폭"@ko-KR , "Access Width"@en , "アクセス(点検)カバーの幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p04b3f500d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + rdfs:label "WallThickness" ; + IFC4-PSD:definition "The thickness of the chamber wall construction\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "ダクトスペース壁の厚さ。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , "덕트 공간 벽 두께 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "04b3f500d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallThickness" ; + IFC4-PSD:nameAlias "벽 두께"@ko-KR , "Wall Thickness"@en , "壁厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:AccessCoverLoadRating + a rdf:Property ; + rdfs:seeAlso :p32993980d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverLoadRating . + +:p32993980d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + rdfs:label "AccessCoverLoadRating" ; + IFC4-PSD:definition "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." ; + IFC4-PSD:definitionAlias ""@en , "사용 (체크) 커버 하중 (숫자 혹은 알파벳에서 정의됨)"@ko-KR , "アクセス(点検)カバーの耐荷重(数字或いはアルファベットで定義する)。"@ja-JP ; + IFC4-PSD:ifdguid "32993980d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverLoadRating" ; + IFC4-PSD:nameAlias "アクセス(点検)カバーの耐荷重"@ja-JP , "Access Cover Load Rating"@en , "사용 (체크)커버 하중"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:AccessLengthOrRadius + a rdf:Property ; + rdfs:seeAlso :p26ad7780d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessLengthOrRadius . + +:BaseMaterial a rdf:Property ; + rdfs:seeAlso :p0a113f80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseMaterial . + +:AccessWidth a rdf:Property ; + rdfs:seeAlso :p2ca35880d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessWidth . + +:SoffitLevel a rdf:Property ; + rdfs:seeAlso :pfc5bba00d1d311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoffitLevel . + +:BaseThickness a rdf:Property ; + rdfs:seeAlso :p0da4c680d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseThickness . + +:p0a113f80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + rdfs:label "BaseMaterial" ; + IFC4-PSD:definition "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 바닥의 재질 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR , ""@en , "ダクトスペース床面の材質。\n注:ダクトスペースの床は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "0a113f80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseMaterial" ; + IFC4-PSD:nameAlias "바닥의 재질"@ko-KR , "床の材質"@ja-JP , "Base Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p23b28700d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "AccessCoverMaterial" ; + IFC4-PSD:definition "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "액세스 (체크) 커버의 재질 주 : 챔퍼 공간의 벽은 단층 가정"@ko-KR , ""@en , "アクセス(点検)カバーの材質。\n注:バイブスペースの壁は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "23b28700d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverMaterial" ; + IFC4-PSD:nameAlias "사용(체크)커버의 재질"@ko-KR , "アクセス(点検)カバーの材質"@ja-JP , "Access Cover Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:WallThickness a rdf:Property ; + rdfs:seeAlso :p04b3f500d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallThickness . + +:Pset_DistributionChamberElementTypeManhole + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits the entry of a person." ; + rdfs:label "Pset_DistributionChamberElementTypeManhole" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/MANHOLE" ; + IFC4-PSD:definition "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits the entry of a person." ; + IFC4-PSD:definitionAlias "排水、下水管の上にある・点検用可移動カバー付けパイプスペース。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeManhole" ; + IFC4-PSD:propertyDef :p01206e00d1d411e1800000215ad4efdf , :p0a113f80d1d411e1800000215ad4efdf , :p1dbca600d1d411e1800000215ad4efdf , :p23b28700d1d411e1800000215ad4efdf , :p32993980d1d411e1800000215ad4efdf , :p0da4c680d1d411e1800000215ad4efdf , :pfc5bba00d1d311e1800000215ad4efdf , :p26ad7780d1d411e1800000215ad4efdf , :p04b3f500d1d411e1800000215ad4efdf , :p13021100d1d411e1800000215ad4efdf , :p185f5b80d1d411e1800000215ad4efdf , :pf7970600d1d311e1800000215ad4efdf , :p2ca35880d1d411e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeMeterChamber.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeMeterChamber.ttl new file mode 100644 index 00000000..1934b244 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeMeterChamber.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:WallThickness a rdf:Property ; + rdfs:seeAlso :p4c3a8100d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallThickness . + +:Pset_DistributionChamberElementTypeMeterChamber + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chamber that houses a meter(s) (definition modified from BS6100 250 6224)." ; + rdfs:label "Pset_DistributionChamberElementTypeMeterChamber" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/METERCHAMBER" ; + IFC4-PSD:definition "Chamber that houses a meter(s) (definition modified from BS6100 250 6224)." ; + IFC4-PSD:definitionAlias ""@en , "メーター室に関する属性情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeMeterChamber" ; + IFC4-PSD:propertyDef :p5b213380d1d411e1800000215ad4efdf , :p52306200d1d411e1800000215ad4efdf , :p48a6fa00d1d411e1800000215ad4efdf , :p4c3a8100d1d411e1800000215ad4efdf , :p3d53ce80d1d411e1800000215ad4efdf , :p55c3e900d1d411e1800000215ad4efdf , :p42b11900d1d411e1800000215ad4efdf . + +:BaseThickness a rdf:Property ; + rdfs:seeAlso :p55c3e900d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseThickness . + +:ChamberLengthOrRadius + a rdf:Property ; + rdfs:seeAlso :p3d53ce80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberLengthOrRadius . + +:p52306200d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + rdfs:label "BaseMaterial" ; + IFC4-PSD:definition "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + IFC4-PSD:definitionAlias "ダクトスペース床面の材質。\n注:ダクトスペースの床は単層と仮定する"@ja-JP , ""@en , "덕트 공간 바닥의 재질 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "52306200d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseMaterial" ; + IFC4-PSD:nameAlias "Base Material"@en , "바닥의 ​​재질"@ko-KR , "床の材質"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:BaseMaterial a rdf:Property ; + rdfs:seeAlso :p52306200d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseMaterial . + +:p48a6fa00d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "WallMaterial" ; + IFC4-PSD:definition "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 벽의 재질 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , "ダクトスペース壁の材質。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "48a6fa00d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallMaterial" ; + IFC4-PSD:nameAlias "Wall Material"@en , "벽의 재질"@ko-KR , "壁の材質"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:WallMaterial a rdf:Property ; + rdfs:seeAlso :p48a6fa00d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallMaterial . + +:p42b11900d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Width, in the event of the shape being non circular in plan." ; + rdfs:label "ChamberWidth" ; + IFC4-PSD:definition "Width, in the event of the shape being non circular in plan." ; + IFC4-PSD:definitionAlias "非円形チャンバーの幅。"@ja-JP , ""@en , "비원 챔버의 폭"@ko-KR ; + IFC4-PSD:ifdguid "42b11900d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberWidth" ; + IFC4-PSD:nameAlias "챔버의 폭"@ko-KR , "Chamber Width"@en , "チャンバーの幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ChamberWidth a rdf:Property ; + rdfs:seeAlso :p42b11900d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberWidth . + +:p55c3e900d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber base construction.\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + rdfs:label "BaseThickness" ; + IFC4-PSD:definition "The thickness of the chamber base construction.\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias ""@en , "ダクトスペース床面の厚さ。\n注:ダクトスペースの床は単層と仮定する"@ja-JP , "덕트 공간 바닥의 두께 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "55c3e900d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseThickness" ; + IFC4-PSD:nameAlias "Base Thickness"@en , "바닥의 두께"@ko-KR , "床の厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p3d53ce80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + rdfs:label "ChamberLengthOrRadius" ; + IFC4-PSD:definition "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + IFC4-PSD:definitionAlias "チャンバーの長さあるいは円形チャンバーの半径。"@ja-JP , "챔버의 길이 또는 원형 챔버의 반경"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "3d53ce80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberLengthOrRadius" ; + IFC4-PSD:nameAlias "Chamber Length Or Radius"@en , "챔버의 길이 또는 반경"@ko-KR , "チャンバーの長さあるいは半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p4c3a8100d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber wall construction\n.\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + rdfs:label "WallThickness" ; + IFC4-PSD:definition "The thickness of the chamber wall construction\n.\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias ""@en , "ダクトスペース壁の厚さ。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , "덕트 공간 벽 두께 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "4c3a8100d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallThickness" ; + IFC4-PSD:nameAlias "Wall Thickness"@en , "벽 두께"@ko-KR , "壁厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5b213380d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "AccessCoverMaterial" ; + IFC4-PSD:definition "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias ""@en , "アクセス(点検)カバーの材質。\n注:バイブスペースの壁は単層と仮定する"@ja-JP , "액세스 (체크) 커버의 재질 주 : 바이브 공간의 벽은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "5b213380d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverMaterial" ; + IFC4-PSD:nameAlias "アクセス(点検)カバーの材質"@ja-JP , "사용 (체크) 커버의 재질"@ko-KR , "Access Cover Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:AccessCoverMaterial a rdf:Property ; + rdfs:seeAlso :p5b213380d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverMaterial . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeSump.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeSump.ttl new file mode 100644 index 00000000..6e18d8ed --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeSump.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p6aa07c80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the sump." ; + rdfs:label "Width" ; + IFC4-PSD:definition "The width of the sump." ; + IFC4-PSD:definitionAlias "배수 챔버의 폭"@ko-KR , "排水チャンバーの幅。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6aa07c80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "Width" ; + IFC4-PSD:nameAlias "Width"@en , "幅"@ja-JP , "폭"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DistributionChamberElementTypeSump + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Recess or small chamber into which liquid is drained to facilitate its removal." ; + rdfs:label "Pset_DistributionChamberElementTypeSump" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/SUMP" ; + IFC4-PSD:definition "Recess or small chamber into which liquid is drained to facilitate its removal." ; + IFC4-PSD:definitionAlias "排水チャンバー(ピット)に関する属性情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeSump" ; + IFC4-PSD:propertyDef :p64aa9b80d1d411e1800000215ad4efdf , :p6aa07c80d1d411e1800000215ad4efdf , :p70965d80d1d411e1800000215ad4efdf . + +:InvertLevel a rdf:Property ; + rdfs:seeAlso :p70965d80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InvertLevel . + +:p70965d80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The lowest point in the cross section of the sump." ; + rdfs:label "InvertLevel" ; + IFC4-PSD:definition "The lowest point in the cross section of the sump." ; + IFC4-PSD:definitionAlias "단면의 가장 낮은 부분의 깊이 (지상에서)"@ko-KR , "断面の最も低い部分の深さ(地面から)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "70965d80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "InvertLevel" ; + IFC4-PSD:nameAlias "最大深さ"@ja-JP , "최대 깊이"@ko-KR , "Invert Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Width a rdf:Property ; + rdfs:seeAlso :p6aa07c80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Width . + +:Length a rdf:Property ; + rdfs:seeAlso :p64aa9b80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Length . + +:p64aa9b80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of the sump." ; + rdfs:label "Length" ; + IFC4-PSD:definition "The length of the sump." ; + IFC4-PSD:definitionAlias ""@en , "排水チャンバーの長さ。"@ja-JP , "배수 챔버의 길이"@ko-KR ; + IFC4-PSD:ifdguid "64aa9b80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "Length" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "길이"@ko-KR , "Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeTrench.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeTrench.ttl new file mode 100644 index 00000000..ab0813ed --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeTrench.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InvertLevel a rdf:Property ; + rdfs:seeAlso :p899f0e80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InvertLevel . + +:Pset_DistributionChamberElementTypeTrench + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Excavation, the length of which greatly exceeds the width." ; + rdfs:label "Pset_DistributionChamberElementTypeTrench" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/TRENCH" ; + IFC4-PSD:definition "Excavation, the length of which greatly exceeds the width." ; + IFC4-PSD:definitionAlias ""@en , "チャンバーの溝(長さは幅より長い)に関する属性情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeTrench" ; + IFC4-PSD:propertyDef :p7d1ab600d1d411e1800000215ad4efdf , :p899f0e80d1d411e1800000215ad4efdf , :p83a92d80d1d411e1800000215ad4efdf . + +:Width a rdf:Property ; + rdfs:seeAlso :p7d1ab600d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Width . + +:p899f0e80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Level of the lowest part of the cross section as measured from ground level." ; + rdfs:label "InvertLevel" ; + IFC4-PSD:definition "Level of the lowest part of the cross section as measured from ground level." ; + IFC4-PSD:definitionAlias "단면의 가장 낮은 부분의 깊이 (지상)"@ko-KR , "断面の最も低い部分の深さ(地面から)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "899f0e80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "InvertLevel" ; + IFC4-PSD:nameAlias "Invert Level"@en , "最大深さ"@ja-JP , "최대 깊이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p7d1ab600d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of the trench." ; + rdfs:label "Width" ; + IFC4-PSD:definition "The width of the trench." ; + IFC4-PSD:definitionAlias "溝の長さ。"@ja-JP , "홈의 길이"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "7d1ab600d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "Width" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "Width"@en , "길이"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p83a92d80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The depth of the trench." ; + rdfs:label "Depth" ; + IFC4-PSD:definition "The depth of the trench." ; + IFC4-PSD:definitionAlias "溝の幅。"@ja-JP , ""@en , "홈의 폭"@ko-KR ; + IFC4-PSD:ifdguid "83a92d80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "Depth" ; + IFC4-PSD:nameAlias "Depth"@en , "幅"@ja-JP , "폭"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Depth a rdf:Property ; + rdfs:seeAlso :p83a92d80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Depth . diff --git a/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeValveChamber.ttl b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeValveChamber.ttl new file mode 100644 index 00000000..154e68a6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionChamberElementTypeValveChamber.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DistributionChamberElementTypeValveChamber + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Chamber that houses a valve(s)." ; + rdfs:label "Pset_DistributionChamberElementTypeValveChamber" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionChamberElement/VALVECHAMBER" ; + IFC4-PSD:definition "Chamber that houses a valve(s)." ; + IFC4-PSD:definitionAlias "バルブ室(バルブチャンバー)に関する属性情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionChamberElementTypeValveChamber" ; + IFC4-PSD:propertyDef :pafc4ae80d1d411e1800000215ad4efdf , :p96236700d1d411e1800000215ad4efdf , :p9c194800d1d411e1800000215ad4efdf , :pa20f2900d1d411e1800000215ad4efdf , :pb6532600d1d411e1800000215ad4efdf , :pa5a2b000d1d411e1800000215ad4efdf , :pac312780d1d411e1800000215ad4efdf . + +:pafc4ae80d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber base construction.\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + rdfs:label "BaseThickness" ; + IFC4-PSD:definition "The thickness of the chamber base construction.\nNOTE: It is assumed that chamber base will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "ダクトスペース床面の厚さ。\n注:ダクトスペースの床は単層と仮定する"@ja-JP , ""@en , "덕트 공간 바닥의 두께 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "afc4ae80d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseThickness" ; + IFC4-PSD:nameAlias "바닥의 두께"@ko-KR , "Base Thickness"@en , "床の厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:AccessCoverMaterial a rdf:Property ; + rdfs:seeAlso :pb6532600d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessCoverMaterial . + +:pac312780d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + rdfs:label "BaseMaterial" ; + IFC4-PSD:definition "The material from which the base of the chamber is constructed.\nNOTE: It is assumed that chamber base will be constructed of a single material." ; + IFC4-PSD:definitionAlias "덕트 공간 바닥의 재질 참고 : 덕트 공간의 바닥은 단층 가정"@ko-KR , ""@en , "ダクトスペース床面の材質。\n注:ダクトスペースの床は単層と仮定する"@ja-JP ; + IFC4-PSD:ifdguid "ac312780d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "BaseMaterial" ; + IFC4-PSD:nameAlias "床の材質"@ja-JP , "바닥의 재질"@ko-KR , "Base Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:WallThickness a rdf:Property ; + rdfs:seeAlso :pa5a2b000d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallThickness . + +:pa20f2900d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "WallMaterial" ; + IFC4-PSD:definition "The material from which the wall of the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "ダクトスペース壁の材質。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , ""@en , "덕트 공간 벽의 재질 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "a20f2900d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallMaterial" ; + IFC4-PSD:nameAlias "벽의 재질"@ko-KR , "Wall Material"@en , "壁の材質"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:BaseThickness a rdf:Property ; + rdfs:seeAlso :pafc4ae80d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseThickness . + +:p96236700d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + rdfs:label "ChamberLengthOrRadius" ; + IFC4-PSD:definition "Length or, in the event of the shape being circular in plan, the radius of the chamber." ; + IFC4-PSD:definitionAlias "챔버의 길이 또는 원형 챔버의 반경"@ko-KR , ""@en , "チャンバーの長さあるいは円形チャンバーの半径。"@ja-JP ; + IFC4-PSD:ifdguid "96236700d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberLengthOrRadius" ; + IFC4-PSD:nameAlias "Chamber Length Or Radius"@en , "챔버의 길이 또는 반경"@ko-KR , "チャンバーの長さあるいは半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pb6532600d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + rdfs:label "AccessCoverMaterial" ; + IFC4-PSD:definition "The material from which the access cover to the chamber is constructed.\nNOTE: It is assumed that chamber walls will be constructed of a single material." ; + IFC4-PSD:definitionAlias "アクセス(点検)カバーの材質。\n注:バイブスペースの壁は単層と仮定する"@ja-JP , ""@en , "액세스 (체크) 커버의 재질 주 : 바이브 공간의 벽은 단층 가정"@ko-KR ; + IFC4-PSD:ifdguid "b6532600d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "AccessCoverMaterial" ; + IFC4-PSD:nameAlias "アクセス(点検)カバーの材質"@ja-JP , "사용(체크)커버의 재질"@ko-KR , "Access Cover Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:ChamberLengthOrRadius + a rdf:Property ; + rdfs:seeAlso :p96236700d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberLengthOrRadius . + +:BaseMaterial a rdf:Property ; + rdfs:seeAlso :pac312780d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseMaterial . + +:WallMaterial a rdf:Property ; + rdfs:seeAlso :pa20f2900d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WallMaterial . + +:ChamberWidth a rdf:Property ; + rdfs:seeAlso :p9c194800d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChamberWidth . + +:p9c194800d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Width, in the event of the shape being non circular in plan." ; + rdfs:label "ChamberWidth" ; + IFC4-PSD:definition "Width, in the event of the shape being non circular in plan." ; + IFC4-PSD:definitionAlias "비원 챔버의 폭"@ko-KR , "非円形チャンバーの幅。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9c194800d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "ChamberWidth" ; + IFC4-PSD:nameAlias "Chamber Width"@en , "チャンバー幅"@ja-JP , "챔버의 너비"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pa5a2b000d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thickness of the chamber wall construction.\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + rdfs:label "WallThickness" ; + IFC4-PSD:definition "The thickness of the chamber wall construction.\nNOTE: It is assumed that chamber walls will be constructed at a single thickness." ; + IFC4-PSD:definitionAlias "덕트 공간 벽 두께 참고 : 덕트 공간의 벽은 단층 가정"@ko-KR , "ダクトスペース壁の厚さ。\n注:ダクトスペースの壁は単層と仮定する"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a5a2b000d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "WallThickness" ; + IFC4-PSD:nameAlias "벽 두께"@ko-KR , "Wall Thickness"@en , "壁厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortCommon.ttl b/converter/src/main/resources/pset/Pset_DistributionPortCommon.ttl new file mode 100644 index 00000000..cc72aa60 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc0752480d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The port index for logically ordering the port within the containing element or element type." ; + rdfs:label "PortNumber" ; + IFC4-PSD:definition "The port index for logically ordering the port within the containing element or element type." ; + IFC4-PSD:definitionAlias "포트에 포함되는 요소 유형을 나타내는 숫자"@ko-KR , ""@en , "ポートに含まれる要素、種類を示す番号。"@ja-JP ; + IFC4-PSD:ifdguid "c0752480d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "PortNumber" ; + IFC4-PSD:nameAlias "Port Number"@en , "포트 번호"@ko-KR , "ポート番号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:ColorCode a rdf:Property ; + rdfs:seeAlso :pc79c3280d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColorCode . + +:pc79c3280d1d411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Name of a color for identifying the connector, if applicable." ; + rdfs:label "ColorCode" ; + IFC4-PSD:definition "Name of a color for identifying the connector, if applicable." ; + IFC4-PSD:definitionAlias "コネクタの色。"@ja-JP , "커넥터 고유 이름"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "c79c3280d1d411e1800000215ad4efdf" ; + IFC4-PSD:name "ColorCode" ; + IFC4-PSD:nameAlias "色番号"@ja-JP , "Color Code"@en , "색상번호"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_DistributionPortCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes attached to an instance of IfcDistributionPort." ; + rdfs:label "Pset_DistributionPortCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDistributionPort ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort" ; + IFC4-PSD:definition "Common attributes attached to an instance of IfcDistributionPort." ; + IFC4-PSD:definitionAlias ""@en , "IfcDistributionPortオブジェクトに関する基本属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortCommon" ; + IFC4-PSD:propertyDef :pc0752480d1d411e1800000215ad4efdf , :pc79c3280d1d411e1800000215ad4efdf . + +:PortNumber a rdf:Property ; + rdfs:seeAlso :pc0752480d1d411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PortNumber . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortPHistoryCable.ttl b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryCable.ttl new file mode 100644 index 00000000..c91bca59 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryCable.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:paf897460248b427685e28b50acfc7106 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Apparent power." ; + rdfs:label "ApparentPower" ; + IFC4-PSD:definition "Apparent power." ; + IFC4-PSD:definitionAlias ""@en , "皮相電力。"@ja-JP ; + IFC4-PSD:ifdguid "af897460248b427685e28b50acfc7106" ; + IFC4-PSD:name "ApparentPower" ; + IFC4-PSD:nameAlias "皮相電力"@ja-JP , "Apparent Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ApparentPower a rdf:Property ; + rdfs:seeAlso :paf897460248b427685e28b50acfc7106 ; + rdfs:subPropertyOf IFC4-PSD:ApparentPower . + +:pfbaec68991c14f8fb0c963eb65250f26 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Real power." ; + rdfs:label "RealPower" ; + IFC4-PSD:definition "Real power." ; + IFC4-PSD:definitionAlias "有効電力。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fbaec68991c14f8fb0c963eb65250f26" ; + IFC4-PSD:name "RealPower" ; + IFC4-PSD:nameAlias "有効電力"@ja-JP , "Real Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:DataReceived a rdf:Property ; + rdfs:seeAlso :pe72bcd7d84ae42c6b1e3f696451d1e6e ; + rdfs:subPropertyOf IFC4-PSD:DataReceived . + +:Current a rdf:Property ; + rdfs:seeAlso :p9fadeb7592de4a228764c24ee4f76b0b ; + rdfs:subPropertyOf IFC4-PSD:Current . + +:p6fa8730d435442e497527bd9defeb047 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Log of electrical voltage." ; + rdfs:label "Voltage" ; + IFC4-PSD:definition "Log of electrical voltage." ; + IFC4-PSD:definitionAlias "電圧のログ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6fa8730d435442e497527bd9defeb047" ; + IFC4-PSD:name "Voltage" ; + IFC4-PSD:nameAlias "電圧"@ja-JP , "Voltage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ReactivePower a rdf:Property ; + rdfs:seeAlso :p401dc737009748699b073ef617ef615c ; + rdfs:subPropertyOf IFC4-PSD:ReactivePower . + +:RealPower a rdf:Property ; + rdfs:seeAlso :pfbaec68991c14f8fb0c963eb65250f26 ; + rdfs:subPropertyOf IFC4-PSD:RealPower . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Voltage a rdf:Property ; + rdfs:seeAlso :p6fa8730d435442e497527bd9defeb047 ; + rdfs:subPropertyOf IFC4-PSD:Voltage . + +:Pset_DistributionPortPHistoryCable + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Log of electrical activity attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type CABLE." ; + rdfs:label "Pset_DistributionPortPHistoryCable" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/CABLE" ; + IFC4-PSD:definition "Log of electrical activity attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type CABLE." ; + IFC4-PSD:definitionAlias "IfcDistributionPortオブジェクトがELECTRICAL型の際に関連するIfcPerformanceHistoryに設定される電力使用のログ。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortPHistoryCable" ; + IFC4-PSD:propertyDef :pfbaec68991c14f8fb0c963eb65250f26 , :pc1d8b4f5077244d98bb7d96e3b9a3282 , :pe72bcd7d84ae42c6b1e3f696451d1e6e , :p6fa8730d435442e497527bd9defeb047 , :p401dc737009748699b073ef617ef615c , :paf897460248b427685e28b50acfc7106 , :p53e43bcebef54a4096fd8862a450903d , :p9fadeb7592de4a228764c24ee4f76b0b . + +:DataTransmitted a rdf:Property ; + rdfs:seeAlso :pc1d8b4f5077244d98bb7d96e3b9a3282 ; + rdfs:subPropertyOf IFC4-PSD:DataTransmitted . + +:p401dc737009748699b073ef617ef615c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reactive power." ; + rdfs:label "ReactivePower" ; + IFC4-PSD:definition "Reactive power." ; + IFC4-PSD:definitionAlias "無効電力。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "401dc737009748699b073ef617ef615c" ; + IFC4-PSD:name "ReactivePower" ; + IFC4-PSD:nameAlias "無効電力"@ja-JP , "Reactive Power"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p9fadeb7592de4a228764c24ee4f76b0b + a IFC4-PSD:PropertyDef ; + rdfs:comment "Log of electrical current." ; + rdfs:label "Current" ; + IFC4-PSD:definition "Log of electrical current." ; + IFC4-PSD:definitionAlias ""@en , "電流のログ。"@ja-JP ; + IFC4-PSD:ifdguid "9fadeb7592de4a228764c24ee4f76b0b" ; + IFC4-PSD:name "Current" ; + IFC4-PSD:nameAlias "Current"@en , "電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pe72bcd7d84ae42c6b1e3f696451d1e6e + a IFC4-PSD:PropertyDef ; + rdfs:comment "For data ports, captures log of data received. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols." ; + rdfs:label "DataReceived" ; + IFC4-PSD:definition "For data ports, captures log of data received. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols." ; + IFC4-PSD:definitionAlias "受信データのログ。IfcTimeSeriesValue.Valuesのリスト値にはPset_DistributionPortTypeCable.Protocolsよりデータを受信する。"@ja , ""@en ; + IFC4-PSD:ifdguid "e72bcd7d84ae42c6b1e3f696451d1e6e" ; + IFC4-PSD:name "DataReceived" ; + IFC4-PSD:nameAlias "Data Received"@en , "受信"@ja ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pc1d8b4f5077244d98bb7d96e3b9a3282 + a IFC4-PSD:PropertyDef ; + rdfs:comment "For data ports, captures log of data transmitted. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols." ; + rdfs:label "DataTransmitted" ; + IFC4-PSD:definition "For data ports, captures log of data transmitted. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols." ; + IFC4-PSD:definitionAlias ""@en , "発信データのログ。IfcTimeSeriesValue.Valuesのリスト値にはPset_DistributionPortTypeCable.Protocolsよりデータを送信する。"@ja ; + IFC4-PSD:ifdguid "c1d8b4f5077244d98bb7d96e3b9a3282" ; + IFC4-PSD:name "DataTransmitted" ; + IFC4-PSD:nameAlias "Data Transmitted"@en , "発信"@ja ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:PowerFactor a rdf:Property ; + rdfs:seeAlso :p53e43bcebef54a4096fd8862a450903d ; + rdfs:subPropertyOf IFC4-PSD:PowerFactor . + +:p53e43bcebef54a4096fd8862a450903d + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor." ; + rdfs:label "PowerFactor" ; + IFC4-PSD:definition "Power factor." ; + IFC4-PSD:definitionAlias ""@en , "パワーファクタ。"@ja-JP ; + IFC4-PSD:ifdguid "53e43bcebef54a4096fd8862a450903d" ; + IFC4-PSD:name "PowerFactor" ; + IFC4-PSD:nameAlias "パワーファクタ"@ja-JP , "Power Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortPHistoryDuct.ttl b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryDuct.ttl new file mode 100644 index 00000000..b928a15a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryDuct.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p7e8e87f0549843c0a39e88ac3f175c6e + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric flow rate of the fluid." ; + rdfs:label "VolumetricFlowRate" ; + IFC4-PSD:definition "The volumetric flow rate of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7e8e87f0549843c0a39e88ac3f175c6e" ; + IFC4-PSD:name "VolumetricFlowRate" ; + IFC4-PSD:nameAlias "Volumetric Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p8148600227f74025863b0dda2b5a372e + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure of the fluid." ; + rdfs:label "Pressure" ; + IFC4-PSD:definition "The pressure of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8148600227f74025863b0dda2b5a372e" ; + IFC4-PSD:name "Pressure" ; + IFC4-PSD:nameAlias "Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pressure a rdf:Property ; + rdfs:seeAlso :p8148600227f74025863b0dda2b5a372e ; + rdfs:subPropertyOf IFC4-PSD:Pressure . + +:p80b98e43359d4dc2bc6f1e3c586498e1 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The velocity of the fluid." ; + rdfs:label "Velocity" ; + IFC4-PSD:definition "The velocity of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "80b98e43359d4dc2bc6f1e3c586498e1" ; + IFC4-PSD:name "Velocity" ; + IFC4-PSD:nameAlias "Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Temperature a rdf:Property ; + rdfs:seeAlso :pcbe855427fd14da0a29dd807677eb4a9 ; + rdfs:subPropertyOf IFC4-PSD:Temperature . + +:p39ebdb53ec0a4cfb9c16d3b93e4b79d3 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the flow condition as a percentage of the cross-sectional area." ; + rdfs:label "FlowCondition" ; + IFC4-PSD:definition "Defines the flow condition as a percentage of the cross-sectional area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "39ebdb53ec0a4cfb9c16d3b93e4b79d3" ; + IFC4-PSD:name "FlowCondition" ; + IFC4-PSD:nameAlias "Flow Condition"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FlowCondition a rdf:Property ; + rdfs:seeAlso :p39ebdb53ec0a4cfb9c16d3b93e4b79d3 ; + rdfs:subPropertyOf IFC4-PSD:FlowCondition . + +:pc04ff2c7bd4148da8d8e037447267a2f + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wet bulb temperature of the fluid; only applicable if the fluid is air." ; + rdfs:label "WetBulbTemperature" ; + IFC4-PSD:definition "Wet bulb temperature of the fluid; only applicable if the fluid is air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c04ff2c7bd4148da8d8e037447267a2f" ; + IFC4-PSD:name "WetBulbTemperature" ; + IFC4-PSD:nameAlias "Wet Bulb Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pbe32824c472c44e8ab71cf06b1d088c9 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The mass flow rate of the fluid." ; + rdfs:label "MassFlowRate" ; + IFC4-PSD:definition "The mass flow rate of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "be32824c472c44e8ab71cf06b1d088c9" ; + IFC4-PSD:name "MassFlowRate" ; + IFC4-PSD:nameAlias "Mass Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:WetBulbTemperature a rdf:Property ; + rdfs:seeAlso :pc04ff2c7bd4148da8d8e037447267a2f ; + rdfs:subPropertyOf IFC4-PSD:WetBulbTemperature . + +:pcbe855427fd14da0a29dd807677eb4a9 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature of the fluid. For air this value represents the dry bulb temperature." ; + rdfs:label "Temperature" ; + IFC4-PSD:definition "Temperature of the fluid. For air this value represents the dry bulb temperature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cbe855427fd14da0a29dd807677eb4a9" ; + IFC4-PSD:name "Temperature" ; + IFC4-PSD:nameAlias "Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:VolumetricFlowRate a rdf:Property ; + rdfs:seeAlso :p7e8e87f0549843c0a39e88ac3f175c6e ; + rdfs:subPropertyOf IFC4-PSD:VolumetricFlowRate . + +:MassFlowRate a rdf:Property ; + rdfs:seeAlso :pbe32824c472c44e8ab71cf06b1d088c9 ; + rdfs:subPropertyOf IFC4-PSD:MassFlowRate . + +:Pset_DistributionPortPHistoryDuct + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fluid flow performance history attached to an instance of IfcPerformanceHistory assigned to IfcDistributionPort. This replaces the deprecated IfcFluidFlowProperties for performance values." ; + rdfs:label "Pset_DistributionPortPHistoryDuct" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/DUCT" ; + IFC4-PSD:definition "Fluid flow performance history attached to an instance of IfcPerformanceHistory assigned to IfcDistributionPort. This replaces the deprecated IfcFluidFlowProperties for performance values." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortPHistoryDuct" ; + IFC4-PSD:propertyDef :p80b98e43359d4dc2bc6f1e3c586498e1 , :pc04ff2c7bd4148da8d8e037447267a2f , :pbe32824c472c44e8ab71cf06b1d088c9 , :p8148600227f74025863b0dda2b5a372e , :p39ebdb53ec0a4cfb9c16d3b93e4b79d3 , :p7e8e87f0549843c0a39e88ac3f175c6e , :pcbe855427fd14da0a29dd807677eb4a9 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Velocity a rdf:Property ; + rdfs:seeAlso :p80b98e43359d4dc2bc6f1e3c586498e1 ; + rdfs:subPropertyOf IFC4-PSD:Velocity . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortPHistoryPipe.ttl b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryPipe.ttl new file mode 100644 index 00000000..1bd49f9e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortPHistoryPipe.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p7a3f6bee58104037a997d1c2cbd68a4d + a IFC4-PSD:PropertyDef ; + rdfs:comment "The flowrate of the fuel." ; + rdfs:label "Flowrate" ; + IFC4-PSD:definition "The flowrate of the fuel." ; + IFC4-PSD:definitionAlias ""@en , "燃料の流速。"@ja-JP ; + IFC4-PSD:ifdguid "7a3f6bee58104037a997d1c2cbd68a4d" ; + IFC4-PSD:name "Flowrate" ; + IFC4-PSD:nameAlias "Flowrate"@en , "流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p36d77e7919364513b229f61c7632a638 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature of the fuel." ; + rdfs:label "Temperature" ; + IFC4-PSD:definition "The temperature of the fuel." ; + IFC4-PSD:definitionAlias ""@en , "燃料の温度。"@ja-JP ; + IFC4-PSD:ifdguid "36d77e7919364513b229f61c7632a638" ; + IFC4-PSD:name "Temperature" ; + IFC4-PSD:nameAlias "温度"@ja-JP , "Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pressure a rdf:Property ; + rdfs:seeAlso :pd31964c0ab4f444aa3a526a72084e705 ; + rdfs:subPropertyOf IFC4-PSD:Pressure . + +:pd31964c0ab4f444aa3a526a72084e705 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure of the fuel." ; + rdfs:label "Pressure" ; + IFC4-PSD:definition "The pressure of the fuel." ; + IFC4-PSD:definitionAlias "燃料の圧力。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d31964c0ab4f444aa3a526a72084e705" ; + IFC4-PSD:name "Pressure" ; + IFC4-PSD:nameAlias "Pressure"@en , "圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Flowrate a rdf:Property ; + rdfs:seeAlso :p7a3f6bee58104037a997d1c2cbd68a4d ; + rdfs:subPropertyOf IFC4-PSD:Flowrate . + +:Temperature a rdf:Property ; + rdfs:seeAlso :p36d77e7919364513b229f61c7632a638 ; + rdfs:subPropertyOf IFC4-PSD:Temperature . + +:Pset_DistributionPortPHistoryPipe + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Log of substance usage attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type PIPE." ; + rdfs:label "Pset_DistributionPortPHistoryPipe" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/PIPE" ; + IFC4-PSD:definition "Log of substance usage attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type PIPE." ; + IFC4-PSD:definitionAlias "IfcDistributionPortオブジェクトがGAS型の際に関連するIfcPerformanceHistoryに設定される燃料使用のログ。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortPHistoryPipe" ; + IFC4-PSD:propertyDef :p7a3f6bee58104037a997d1c2cbd68a4d , :pd31964c0ab4f444aa3a526a72084e705 , :p36d77e7919364513b229f61c7632a638 . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortTypeCable.ttl b/converter/src/main/resources/pset/Pset_DistributionPortTypeCable.ttl new file mode 100644 index 00000000..9c254292 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortTypeCable.ttl @@ -0,0 +1,179 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Power a rdf:Property ; + rdfs:seeAlso :p437e2945ded040998d45ae3d9d9770db ; + rdfs:subPropertyOf IFC4-PSD:Power . + +:Voltage a rdf:Property ; + rdfs:seeAlso :p87b7f6b294b5447ab7edaa0e2b690e7d ; + rdfs:subPropertyOf IFC4-PSD:Voltage . + +:p4a16661be73843fb99eb498a99015880 + a IFC4-PSD:PropertyDef ; + rdfs:comment "

The physical port connection subtype that further qualifies the ConnectionType. The following values are recommended:

\n\n
    \n
  • ACPLUG: A, B, C, D, E, F, EF, G, H, I, J, K, L, M
  • \n
  • DIN: Mini3P, Mini4P, Mini5P, Mini6P, Mini7P, Mini8P, Mini9P
  • \n
  • DSub: DA15, DB25, DC37, DD50, DE9, DE15
  • \n
  • EIAJ: RC5720
  • \n\n
  • HDMI: A, B, C
  • \n
  • RADIO: IEEE802.11g, IEEE802.11n\n
  • \n
  • RJ: 4P4C, 6P2C, 8P8C
  • \n
  • SOCKET: E-11, E-12, E-14, E-17, E-26, E-27, E-39, E-40
  • \n
  • TRS: TS_Mini, TS_SubMini, TRS_Mini, TRS_SubMini
  • \n
" ; + rdfs:label "ConnectionSubtype" ; + IFC4-PSD:definition "

The physical port connection subtype that further qualifies the ConnectionType. The following values are recommended:

\n\n
    \n
  • ACPLUG: A, B, C, D, E, F, EF, G, H, I, J, K, L, M
  • \n
  • DIN: Mini3P, Mini4P, Mini5P, Mini6P, Mini7P, Mini8P, Mini9P
  • \n
  • DSub: DA15, DB25, DC37, DD50, DE9, DE15
  • \n
  • EIAJ: RC5720
  • \n\n
  • HDMI: A, B, C
  • \n
  • RADIO: IEEE802.11g, IEEE802.11n\n
  • \n
  • RJ: 4P4C, 6P2C, 8P8C
  • \n
  • SOCKET: E-11, E-12, E-14, E-17, E-26, E-27, E-39, E-40
  • \n
  • TRS: TS_Mini, TS_SubMini, TRS_Mini, TRS_SubMini
  • \n
" ; + IFC4-PSD:definitionAlias "物理ポート接続のサブタイプ。接続タイプ以外の情報を設定する場合に使用。下記の値を設定:\n\n- ACプラグ: A, B, C, D, E, F, EF, G, H, I, J, K, L, M"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4a16661be73843fb99eb498a99015880" ; + IFC4-PSD:name "ConnectionSubtype" ; + IFC4-PSD:nameAlias "Connection Subtype"@en , "接続サブタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p87b7f6b294b5447ab7edaa0e2b690e7d + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual voltage and operable range." ; + rdfs:label "Voltage" ; + IFC4-PSD:definition "The actual voltage and operable range." ; + IFC4-PSD:definitionAlias "実電圧と動作可能範囲。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "87b7f6b294b5447ab7edaa0e2b690e7d" ; + IFC4-PSD:name "Voltage" ; + IFC4-PSD:nameAlias "Voltage"@en , "電圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p1592daba2e144952a71949248bab50cc + a IFC4-PSD:PropertyDef ; + rdfs:comment "For data ports, identifies the protocols used as defined by the Open System Interconnection (OSI) Basic Reference Model (ISO 7498). Layers include: 1. Physical; 2. DataLink; 3. Network; 4. Transport; 5. Session; 6. Presentation; 7. Application. Example: 3:IP, 4:TCP, 5:HTTP" ; + rdfs:label "Protocols" ; + IFC4-PSD:definition "For data ports, identifies the protocols used as defined by the Open System Interconnection (OSI) Basic Reference Model (ISO 7498). Layers include: 1. Physical; 2. DataLink; 3. Network; 4. Transport; 5. Session; 6. Presentation; 7. Application. Example: 3:IP, 4:TCP, 5:HTTP" ; + IFC4-PSD:definitionAlias "OSIのオープンシステム相互接続用基本プロトコル(ISO 7498):\n1. 物理層; 2.データリンク層; 3. ネットワーク層; 4. トランスポート層; 5. セッション層; 6.プレゼンテーション層 ; 7. アプリケーション層. \n例: 3:IP, 4:TCP, 5:HTTP"@ja , ""@en ; + IFC4-PSD:ifdguid "1592daba2e144952a71949248bab50cc" ; + IFC4-PSD:name "Protocols" ; + IFC4-PSD:nameAlias "プロトコル"@ja , "Protocols"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:ConnectionSubtype a rdf:Property ; + rdfs:seeAlso :p4a16661be73843fb99eb498a99015880 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSubtype . + +:ConductorFunction a rdf:Property ; + rdfs:seeAlso :p03d981504bcf4f748b31dee8065d5959 ; + rdfs:subPropertyOf IFC4-PSD:ConductorFunction . + +:ConnectionGender a rdf:Property ; + rdfs:seeAlso :p5a9b13be92d1458583634e056c138f30 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionGender . + +:Current a rdf:Property ; + rdfs:seeAlso :p5207092197274e99917bfdcae2efea80 ; + rdfs:subPropertyOf IFC4-PSD:Current . + +:peaf80f92e6df4c29a18086e89bea20e9 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio between the third harmonic current and the phase current." ; + rdfs:label "CurrentContent3rdHarmonic" ; + IFC4-PSD:definition "The ratio between the third harmonic current and the phase current." ; + IFC4-PSD:definitionAlias ""@en , "第3高調波電流と相電流の比率。"@ja-JP ; + IFC4-PSD:ifdguid "eaf80f92e6df4c29a18086e89bea20e9" ; + IFC4-PSD:name "CurrentContent3rdHarmonic" ; + IFC4-PSD:nameAlias "第3高調波電流と相電流の比"@ja-JP , "Current Content3rd Harmonic"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p5207092197274e99917bfdcae2efea80 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual current and operable range." ; + rdfs:label "Current" ; + IFC4-PSD:definition "The actual current and operable range." ; + IFC4-PSD:definitionAlias ""@en , "実電流と動作可能範囲。"@ja-JP ; + IFC4-PSD:ifdguid "5207092197274e99917bfdcae2efea80" ; + IFC4-PSD:name "Current" ; + IFC4-PSD:nameAlias "Current"@en , "電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p437e2945ded040998d45ae3d9d9770db + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual power and operable range." ; + rdfs:label "Power" ; + IFC4-PSD:definition "The actual power and operable range." ; + IFC4-PSD:definitionAlias ""@en , "実電力と動作可能範囲。"@ja-JP ; + IFC4-PSD:ifdguid "437e2945ded040998d45ae3d9d9770db" ; + IFC4-PSD:name "Power" ; + IFC4-PSD:nameAlias "Power"@en , "電力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p03d981504bcf4f748b31dee8065d5959 + a IFC4-PSD:PropertyDef ; + rdfs:comment "For ports distributing power, indicates function of the conductors to which the load is connected." ; + rdfs:label "ConductorFunction" ; + IFC4-PSD:definition "For ports distributing power, indicates function of the conductors to which the load is connected." ; + IFC4-PSD:definitionAlias ""@en , "電気負荷と連結する電線種類。"@ja-JP ; + IFC4-PSD:ifdguid "03d981504bcf4f748b31dee8065d5959" ; + IFC4-PSD:name "ConductorFunction" ; + IFC4-PSD:nameAlias "電線種類"@ja-JP , "Conductor Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PHASE_L2" , "OTHER" , "PROTECTIVEEARTHNEUTRAL" , "PHASE_L3" , "NEUTRAL" , "UNSET" , "NOTKNOWN" , "PHASE_L1" , "PROTECTIVEEARTH" + ] . + +:ConnectionType a rdf:Property ; + rdfs:seeAlso :p1b51a5433f934fa7a5031c877bb4b429 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionType . + +:Pset_DistributionPortTypeCable + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Cable port occurrence attributes attached to an instance of IfcDistributionPort." ; + rdfs:label "Pset_DistributionPortTypeCable" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/CABLE" ; + IFC4-PSD:definition "Cable port occurrence attributes attached to an instance of IfcDistributionPort." ; + IFC4-PSD:definitionAlias "IfcDistributionPortオブジェクトに設定される電力ポートに関する属性情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortTypeCable" ; + IFC4-PSD:propertyDef :p03d981504bcf4f748b31dee8065d5959 , :peaf80f92e6df4c29a18086e89bea20e9 , :p5a9b13be92d1458583634e056c138f30 , :p5207092197274e99917bfdcae2efea80 , :p4a16661be73843fb99eb498a99015880 , :p437e2945ded040998d45ae3d9d9770db , :p1b51a5433f934fa7a5031c877bb4b429 , :p87b7f6b294b5447ab7edaa0e2b690e7d , :p1592daba2e144952a71949248bab50cc . + +:Protocols a rdf:Property ; + rdfs:seeAlso :p1592daba2e144952a71949248bab50cc ; + rdfs:subPropertyOf IFC4-PSD:Protocols . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5a9b13be92d1458583634e056c138f30 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical connection gender." ; + rdfs:label "ConnectionGender" ; + IFC4-PSD:definition "The physical connection gender." ; + IFC4-PSD:definitionAlias ""@en , "形状的な接続ジェンダー(オス、メス、その他、未知、未設定)。"@ja-JP ; + IFC4-PSD:ifdguid "5a9b13be92d1458583634e056c138f30" ; + IFC4-PSD:name "ConnectionGender" ; + IFC4-PSD:nameAlias "Connection Gender"@en , "接続ジェンダー"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MALE" , "FEMALE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p1b51a5433f934fa7a5031c877bb4b429 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical port connection:\n\nACPLUG: AC plug\nDCPLUG: DC plug\nCRIMP: bare wire" ; + rdfs:label "ConnectionType" ; + IFC4-PSD:definition "The physical port connection:\n\nACPLUG: AC plug\nDCPLUG: DC plug\nCRIMP: bare wire" ; + IFC4-PSD:definitionAlias ""@en , "物理ポート接続:\n\n- ACPLUG: AC プラグ\n- DCPLUG: DC プラグ\n- CRIMP: 裸線"@ja-JP ; + IFC4-PSD:ifdguid "1b51a5433f934fa7a5031c877bb4b429" ; + IFC4-PSD:name "ConnectionType" ; + IFC4-PSD:nameAlias "Connection Type"@en , "接続タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DSUB" , "RCA" , "DVI" , "CRIMP" , "SOCKET" , "UNSET" , "DIN" , "ACPLUG" , "TRS" , "EIAJ" , "XLR" , "OTHER" , "HDMI" , "DCPLUG" , "NOTKNOWN" , "RADIO" , "COAXIAL" , "RJ" , "USB" + ] . + +:CurrentContent3rdHarmonic + a rdf:Property ; + rdfs:seeAlso :peaf80f92e6df4c29a18086e89bea20e9 ; + rdfs:subPropertyOf IFC4-PSD:CurrentContent3rdHarmonic . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortTypeDuct.ttl b/converter/src/main/resources/pset/Pset_DistributionPortTypeDuct.ttl new file mode 100644 index 00000000..d3240f70 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortTypeDuct.ttl @@ -0,0 +1,195 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p26538518abf6475ba1562ce731d7975e + a IFC4-PSD:PropertyDef ; + rdfs:comment "The velocity of the fluid." ; + rdfs:label "Velocity" ; + IFC4-PSD:definition "The velocity of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "26538518abf6475ba1562ce731d7975e" ; + IFC4-PSD:name "Velocity" ; + IFC4-PSD:nameAlias "Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:WetBulbTemperature a rdf:Property ; + rdfs:seeAlso :p46e6cb4f3ecb4016b3d952ec26836ce6 ; + rdfs:subPropertyOf IFC4-PSD:WetBulbTemperature . + +:pd2b239a61db14c2ab423e3d735a6de1f + a IFC4-PSD:PropertyDef ; + rdfs:comment "The end-style treatment of the duct port:\n\nBEADEDSLEEVE: Beaded Sleeve. \nCOMPRESSION: Compression. \nCRIMP: Crimp. \nDRAWBAND: Drawband. \nDRIVESLIP: Drive slip. \nFLANGED: Flanged. \nOUTSIDESLEEVE: Outside Sleeve. \nSLIPON: Slipon. \nSOLDERED: Soldered. \nSSLIP: S-Slip. \nSTANDINGSEAM: Standing seam. \nSWEDGE: Swedge. \nWELDED: Welded. \nOTHER: Another type of end-style has been applied.\nNONE: No end-style has been applied." ; + rdfs:label "ConnectionType" ; + IFC4-PSD:definition "The end-style treatment of the duct port:\n\nBEADEDSLEEVE: Beaded Sleeve. \nCOMPRESSION: Compression. \nCRIMP: Crimp. \nDRAWBAND: Drawband. \nDRIVESLIP: Drive slip. \nFLANGED: Flanged. \nOUTSIDESLEEVE: Outside Sleeve. \nSLIPON: Slipon. \nSOLDERED: Soldered. \nSSLIP: S-Slip. \nSTANDINGSEAM: Standing seam. \nSWEDGE: Swedge. \nWELDED: Welded. \nOTHER: Another type of end-style has been applied.\nNONE: No end-style has been applied." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d2b239a61db14c2ab423e3d735a6de1f" ; + IFC4-PSD:name "ConnectionType" ; + IFC4-PSD:nameAlias "Connection Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BEADEDSLEEVE" , "FLANGED" , "NONE" , "STANDINGSEAM" , "USERDEFINED" , "OTHER" , "DRIVESLIP" , "DRAWBAND" , "COMPRESSION" , "SOLDERED" , "OUTSIDESLEEVE" , "SLIPON" , "WELDED" , "SSLIP" , "SWEDGE" , "NOTDEFINED" , "CRIMP" + ] . + +:NominalThickness a rdf:Property ; + rdfs:seeAlso :p9aa93573818943ee9e7ad7e898fddfae ; + rdfs:subPropertyOf IFC4-PSD:NominalThickness . + +:Pset_DistributionPortTypeDuct + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct port occurrence attributes attached to an instance of IfcDistributionPort." ; + rdfs:label "Pset_DistributionPortTypeDuct" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/DUCT" ; + IFC4-PSD:definition "Duct port occurrence attributes attached to an instance of IfcDistributionPort." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortTypeDuct" ; + IFC4-PSD:propertyDef :p15d916dd1d7340bc81481576f81d2a08 , :p26538518abf6475ba1562ce731d7975e , :p9aa93573818943ee9e7ad7e898fddfae , :pa28e9f226e204a909976810e633a45f4 , :p639c0067eb444ed8b9d177247c1f1cc2 , :p0e28d2efe50346319664f17e52ebd118 , :p46e6cb4f3ecb4016b3d952ec26836ce6 , :p90a90418907a41809a527bb1ef069005 , :pd2b239a61db14c2ab423e3d735a6de1f , :p7583cd7c5ea74d109e2b6ad6d0dafa4b . + +:pa28e9f226e204a909976810e633a45f4 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width or diameter of the duct connection." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width or diameter of the duct connection." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a28e9f226e204a909976810e633a45f4" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "Nominal Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p639c0067eb444ed8b9d177247c1f1cc2 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric flow rate of the fluid." ; + rdfs:label "VolumetricFlowRate" ; + IFC4-PSD:definition "The volumetric flow rate of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "639c0067eb444ed8b9d177247c1f1cc2" ; + IFC4-PSD:name "VolumetricFlowRate" ; + IFC4-PSD:nameAlias "Volumetric Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p0e28d2efe50346319664f17e52ebd118 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Dry bulb temperature of the air." ; + rdfs:label "DryBulbTemperature" ; + IFC4-PSD:definition "Dry bulb temperature of the air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0e28d2efe50346319664f17e52ebd118" ; + IFC4-PSD:name "DryBulbTemperature" ; + IFC4-PSD:nameAlias "Dry Bulb Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:VolumetricFlowRate a rdf:Property ; + rdfs:seeAlso :p639c0067eb444ed8b9d177247c1f1cc2 ; + rdfs:subPropertyOf IFC4-PSD:VolumetricFlowRate . + +:p9aa93573818943ee9e7ad7e898fddfae + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal wall thickness of the duct at the connection point." ; + rdfs:label "NominalThickness" ; + IFC4-PSD:definition "The nominal wall thickness of the duct at the connection point." ; + IFC4-PSD:definitionAlias "The nominal wall thickness of the duct at the connection point."@en ; + IFC4-PSD:ifdguid "9aa93573818943ee9e7ad7e898fddfae" ; + IFC4-PSD:name "NominalThickness" ; + IFC4-PSD:nameAlias "Nominal Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p90a90418907a41809a527bb1ef069005 ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:p15d916dd1d7340bc81481576f81d2a08 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical port connection subtype that further qualifies the ConnectionType." ; + rdfs:label "ConnectionSubType" ; + IFC4-PSD:definition "The physical port connection subtype that further qualifies the ConnectionType." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "15d916dd1d7340bc81481576f81d2a08" ; + IFC4-PSD:name "ConnectionSubType" ; + IFC4-PSD:nameAlias "Connection Sub Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pressure a rdf:Property ; + rdfs:seeAlso :p7583cd7c5ea74d109e2b6ad6d0dafa4b ; + rdfs:subPropertyOf IFC4-PSD:Pressure . + +:ConnectionSubType a rdf:Property ; + rdfs:seeAlso :p15d916dd1d7340bc81481576f81d2a08 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSubType . + +:p46e6cb4f3ecb4016b3d952ec26836ce6 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wet bulb temperature of the air." ; + rdfs:label "WetBulbTemperature" ; + IFC4-PSD:definition "Wet bulb temperature of the air." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "46e6cb4f3ecb4016b3d952ec26836ce6" ; + IFC4-PSD:name "WetBulbTemperature" ; + IFC4-PSD:nameAlias "Wet Bulb Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:ConnectionType a rdf:Property ; + rdfs:seeAlso :pd2b239a61db14c2ab423e3d735a6de1f ; + rdfs:subPropertyOf IFC4-PSD:ConnectionType . + +:Velocity a rdf:Property ; + rdfs:seeAlso :p26538518abf6475ba1562ce731d7975e ; + rdfs:subPropertyOf IFC4-PSD:Velocity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7583cd7c5ea74d109e2b6ad6d0dafa4b + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure of the fluid." ; + rdfs:label "Pressure" ; + IFC4-PSD:definition "The pressure of the fluid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7583cd7c5ea74d109e2b6ad6d0dafa4b" ; + IFC4-PSD:name "Pressure" ; + IFC4-PSD:nameAlias "Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:DryBulbTemperature a rdf:Property ; + rdfs:seeAlso :p0e28d2efe50346319664f17e52ebd118 ; + rdfs:subPropertyOf IFC4-PSD:DryBulbTemperature . + +:p90a90418907a41809a527bb1ef069005 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the duct connection. Only provided for rectangular shaped ducts." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the duct connection. Only provided for rectangular shaped ducts." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "90a90418907a41809a527bb1ef069005" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "Nominal Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :pa28e9f226e204a909976810e633a45f4 ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . diff --git a/converter/src/main/resources/pset/Pset_DistributionPortTypePipe.ttl b/converter/src/main/resources/pset/Pset_DistributionPortTypePipe.ttl new file mode 100644 index 00000000..71f8e5b8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionPortTypePipe.ttl @@ -0,0 +1,212 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pcc4abc86f21d4ee3a86d3815019c5ab3 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure of the fluid." ; + rdfs:label "Pressure" ; + IFC4-PSD:definition "The pressure of the fluid." ; + IFC4-PSD:definitionAlias "流体の圧力。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cc4abc86f21d4ee3a86d3815019c5ab3" ; + IFC4-PSD:name "Pressure" ; + IFC4-PSD:nameAlias "圧力"@ja-JP , "Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pb6cb7483a65d4bd5ac6551b080116323 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature of the fluid." ; + rdfs:label "Temperature" ; + IFC4-PSD:definition "Temperature of the fluid." ; + IFC4-PSD:definitionAlias ""@en , "流体の温度。"@ja-JP ; + IFC4-PSD:ifdguid "b6cb7483a65d4bd5ac6551b080116323" ; + IFC4-PSD:name "Temperature" ; + IFC4-PSD:nameAlias "Temperature"@en , "温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pa09f286511e94d0f939193c2e0155921 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the flow condition as a percentage of the cross-sectional area." ; + rdfs:label "FlowCondition" ; + IFC4-PSD:definition "Defines the flow condition as a percentage of the cross-sectional area." ; + IFC4-PSD:definitionAlias "断面の充満率で流動状態を定義する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a09f286511e94d0f939193c2e0155921" ; + IFC4-PSD:name "FlowCondition" ; + IFC4-PSD:nameAlias "流動状態"@ja-JP , "Flow Condition"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pdf1d39774bb44a8d96c833058af039e0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical port connection subtype that further qualifies the ConnectionType." ; + rdfs:label "ConnectionSubType" ; + IFC4-PSD:definition "The physical port connection subtype that further qualifies the ConnectionType." ; + IFC4-PSD:definitionAlias ""@en , "物理ポート接続のサブタイプ。接続タイプ以外の情報を設定する場合に使用。下記の値を設定:\n\n- DSub: DA15, DB25, DC37, DD50, DE9, DE15 \n- Radio: IEEE802.11g, IEEE802.11n\n- RJ: 4P4C, 6P2C, 8P8C \n- USB: A, B, MiniA, MiniB, MicroA, MicroB"@ja-JP ; + IFC4-PSD:ifdguid "df1d39774bb44a8d96c833058af039e0" ; + IFC4-PSD:name "ConnectionSubType" ; + IFC4-PSD:nameAlias "Connection Sub Type"@en , "接続サブタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FlowCondition a rdf:Property ; + rdfs:seeAlso :pa09f286511e94d0f939193c2e0155921 ; + rdfs:subPropertyOf IFC4-PSD:FlowCondition . + +:pf842a89d8ec5470cb8ba7fec7338c6e3 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The end-style treatment of the pipe port:\n\nBRAZED: Brazed. \nCOMPRESSION: Compression. \nFLANGED: Flanged. \nGROOVED: Grooved. \nOUTSIDESLEEVE: Outside Sleeve. \nSOLDERED: Soldered. \nSWEDGE: Swedge. \nTHREADED: Threaded. \nWELDED: Welded. \nOTHER: Another type of end-style has been applied.\nNONE: No end-style has been applied.\nUSERDEFINED: User-defined port connection type. \nNOTDEFINED: Undefined port connection type." ; + rdfs:label "ConnectionType" ; + IFC4-PSD:definition "The end-style treatment of the pipe port:\n\nBRAZED: Brazed. \nCOMPRESSION: Compression. \nFLANGED: Flanged. \nGROOVED: Grooved. \nOUTSIDESLEEVE: Outside Sleeve. \nSOLDERED: Soldered. \nSWEDGE: Swedge. \nTHREADED: Threaded. \nWELDED: Welded. \nOTHER: Another type of end-style has been applied.\nNONE: No end-style has been applied.\nUSERDEFINED: User-defined port connection type. \nNOTDEFINED: Undefined port connection type." ; + IFC4-PSD:definitionAlias "物理ポート接続:\n\n- Coaxial: 同軸コネクタ.\n- DSub: D-Subコネクタ.\n- Infrared:赤外線\n- RJ: 登録済みジャック.\n- Radio: 無線\n- USB: USB."@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f842a89d8ec5470cb8ba7fec7338c6e3" ; + IFC4-PSD:name "ConnectionType" ; + IFC4-PSD:nameAlias "Connection Type"@en , "接続タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SOLDERED" , "NONE" , "OTHER" , "SWEDGE" , "COMPRESSION" , "WELDED" , "UNSET" , "GROOVED" , "BRAZED" , "FLANGED" , "OUTSIDESLEEVE" , "THREADED" + ] . + +:p7faf6c2ffbd64304b38859166e006c4a + a IFC4-PSD:PropertyDef ; + rdfs:comment "The velocity of the fluid." ; + rdfs:label "Velocity" ; + IFC4-PSD:definition "The velocity of the fluid." ; + IFC4-PSD:definitionAlias "流体の速度。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7faf6c2ffbd64304b38859166e006c4a" ; + IFC4-PSD:name "Velocity" ; + IFC4-PSD:nameAlias "Velocity"@en , "速度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:ConnectionSubType a rdf:Property ; + rdfs:seeAlso :pdf1d39774bb44a8d96c833058af039e0 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSubType . + +:Pset_DistributionPortTypePipe + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe port occurrence attributes attached to an instance of IfcDistributionPort." ; + rdfs:label "Pset_DistributionPortTypePipe" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionPort/PIPE" ; + IFC4-PSD:definition "Pipe port occurrence attributes attached to an instance of IfcDistributionPort." ; + IFC4-PSD:definitionAlias ""@en , "IfcDistributionPortオブジェクトに設定される配管ポートに関する属性情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionPortTypePipe" ; + IFC4-PSD:propertyDef :p7faf6c2ffbd64304b38859166e006c4a , :pf842a89d8ec5470cb8ba7fec7338c6e3 , :pb6cb7483a65d4bd5ac6551b080116323 , :pa09f286511e94d0f939193c2e0155921 , :pcc4abc86f21d4ee3a86d3815019c5ab3 , :pfcd3dc22fdfd4ea084f200be83155aa3 , :pdf1d39774bb44a8d96c833058af039e0 , :pac9d798031fc44e1828a2cc76ae5d86c , :pa3db7690009f42a988a9f5683b29eb8f , :p4d18569df1264f3baceb2da495f1dfda , :pb4252ef25858465d840e3539db7eed5e . + +:VolumetricFlowRate a rdf:Property ; + rdfs:seeAlso :pb4252ef25858465d840e3539db7eed5e ; + rdfs:subPropertyOf IFC4-PSD:VolumetricFlowRate . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:OuterDiameter a rdf:Property ; + rdfs:seeAlso :p4d18569df1264f3baceb2da495f1dfda ; + rdfs:subPropertyOf IFC4-PSD:OuterDiameter . + +:p4d18569df1264f3baceb2da495f1dfda + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual outer diameter of the pipe." ; + rdfs:label "OuterDiameter" ; + IFC4-PSD:definition "The actual outer diameter of the pipe." ; + IFC4-PSD:definitionAlias ""@en , "配管の実外径。"@ja-JP ; + IFC4-PSD:ifdguid "4d18569df1264f3baceb2da495f1dfda" ; + IFC4-PSD:name "OuterDiameter" ; + IFC4-PSD:nameAlias "外径"@ja-JP , "Outer Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pa3db7690009f42a988a9f5683b29eb8f + a IFC4-PSD:PropertyDef ; + rdfs:comment "The mass flow rate of the fluid." ; + rdfs:label "MassFlowRate" ; + IFC4-PSD:definition "The mass flow rate of the fluid." ; + IFC4-PSD:definitionAlias ""@en , "流体の質量流量。"@ja-JP ; + IFC4-PSD:ifdguid "a3db7690009f42a988a9f5683b29eb8f" ; + IFC4-PSD:name "MassFlowRate" ; + IFC4-PSD:nameAlias "質量流量"@ja-JP , "Mass Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcMassFlowRateMeasure + ] . + +:InnerDiameter a rdf:Property ; + rdfs:seeAlso :pfcd3dc22fdfd4ea084f200be83155aa3 ; + rdfs:subPropertyOf IFC4-PSD:InnerDiameter . + +:pfcd3dc22fdfd4ea084f200be83155aa3 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual inner diameter of the pipe." ; + rdfs:label "InnerDiameter" ; + IFC4-PSD:definition "The actual inner diameter of the pipe." ; + IFC4-PSD:definitionAlias "配管の実内径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fcd3dc22fdfd4ea084f200be83155aa3" ; + IFC4-PSD:name "InnerDiameter" ; + IFC4-PSD:nameAlias "内径"@ja-JP , "Inner Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalDiameter a rdf:Property ; + rdfs:seeAlso :pac9d798031fc44e1828a2cc76ae5d86c ; + rdfs:subPropertyOf IFC4-PSD:NominalDiameter . + +:Velocity a rdf:Property ; + rdfs:seeAlso :p7faf6c2ffbd64304b38859166e006c4a ; + rdfs:subPropertyOf IFC4-PSD:Velocity . + +:MassFlowRate a rdf:Property ; + rdfs:seeAlso :pa3db7690009f42a988a9f5683b29eb8f ; + rdfs:subPropertyOf IFC4-PSD:MassFlowRate . + +:pb4252ef25858465d840e3539db7eed5e + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric flow rate of the fluid." ; + rdfs:label "VolumetricFlowRate" ; + IFC4-PSD:definition "The volumetric flow rate of the fluid." ; + IFC4-PSD:definitionAlias "流体の体積流量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b4252ef25858465d840e3539db7eed5e" ; + IFC4-PSD:name "VolumetricFlowRate" ; + IFC4-PSD:nameAlias "体積流量"@ja-JP , "Volumetric Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pac9d798031fc44e1828a2cc76ae5d86c + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the pipe connection." ; + rdfs:label "NominalDiameter" ; + IFC4-PSD:definition "The nominal diameter of the pipe connection." ; + IFC4-PSD:definitionAlias "配管の呼び径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ac9d798031fc44e1828a2cc76ae5d86c" ; + IFC4-PSD:name "NominalDiameter" ; + IFC4-PSD:nameAlias "呼び径"@ja-JP , "Nominal Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ConnectionType a rdf:Property ; + rdfs:seeAlso :pf842a89d8ec5470cb8ba7fec7338c6e3 ; + rdfs:subPropertyOf IFC4-PSD:ConnectionType . + +:Pressure a rdf:Property ; + rdfs:seeAlso :pcc4abc86f21d4ee3a86d3815019c5ab3 ; + rdfs:subPropertyOf IFC4-PSD:Pressure . + +:Temperature a rdf:Property ; + rdfs:seeAlso :pb6cb7483a65d4bd5ac6551b080116323 ; + rdfs:subPropertyOf IFC4-PSD:Temperature . diff --git a/converter/src/main/resources/pset/Pset_DistributionSystemCommon.ttl b/converter/src/main/resources/pset/Pset_DistributionSystemCommon.ttl new file mode 100644 index 00000000..7001b4c1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionSystemCommon.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p742ce300d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_DistributionSystemCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Distribution system occurrence attributes attached to an instance of IfcDistributionSystem." ; + rdfs:label "Pset_DistributionSystemCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDistributionSystem ; + IFC4-PSD:applicableTypeValue "IfcDistributionSystem" ; + IFC4-PSD:definition "Distribution system occurrence attributes attached to an instance of IfcDistributionSystem." ; + IFC4-PSD:definitionAlias ""@en , "搬送システムIfcDistributionSystemの関連属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionSystemCommon" ; + IFC4-PSD:propertyDef :p742ce300d1da11e1800000215ad4efdf . + +:p742ce300d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specific instance of a distribution system, or sub-system (e.g. 'WWS/VS1', which indicates the system to be WWS, subsystems VSI/400). The reference values depend on the local code of practice." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specific instance of a distribution system, or sub-system (e.g. 'WWS/VS1', which indicates the system to be WWS, subsystems VSI/400). The reference values depend on the local code of practice." ; + IFC4-PSD:definitionAlias ""@en , "空調システム、或いはサブシステムの参照ID(例えば、'WWS/VS1'はWWS系統のVSI/400サブ系統)。IDは当該地域技術基準より決められる。"@ja-JP , "공조 시스템 혹은 서브 시스템의 참조 ID (예 : 'WWS/VS1'는 WWS 계통의 VSI/400 하위 계통). ID는 해당 지역 기술 기준보다 결정된다."@ko-KR ; + IFC4-PSD:ifdguid "742ce300d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조기호"@ko-KR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_DistributionSystemTypeElectrical.ttl b/converter/src/main/resources/pset/Pset_DistributionSystemTypeElectrical.ttl new file mode 100644 index 00000000..28b17006 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionSystemTypeElectrical.ttl @@ -0,0 +1,131 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9f173700d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio, expressed as a numerical\nvalue or as a percentage, of the\nsimultaneous maximum demand of\na group of electrical appliances or\nconsumers within a specified period,\nto the sum of their individual maximum\ndemands within the same\nperiod. The group of electrical appliances is in this case connected to this circuit. Defenition from IEC 60050, IEV 691-10-04 \nNOTE1: It is often not desirable to size each conductor in a distribution system to support the total connected load at that point in the network. Diversity is applied on the basis of the anticipated loadings that are likely to result from all loads not being connected at the same time.\nNOTE2: Diversity is applied to final circuits only, not to sub-main circuits supplying other DBs." ; + rdfs:label "Diversity" ; + IFC4-PSD:definition "The ratio, expressed as a numerical\nvalue or as a percentage, of the\nsimultaneous maximum demand of\na group of electrical appliances or\nconsumers within a specified period,\nto the sum of their individual maximum\ndemands within the same\nperiod. The group of electrical appliances is in this case connected to this circuit. Defenition from IEC 60050, IEV 691-10-04 \nNOTE1: It is often not desirable to size each conductor in a distribution system to support the total connected load at that point in the network. Diversity is applied on the basis of the anticipated loadings that are likely to result from all loads not being connected at the same time.\nNOTE2: Diversity is applied to final circuits only, not to sub-main circuits supplying other DBs." ; + IFC4-PSD:definitionAlias "ある期間中同じ回路にある複数電気設備の同時最大負荷と各設備の合計負荷の比率。"@ja-JP , "일정 기간 동안 동일 회로에 여러 전기 설비의 동시 최대 부하와 각 설비의 총 부하의 비율."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "9f173700d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "Diversity" ; + IFC4-PSD:nameAlias "負荷率"@ja-JP , "Diversity"@en , "부하율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa9393580d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum voltage drop across the circuit that must not be exceeded. \nThere are two voltage drop limit settings that may be applied; one for sub-main circuits, and one in each Distribution Board or Consumer Unit for final circuits connected to that board. The settings should limit the overall voltage drop to the required level. Default settings of 1.5% for sub-main circuits and 2.5% for final circuits, giving an overall limit of 4% may be applied.\nNOTE: This value may also be specified as a constraint within an IFC model if required but is included within the property set at this stage pending implementation of the required capabilities within software applications." ; + rdfs:label "MaximumAllowedVoltageDrop" ; + IFC4-PSD:definition "The maximum voltage drop across the circuit that must not be exceeded. \nThere are two voltage drop limit settings that may be applied; one for sub-main circuits, and one in each Distribution Board or Consumer Unit for final circuits connected to that board. The settings should limit the overall voltage drop to the required level. Default settings of 1.5% for sub-main circuits and 2.5% for final circuits, giving an overall limit of 4% may be applied.\nNOTE: This value may also be specified as a constraint within an IFC model if required but is included within the property set at this stage pending implementation of the required capabilities within software applications." ; + IFC4-PSD:definitionAlias "電気回路での電圧降下は最大電圧降下を超えないように。二種類の電圧降下限度があり、一つは分岐-主回路、もう一つは各分電盤或いは末端回路の電気需要装置と接続電気盤である。総電圧下降を使用範囲以内に制限する。デフォルト値は分岐-主回路1.5%、末端回路2.5%、合計総電圧4%である。\n注:この値はIFCモデルでの制約値と指定されているが、現段階ではプロプティセットに設定する。将来的には必要な性能として各ソフトアプリケションに利用する。"@ja-JP , "전기 회로에서 전압 강하는 최대 전압 강하를 초과하지 않도록. 두 종류의 전압 강하 한도가 있는데 하나는 분기 - 주회로, 다른 하나는 각 분전반 혹은 말단 회로의 전기 수요 장치와 연결 전기 판이다. 총 전압 하강을 사용 범위 이내로 제한한다. 기본값은 분기 - 주회로 1.5 %, 말단 회로 2.5 %, 합계 총 전압 4 %이다. 참고 :이 값은 IFC 모델에 따라 제한 값이 지정되어 있지만, 현 단계에서는 프로 쁘띠 세트로 설정한다. 미래에 필요한 성능으로 각 소프트웨어 어플 리케이션에 이용한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a9393580d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumAllowedVoltageDrop" ; + IFC4-PSD:nameAlias "最大許容電圧降下"@ja-JP , "최대허용전압강하"@ko-KR , "Maximum Allowed Voltage Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:MaximumAllowedVoltageDrop + a rdf:Property ; + rdfs:seeAlso :pa9393580d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumAllowedVoltageDrop . + +:ElectricalSystemType + a rdf:Property ; + rdfs:seeAlso :p8018a500d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricalSystemType . + +:padfde980d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum earth loop impedance upstream of a circuit (typically stated as the variable Zs). This value is for 55o C (130oF) Celsius usage." ; + rdfs:label "NetImpedance" ; + IFC4-PSD:definition "The maximum earth loop impedance upstream of a circuit (typically stated as the variable Zs). This value is for 55o C (130oF) Celsius usage." ; + IFC4-PSD:definitionAlias "電気回路での最大接地インピーダンス(一般はZsで表示)。55℃ (130°F)での数値。"@ja-JP , "전기 회로에서 최대 접지 임피던스 (일반은 Zs로 표시). 55 ℃ (130 ° F)의 숫자."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "adfde980d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "NetImpedance" ; + IFC4-PSD:nameAlias "ネットインピーダンス"@ja-JP , "인터넷 임피던스"@ko-KR , "Net Impedance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricResistanceMeasure + ] . + +:ElectricalSystemCategory + a rdf:Property ; + rdfs:seeAlso :p90c91b00d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricalSystemCategory . + +:NetImpedance a rdf:Property ; + rdfs:seeAlso :padfde980d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NetImpedance . + +:NumberOfLiveConductors + a rdf:Property ; + rdfs:seeAlso :p048b430047674386b8ba5b688c837bda ; + rdfs:subPropertyOf IFC4-PSD:NumberOfLiveConductors . + +:p048b430047674386b8ba5b688c837bda + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of live conductors within this circuit. Either this property or the ConductorFunction property (if only one) may be asserted." ; + rdfs:label "NumberOfLiveConductors" ; + IFC4-PSD:definition "Number of live conductors within this circuit. Either this property or the ConductorFunction property (if only one) may be asserted." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "048b430047674386b8ba5b688c837bda" ; + IFC4-PSD:name "NumberOfLiveConductors" ; + IFC4-PSD:nameAlias "Number Of Live Conductors"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p8018a500d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "For certain purposes of electrical regulations, IEC 60364 defines types of system using type identifiers. Assignment of identifiers depends upon the relationship of the source, and of exposed conductive parts of the installation, to Ground (Earth). Identifiers that may be assigned through IEC 60364 are: \n\n•TN type system, a system having one or more points of the source of energy directly earthed, the exposed conductive parts of the installation being connected to that point by protective conductors, \n•TN C type system, a TN type system in which neutral and protective functions are combined in a single conductor throughout the system, \n•TN S type system, a TN type system having separate neutral and protective conductors throughout the system, \n•TN C S type system, a TN type system in which neutral and protective functions are combined in a single conductor in part of the system, \n•TT type system, a system having one point of the source of energy directly earthed, the exposed conductive parts of the installation being connected to earth electrodes electrically independent of the earth electrodes of the source, \n•IT type system, a system having no direct connection between live parts and Earth, the exposed conductive parts of the electrical installation being earthed." ; + rdfs:label "ElectricalSystemType" ; + IFC4-PSD:definition "For certain purposes of electrical regulations, IEC 60364 defines types of system using type identifiers. Assignment of identifiers depends upon the relationship of the source, and of exposed conductive parts of the installation, to Ground (Earth). Identifiers that may be assigned through IEC 60364 are: \n\n•TN type system, a system having one or more points of the source of energy directly earthed, the exposed conductive parts of the installation being connected to that point by protective conductors, \n•TN C type system, a TN type system in which neutral and protective functions are combined in a single conductor throughout the system, \n•TN S type system, a TN type system having separate neutral and protective conductors throughout the system, \n•TN C S type system, a TN type system in which neutral and protective functions are combined in a single conductor in part of the system, \n•TT type system, a system having one point of the source of energy directly earthed, the exposed conductive parts of the installation being connected to earth electrodes electrically independent of the earth electrodes of the source, \n•IT type system, a system having no direct connection between live parts and Earth, the exposed conductive parts of the electrical installation being earthed." ; + IFC4-PSD:definitionAlias "IEC60364 전기 기준으로 정의한 전기 접지 방식. 전기 설비의 종류, 접지 전극 시설의 도전성 부분 유형에 결정된다. 구체적인에는 IEC60364에 다음과 같은 방법이있다. · TN 시스템 : 전기 설비는한데 또는 다점 접지 점을 가지고 직접 접지되는 시스템. 시설과 접지극의 도전성 부분을 보호하는 것. · TN C 시스템 : 계통의 모든 걸쳐 중성선과 보호 도체가 하나의 도체 TN 시스템. · TN S 시스템 : 계통의 모든 걸쳐 독립 중성선과 보호 도체가있는 TN 시스템. · TN C S 시스템 : 계통의 일부가, 중성선과 보호 도체가 하나의 도체 TN 시스템. · TT 시스템 : 한 점을 대지에 직접 연결하여 전력 계통의 접지와는 상관없이 설비의 노출 도전성 부분을 대지에 직접 접지한다. · IT 시스템 : 전력 시스템을 대지 (접지)로부터 절연하는 설비의 노출 도전성 부분을 대지에 직접 접지한다."@ko-KR , ""@en , "IEC60364電気基準に定義した電気接地の方式。電気設備の種類、接地電極と設備の導電性部分の種類で決められる。具体的なには、IEC60364に下記のような方法がある:\n\n\n- TNシステム:電気設備は一点或いは多点の接地点を持ち、直接接地されるシステム。設備と接地極の導電性部分は保護されていること。\n- TN Cシステム:系統の全てにわたって、中性線と保護導体が一つの導体のTNシステム。\n- TN Sシステム:系統の全てにわたって、独立の中性線と保護導体を有するTNシステム。\n- TN C Sシステム:系統の一部では、中性線と保護導体が一つの導体のTNシステム。\n- TTシステム:一点を大地に直接接続し、電力系統の接地とは無関係に、設備の露出導電性部分を大地に直接接地すること。\n- ITシステム:電力システムを大地(接地)から絶縁する、設備の露出導電性部分を大地に直接接地すること。"@ja-JP ; + IFC4-PSD:ifdguid "8018a500d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricalSystemType" ; + IFC4-PSD:nameAlias "Electrical System Type"@en , "전기 시스템 방식"@ko-KR , "電気システム方式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "TT" , "NOTKNOWN" , "TN_C" , "TN_S" , "TN_C_S" , "IT" , "UNSET" , "OTHER" , "TN" + ] . + +:Pset_DistributionSystemTypeElectrical + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties of electrical circuits." ; + rdfs:label "Pset_DistributionSystemTypeElectrical" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionSystem/ELECTRICAL" ; + IFC4-PSD:definition "Properties of electrical circuits." ; + IFC4-PSD:definitionAlias ""@en , "電気回路の関連属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionSystemTypeElectrical" ; + IFC4-PSD:propertyDef :pa9393580d1da11e1800000215ad4efdf , :p9f173700d1da11e1800000215ad4efdf , :p90c91b00d1da11e1800000215ad4efdf , :p8018a500d1da11e1800000215ad4efdf , :padfde980d1da11e1800000215ad4efdf , :p048b430047674386b8ba5b688c837bda . + +:p90c91b00d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designates the voltage range of the circuit, according to IEC. HIGHVOLTAGE indicates >1000V AC or >1500V DV; LOWVOLTAGE indicates 50-1000V AC or 120-1500V DC; EXTRALOWVOLTAGE indicates <50V AC or <120V DC." ; + rdfs:label "ElectricalSystemCategory" ; + IFC4-PSD:definition "Designates the voltage range of the circuit, according to IEC. HIGHVOLTAGE indicates >1000V AC or >1500V DV; LOWVOLTAGE indicates 50-1000V AC or 120-1500V DC; EXTRALOWVOLTAGE indicates <50V AC or <120V DC." ; + IFC4-PSD:definitionAlias ""@en , "IECに準拠した回路の電圧レンジを示す。次の列挙型の値を取る。(HIGHVOLTAGE indicates >1000V AC or >1500V DV; LOWVOLTAGE indicates 50-1000V AC or 120-1500V DC; EXTRALOWVOLTAGE indicates <50V AC or <120V DC.)"@ja-JP , "IEC에 따른 회로의 전압 범위를 나타낸다. 다음 열거 형의 값을 받는다. (HIGHVOLTAGE indicates> 1000V AC or> 1500V DV; LOWVOLTAGE indicates 50-1000V AC or 120-1500V DC; EXTRALOWVOLTAGE indicates <50V AC or <120V DC)"@ko-KR ; + IFC4-PSD:ifdguid "90c91b00d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricalSystemCategory" ; + IFC4-PSD:nameAlias "전기 시스템 카테고리"@ko-KR , "電気システムのカテゴリー"@ja-JP , "Electrical System Category"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HIGHVOLTAGE" , "LOWVOLTAGE" , "EXTRALOWVOLTAGE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Diversity a rdf:Property ; + rdfs:seeAlso :p9f173700d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Diversity . diff --git a/converter/src/main/resources/pset/Pset_DistributionSystemTypeVentilation.ttl b/converter/src/main/resources/pset/Pset_DistributionSystemTypeVentilation.ttl new file mode 100644 index 00000000..387f2049 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DistributionSystemTypeVentilation.ttl @@ -0,0 +1,212 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p02a16480d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum duct width for oval or rectangular duct." ; + rdfs:label "MinimumWidth" ; + IFC4-PSD:definition "The minimum duct width for oval or rectangular duct." ; + IFC4-PSD:definitionAlias ""@en , "矩形、円形或いは楕円形ダクトの最小幅。"@ja-JP , "사각형, 원형 또는 타원형 덕트의 최소 폭."@ko-KR ; + IFC4-PSD:ifdguid "02a16480d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumWidth" ; + IFC4-PSD:nameAlias "최소폭"@ko-KR , "Minimum Width"@en , "最小幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DistributionSystemTypeVentilation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This property set is used to define the general characteristics of the duct design parameters within a system.\nHISTORY: New property set in IFC Release 2.0. Renamed from Pset_DuctDesignCriteria in IFC4." ; + rdfs:label "Pset_DistributionSystemTypeVentilation" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcDistributionSystem/VENTILATION" ; + IFC4-PSD:definition "This property set is used to define the general characteristics of the duct design parameters within a system.\nHISTORY: New property set in IFC Release 2.0. Renamed from Pset_DuctDesignCriteria in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "ダクトシステムの一般的な特徴、パラメーターの属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DistributionSystemTypeVentilation" ; + IFC4-PSD:propertyDef :pce2da880d1da11e1800000215ad4efdf , :pd38af300d1da11e1800000215ad4efdf , :pe69dc300d1da11e1800000215ad4efdf , :peef5fe00d1da11e1800000215ad4efdf , :pb9511500d1da11e1800000215ad4efdf , :pd84fa700d1da11e1800000215ad4efdf , :pe271a580d1da11e1800000215ad4efdf , :pbfdf8c80d1da11e1800000215ad4efdf , :pddacf180d1da11e1800000215ad4efdf , :p02a16480d1db11e1800000215ad4efdf , :pf87f6600d1da11e1800000215ad4efdf . + +:ScrapFactor a rdf:Property ; + rdfs:seeAlso :pddacf180d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScrapFactor . + +:pf87f6600d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum duct height for rectangular, oval or round duct." ; + rdfs:label "MinimumHeight" ; + IFC4-PSD:definition "The minimum duct height for rectangular, oval or round duct." ; + IFC4-PSD:definitionAlias ""@en , "사각형, 원형 또는 타원형 덕트의 최소 높이입니다."@ko-KR , "矩形、円形或いは楕円形ダクトの最小高さ。"@ja-JP ; + IFC4-PSD:ifdguid "f87f6600d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumHeight" ; + IFC4-PSD:nameAlias "最小高さ"@ja-JP , "최소 높이"@ko-KR , "Minimum Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pbfdf8c80d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the methodology to be used to size system components." ; + rdfs:label "DuctSizingMethod" ; + IFC4-PSD:definition "Enumeration that identifies the methodology to be used to size system components." ; + IFC4-PSD:definitionAlias ""@en , "ダクト寸法を決める計算方法。"@ja-JP , "덕트 치수를 결정하는 계산 방법."@ko-KR ; + IFC4-PSD:ifdguid "bfdf8c80d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "DuctSizingMethod" ; + IFC4-PSD:nameAlias "덕트 치수 결정 방법"@ko-KR , "ダクト寸法の決め方"@ja-JP , "Duct Sizing Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONSTANTFRICTION" , "CONSTANTPRESSURE" , "STATICREGAIN" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pe69dc300d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum design velocity of the air in the duct or fitting." ; + rdfs:label "MaximumVelocity" ; + IFC4-PSD:definition "The maximum design velocity of the air in the duct or fitting." ; + IFC4-PSD:definitionAlias "ダクト或いは継ぎ手の最大設計風速。"@ja-JP , ""@en , "덕트 또는 이음새의 최대 설계 바람."@ko-KR ; + IFC4-PSD:ifdguid "e69dc300d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumVelocity" ; + IFC4-PSD:nameAlias "최대 속도"@ko-KR , "最大速度"@ja-JP , "Maximum Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:pd84fa700d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure loss due to friction per unit length. (Data type = PressureMeasure/LengthMeasure)" ; + rdfs:label "FrictionLoss" ; + IFC4-PSD:definition "The pressure loss due to friction per unit length. (Data type = PressureMeasure/LengthMeasure)" ; + IFC4-PSD:definitionAlias "단위 길이 당 압력 손실 (측정 압력 손실 / 덕트 길이)."@ko-KR , ""@en , "単位長さあたりの圧力損失(計測した圧力損失/ダクト長さ)。"@ja-JP ; + IFC4-PSD:ifdguid "d84fa700d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "FrictionLoss" ; + IFC4-PSD:nameAlias "마찰 소실"@ko-KR , "Friction Loss"@en , "摩擦損失"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:MaximumVelocity a rdf:Property ; + rdfs:seeAlso :pe69dc300d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumVelocity . + +:AspectRatio a rdf:Property ; + rdfs:seeAlso :peef5fe00d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AspectRatio . + +:pb9511500d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A name for the design values." ; + rdfs:label "DesignName" ; + IFC4-PSD:definition "A name for the design values." ; + IFC4-PSD:definitionAlias ""@en , "설계 값의 명칭."@ko-KR , "設計値の名称。"@ja-JP ; + IFC4-PSD:ifdguid "b9511500d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "DesignName" ; + IFC4-PSD:nameAlias "設計値名称"@ja-JP , "Design Name"@en , "설계 값이름"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:MinimumHeight a rdf:Property ; + rdfs:seeAlso :pf87f6600d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumHeight . + +:DuctSealant a rdf:Property ; + rdfs:seeAlso :pe271a580d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DuctSealant . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd38af300d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal leakage rating for the system components." ; + rdfs:label "LeakageClass" ; + IFC4-PSD:definition "Nominal leakage rating for the system components." ; + IFC4-PSD:definitionAlias "덕트 시스템 각 부위의 누출 비율."@ko-KR , ""@en , "ダクトシステム各部位の漏れ率。"@ja-JP ; + IFC4-PSD:ifdguid "d38af300d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "LeakageClass" ; + IFC4-PSD:nameAlias "Leakage Class"@en , "누설비율"@ko-KR , "漏れ率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pe271a580d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of sealant used on the duct and fittings." ; + rdfs:label "DuctSealant" ; + IFC4-PSD:definition "Type of sealant used on the duct and fittings." ; + IFC4-PSD:definitionAlias "덕트와 이음새의 밀폐 형식입니다."@ko-KR , ""@en , "ダクトと継ぎ手の密閉形式。"@ja-JP ; + IFC4-PSD:ifdguid "e271a580d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "DuctSealant" ; + IFC4-PSD:nameAlias "Duct Sealant"@en , "덕트 밀폐"@ko-KR , "ダクトの密閉性"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:LeakageClass a rdf:Property ; + rdfs:seeAlso :pd38af300d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeakageClass . + +:peef5fe00d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The default aspect ratio." ; + rdfs:label "AspectRatio" ; + IFC4-PSD:definition "The default aspect ratio." ; + IFC4-PSD:definitionAlias ""@en , "기본 화면 비율."@ko-KR , "デフォルトアスペクト比。"@ja-JP ; + IFC4-PSD:ifdguid "eef5fe00d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "AspectRatio" ; + IFC4-PSD:nameAlias "화면 비율"@ko-KR , "アスペクト比"@ja-JP , "Aspect Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:FrictionLoss a rdf:Property ; + rdfs:seeAlso :pd84fa700d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrictionLoss . + +:DesignName a rdf:Property ; + rdfs:seeAlso :pb9511500d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DesignName . + +:MinimumWidth a rdf:Property ; + rdfs:seeAlso :p02a16480d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumWidth . + +:DuctSizingMethod a rdf:Property ; + rdfs:seeAlso :pbfdf8c80d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DuctSizingMethod . + +:pddacf180d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sheet metal scrap factor." ; + rdfs:label "ScrapFactor" ; + IFC4-PSD:definition "Sheet metal scrap factor." ; + IFC4-PSD:definitionAlias "금속판의 폐재 비율."@ko-KR , "金属板の廃材率。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ddacf180d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "ScrapFactor" ; + IFC4-PSD:nameAlias "廃材率"@ja-JP , "Scrap Factor"@en , "폐기물 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:PressureClass a rdf:Property ; + rdfs:seeAlso :pce2da880d1da11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureClass . + +:pce2da880d1da11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal pressure rating of the system components. (Data type = PressureMeasure)" ; + rdfs:label "PressureClass" ; + IFC4-PSD:definition "Nominal pressure rating of the system components. (Data type = PressureMeasure)" ; + IFC4-PSD:definitionAlias ""@en , "ダクトシステム各部位の圧力等級(計測した圧力)。"@ja-JP , "덕트 시스템 각 부위의 압력 등급 (측정된 압력)"@ko-KR ; + IFC4-PSD:ifdguid "ce2da880d1da11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureClass" ; + IFC4-PSD:nameAlias "압력 등급"@ko-KR , "圧力等級"@ja-JP , "Pressure Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DoorCommon.ttl b/converter/src/main/resources/pset/Pset_DoorCommon.ttl index 4c5641b5..f22ba61c 100644 --- a/converter/src/main/resources/pset/Pset_DoorCommon.ttl +++ b/converter/src/main/resources/pset/Pset_DoorCommon.ttl @@ -1,323 +1,344 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_DoorCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; -. -:Pset_DoorCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcDoor" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcDoor." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcDoor"@fr-FR ; - IFC4-PSD:definitionAlias "IfcDoor(ドア)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcDoor实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_DoorCommon" ; - IFC4-PSD:propertyDef :_0aadd400d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_23b68500d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2795d780d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_32e90300d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_42b51700d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5d878b80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_76903c80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7ba0bc00d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8f98ed80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_95420380d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_aa6b6200d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b4409580d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_beaf5f00d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cde1dd00d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cec73e80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ec47d880d1db11e1800000215ad4efdf ; -. -:_0aadd400d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "0aadd400d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_23b68500d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; - IFC4-PSD:definitionAlias "Luftaustausch über die Fugen der geschlossenen Tür (Q-Wert). Gibt die Luftdurchlässigkeit der gesamten Tür bei einem Luftdruckniveau von 50 Pascal an."@de-DE ; - IFC4-PSD:definitionAlias "Taux d'infiltration de l'air extérieur lorsqu'on soumet la porte à une pression de 50 pascals. Cette valeur sera utilisée si la longueur des joints n'est pas connue."@fr-FR ; - IFC4-PSD:ifdguid "23b68500d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "Infiltration" ; - IFC4-PSD:nameAlias "Luftdurchlässigkeit"@de-DE ; - IFC4-PSD:nameAlias "TauxInfiltration"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2795d780d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "2795d780d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_32e90300d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "32e90300d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_42b51700d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -It applies to the total door construction.""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Il s'applique à l'ensemble de la porte."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Tür."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -适用于门的整体结构。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。"@ja-JP ; - IFC4-PSD:ifdguid "42b51700d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_5d878b80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fraction of the glazing area relative to the total area of the filling element. -It shall be used, if the glazing area is not given separately for all panels within the filling element.""" ; - IFC4-PSD:definitionAlias "Anteil der verglasten Fläche an der Gesamtfläche der Tür."@de-DE ; - IFC4-PSD:definitionAlias "Part de surface de vitrage par rapport à la surface totale de l'élément de remplissage. Doit être utilisée si la surface de vitrage n'est pas donnée séparément pour tous les panneaux occupant l'ouverture."@fr-FR ; - IFC4-PSD:ifdguid "5d878b80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "GlazingAreaFraction" ; - IFC4-PSD:nameAlias "FractionSurfaceVitree"@fr-FR ; - IFC4-PSD:nameAlias "Glasflächenanteil"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_76903c80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication that this object is designed to be accessible by the handicapped. -It is giving according to the requirements of the national building code.""" ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür behindertengerecht gemäß der nationalen oder regionalen Verordnung ist (JA), oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR ; - IFC4-PSD:ifdguid "76903c80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "HandicapAccessible" ; - IFC4-PSD:nameAlias "AccessibleHandicapes"@fr-FR ; - IFC4-PSD:nameAlias "Behindertengerecht"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_7ba0bc00d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety code or regulation." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandsklasse für den Brandschutz gemäß der nationalen oder regionalen Richtlinie die für den Brandschutz der Brandschutztür gewährleistet werden muss."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "7ba0bc00d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_8f98ed80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). -Here it defines an exit door in accordance to the national building code.""" ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür ein Notausgang gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN).."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR ; - IFC4-PSD:definitionAlias "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP ; - IFC4-PSD:definitionAlias """表示该构件是否设计为火灾时的紧急出口。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:ifdguid "8f98ed80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Notausgang"@de-DE ; - IFC4-PSD:nameAlias "Sortie Secours"@fr-FR ; - IFC4-PSD:nameAlias "是否为紧急出口"@zh-CN ; - IFC4-PSD:nameAlias "非常口区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_95420380d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Schalldämmung der Tür gewährleistet sein muss."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "95420380d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_aa6b6200d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen automatischen Antrieb zum Öffnen und Schließen besitzt (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:ifdguid "aa6b6200d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "HasDrive" ; - IFC4-PSD:nameAlias "Antrieb"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_b4409580d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Index based rating system indicating security level. -It is giving according to the national building code.""" ; - IFC4-PSD:definitionAlias "Système de classification par indices, indiquant le niveau de sécurité."@fr-FR ; - IFC4-PSD:definitionAlias "Widerstandsklasse für den Einbruchschutz gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Einbruchhemmung der Tür gewährleistet sein muss."@de-DE ; - IFC4-PSD:definitionAlias """表示安全程度的参考性等级。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:definitionAlias "防犯等級情報。関連する基準を参照。"@ja-JP ; - IFC4-PSD:ifdguid "b4409580d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "SecurityRating" ; - IFC4-PSD:nameAlias "NiveauSecurite"@fr-FR ; - IFC4-PSD:nameAlias "Widerstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "安全等级"@zh-CN ; - IFC4-PSD:nameAlias "防犯等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_beaf5f00d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is designed to close automatically after use (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür sicher und selbständig nach der Benutzung durch einen Türschließer schließt (Ja) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour une fermeture automatique après usage (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "このドアが自動的に閉まる機能を有するかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为自动关闭。"@zh-CN ; - IFC4-PSD:ifdguid "beaf5f00d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "SelfClosing" ; - IFC4-PSD:nameAlias "FermetureAutomatique"@fr-FR ; - IFC4-PSD:nameAlias "Selbstschliessend"@de-DE ; - IFC4-PSD:nameAlias "是否自动关闭"@zh-CN ; - IFC4-PSD:nameAlias "自動ドア閉機能区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_cde1dd00d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Durability against mechanical stress. It is given according to the national code or regulation." ; - IFC4-PSD:definitionAlias "Durabilité au stress mécanique, selon une classification ou règlementation nationale."@fr-FR ; - IFC4-PSD:definitionAlias "Mechanische Widerstandsfähigkeit gegen immer wiederkehrende Bewegungen und Einflüsse gemäß der nationalen oder regionalen Richtlinie."@de-DE ; - IFC4-PSD:ifdguid "cde1dd00d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "DurabilityRating" ; - IFC4-PSD:nameAlias "Beanspruchungsklasse"@de-DE ; - IFC4-PSD:nameAlias "Durabilité"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_cec73e80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür einen Rauchschutz gemäß der nationalen oder regionalen Brandschutzverordnung gewährleistet (JA) oder nicht (NEIN). Rauchschutztüren müssen selbstschließend sein."@de-DE ; - IFC4-PSD:definitionAlias "Indique si la porte est conçue pour une fonction coupe-fumée (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "このドアが煙を止める機能を有するかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为防烟。"@zh-CN ; - IFC4-PSD:ifdguid "cec73e80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "SmokeStop" ; - IFC4-PSD:nameAlias "CoupeFumee"@fr-FR ; - IFC4-PSD:nameAlias "Rauchschutz"@de-DE ; - IFC4-PSD:nameAlias "是否防烟"@zh-CN ; - IFC4-PSD:nameAlias "煙止め機能区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ec47d880d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Resistence against hygrothermal impact from different temperatures and humidities inside and outside. It is given according to the national code or regulation." ; - IFC4-PSD:definitionAlias "Hygrothermische Widerstandsfähigkeit gegen Temperatur- und Feuchteunterschiede gemäß der nationalen oder regionalen Richtlinie als Mindestanforderung gegen die Verformung der Tür."@de-DE ; - IFC4-PSD:definitionAlias "Résistance à l'impact hygrothermique des différences de température et d'humidité entre l'intérieur et l'extérieur, selon une classification ou règlementation nationale."@fr-FR ; - IFC4-PSD:ifdguid "ec47d880d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "HygrothermalRating" ; - IFC4-PSD:nameAlias "Klimaklasse"@de-DE ; - IFC4-PSD:nameAlias "Résistance hygrothermique"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p8f98ed80d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit door in accordance to the national building code." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit door in accordance to the national building code." ; + IFC4-PSD:definitionAlias "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP , "Angabe, ob die Tür ein Notausgang gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN).."@de-DE , "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR , ""@en , "表示该构件是否设计为火灾时的紧急出口。\n该属性的依据为国家建筑规范。"@zh-CN ; + IFC4-PSD:ifdguid "8f98ed80d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "Fire Exit"@en , "Notausgang"@de-DE , "非常口区分"@ja-JP , "是否为紧急出口"@zh-CN , "Sortie Secours"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Infiltration a rdf:Property ; + rdfs:seeAlso :p23b68500d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Infiltration . + +:WaterTightnessRating + a rdf:Property ; + rdfs:seeAlso :p5030f04224d94c74aba753294170b227 ; + rdfs:subPropertyOf IFC4-PSD:WaterTightnessRating . + +:p2795d780d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "2795d780d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Bauteiltyp"@de-DE , "参考号"@zh-CN , "Reference"@en , "Reference"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pda9b78dfa88b4538887d4c597a1059dd + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical load rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "MechanicalLoadRating" ; + IFC4-PSD:definition "Mechanical load rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "da9b78dfa88b4538887d4c597a1059dd" ; + IFC4-PSD:name "MechanicalLoadRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:SmokeStop a rdf:Property ; + rdfs:seeAlso :pcec73e80d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SmokeStop . + +:p5030f04224d94c74aba753294170b227 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water tightness rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "WaterTightnessRating" ; + IFC4-PSD:definition "Water tightness rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "5030f04224d94c74aba753294170b227" ; + IFC4-PSD:name "WaterTightnessRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:DurabilityRating a rdf:Property ; + rdfs:seeAlso :pcde1dd00d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DurabilityRating . + +:pcde1dd00d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Durability against mechanical stress. It is given according to the national code or regulation." ; + rdfs:label "DurabilityRating" ; + IFC4-PSD:definition "Durability against mechanical stress. It is given according to the national code or regulation." ; + IFC4-PSD:definitionAlias ""@en , "Mechanische Widerstandsfähigkeit gegen immer wiederkehrende Bewegungen und Einflüsse gemäß der nationalen oder regionalen Richtlinie."@de-DE , "Durabilité au stress mécanique, selon une classification ou règlementation nationale."@fr-FR ; + IFC4-PSD:ifdguid "cde1dd00d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "DurabilityRating" ; + IFC4-PSD:nameAlias "Beanspruchungsklasse"@de-DE , "Durabilité"@fr-FR , "Durability Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pbeaf5f00d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to close automatically after use (TRUE) or not (FALSE)." ; + rdfs:label "SelfClosing" ; + IFC4-PSD:definition "Indication whether this object is designed to close automatically after use (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour une fermeture automatique après usage (VRAI) ou non (FAUX)"@fr-FR , "Angabe, ob die Tür sicher und selbständig nach der Benutzung durch einen Türschließer schließt (Ja) oder nicht (NEIN)."@de-DE , "表示该构件是否设计为自动关闭。"@zh-CN , "このドアが自動的に閉まる機能を有するかどうかのブーリアン値。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "beaf5f00d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "SelfClosing" ; + IFC4-PSD:nameAlias "Selbstschliessend"@de-DE , "Self Closing"@en , "是否自动关闭"@zh-CN , "自動ドア閉機能区分"@ja-JP , "FermetureAutomatique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p42b51700d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Il s'applique à l'ensemble de la porte."@fr-FR , ""@en , "材料的导热系数(U值)。\n适用于门的整体结构。"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Tür."@de-DE , "熱貫流率U値。"@ja-JP ; + IFC4-PSD:ifdguid "42b51700d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "熱貫流率"@ja-JP , "U-Wert"@de-DE , "TransmissionThermique"@fr-FR , "导热系数"@zh-CN , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :p95420380d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:FireExit a rdf:Property ; + rdfs:seeAlso :p8f98ed80d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:MechanicalLoadRating + a rdf:Property ; + rdfs:seeAlso :pda9b78dfa88b4538887d4c597a1059dd ; + rdfs:subPropertyOf IFC4-PSD:MechanicalLoadRating . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p42b51700d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p23b68500d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; + rdfs:label "Infiltration" ; + IFC4-PSD:definition "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; + IFC4-PSD:definitionAlias "Taux d'infiltration de l'air extérieur lorsqu'on soumet la porte à une pression de 50 pascals. Cette valeur sera utilisée si la longueur des joints n'est pas connue."@fr-FR , ""@en , "Luftaustausch über die Fugen der geschlossenen Tür (Q-Wert). Gibt die Luftdurchlässigkeit der gesamten Tür bei einem Luftdruckniveau von 50 Pascal an."@de-DE ; + IFC4-PSD:ifdguid "23b68500d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "Infiltration" ; + IFC4-PSD:nameAlias "TauxInfiltration"@fr-FR , "Luftdurchlässigkeit"@de-DE , "Infiltration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p32e90300d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; + IFC4-PSD:ifdguid "32e90300d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "Status"@en , "Status"@de-DE , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p9be0892ff9324135bdafcd98782a64ff + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wind load resistance rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "WindLoadRating" ; + IFC4-PSD:definition "Wind load resistance rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "9be0892ff9324135bdafcd98782a64ff" ; + IFC4-PSD:name "WindLoadRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:HandicapAccessible a rdf:Property ; + rdfs:seeAlso :p76903c80d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HandicapAccessible . + +:p5d878b80d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the glazing area relative to the total area of the filling element. \nIt shall be used, if the glazing area is not given separately for all panels within the filling element." ; + rdfs:label "GlazingAreaFraction" ; + IFC4-PSD:definition "Fraction of the glazing area relative to the total area of the filling element. \nIt shall be used, if the glazing area is not given separately for all panels within the filling element." ; + IFC4-PSD:definitionAlias ""@en , "Part de surface de vitrage par rapport à la surface totale de l'élément de remplissage. Doit être utilisée si la surface de vitrage n'est pas donnée séparément pour tous les panneaux occupant l'ouverture."@fr-FR , "Anteil der verglasten Fläche an der Gesamtfläche der Tür."@de-DE ; + IFC4-PSD:ifdguid "5d878b80d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "GlazingAreaFraction" ; + IFC4-PSD:nameAlias "Glasflächenanteil"@de-DE , "FractionSurfaceVitree"@fr-FR , "Glazing Area Fraction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_DoorCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcDoor." ; + rdfs:label "Pset_DoorCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDoor ; + IFC4-PSD:applicableTypeValue "IfcDoor" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcDoor." ; + IFC4-PSD:definitionAlias "所有IfcDoor实例的定义中通用的属性。"@zh-CN , ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcDoor"@fr-FR , "IfcDoor(ドア)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DoorCommon" ; + IFC4-PSD:propertyDef :p42b51700d1dc11e1800000215ad4efdf , :p9be0892ff9324135bdafcd98782a64ff , :p2795d780d1db11e1800000215ad4efdf , :p7ba0bc00d1db11e1800000215ad4efdf , :p23b68500d1dc11e1800000215ad4efdf , :p76903c80d1dc11e1800000215ad4efdf , :p5030f04224d94c74aba753294170b227 , :pbeaf5f00d1dc11e1800000215ad4efdf , :p32e90300d1db11e1800000215ad4efdf , :p95420380d1db11e1800000215ad4efdf , :p5d878b80d1dc11e1800000215ad4efdf , :pcde1dd00d1db11e1800000215ad4efdf , :p0aadd400d1dc11e1800000215ad4efdf , :pcec73e80d1dc11e1800000215ad4efdf , :paa6b6200d1dc11e1800000215ad4efdf , :pda9b78dfa88b4538887d4c597a1059dd , :pec47d880d1db11e1800000215ad4efdf , :pb4409580d1db11e1800000215ad4efdf , :p8f98ed80d1dc11e1800000215ad4efdf . + +:WindLoadRating a rdf:Property ; + rdfs:seeAlso :p9be0892ff9324135bdafcd98782a64ff ; + rdfs:subPropertyOf IFC4-PSD:WindLoadRating . + +:paa6b6200d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; + rdfs:label "HasDrive" ; + IFC4-PSD:definition "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; + IFC4-PSD:definitionAlias ""@en , "Angabe, ob dieses Bauteil einen automatischen Antrieb zum Öffnen und Schließen besitzt (JA) oder nicht (NEIN)."@de-DE ; + IFC4-PSD:ifdguid "aa6b6200d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "HasDrive" ; + IFC4-PSD:nameAlias "Has Drive"@en , "Antrieb"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p95420380d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP , ""@en , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , "Schallschutzklasse gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Schalldämmung der Tür gewährleistet sein muss."@de-DE , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; + IFC4-PSD:ifdguid "95420380d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "遮音等級"@ja-JP , "IsolationAcoustique"@fr-FR , "Acoustic Rating"@en , "隔音等级"@zh-CN , "Schallschutzklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p32e90300d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p0aadd400d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN , ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "0aadd400d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "EstExterieur"@fr-FR , "外部区分"@ja-JP , "Außenbauteil"@de-DE , "是否外部构件"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pb4409580d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Index based rating system indicating security level.\nIt is giving according to the national building code." ; + rdfs:label "SecurityRating" ; + IFC4-PSD:definition "Index based rating system indicating security level.\nIt is giving according to the national building code." ; + IFC4-PSD:definitionAlias "Système de classification par indices, indiquant le niveau de sécurité."@fr-FR , ""@en , "表示安全程度的参考性等级。\n该属性的依据为国家建筑规范。"@zh-CN , "防犯等級情報。関連する基準を参照。"@ja-JP , "Widerstandsklasse für den Einbruchschutz gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Einbruchhemmung der Tür gewährleistet sein muss."@de-DE ; + IFC4-PSD:ifdguid "b4409580d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "SecurityRating" ; + IFC4-PSD:nameAlias "Security Rating"@en , "防犯等級"@ja-JP , "Widerstandsklasse"@de-DE , "安全等级"@zh-CN , "NiveauSecurite"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p0aadd400d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:pcec73e80d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; + rdfs:label "SmokeStop" ; + IFC4-PSD:definition "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "このドアが煙を止める機能を有するかどうかのブーリアン値。"@ja-JP , "Angabe, ob die Tür einen Rauchschutz gemäß der nationalen oder regionalen Brandschutzverordnung gewährleistet (JA) oder nicht (NEIN). Rauchschutztüren müssen selbstschließend sein."@de-DE , "表示该构件是否设计为防烟。"@zh-CN , ""@en , "Indique si la porte est conçue pour une fonction coupe-fumée (VRAI) ou non (FAUX)"@fr-FR ; + IFC4-PSD:ifdguid "cec73e80d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "SmokeStop" ; + IFC4-PSD:nameAlias "Rauchschutz"@de-DE , "煙止め機能区分"@ja-JP , "CoupeFumee"@fr-FR , "Smoke Stop"@en , "是否防烟"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p7ba0bc00d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:SecurityRating a rdf:Property ; + rdfs:seeAlso :pb4409580d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecurityRating . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p76903c80d1dc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication that this object is designed to be accessible by the handicapped. \nIt is giving according to the requirements of the national building code." ; + rdfs:label "HandicapAccessible" ; + IFC4-PSD:definition "Indication that this object is designed to be accessible by the handicapped. \nIt is giving according to the requirements of the national building code." ; + IFC4-PSD:definitionAlias "Angabe, ob die Tür behindertengerecht gemäß der nationalen oder regionalen Verordnung ist (JA), oder nicht (NEIN)."@de-DE , ""@en , "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR ; + IFC4-PSD:ifdguid "76903c80d1dc11e1800000215ad4efdf" ; + IFC4-PSD:name "HandicapAccessible" ; + IFC4-PSD:nameAlias "Handicap Accessible"@en , "AccessibleHandicapes"@fr-FR , "Behindertengerecht"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7ba0bc00d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object. It is given according to the national fire safety code or regulation." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety code or regulation." ; + IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Feuerwiderstandsklasse für den Brandschutz gemäß der nationalen oder regionalen Richtlinie die für den Brandschutz der Brandschutztür gewährleistet werden muss."@de-DE , ""@en , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN ; + IFC4-PSD:ifdguid "7ba0bc00d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "防火等级"@zh-CN , "Fire Rating"@en , "耐火等級"@ja-JP , "Feuerwiderstandsklasse"@de-DE , "ResistanceAuFeu"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:GlazingAreaFraction a rdf:Property ; + rdfs:seeAlso :p5d878b80d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlazingAreaFraction . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2795d780d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:HasDrive a rdf:Property ; + rdfs:seeAlso :paa6b6200d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasDrive . + +:HygrothermalRating a rdf:Property ; + rdfs:seeAlso :pec47d880d1db11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HygrothermalRating . + +:SelfClosing a rdf:Property ; + rdfs:seeAlso :pbeaf5f00d1dc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfClosing . + +:pec47d880d1db11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Resistence against hygrothermal impact from different temperatures and humidities inside and outside. It is given according to the national code or regulation." ; + rdfs:label "HygrothermalRating" ; + IFC4-PSD:definition "Resistence against hygrothermal impact from different temperatures and humidities inside and outside. It is given according to the national code or regulation." ; + IFC4-PSD:definitionAlias ""@en , "Hygrothermische Widerstandsfähigkeit gegen Temperatur- und Feuchteunterschiede gemäß der nationalen oder regionalen Richtlinie als Mindestanforderung gegen die Verformung der Tür."@de-DE , "Résistance à l'impact hygrothermique des différences de température et d'humidité entre l'intérieur et l'extérieur, selon une classification ou règlementation nationale."@fr-FR ; + IFC4-PSD:ifdguid "ec47d880d1db11e1800000215ad4efdf" ; + IFC4-PSD:name "HygrothermalRating" ; + IFC4-PSD:nameAlias "Résistance hygrothermique"@fr-FR , "Hygrothermal Rating"@en , "Klimaklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_DoorCommon_edit.ttl b/converter/src/main/resources/pset/Pset_DoorCommon_edit.ttl deleted file mode 100644 index 4b40c95e..00000000 --- a/converter/src/main/resources/pset/Pset_DoorCommon_edit.ttl +++ /dev/null @@ -1,355 +0,0 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_DoorCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; -. - - - - -:_7ba0bc00d1db11e1800000215ad4efdf - rdf:type owl:ObjectProperty ; - rdfs:seeAlso :_7ba0bc00d1db11e1800000215ad4efdf . - -:_7ba0bc00d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety code or regulation." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandsklasse für den Brandschutz gemäß der nationalen oder regionalen Richtlinie die für den Brandschutz der Brandschutztür gewährleistet werden muss."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "7ba0bc00d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. - - - - - -:Pset_DoorCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcDoor" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcDoor." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcDoor"@fr-FR ; - IFC4-PSD:definitionAlias "IfcDoor(ドア)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcDoor实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_DoorCommon" ; - IFC4-PSD:propertyDef :_0aadd400d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_23b68500d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2795d780d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_32e90300d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_42b51700d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5d878b80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_76903c80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7ba0bc00d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8f98ed80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_95420380d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_aa6b6200d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b4409580d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_beaf5f00d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cde1dd00d1db11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cec73e80d1dc11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ec47d880d1db11e1800000215ad4efdf ; -. -:_0aadd400d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "0aadd400d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_23b68500d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; - IFC4-PSD:definitionAlias "Luftaustausch über die Fugen der geschlossenen Tür (Q-Wert). Gibt die Luftdurchlässigkeit der gesamten Tür bei einem Luftdruckniveau von 50 Pascal an."@de-DE ; - IFC4-PSD:definitionAlias "Taux d'infiltration de l'air extérieur lorsqu'on soumet la porte à une pression de 50 pascals. Cette valeur sera utilisée si la longueur des joints n'est pas connue."@fr-FR ; - IFC4-PSD:ifdguid "23b68500d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "Infiltration" ; - IFC4-PSD:nameAlias "Luftdurchlässigkeit"@de-DE ; - IFC4-PSD:nameAlias "TauxInfiltration"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2795d780d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "2795d780d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_32e90300d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "32e90300d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_42b51700d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -It applies to the total door construction.""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Il s'applique à l'ensemble de la porte."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Tür."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -适用于门的整体结构。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。"@ja-JP ; - IFC4-PSD:ifdguid "42b51700d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_5d878b80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fraction of the glazing area relative to the total area of the filling element. -It shall be used, if the glazing area is not given separately for all panels within the filling element.""" ; - IFC4-PSD:definitionAlias "Anteil der verglasten Fläche an der Gesamtfläche der Tür."@de-DE ; - IFC4-PSD:definitionAlias "Part de surface de vitrage par rapport à la surface totale de l'élément de remplissage. Doit être utilisée si la surface de vitrage n'est pas donnée séparément pour tous les panneaux occupant l'ouverture."@fr-FR ; - IFC4-PSD:ifdguid "5d878b80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "GlazingAreaFraction" ; - IFC4-PSD:nameAlias "FractionSurfaceVitree"@fr-FR ; - IFC4-PSD:nameAlias "Glasflächenanteil"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_76903c80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication that this object is designed to be accessible by the handicapped. -It is giving according to the requirements of the national building code.""" ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür behindertengerecht gemäß der nationalen oder regionalen Verordnung ist (JA), oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR ; - IFC4-PSD:ifdguid "76903c80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "HandicapAccessible" ; - IFC4-PSD:nameAlias "AccessibleHandicapes"@fr-FR ; - IFC4-PSD:nameAlias "Behindertengerecht"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_7ba0bc00d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety code or regulation." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandsklasse für den Brandschutz gemäß der nationalen oder regionalen Richtlinie die für den Brandschutz der Brandschutztür gewährleistet werden muss."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "7ba0bc00d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_8f98ed80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). -Here it defines an exit door in accordance to the national building code.""" ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür ein Notausgang gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN).."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR ; - IFC4-PSD:definitionAlias "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP ; - IFC4-PSD:definitionAlias """表示该构件是否设计为火灾时的紧急出口。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:ifdguid "8f98ed80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Notausgang"@de-DE ; - IFC4-PSD:nameAlias "Sortie Secours"@fr-FR ; - IFC4-PSD:nameAlias "是否为紧急出口"@zh-CN ; - IFC4-PSD:nameAlias "非常口区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_95420380d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Schalldämmung der Tür gewährleistet sein muss."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "95420380d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_aa6b6200d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen automatischen Antrieb zum Öffnen und Schließen besitzt (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:ifdguid "aa6b6200d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "HasDrive" ; - IFC4-PSD:nameAlias "Antrieb"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_b4409580d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Index based rating system indicating security level. -It is giving according to the national building code.""" ; - IFC4-PSD:definitionAlias "Système de classification par indices, indiquant le niveau de sécurité."@fr-FR ; - IFC4-PSD:definitionAlias "Widerstandsklasse für den Einbruchschutz gemäß der nationalen oder regionalen Richtlinie die als Mindestanforderung für die Einbruchhemmung der Tür gewährleistet sein muss."@de-DE ; - IFC4-PSD:definitionAlias """表示安全程度的参考性等级。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:definitionAlias "防犯等級情報。関連する基準を参照。"@ja-JP ; - IFC4-PSD:ifdguid "b4409580d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "SecurityRating" ; - IFC4-PSD:nameAlias "NiveauSecurite"@fr-FR ; - IFC4-PSD:nameAlias "Widerstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "安全等级"@zh-CN ; - IFC4-PSD:nameAlias "防犯等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_beaf5f00d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is designed to close automatically after use (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür sicher und selbständig nach der Benutzung durch einen Türschließer schließt (Ja) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour une fermeture automatique après usage (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "このドアが自動的に閉まる機能を有するかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为自动关闭。"@zh-CN ; - IFC4-PSD:ifdguid "beaf5f00d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "SelfClosing" ; - IFC4-PSD:nameAlias "FermetureAutomatique"@fr-FR ; - IFC4-PSD:nameAlias "Selbstschliessend"@de-DE ; - IFC4-PSD:nameAlias "是否自动关闭"@zh-CN ; - IFC4-PSD:nameAlias "自動ドア閉機能区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_cde1dd00d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Durability against mechanical stress. It is given according to the national code or regulation." ; - IFC4-PSD:definitionAlias "Durabilité au stress mécanique, selon une classification ou règlementation nationale."@fr-FR ; - IFC4-PSD:definitionAlias "Mechanische Widerstandsfähigkeit gegen immer wiederkehrende Bewegungen und Einflüsse gemäß der nationalen oder regionalen Richtlinie."@de-DE ; - IFC4-PSD:ifdguid "cde1dd00d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "DurabilityRating" ; - IFC4-PSD:nameAlias "Beanspruchungsklasse"@de-DE ; - IFC4-PSD:nameAlias "Durabilité"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_cec73e80d1dc11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob die Tür einen Rauchschutz gemäß der nationalen oder regionalen Brandschutzverordnung gewährleistet (JA) oder nicht (NEIN). Rauchschutztüren müssen selbstschließend sein."@de-DE ; - IFC4-PSD:definitionAlias "Indique si la porte est conçue pour une fonction coupe-fumée (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "このドアが煙を止める機能を有するかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为防烟。"@zh-CN ; - IFC4-PSD:ifdguid "cec73e80d1dc11e1800000215ad4efdf" ; - IFC4-PSD:name "SmokeStop" ; - IFC4-PSD:nameAlias "CoupeFumee"@fr-FR ; - IFC4-PSD:nameAlias "Rauchschutz"@de-DE ; - IFC4-PSD:nameAlias "是否防烟"@zh-CN ; - IFC4-PSD:nameAlias "煙止め機能区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ec47d880d1db11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Resistence against hygrothermal impact from different temperatures and humidities inside and outside. It is given according to the national code or regulation." ; - IFC4-PSD:definitionAlias "Hygrothermische Widerstandsfähigkeit gegen Temperatur- und Feuchteunterschiede gemäß der nationalen oder regionalen Richtlinie als Mindestanforderung gegen die Verformung der Tür."@de-DE ; - IFC4-PSD:definitionAlias "Résistance à l'impact hygrothermique des différences de température et d'humidité entre l'intérieur et l'extérieur, selon une classification ou règlementation nationale."@fr-FR ; - IFC4-PSD:ifdguid "ec47d880d1db11e1800000215ad4efdf" ; - IFC4-PSD:name "HygrothermalRating" ; - IFC4-PSD:nameAlias "Klimaklasse"@de-DE ; - IFC4-PSD:nameAlias "Résistance hygrothermique"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. diff --git a/converter/src/main/resources/pset/Pset_DoorWindowGlazingType.ttl b/converter/src/main/resources/pset/Pset_DoorWindowGlazingType.ttl index 8a96e2ff..1e7d6d32 100644 --- a/converter/src/main/resources/pset/Pset_DoorWindowGlazingType.ttl +++ b/converter/src/main/resources/pset/Pset_DoorWindowGlazingType.ttl @@ -1,399 +1,353 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_DoorWindowGlazingType -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p32516c00d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the third (outer) glass layer." ; + rdfs:label "GlassThickness3" ; + IFC4-PSD:definition "Thickness of the third (outer) glass layer." ; + IFC4-PSD:definitionAlias ""@en , "3番目(外側)のガラスの厚み。"@ja-JP , "Epaisseur de la troisième couche de verre (côté extérieur)"@fr-FR , "German-description-4"@de-DE , "第三层(外侧)玻璃的厚度。"@zh-CN ; + IFC4-PSD:ifdguid "32516c00d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "GlassThickness3" ; + IFC4-PSD:nameAlias "玻璃厚度3"@zh-CN , "ガラス厚3"@ja-JP , "Glass Thickness3"@en , "EpaisseurVitrage3"@fr-FR , "German-name-4"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:GlassThickness2 a rdf:Property ; + rdfs:seeAlso :p2796d700d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlassThickness2 . + +:SolarReflectance a rdf:Property ; + rdfs:seeAlso :p88beaa80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarReflectance . + +:p5dd45680d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the glass is layered with other materials (TRUE) or not (FALSE)." ; + rdfs:label "IsLaminated" ; + IFC4-PSD:definition "Indication whether the glass is layered with other materials (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "表示玻璃是否具有含其他材料的夹层。"@zh-CN , "German-description-8"@de-DE , ""@en , "ガラス以外の素材が重ねられているか(TRUE)否か(FALSE)示す。"@ja-JP , "Indique si le verre est feuilleté (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "5dd45680d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "IsLaminated" ; + IFC4-PSD:nameAlias "皮膜を被せたガラス"@ja-JP , "Is Laminated"@en , "VitrageFeuillete"@fr-FR , "German-name-8"@de-DE , "是否夹层"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p9e33d480d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nWinter thermal transmittance coefficient of the glazing only, often referred to as (U-value)." ; + rdfs:label "ThermalTransmittanceWinter" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nWinter thermal transmittance coefficient of the glazing only, often referred to as (U-value)." ; + IFC4-PSD:definitionAlias "German-description-18"@de-DE , "材料的导热系数(U值)。\n仅玻璃的冬季导热系数,常以U值表示。"@zh-CN , "Coefficient de transmission thermique (U) d'un matériau. Coefficient de transmission thermique en hiver du vitrage seul, souvent désigné comme étant Uw."@fr-FR , ""@en , "素材の熱透過係数(U値)。夏期のガラスの熱透過係数だけ、U値として参照される。"@ja-JP ; + IFC4-PSD:ifdguid "9e33d480d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittanceWinter" ; + IFC4-PSD:nameAlias "冬季の熱透過係数"@ja-JP , "冬季导热系数"@zh-CN , "Thermal Transmittance Winter"@en , "German-name-16"@de-DE , "TransmittanceThermiqueHiver"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:p91af7c00d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(SHGC): The ratio of incident solar radiation that contributes to the heat gain of the interior, it is the solar radiation that directly passes (Tsol or τe) plus the part of the absorbed radiation that is distributed to the interior (qi). The SHGC is refered to also as g-value (g = τe + qi)." ; + rdfs:label "SolarHeatGainTransmittance" ; + IFC4-PSD:definition "(SHGC): The ratio of incident solar radiation that contributes to the heat gain of the interior, it is the solar radiation that directly passes (Tsol or τe) plus the part of the absorbed radiation that is distributed to the interior (qi). The SHGC is refered to also as g-value (g = τe + qi)." ; + IFC4-PSD:definitionAlias "(SHGC)导致室内取得热量的入射太阳辐射比率,该值为透射太阳辐射(Tsol或τe)与分配到室内的吸收太阳辐射(qi)的和。SHGC也被称为g值(g = τe + qi)。"@zh-CN , ""@en , "German-description-16"@de-DE , "(SHGC): Ratio du rayonnement solaire incident qui contribue aux apports solaires récupérés. Rayonnemment transmis directement (Tsol ou Te), plus la part de rayonnement absorbé restitué à l'intérieur (qi). Le SHGC est également appelé valeur-g (g = Te + qi)."@fr-FR , "(SHGC):室内の熱利得の原因となる日射の比率。ガラスの透過分(Tsol or τe)と吸収分の内、室内側(qi)への分配分の和。SHGCは、g値(g = τe + qi)としても参照される。"@ja-JP ; + IFC4-PSD:ifdguid "91af7c00d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarHeatGainTransmittance" ; + IFC4-PSD:nameAlias "Solar Heat Gain Transmittance"@en , "太阳能得热系数"@zh-CN , "ApportsSolaires"@fr-FR , "透過太陽熱利得係数"@ja-JP , "Gesamtenergiedurchlassgrad"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:IsWired a rdf:Property ; + rdfs:seeAlso :p72185380d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsWired . + +:GlassThickness1 a rdf:Property ; + rdfs:seeAlso :p1a79e800d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlassThickness1 . + +:IsCoated a rdf:Property ; + rdfs:seeAlso :p69278200d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsCoated . + +:p3da49780d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Name of the gas by which the gap between two glass layers is filled. It is given for information purposes only." ; + rdfs:label "FillGas" ; + IFC4-PSD:definition "Name of the gas by which the gap between two glass layers is filled. It is given for information purposes only." ; + IFC4-PSD:definitionAlias "Nom du gaz remplissant l'espace entre deux couches de verre. Donné à titre informatif seulement."@fr-FR , "2枚のガラス間の隙間に充填されたガスの名称。これは情報目的専用に提供される。"@ja-JP , "两层玻璃之间填充气体的名称。仅供参考。"@zh-CN , "German-description-5"@de-DE , ""@en ; + IFC4-PSD:ifdguid "3da49780d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "FillGas" ; + IFC4-PSD:nameAlias "充填ガス種"@ja-JP , "Fill Gas"@en , "填充气体"@zh-CN , "GazEntreVitrages"@fr-FR , "German-name-5"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:VisibleLightTransmittance + a rdf:Property ; + rdfs:seeAlso :p80666f80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleLightTransmittance . + :Pset_DoorWindowGlazingType - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcDoor ; - IFC4-PSD:applicableClass IFC4:IfcWindow ; - IFC4-PSD:applicableTypeValue "IfcDoor, IfcWindow" ; - IFC4-PSD:definition "Properties common to the definition of the glazing component of occurrences of IfcDoor and IfcWindow, used for thermal and lighting calculations." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition du composant vitrage des instances des classes IfcDoor et IfcWindow, utilisées pour des calculs thermiques et d'éclairage."@fr-FR ; - IFC4-PSD:definitionAlias "IfcDoorとIfcWindowにあるガラス部品に関する共通プロパティセット定義。熱と明るさの計算に用いる。"@ja-JP ; - IFC4-PSD:definitionAlias "IfcDoor和IfcWindow实例的玻璃构件定义中通用的属性,用于热工和采光计算。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_DoorWindowGlazingType" ; - IFC4-PSD:propertyDef :_0df58f80d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1a79e800d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2796d700d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_32516c00d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3da49780d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_48f7c300d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_51e89480d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5dd45680d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_69278200d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_72185380d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7a708e80d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_80666f80d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_84928d00d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_88beaa80d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8ceac800d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_91af7c00d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_95db9980d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_9a07b700d1dd11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_9e33d480d1dd11e1800000215ad4efdf ; -. -:_0df58f80d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Number of glass layers within the frame. E.g. \"2\" for double glazing." ; - IFC4-PSD:definitionAlias "German-description-1"@de-DE ; - IFC4-PSD:definitionAlias "Nombre de couches de verre dans le cadre. Exemple : 2 pour le double vitrage."@fr-FR ; - IFC4-PSD:definitionAlias "ガラスの枚数。例:\"2\"はペアガラス。"@ja-JP ; - IFC4-PSD:definitionAlias "框内玻璃的层数。例如:”2”表示双层玻璃。"@zh-CN ; - IFC4-PSD:ifdguid "0df58f80d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "GlassLayers" ; - IFC4-PSD:nameAlias "German-name-1"@de-DE ; - IFC4-PSD:nameAlias "NombreVitrages"@fr-FR ; - IFC4-PSD:nameAlias "ガラス枚数"@ja-JP ; - IFC4-PSD:nameAlias "玻璃层数"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcCountMeasure ; - ] ; -. -:_1a79e800d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Thickness of the first (inner) glass layer." ; - IFC4-PSD:definitionAlias "Epaisseur de la première couche de verre (côté intérieur)"@fr-FR ; - IFC4-PSD:definitionAlias "German-description-2"@de-DE ; - IFC4-PSD:definitionAlias "最初の(室内側)ガラスの厚み。"@ja-JP ; - IFC4-PSD:definitionAlias "第一层(内侧)玻璃的厚度。"@zh-CN ; - IFC4-PSD:ifdguid "1a79e800d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "GlassThickness1" ; - IFC4-PSD:nameAlias "EpaisseurVitrage1"@fr-FR ; - IFC4-PSD:nameAlias "German-name-2"@de-DE ; - IFC4-PSD:nameAlias "ガラス厚1"@ja-JP ; - IFC4-PSD:nameAlias "玻璃厚度1"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_2796d700d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Thickness of the second (intermediate or outer) glass layer." ; - IFC4-PSD:definitionAlias "2番目(中間、あるいは外側)のガラスの厚み。"@ja-JP ; - IFC4-PSD:definitionAlias "Epaisseur de la deuxième couche de verre (intermédiaire ou côté extérieur)"@fr-FR ; - IFC4-PSD:definitionAlias "German-description-3"@de-DE ; - IFC4-PSD:definitionAlias "第二层(中间或外侧)玻璃的厚度。"@zh-CN ; - IFC4-PSD:ifdguid "2796d700d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "GlassThickness2" ; - IFC4-PSD:nameAlias "EpaisseurVitrage2"@fr-FR ; - IFC4-PSD:nameAlias "German-name-3"@de-DE ; - IFC4-PSD:nameAlias "ガラス厚2"@ja-JP ; - IFC4-PSD:nameAlias "玻璃厚度2"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_32516c00d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Thickness of the third (outer) glass layer." ; - IFC4-PSD:definitionAlias "3番目(外側)のガラスの厚み。"@ja-JP ; - IFC4-PSD:definitionAlias "Epaisseur de la troisième couche de verre (côté extérieur)"@fr-FR ; - IFC4-PSD:definitionAlias "German-description-4"@de-DE ; - IFC4-PSD:definitionAlias "第三层(外侧)玻璃的厚度。"@zh-CN ; - IFC4-PSD:ifdguid "32516c00d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "GlassThickness3" ; - IFC4-PSD:nameAlias "EpaisseurVitrage3"@fr-FR ; - IFC4-PSD:nameAlias "German-name-4"@de-DE ; - IFC4-PSD:nameAlias "ガラス厚3"@ja-JP ; - IFC4-PSD:nameAlias "玻璃厚度3"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_3da49780d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Name of the gas by which the gap between two glass layers is filled. It is given for information purposes only." ; - IFC4-PSD:definitionAlias "2枚のガラス間の隙間に充填されたガスの名称。これは情報目的専用に提供される。"@ja-JP ; - IFC4-PSD:definitionAlias "German-description-5"@de-DE ; - IFC4-PSD:definitionAlias "Nom du gaz remplissant l'espace entre deux couches de verre. Donné à titre informatif seulement."@fr-FR ; - IFC4-PSD:definitionAlias "两层玻璃之间填充气体的名称。仅供参考。"@zh-CN ; - IFC4-PSD:ifdguid "3da49780d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "FillGas" ; - IFC4-PSD:nameAlias "GazEntreVitrages"@fr-FR ; - IFC4-PSD:nameAlias "German-name-5"@de-DE ; - IFC4-PSD:nameAlias "充填ガス種"@ja-JP ; - IFC4-PSD:nameAlias "填充气体"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_48f7c300d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Color (tint) selection for this glazing. It is given for information purposes only." ; - IFC4-PSD:definitionAlias "Choix de la couleur (teinte) du vitrage. Donné à titre informatif seulement."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-6"@de-DE ; - IFC4-PSD:definitionAlias "ガラスの色合い。これは情報目的専用に提供される。"@ja-JP ; - IFC4-PSD:definitionAlias "玻璃(贴膜)的颜色。仅供参考。"@zh-CN ; - IFC4-PSD:ifdguid "48f7c300d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "GlassColor" ; - IFC4-PSD:nameAlias "CouleurVitrage"@fr-FR ; - IFC4-PSD:nameAlias "German-name-6"@de-DE ; - IFC4-PSD:nameAlias "ガラス色"@ja-JP ; - IFC4-PSD:nameAlias "玻璃颜色"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_51e89480d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the glass is tempered (TRUE) or not (FALSE) ." ; - IFC4-PSD:definitionAlias "German-description-7"@de-DE ; - IFC4-PSD:definitionAlias "Indique si le verre est trempé (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "強化ガラスか(TRUE)否か(FALSE)を示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示玻璃是否经过强化处理。"@zh-CN ; - IFC4-PSD:ifdguid "51e89480d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "IsTempered" ; - IFC4-PSD:nameAlias "German-name-7"@de-DE ; - IFC4-PSD:nameAlias "VitrageTrempe"@fr-FR ; - IFC4-PSD:nameAlias "強化ガラス"@ja-JP ; - IFC4-PSD:nameAlias "是否钢化"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_5dd45680d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the glass is layered with other materials (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "German-description-8"@de-DE ; - IFC4-PSD:definitionAlias "Indique si le verre est feuilleté (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "ガラス以外の素材が重ねられているか(TRUE)否か(FALSE)示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示玻璃是否具有含其他材料的夹层。"@zh-CN ; - IFC4-PSD:ifdguid "5dd45680d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "IsLaminated" ; - IFC4-PSD:nameAlias "German-name-8"@de-DE ; - IFC4-PSD:nameAlias "VitrageFeuillete"@fr-FR ; - IFC4-PSD:nameAlias "是否夹层"@zh-CN ; - IFC4-PSD:nameAlias "皮膜を被せたガラス"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_69278200d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the glass is coated with a material (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "German-description-9"@de-DE ; - IFC4-PSD:definitionAlias "Indique si le verre a subi un traitement de surface (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "ガラスがコーティングされいるか(TRUE)否か(FALSE)示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示玻璃是否具有某种材料的镀膜。"@zh-CN ; - IFC4-PSD:ifdguid "69278200d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "IsCoated" ; - IFC4-PSD:nameAlias "German-name-9"@de-DE ; - IFC4-PSD:nameAlias "VitrageTraite"@fr-FR ; - IFC4-PSD:nameAlias "コーティング"@ja-JP ; - IFC4-PSD:nameAlias "是否镀膜"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_72185380d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the glass includes a contained wire mesh to prevent break-in (TRUE) or not (FALSE)" ; - IFC4-PSD:definitionAlias "German-description-10"@de-DE ; - IFC4-PSD:definitionAlias "Indique si le verre est un verre armé à maille anti-effraction (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:definitionAlias "不法侵入防止の網入りガラスか(TRUE)否か(FALSE)示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示玻璃是否具有防断裂的纤维网格。"@zh-CN ; - IFC4-PSD:ifdguid "72185380d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "IsWired" ; - IFC4-PSD:nameAlias "German-name-10"@de-DE ; - IFC4-PSD:nameAlias "VitrageArme"@fr-FR ; - IFC4-PSD:nameAlias "是否夹丝"@zh-CN ; - IFC4-PSD:nameAlias "網入りガラス"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_7a708e80d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fraction of the visible light that is reflected by the glazing at normal incidence. It is a value without unit." ; - IFC4-PSD:definitionAlias "Fraction du rayonnement visible qui est réfléchi par le vitrage sous incidence normale. Valeur sans unité."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-12"@de-DE ; - IFC4-PSD:definitionAlias "ガラスへ法線入射した可視光の反射率。単位の無い値。"@ja-JP ; - IFC4-PSD:definitionAlias "正射时被玻璃反射的可见光比例。无单位。"@zh-CN ; - IFC4-PSD:ifdguid "7a708e80d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "VisibleLightReflectance" ; - IFC4-PSD:nameAlias "Reflektionsgrad für sichtbares Licht"@de-DE ; - IFC4-PSD:nameAlias "ReflexionVisible"@fr-FR ; - IFC4-PSD:nameAlias "可視光反射率"@ja-JP ; - IFC4-PSD:nameAlias "可见光反射率"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_80666f80d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fraction of the visible light that passes the glazing at normal incidence. It is a value without unit." ; - IFC4-PSD:definitionAlias "Fraction du rayonnement visible qui est transmise par le vitrage sous incidence normale. Valeur sans unité."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-11"@de-DE ; - IFC4-PSD:definitionAlias "ガラスへ法線入射した可視光の透過率。単位の無い値。"@ja-JP ; - IFC4-PSD:definitionAlias "正射时穿透玻璃的可见光比例。无单位。"@zh-CN ; - IFC4-PSD:ifdguid "80666f80d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "VisibleLightTransmittance" ; - IFC4-PSD:nameAlias "Transmissionsgrad für sichtbares Licht"@de-DE ; - IFC4-PSD:nameAlias "TransmittanceVisible"@fr-FR ; - IFC4-PSD:nameAlias "可視光透過率"@ja-JP ; - IFC4-PSD:nameAlias "可见光透射率"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_84928d00d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "(Asol) The ratio of incident solar radiation that is absorbed by a glazing system. It is the sum of the absorption distributed to the exterior (a) and to the interior (qi). Note the following equation Asol + Rsol + Tsol = 1" ; - IFC4-PSD:definitionAlias "(Asol). Ratio du rayonnement solaire incident qui est absorbé par le vitrage. Somme de l'absorption distribuée à l'extérieur (a) et à l'intérieur (qi). Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-13"@de-DE ; - IFC4-PSD:definitionAlias "(Asol)ガラスで吸収される日射の比率。吸収の合計は外部(a)と、室内(qi)に分配される。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP ; - IFC4-PSD:definitionAlias "(Asol)被玻璃系统吸收的太阳入射辐射的比率,为传递到室外和室内的吸收的总量。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN ; - IFC4-PSD:ifdguid "84928d00d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "SolarAbsorption" ; - IFC4-PSD:nameAlias "AbsorptionRayonnementSolaire"@fr-FR ; - IFC4-PSD:nameAlias "Strahlungsabsorbtionsgrad"@de-DE ; - IFC4-PSD:nameAlias "太阳能吸收率"@zh-CN ; - IFC4-PSD:nameAlias "日射吸収率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_88beaa80d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "(Rsol): The ratio of incident solar radiation that is reflected by a glazing system (also named ρe). Note the following equation Asol + Rsol + Tsol = 1" ; - IFC4-PSD:definitionAlias "(Rsol). Ratio du rayonnement solaire incident qui est réfléchi par le vitrage. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-14"@de-DE ; - IFC4-PSD:definitionAlias "(Rsol)ガラスで反射する日射の比率(ρeとも表わされる)。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP ; - IFC4-PSD:definitionAlias "(Rsol)被玻璃系统反射的太阳入射辐射的比率(也可用ρe表示)。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN ; - IFC4-PSD:ifdguid "88beaa80d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "SolarReflectance" ; - IFC4-PSD:nameAlias "ReflexionRayonnementSolaire"@fr-FR ; - IFC4-PSD:nameAlias "Strahlungsreflectionsgrad"@de-DE ; - IFC4-PSD:nameAlias "太阳能反射率"@zh-CN ; - IFC4-PSD:nameAlias "日射反射率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_8ceac800d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "(Tsol): The ratio of incident solar radiation that directly passes through a glazing system (also named τe). Note the following equation Asol + Rsol + Tsol = 1" ; - IFC4-PSD:definitionAlias "(Tsol). Ratio du rayonnement solaire incident qui est transmis directement par le vitrage. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-15"@de-DE ; - IFC4-PSD:definitionAlias "(Tsol)ガラスを透過する日射の比率(τeとも表わされる)。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP ; - IFC4-PSD:definitionAlias "(Tsol)透过玻璃系统的太阳入射辐射的比率(也可用τe表示)。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN ; - IFC4-PSD:ifdguid "8ceac800d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "SolarTransmittance" ; - IFC4-PSD:nameAlias "Strahlungstransmissionsgrad"@de-DE ; - IFC4-PSD:nameAlias "TransmissionRayonnementSolaire"@fr-FR ; - IFC4-PSD:nameAlias "太阳能透射率"@zh-CN ; - IFC4-PSD:nameAlias "日射透過率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_91af7c00d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "(SHGC): The ratio of incident solar radiation that contributes to the heat gain of the interior, it is the solar radiation that directly passes (Tsol or τe) plus the part of the absorbed radiation that is distributed to the interior (qi). The SHGC is refered to also as g-value (g = τe + qi)." ; - IFC4-PSD:definitionAlias "(SHGC): Ratio du rayonnement solaire incident qui contribue aux apports solaires récupérés. Rayonnemment transmis directement (Tsol ou Te), plus la part de rayonnement absorbé restitué à l'intérieur (qi). Le SHGC est également appelé valeur-g (g = Te + qi)."@fr-FR ; - IFC4-PSD:definitionAlias "(SHGC):室内の熱利得の原因となる日射の比率。ガラスの透過分(Tsol or τe)と吸収分の内、室内側(qi)への分配分の和。SHGCは、g値(g = τe + qi)としても参照される。"@ja-JP ; - IFC4-PSD:definitionAlias "German-description-16"@de-DE ; - IFC4-PSD:definitionAlias "(SHGC)导致室内取得热量的入射太阳辐射比率,该值为透射太阳辐射(Tsol或τe)与分配到室内的吸收太阳辐射(qi)的和。SHGC也被称为g值(g = τe + qi)。"@zh-CN ; - IFC4-PSD:ifdguid "91af7c00d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "SolarHeatGainTransmittance" ; - IFC4-PSD:nameAlias "ApportsSolaires"@fr-FR ; - IFC4-PSD:nameAlias "Gesamtenergiedurchlassgrad"@de-DE ; - IFC4-PSD:nameAlias "太阳能得热系数"@zh-CN ; - IFC4-PSD:nameAlias "透過太陽熱利得係数"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_95db9980d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "(SC): The measure of the ability of a glazing to transmit solar heat, relative to that ability for 3 mm (1/8-inch) clear, double-strength, single glass. Shading coefficient is being phased out in favor of the solar heat gain coefficient (SHGC), and is approximately equal to the SHGC multiplied by 1.15. The shading coefficient is expressed as a number without units between 0 and 1." ; - IFC4-PSD:definitionAlias "(SC): Mesure de la capacité d'un vitrage à transmettre l'énergie solaire comparativement à un simple vitrage clair, de 3 mm (double renfort). Le coefficient d'atténuation est supprimé progressivement en faveur du coefficient d'apport solaire (SHGC) et est approximativement égal au SHGC multiplié par 1,15. Le coefficient d'atténuation est exprimé comme nombre sans unités entre 0 et 1."@fr-FR ; - IFC4-PSD:definitionAlias "(SC): ガラスの太陽熱伝導の基準、3mm(1/8インチ)透明の一枚ガラスの性能との比。遮蔽係数は太陽熱利得係数(SHGC)に移行し、段階的に廃止、SHGC×1.15とほとんど等しい。遮蔽係数は0から1までの単位無しの値。"@ja-JP ; - IFC4-PSD:definitionAlias """Das Verhältnis aus g-Wert der jeweiligen Verglasung und dem g-Wert eines Zweischeiben-Normalglasfensters. -Der g-Wert dieses Zweischeiben-Normalglasfensters wird als Konstante mit 80 % angesetzt. Bei Einfachglas beträgt die Konstante 87 %, Auch \"Shading coefficient\" genannt."""@de-DE ; - IFC4-PSD:definitionAlias "(SC)玻璃传递太阳热量能力的度量,以3mm(1/8英寸)透明双倍强度单层玻璃为基准。遮阳系数有被太阳能得热系数(SHGC)取代的趋势,其值约为SHGC的1.15倍。遮阳系数以大于0小于1的无单位数表示。"@zh-CN ; - IFC4-PSD:ifdguid "95db9980d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "ShadingCoefficient" ; - IFC4-PSD:nameAlias "CoefficientOmbrage"@fr-FR ; - IFC4-PSD:nameAlias "mittlere Durchlassfaktor b"@de-DE ; - IFC4-PSD:nameAlias "遮蔽係数"@ja-JP ; - IFC4-PSD:nameAlias "遮阳系数"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure ; - ] ; -. -:_9a07b700d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -Summer thermal transmittance coefficient of the glazing only, often referred to as (U-value).""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Coefficient de transmission thermique en été du vitrage seul, souvent désigné comme étant Uw."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-17"@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -仅玻璃的夏季导热系数,常以U值表示。"""@zh-CN ; - IFC4-PSD:definitionAlias "素材の熱透過係数(U値)。夏期のガラスの熱透過係数だけ、U値として参照される"@ja-JP ; - IFC4-PSD:ifdguid "9a07b700d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittanceSummer" ; - IFC4-PSD:nameAlias "German-name-15"@de-DE ; - IFC4-PSD:nameAlias "TransmittanceThermiqueEte"@fr-FR ; - IFC4-PSD:nameAlias "夏季导热系数"@zh-CN ; - IFC4-PSD:nameAlias "夏期の熱透過係数"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. -:_9e33d480d1dd11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -Winter thermal transmittance coefficient of the glazing only, often referred to as (U-value).""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Coefficient de transmission thermique en hiver du vitrage seul, souvent désigné comme étant Uw."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-18"@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -仅玻璃的冬季导热系数,常以U值表示。"""@zh-CN ; - IFC4-PSD:definitionAlias "素材の熱透過係数(U値)。夏期のガラスの熱透過係数だけ、U値として参照される。"@ja-JP ; - IFC4-PSD:ifdguid "9e33d480d1dd11e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittanceWinter" ; - IFC4-PSD:nameAlias "German-name-16"@de-DE ; - IFC4-PSD:nameAlias "TransmittanceThermiqueHiver"@fr-FR ; - IFC4-PSD:nameAlias "冬季の熱透過係数"@ja-JP ; - IFC4-PSD:nameAlias "冬季导热系数"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of the glazing component of occurrences of IfcDoor and IfcWindow, used for thermal and lighting calculations." ; + rdfs:label "Pset_DoorWindowGlazingType" ; + IFC4-PSD:applicableClass , IFC4:IfcDoor ; + IFC4-PSD:applicableTypeValue "IfcDoor, IfcWindow" ; + IFC4-PSD:definition "Properties common to the definition of the glazing component of occurrences of IfcDoor and IfcWindow, used for thermal and lighting calculations." ; + IFC4-PSD:definitionAlias "IfcDoor和IfcWindow实例的玻璃构件定义中通用的属性,用于热工和采光计算。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition du composant vitrage des instances des classes IfcDoor et IfcWindow, utilisées pour des calculs thermiques et d'éclairage."@fr-FR , "IfcDoorとIfcWindowにあるガラス部品に関する共通プロパティセット定義。熱と明るさの計算に用いる。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DoorWindowGlazingType" ; + IFC4-PSD:propertyDef :p7a708e80d1dd11e1800000215ad4efdf , :p9e33d480d1dd11e1800000215ad4efdf , :p80666f80d1dd11e1800000215ad4efdf , :p88beaa80d1dd11e1800000215ad4efdf , :p51e89480d1dd11e1800000215ad4efdf , :p5dd45680d1dd11e1800000215ad4efdf , :p3da49780d1dd11e1800000215ad4efdf , :p9a07b700d1dd11e1800000215ad4efdf , :p91af7c00d1dd11e1800000215ad4efdf , :p2796d700d1dd11e1800000215ad4efdf , :p72185380d1dd11e1800000215ad4efdf , :p69278200d1dd11e1800000215ad4efdf , :p32516c00d1dd11e1800000215ad4efdf , :p48f7c300d1dd11e1800000215ad4efdf , :p84928d00d1dd11e1800000215ad4efdf , :p1a79e800d1dd11e1800000215ad4efdf , :p95db9980d1dd11e1800000215ad4efdf , :p8ceac800d1dd11e1800000215ad4efdf , :p0df58f80d1dd11e1800000215ad4efdf . + +:p7a708e80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the visible light that is reflected by the glazing at normal incidence. It is a value without unit." ; + rdfs:label "VisibleLightReflectance" ; + IFC4-PSD:definition "Fraction of the visible light that is reflected by the glazing at normal incidence. It is a value without unit." ; + IFC4-PSD:definitionAlias "ガラスへ法線入射した可視光の反射率。単位の無い値。"@ja-JP , "Fraction du rayonnement visible qui est réfléchi par le vitrage sous incidence normale. Valeur sans unité."@fr-FR , "正射时被玻璃反射的可见光比例。无单位。"@zh-CN , "German-description-12"@de-DE , ""@en ; + IFC4-PSD:ifdguid "7a708e80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleLightReflectance" ; + IFC4-PSD:nameAlias "可視光反射率"@ja-JP , "Visible Light Reflectance"@en , "Reflektionsgrad für sichtbares Licht"@de-DE , "ReflexionVisible"@fr-FR , "可见光反射率"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0df58f80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of glass layers within the frame. E.g. \"2\" for double glazing." ; + rdfs:label "GlassLayers" ; + IFC4-PSD:definition "Number of glass layers within the frame. E.g. \"2\" for double glazing." ; + IFC4-PSD:definitionAlias "German-description-1"@de-DE , "框内玻璃的层数。例如:”2”表示双层玻璃。"@zh-CN , ""@en , "ガラスの枚数。例:\"2\"はペアガラス。"@ja-JP , "Nombre de couches de verre dans le cadre. Exemple : 2 pour le double vitrage."@fr-FR ; + IFC4-PSD:ifdguid "0df58f80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "GlassLayers" ; + IFC4-PSD:nameAlias "Glass Layers"@en , "玻璃层数"@zh-CN , "German-name-1"@de-DE , "ガラス枚数"@ja-JP , "NombreVitrages"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:p2796d700d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the second (intermediate or outer) glass layer." ; + rdfs:label "GlassThickness2" ; + IFC4-PSD:definition "Thickness of the second (intermediate or outer) glass layer." ; + IFC4-PSD:definitionAlias "Epaisseur de la deuxième couche de verre (intermédiaire ou côté extérieur)"@fr-FR , ""@en , "2番目(中間、あるいは外側)のガラスの厚み。"@ja-JP , "第二层(中间或外侧)玻璃的厚度。"@zh-CN , "German-description-3"@de-DE ; + IFC4-PSD:ifdguid "2796d700d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "GlassThickness2" ; + IFC4-PSD:nameAlias "EpaisseurVitrage2"@fr-FR , "German-name-3"@de-DE , "ガラス厚2"@ja-JP , "Glass Thickness2"@en , "玻璃厚度2"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SolarHeatGainTransmittance + a rdf:Property ; + rdfs:seeAlso :p91af7c00d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarHeatGainTransmittance . + +:IsLaminated a rdf:Property ; + rdfs:seeAlso :p5dd45680d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsLaminated . + +:p69278200d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the glass is coated with a material (TRUE) or not (FALSE)." ; + rdfs:label "IsCoated" ; + IFC4-PSD:definition "Indication whether the glass is coated with a material (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "表示玻璃是否具有某种材料的镀膜。"@zh-CN , ""@en , "Indique si le verre a subi un traitement de surface (VRAI) ou non (FAUX)."@fr-FR , "ガラスがコーティングされいるか(TRUE)否か(FALSE)示す。"@ja-JP , "German-description-9"@de-DE ; + IFC4-PSD:ifdguid "69278200d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "IsCoated" ; + IFC4-PSD:nameAlias "Is Coated"@en , "コーティング"@ja-JP , "VitrageTraite"@fr-FR , "German-name-9"@de-DE , "是否镀膜"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p88beaa80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(Rsol): The ratio of incident solar radiation that is reflected by a glazing system (also named ρe). Note the following equation Asol + Rsol + Tsol = 1" ; + rdfs:label "SolarReflectance" ; + IFC4-PSD:definition "(Rsol): The ratio of incident solar radiation that is reflected by a glazing system (also named ρe). Note the following equation Asol + Rsol + Tsol = 1" ; + IFC4-PSD:definitionAlias "(Rsol). Ratio du rayonnement solaire incident qui est réfléchi par le vitrage. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR , "German-description-14"@de-DE , "(Rsol)ガラスで反射する日射の比率(ρeとも表わされる)。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP , ""@en , "(Rsol)被玻璃系统反射的太阳入射辐射的比率(也可用ρe表示)。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN ; + IFC4-PSD:ifdguid "88beaa80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarReflectance" ; + IFC4-PSD:nameAlias "太阳能反射率"@zh-CN , "Solar Reflectance"@en , "Strahlungsreflectionsgrad"@de-DE , "日射反射率"@ja-JP , "ReflexionRayonnementSolaire"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p51e89480d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the glass is tempered (TRUE) or not (FALSE) ." ; + rdfs:label "IsTempered" ; + IFC4-PSD:definition "Indication whether the glass is tempered (TRUE) or not (FALSE) ." ; + IFC4-PSD:definitionAlias ""@en , "Indique si le verre est trempé (VRAI) ou non (FAUX)."@fr-FR , "表示玻璃是否经过强化处理。"@zh-CN , "強化ガラスか(TRUE)否か(FALSE)を示す。"@ja-JP , "German-description-7"@de-DE ; + IFC4-PSD:ifdguid "51e89480d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "IsTempered" ; + IFC4-PSD:nameAlias "是否钢化"@zh-CN , "強化ガラス"@ja-JP , "VitrageTrempe"@fr-FR , "Is Tempered"@en , "German-name-7"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:IsTempered a rdf:Property ; + rdfs:seeAlso :p51e89480d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsTempered . + +:p8ceac800d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(Tsol): The ratio of incident solar radiation that directly passes through a glazing system (also named τe). Note the following equation Asol + Rsol + Tsol = 1" ; + rdfs:label "SolarTransmittance" ; + IFC4-PSD:definition "(Tsol): The ratio of incident solar radiation that directly passes through a glazing system (also named τe). Note the following equation Asol + Rsol + Tsol = 1" ; + IFC4-PSD:definitionAlias "German-description-15"@de-DE , "(Tsol)ガラスを透過する日射の比率(τeとも表わされる)。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP , "(Tsol)透过玻璃系统的太阳入射辐射的比率(也可用τe表示)。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN , "(Tsol). Ratio du rayonnement solaire incident qui est transmis directement par le vitrage. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "8ceac800d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarTransmittance" ; + IFC4-PSD:nameAlias "太阳能透射率"@zh-CN , "TransmissionRayonnementSolaire"@fr-FR , "Strahlungstransmissionsgrad"@de-DE , "Solar Transmittance"@en , "日射透過率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:ThermalTransmittanceWinter + a rdf:Property ; + rdfs:seeAlso :p9e33d480d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittanceWinter . + +:SolarAbsorption a rdf:Property ; + rdfs:seeAlso :p84928d00d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarAbsorption . + +:p95db9980d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(SC): The measure of the ability of a glazing to transmit solar heat, relative to that ability for 3 mm (1/8-inch) clear, double-strength, single glass. Shading coefficient is being phased out in favor of the solar heat gain coefficient (SHGC), and is approximately equal to the SHGC multiplied by 1.15. The shading coefficient is expressed as a number without units between 0 and 1." ; + rdfs:label "ShadingCoefficient" ; + IFC4-PSD:definition "(SC): The measure of the ability of a glazing to transmit solar heat, relative to that ability for 3 mm (1/8-inch) clear, double-strength, single glass. Shading coefficient is being phased out in favor of the solar heat gain coefficient (SHGC), and is approximately equal to the SHGC multiplied by 1.15. The shading coefficient is expressed as a number without units between 0 and 1." ; + IFC4-PSD:definitionAlias "Das Verhältnis aus g-Wert der jeweiligen Verglasung und dem g-Wert eines Zweischeiben-Normalglasfensters.\nDer g-Wert dieses Zweischeiben-Normalglasfensters wird als Konstante mit 80 % angesetzt. Bei Einfachglas beträgt die Konstante 87 %, Auch \"Shading coefficient\" genannt."@de-DE , ""@en , "(SC): Mesure de la capacité d'un vitrage à transmettre l'énergie solaire comparativement à un simple vitrage clair, de 3 mm (double renfort). Le coefficient d'atténuation est supprimé progressivement en faveur du coefficient d'apport solaire (SHGC) et est approximativement égal au SHGC multiplié par 1,15. Le coefficient d'atténuation est exprimé comme nombre sans unités entre 0 et 1."@fr-FR , "(SC)玻璃传递太阳热量能力的度量,以3mm(1/8英寸)透明双倍强度单层玻璃为基准。遮阳系数有被太阳能得热系数(SHGC)取代的趋势,其值约为SHGC的1.15倍。遮阳系数以大于0小于1的无单位数表示。"@zh-CN , "(SC): ガラスの太陽熱伝導の基準、3mm(1/8インチ)透明の一枚ガラスの性能との比。遮蔽係数は太陽熱利得係数(SHGC)に移行し、段階的に廃止、SHGC×1.15とほとんど等しい。遮蔽係数は0から1までの単位無しの値。"@ja-JP ; + IFC4-PSD:ifdguid "95db9980d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "ShadingCoefficient" ; + IFC4-PSD:nameAlias "遮阳系数"@zh-CN , "CoefficientOmbrage"@fr-FR , "遮蔽係数"@ja-JP , "Shading Coefficient"@en , "mittlere Durchlassfaktor b"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p1a79e800d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the first (inner) glass layer." ; + rdfs:label "GlassThickness1" ; + IFC4-PSD:definition "Thickness of the first (inner) glass layer." ; + IFC4-PSD:definitionAlias "第一层(内侧)玻璃的厚度。"@zh-CN , "Epaisseur de la première couche de verre (côté intérieur)"@fr-FR , ""@en , "German-description-2"@de-DE , "最初の(室内側)ガラスの厚み。"@ja-JP ; + IFC4-PSD:ifdguid "1a79e800d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "GlassThickness1" ; + IFC4-PSD:nameAlias "Glass Thickness1"@en , "EpaisseurVitrage1"@fr-FR , "ガラス厚1"@ja-JP , "玻璃厚度1"@zh-CN , "German-name-2"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p48f7c300d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Color (tint) selection for this glazing. It is given for information purposes only." ; + rdfs:label "GlassColor" ; + IFC4-PSD:definition "Color (tint) selection for this glazing. It is given for information purposes only." ; + IFC4-PSD:definitionAlias ""@en , "ガラスの色合い。これは情報目的専用に提供される。"@ja-JP , "玻璃(贴膜)的颜色。仅供参考。"@zh-CN , "German-description-6"@de-DE , "Choix de la couleur (teinte) du vitrage. Donné à titre informatif seulement."@fr-FR ; + IFC4-PSD:ifdguid "48f7c300d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "GlassColor" ; + IFC4-PSD:nameAlias "CouleurVitrage"@fr-FR , "玻璃颜色"@zh-CN , "ガラス色"@ja-JP , "German-name-6"@de-DE , "Glass Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:GlassColor a rdf:Property ; + rdfs:seeAlso :p48f7c300d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlassColor . + +:p80666f80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the visible light that passes the glazing at normal incidence. It is a value without unit." ; + rdfs:label "VisibleLightTransmittance" ; + IFC4-PSD:definition "Fraction of the visible light that passes the glazing at normal incidence. It is a value without unit." ; + IFC4-PSD:definitionAlias ""@en , "正射时穿透玻璃的可见光比例。无单位。"@zh-CN , "ガラスへ法線入射した可視光の透過率。単位の無い値。"@ja-JP , "German-description-11"@de-DE , "Fraction du rayonnement visible qui est transmise par le vitrage sous incidence normale. Valeur sans unité."@fr-FR ; + IFC4-PSD:ifdguid "80666f80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleLightTransmittance" ; + IFC4-PSD:nameAlias "Visible Light Transmittance"@en , "Transmissionsgrad für sichtbares Licht"@de-DE , "TransmittanceVisible"@fr-FR , "可視光透過率"@ja-JP , "可见光透射率"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:ShadingCoefficient a rdf:Property ; + rdfs:seeAlso :p95db9980d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShadingCoefficient . + +:p9a07b700d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nSummer thermal transmittance coefficient of the glazing only, often referred to as (U-value)." ; + rdfs:label "ThermalTransmittanceSummer" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nSummer thermal transmittance coefficient of the glazing only, often referred to as (U-value)." ; + IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Coefficient de transmission thermique en été du vitrage seul, souvent désigné comme étant Uw."@fr-FR , "材料的导热系数(U值)。\n仅玻璃的夏季导热系数,常以U值表示。"@zh-CN , "German-description-17"@de-DE , ""@en , "素材の熱透過係数(U値)。夏期のガラスの熱透過係数だけ、U値として参照される"@ja-JP ; + IFC4-PSD:ifdguid "9a07b700d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittanceSummer" ; + IFC4-PSD:nameAlias "夏期の熱透過係数"@ja-JP , "TransmittanceThermiqueEte"@fr-FR , "German-name-15"@de-DE , "Thermal Transmittance Summer"@en , "夏季导热系数"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:SolarTransmittance a rdf:Property ; + rdfs:seeAlso :p8ceac800d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarTransmittance . + +:GlassLayers a rdf:Property ; + rdfs:seeAlso :p0df58f80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlassLayers . + +:ThermalTransmittanceSummer + a rdf:Property ; + rdfs:seeAlso :p9a07b700d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittanceSummer . + +:p72185380d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the glass includes a contained wire mesh to prevent break-in (TRUE) or not (FALSE)" ; + rdfs:label "IsWired" ; + IFC4-PSD:definition "Indication whether the glass includes a contained wire mesh to prevent break-in (TRUE) or not (FALSE)" ; + IFC4-PSD:definitionAlias "Indique si le verre est un verre armé à maille anti-effraction (VRAI) ou non (FAUX)"@fr-FR , "不法侵入防止の網入りガラスか(TRUE)否か(FALSE)示す。"@ja-JP , "German-description-10"@de-DE , ""@en , "表示玻璃是否具有防断裂的纤维网格。"@zh-CN ; + IFC4-PSD:ifdguid "72185380d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "IsWired" ; + IFC4-PSD:nameAlias "網入りガラス"@ja-JP , "Is Wired"@en , "VitrageArme"@fr-FR , "German-name-10"@de-DE , "是否夹丝"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:GlassThickness3 a rdf:Property ; + rdfs:seeAlso :p32516c00d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlassThickness3 . + +:VisibleLightReflectance + a rdf:Property ; + rdfs:seeAlso :p7a708e80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleLightReflectance . + +:FillGas a rdf:Property ; + rdfs:seeAlso :p3da49780d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FillGas . + +:p84928d00d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(Asol) The ratio of incident solar radiation that is absorbed by a glazing system. It is the sum of the absorption distributed to the exterior (a) and to the interior (qi). Note the following equation Asol + Rsol + Tsol = 1" ; + rdfs:label "SolarAbsorption" ; + IFC4-PSD:definition "(Asol) The ratio of incident solar radiation that is absorbed by a glazing system. It is the sum of the absorption distributed to the exterior (a) and to the interior (qi). Note the following equation Asol + Rsol + Tsol = 1" ; + IFC4-PSD:definitionAlias "German-description-13"@de-DE , "(Asol)ガラスで吸収される日射の比率。吸収の合計は外部(a)と、室内(qi)に分配される。以下の方程式に注意。Asol + Rsol + Tsol = 1"@ja-JP , ""@en , "(Asol). Ratio du rayonnement solaire incident qui est absorbé par le vitrage. Somme de l'absorption distribuée à l'extérieur (a) et à l'intérieur (qi). Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR , "(Asol)被玻璃系统吸收的太阳入射辐射的比率,为传递到室外和室内的吸收的总量。注:以下等式成立Asol + Rsol + Tsol = 1"@zh-CN ; + IFC4-PSD:ifdguid "84928d00d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarAbsorption" ; + IFC4-PSD:nameAlias "Solar Absorption"@en , "AbsorptionRayonnementSolaire"@fr-FR , "日射吸収率"@ja-JP , "太阳能吸收率"@zh-CN , "Strahlungsabsorbtionsgrad"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctFittingOccurrence.ttl b/converter/src/main/resources/pset/Pset_DuctFittingOccurrence.ttl new file mode 100644 index 00000000..46a5b436 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctFittingOccurrence.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:peb17ab00d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the duct segment.\n\nNote: This is typically used for any duct segments with a painted surface which is not otherwise specified as a covering." ; + rdfs:label "Color" ; + IFC4-PSD:definition "The color of the duct segment.\n\nNote: This is typically used for any duct segments with a painted surface which is not otherwise specified as a covering." ; + IFC4-PSD:definitionAlias ""@en , "ダクト継手の色\nメモ:塗装されているときに使用される。他の場合は仕上げとして定義"@ja-JP ; + IFC4-PSD:ifdguid "eb17ab00d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:nameAlias "色"@ja-JP , "Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pe0f5ac80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The interior roughness of the duct fitting material." ; + rdfs:label "InteriorRoughnessCoefficient" ; + IFC4-PSD:definition "The interior roughness of the duct fitting material." ; + IFC4-PSD:definitionAlias "ダクト継手材料の内面粗さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e0f5ac80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorRoughnessCoefficient" ; + IFC4-PSD:nameAlias "内面粗さ係数"@ja-JP , "Interior Roughness Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_DuctFittingOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct fitting occurrence attributes." ; + rdfs:label "Pset_DuctFittingOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcDuctFitting ; + IFC4-PSD:applicableTypeValue "IfcDuctFitting" ; + IFC4-PSD:definition "Duct fitting occurrence attributes." ; + IFC4-PSD:definitionAlias ""@en , "ダクト継手の属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctFittingOccurrence" ; + IFC4-PSD:propertyDef :pe652f700d1dd11e1800000215ad4efdf , :pe0f5ac80d1dd11e1800000215ad4efdf , :peb17ab00d1dd11e1800000215ad4efdf . + +:pe652f700d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the fitting has interior duct insulating lining, FALSE if it does not." ; + rdfs:label "HasLiner" ; + IFC4-PSD:definition "TRUE if the fitting has interior duct insulating lining, FALSE if it does not." ; + IFC4-PSD:definitionAlias "内貼り保温ダクト内面にあるときにTRUE。無い時にFALSE"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e652f700d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "HasLiner" ; + IFC4-PSD:nameAlias "内張り有無"@ja-JP , "Has Liner"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasLiner a rdf:Property ; + rdfs:seeAlso :pe652f700d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasLiner . + +:InteriorRoughnessCoefficient + a rdf:Property ; + rdfs:seeAlso :pe0f5ac80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorRoughnessCoefficient . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Color a rdf:Property ; + rdfs:seeAlso :peb17ab00d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Color . diff --git a/converter/src/main/resources/pset/Pset_DuctFittingPHistory.ttl b/converter/src/main/resources/pset/Pset_DuctFittingPHistory.ttl new file mode 100644 index 00000000..8a3ad8e0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctFittingPHistory.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AtmosphericPressure a rdf:Property ; + rdfs:seeAlso :pf8cd3080d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericPressure . + +:pf66ad680d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + rdfs:label "LossCoefficient" ; + IFC4-PSD:definition "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + IFC4-PSD:definitionAlias ""@en , "参照された断面での動圧に対する全圧損失の比を表わす流体抵抗の計算に使用される無次元の損失係数"@ja-JP ; + IFC4-PSD:ifdguid "f66ad680d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "LossCoefficient" ; + IFC4-PSD:nameAlias "Loss Coefficient"@en , "損失係数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirFlowLeakage a rdf:Property ; + rdfs:seeAlso :pfb2f8a80d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowLeakage . + +:Pset_DuctFittingPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct fitting performance history common attributes." ; + rdfs:label "Pset_DuctFittingPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcDuctFitting ; + IFC4-PSD:applicableTypeValue "IfcDuctFitting" ; + IFC4-PSD:definition "Duct fitting performance history common attributes." ; + IFC4-PSD:definitionAlias "ダクト継手の性能履歴共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctFittingPHistory" ; + IFC4-PSD:propertyDef :pf66ad680d1dd11e1800000215ad4efdf , :pfb2f8a80d1dd11e1800000215ad4efdf , :pf8cd3080d1dd11e1800000215ad4efdf . + +:pfb2f8a80d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric leakage flow rate." ; + rdfs:label "AirFlowLeakage" ; + IFC4-PSD:definition "Volumetric leakage flow rate." ; + IFC4-PSD:definitionAlias ""@en , "体積漏れ流量"@ja-JP ; + IFC4-PSD:ifdguid "fb2f8a80d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowLeakage" ; + IFC4-PSD:nameAlias "Air Flow Leakage"@en , "漏れ量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LossCoefficient a rdf:Property ; + rdfs:seeAlso :pf66ad680d1dd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LossCoefficient . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf8cd3080d1dd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient atmospheric pressure." ; + rdfs:label "AtmosphericPressure" ; + IFC4-PSD:definition "Ambient atmospheric pressure." ; + IFC4-PSD:definitionAlias ""@en , "周囲の大気圧"@ja-JP ; + IFC4-PSD:ifdguid "f8cd3080d1dd11e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericPressure" ; + IFC4-PSD:nameAlias "大気圧"@ja-JP , "Atmospheric Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctFittingTypeCommon.ttl b/converter/src/main/resources/pset/Pset_DuctFittingTypeCommon.ttl new file mode 100644 index 00000000..56b9f329 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctFittingTypeCommon.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :p04205c00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p097da680d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "097da680d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p1601ff00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)." ; + rdfs:label "PressureClass" ; + IFC4-PSD:definition "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)." ; + IFC4-PSD:definitionAlias ""@en , "管轄権を持つ当局(SMACNAなど)によって定義された圧力分類"@ja-JP ; + IFC4-PSD:ifdguid "1601ff00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureClass" ; + IFC4-PSD:nameAlias "圧力クラス"@ja-JP , "Pressure Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p1ac6b300d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + rdfs:label "PressureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + IFC4-PSD:definitionAlias ""@en , "許容最大・最小動作圧力(周辺圧力との相対値)"@ja-JP ; + IFC4-PSD:ifdguid "1ac6b300d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRange" ; + IFC4-PSD:nameAlias "圧力範囲"@ja-JP , "Pressure Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DuctFittingTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct fitting type common attributes." ; + rdfs:label "Pset_DuctFittingTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDuctFitting ; + IFC4-PSD:applicableTypeValue "IfcDuctFitting" ; + IFC4-PSD:definition "Duct fitting type common attributes." ; + IFC4-PSD:definitionAlias "ダクト継手形式共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctFittingTypeCommon" ; + IFC4-PSD:propertyDef :p1ac6b300d1de11e1800000215ad4efdf , :p097da680d1de11e1800000215ad4efdf , :p04205c00d1de11e1800000215ad4efdf , :p1601ff00d1de11e1800000215ad4efdf , :p21edc100d1de11e1800000215ad4efdf . + +:p21edc100d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum temperature." ; + IFC4-PSD:definitionAlias "許容最高・最低温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "21edc100d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "温度範囲"@ja-JP , "Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:PressureClass a rdf:Property ; + rdfs:seeAlso :p1601ff00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureClass . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :p21edc100d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:PressureRange a rdf:Property ; + rdfs:seeAlso :p1ac6b300d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRange . + +:Status a rdf:Property ; + rdfs:seeAlso :p097da680d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p04205c00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "04205c00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctSegmentOccurrence.ttl b/converter/src/main/resources/pset/Pset_DuctSegmentOccurrence.ttl new file mode 100644 index 00000000..8c1f980b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctSegmentOccurrence.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_DuctSegmentOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct segment occurrence attributes attached to an instance of IfcDuctSegment." ; + rdfs:label "Pset_DuctSegmentOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcDuctSegment ; + IFC4-PSD:applicableTypeValue "IfcDuctSegment" ; + IFC4-PSD:definition "Duct segment occurrence attributes attached to an instance of IfcDuctSegment." ; + IFC4-PSD:definitionAlias ""@en , "IfcDuctSegmentの値に関連づいたダクト直管の属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctSegmentOccurrence" ; + IFC4-PSD:propertyDef :p3467fa80d1de11e1800000215ad4efdf , :p3a5ddb80d1de11e1800000215ad4efdf , :p2e721980d1de11e1800000215ad4efdf . + +:Color a rdf:Property ; + rdfs:seeAlso :p3a5ddb80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Color . + +:InteriorRoughnessCoefficient + a rdf:Property ; + rdfs:seeAlso :p2e721980d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorRoughnessCoefficient . + +:p3a5ddb80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the duct segment.\n\nNote: This is typically used for any duct segments with a painted surface which is not otherwise specified as a covering." ; + rdfs:label "Color" ; + IFC4-PSD:definition "The color of the duct segment.\n\nNote: This is typically used for any duct segments with a painted surface which is not otherwise specified as a covering." ; + IFC4-PSD:definitionAlias ""@en , "ダクト継手の色\nメモ:塗装されているときに使用される。他の場合は仕上げとして定義"@ja-JP ; + IFC4-PSD:ifdguid "3a5ddb80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:nameAlias "色"@ja-JP , "Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p3467fa80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the fitting has interior duct insulating lining, FALSE if it does not." ; + rdfs:label "HasLiner" ; + IFC4-PSD:definition "TRUE if the fitting has interior duct insulating lining, FALSE if it does not." ; + IFC4-PSD:definitionAlias ""@en , "内貼り保温ダクト内面にあるときにTRUE。無い時にFALSE"@ja-JP ; + IFC4-PSD:ifdguid "3467fa80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "HasLiner" ; + IFC4-PSD:nameAlias "内張り有無"@ja-JP , "Has Liner"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasLiner a rdf:Property ; + rdfs:seeAlso :p3467fa80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasLiner . + +:p2e721980d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The interior roughness of the duct fitting material." ; + rdfs:label "InteriorRoughnessCoefficient" ; + IFC4-PSD:definition "The interior roughness of the duct fitting material." ; + IFC4-PSD:definitionAlias "ダクト継手材料の内面粗さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2e721980d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorRoughnessCoefficient" ; + IFC4-PSD:nameAlias "内面粗さ係数"@ja-JP , "Interior Roughness Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctSegmentPHistory.ttl b/converter/src/main/resources/pset/Pset_DuctSegmentPHistory.ttl new file mode 100644 index 00000000..e1696a97 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctSegmentPHistory.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p52cdf600d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Leakage per unit length curve versus working pressure. If a scalar is expressed then it represents LeakageClass which is flowrate per unit area at a specified pressure rating (e.g., ASHRAE Fundamentals 2001 34.16.)." ; + rdfs:label "LeakageCurve" ; + IFC4-PSD:definition "Leakage per unit length curve versus working pressure. If a scalar is expressed then it represents LeakageClass which is flowrate per unit area at a specified pressure rating (e.g., ASHRAE Fundamentals 2001 34.16.)." ; + IFC4-PSD:definitionAlias "作動圧力に対する単位長さあたりの漏れ曲線。\nスカラー値が表現されている場合は、所定の圧力(例えば、ASHRAE Fundamentals 200134.16)における単位面積当たりの流量である漏れクラスを表す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "52cdf600d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "LeakageCurve" ; + IFC4-PSD:nameAlias "漏れ曲線"@ja-JP , "Leakage Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4ba6e800d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + rdfs:label "LossCoefficient" ; + IFC4-PSD:definition "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + IFC4-PSD:definitionAlias "参照された断面での動圧に対する全圧損失の比を表わす流体抵抗の計算に使用される無次元の損失係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4ba6e800d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "LossCoefficient" ; + IFC4-PSD:nameAlias "損失係数"@ja-JP , "Loss Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FluidFlowLeakage a rdf:Property ; + rdfs:seeAlso :p5a8d9a80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FluidFlowLeakage . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_DuctSegmentPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct segment performance history common attributes." ; + rdfs:label "Pset_DuctSegmentPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcDuctSegment ; + IFC4-PSD:applicableTypeValue "IfcDuctSegment" ; + IFC4-PSD:definition "Duct segment performance history common attributes." ; + IFC4-PSD:definitionAlias "ダクト直管性能履歴共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctSegmentPHistory" ; + IFC4-PSD:propertyDef :p5a8d9a80d1de11e1800000215ad4efdf , :p4f3a6f00d1de11e1800000215ad4efdf , :p52cdf600d1de11e1800000215ad4efdf , :p4ba6e800d1de11e1800000215ad4efdf . + +:LossCoefficient a rdf:Property ; + rdfs:seeAlso :p4ba6e800d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LossCoefficient . + +:p5a8d9a80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric leakage flow rate." ; + rdfs:label "FluidFlowLeakage" ; + IFC4-PSD:definition "Volumetric leakage flow rate." ; + IFC4-PSD:definitionAlias "体積漏れ流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5a8d9a80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "FluidFlowLeakage" ; + IFC4-PSD:nameAlias "漏れ量"@ja-JP , "Fluid Flow Leakage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p4f3a6f00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient atmospheric pressure." ; + rdfs:label "AtmosphericPressure" ; + IFC4-PSD:definition "Ambient atmospheric pressure." ; + IFC4-PSD:definitionAlias ""@en , "周囲の大気圧"@ja-JP ; + IFC4-PSD:ifdguid "4f3a6f00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericPressure" ; + IFC4-PSD:nameAlias "Atmospheric Pressure"@en , "大気圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AtmosphericPressure a rdf:Property ; + rdfs:seeAlso :p4f3a6f00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericPressure . + +:LeakageCurve a rdf:Property ; + rdfs:seeAlso :p52cdf600d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeakageCurve . diff --git a/converter/src/main/resources/pset/Pset_DuctSegmentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_DuctSegmentTypeCommon.ttl new file mode 100644 index 00000000..de1c2d7f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctSegmentTypeCommon.ttl @@ -0,0 +1,214 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:LongitudinalSeam a rdf:Property ; + rdfs:seeAlso :pa3455380d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongitudinalSeam . + +:pa8a29e00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter or width of the duct segment." ; + rdfs:label "NominalDiameterOrWidth" ; + IFC4-PSD:definition "The nominal diameter or width of the duct segment." ; + IFC4-PSD:definitionAlias ""@en , "ダクト直管の呼び径またはダクト巾"@ja-JP ; + IFC4-PSD:ifdguid "a8a29e00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDiameterOrWidth" ; + IFC4-PSD:nameAlias "Nominal Diameter Or Width"@en , "呼び径・巾"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p66795c80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "66795c80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p6bd6a700d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "6bd6a700d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p9c1e4580d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum temperature." ; + IFC4-PSD:definitionAlias ""@en , "許容最高・最低温度"@ja-JP ; + IFC4-PSD:ifdguid "9c1e4580d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "温度範囲"@ja-JP , "Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pb6f0ba00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of reinforcement, if any, used for the duct segment." ; + rdfs:label "Reinforcement" ; + IFC4-PSD:definition "The type of reinforcement, if any, used for the duct segment." ; + IFC4-PSD:definitionAlias "ダクト直管に何か使用されている場合の補強種類"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b6f0ba00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Reinforcement" ; + IFC4-PSD:nameAlias "補強"@ja-JP , "Reinforcement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p6bd6a700d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_DuctSegmentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct segment type common attributes." ; + rdfs:label "Pset_DuctSegmentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDuctSegment ; + IFC4-PSD:applicableTypeValue "IfcDuctSegment" ; + IFC4-PSD:definition "Duct segment type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "ダクト直管タイプ共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctSegmentTypeCommon" ; + IFC4-PSD:propertyDef :p7d1fb380d1de11e1800000215ad4efdf , :p9c1e4580d1de11e1800000215ad4efdf , :pb0624280d1de11e1800000215ad4efdf , :pa8a29e00d1de11e1800000215ad4efdf , :p66795c80d1de11e1800000215ad4efdf , :p6bd6a700d1de11e1800000215ad4efdf , :pb6f0ba00d1de11e1800000215ad4efdf , :p9163b080d1de11e1800000215ad4efdf , :p8c066600d1de11e1800000215ad4efdf , :pa3455380d1de11e1800000215ad4efdf , :pbce69b00d1de11e1800000215ad4efdf . + +:p8c066600d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)." ; + rdfs:label "WorkingPressure" ; + IFC4-PSD:definition "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)." ; + IFC4-PSD:definitionAlias ""@en , "管轄権を持つ当局(SMACNAなど)によって定義された圧力分類"@ja-JP ; + IFC4-PSD:ifdguid "8c066600d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "WorkingPressure" ; + IFC4-PSD:nameAlias "圧力クラス"@ja-JP , "Working Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pb0624280d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the duct segment." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the duct segment." ; + IFC4-PSD:definitionAlias ""@en , "ダクト直管の高さ"@ja-JP ; + IFC4-PSD:ifdguid "b0624280d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "呼び高さ"@ja-JP , "Nominal Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pbce69b00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The spacing between reinforcing elements." ; + rdfs:label "ReinforcementSpacing" ; + IFC4-PSD:definition "The spacing between reinforcing elements." ; + IFC4-PSD:definitionAlias ""@en , "補強要素間の距離"@ja-JP ; + IFC4-PSD:ifdguid "bce69b00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "ReinforcementSpacing" ; + IFC4-PSD:nameAlias "Reinforcement Spacing"@en , "補強間隔"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:PressureRange a rdf:Property ; + rdfs:seeAlso :p9163b080d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRange . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :pb0624280d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:p7d1fb380d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cross sectional shape. Note that this shape is uniform throughout the length of the segment. For nonuniform shapes, a transition fitting should be used instead." ; + rdfs:label "Shape" ; + IFC4-PSD:definition "Cross sectional shape. Note that this shape is uniform throughout the length of the segment. For nonuniform shapes, a transition fitting should be used instead." ; + IFC4-PSD:definitionAlias "断面形状:\nこの形状は直管を通じて一定である。変形する形状のためには、かわりに変形継手が使用される。(フラットオーバル、角型、丸型 他)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7d1fb380d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Shape" ; + IFC4-PSD:nameAlias "Shape"@en , "形状"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FLATOVAL" , "RECTANGULAR" , "ROUND" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reinforcement a rdf:Property ; + rdfs:seeAlso :pb6f0ba00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reinforcement . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WorkingPressure a rdf:Property ; + rdfs:seeAlso :p8c066600d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkingPressure . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :p9c1e4580d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:Reference a rdf:Property ; + rdfs:seeAlso :p66795c80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Shape a rdf:Property ; + rdfs:seeAlso :p7d1fb380d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Shape . + +:ReinforcementSpacing + a rdf:Property ; + rdfs:seeAlso :pbce69b00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReinforcementSpacing . + +:NominalDiameterOrWidth + a rdf:Property ; + rdfs:seeAlso :pa8a29e00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDiameterOrWidth . + +:pa3455380d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of seam to be used along the longitudinal axis of the duct segment." ; + rdfs:label "LongitudinalSeam" ; + IFC4-PSD:definition "The type of seam to be used along the longitudinal axis of the duct segment." ; + IFC4-PSD:definitionAlias ""@en , "ハゼの種類は、ダクト直管の縦方向に使用するハゼの種類"@ja-JP ; + IFC4-PSD:ifdguid "a3455380d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "LongitudinalSeam" ; + IFC4-PSD:nameAlias "ハゼ"@ja-JP , "Longitudinal Seam"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p9163b080d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + rdfs:label "PressureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + IFC4-PSD:definitionAlias ""@en , "許容最大・最小動作圧力(周辺圧力との相対値)"@ja-JP ; + IFC4-PSD:ifdguid "9163b080d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRange" ; + IFC4-PSD:nameAlias "圧力範囲"@ja-JP , "Pressure Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctSilencerPHistory.ttl b/converter/src/main/resources/pset/Pset_DuctSilencerPHistory.ttl new file mode 100644 index 00000000..463585ec --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctSilencerPHistory.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_DuctSilencerPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct silencer performance history common attributes." ; + rdfs:label "Pset_DuctSilencerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcDuctSilencer ; + IFC4-PSD:applicableTypeValue "IfcDuctSilencer" ; + IFC4-PSD:definition "Duct silencer performance history common attributes." ; + IFC4-PSD:definitionAlias "ダクト消音器の性能履歴共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctSilencerPHistory" ; + IFC4-PSD:propertyDef :pce2fa780d1de11e1800000215ad4efdf , :pca038a00d1de11e1800000215ad4efdf . + +:pce2fa780d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop as a function of air flow rate." ; + rdfs:label "AirPressureDropCurve" ; + IFC4-PSD:definition "Air pressure drop as a function of air flow rate." ; + IFC4-PSD:definitionAlias "風量の関数としての空気圧力降下"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ce2fa780d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurve" ; + IFC4-PSD:nameAlias "圧力降下曲線"@ja-JP , "Air Pressure Drop Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AirFlowRate a rdf:Property ; + rdfs:seeAlso :pca038a00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowRate . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AirPressureDropCurve + a rdf:Property ; + rdfs:seeAlso :pce2fa780d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurve . + +:pca038a00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric air flow rate." ; + rdfs:label "AirFlowRate" ; + IFC4-PSD:definition "Volumetric air flow rate." ; + IFC4-PSD:definitionAlias "体積風量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ca038a00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowRate" ; + IFC4-PSD:nameAlias "Air Flow Rate"@en , "風量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_DuctSilencerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_DuctSilencerTypeCommon.ttl new file mode 100644 index 00000000..cf717a6c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_DuctSilencerTypeCommon.ttl @@ -0,0 +1,180 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HydraulicDiameter a rdf:Property ; + rdfs:seeAlso :pef909380d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HydraulicDiameter . + +:p0636ea80d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable minimum and maximum working pressure (relative to ambient pressure)." ; + rdfs:label "WorkingPressureRange" ; + IFC4-PSD:definition "Allowable minimum and maximum working pressure (relative to ambient pressure)." ; + IFC4-PSD:definitionAlias ""@en , "許容最小・最大作動圧力(周囲圧との相対値)"@ja-JP ; + IFC4-PSD:ifdguid "0636ea80d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "WorkingPressureRange" ; + IFC4-PSD:nameAlias "Working Pressure Range"@en , "作動圧力範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:AirFlowrateRange a rdf:Property ; + rdfs:seeAlso :pfe774600d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirFlowrateRange . + +:pf919fb80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The weight of the silencer." ; + rdfs:label "Weight" ; + IFC4-PSD:definition "The weight of the silencer." ; + IFC4-PSD:definitionAlias ""@en , "サイレンサ重量"@ja-JP ; + IFC4-PSD:ifdguid "f919fb80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Weight" ; + IFC4-PSD:nameAlias "Weight"@en , "重さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pd7b90f80d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d7b90f80d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :p0f27bc00d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:Weight a rdf:Property ; + rdfs:seeAlso :pf919fb80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Weight . + +:Length a rdf:Property ; + rdfs:seeAlso :pf4554780d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Length . + +:pdd165a00d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "dd165a00d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p0f27bc00d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable minimum and maximum temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable minimum and maximum temperature." ; + IFC4-PSD:definitionAlias ""@en , "許容最低・最高温度"@ja-JP ; + IFC4-PSD:ifdguid "0f27bc00d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "温度範囲"@ja-JP , "Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:Pset_DuctSilencerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Duct silencer type common attributes.\nInsertionLoss and RegeneratedSound attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_DuctSilencerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDuctSilencer ; + IFC4-PSD:applicableTypeValue "IfcDuctSilencer" ; + IFC4-PSD:definition "Duct silencer type common attributes.\nInsertionLoss and RegeneratedSound attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en , "ダクト消音器共通属性\n\nInsertionLossとRegeneratedSoundはIFC2x2 psetの付録で削除された属性:IfcSoundPropertiesを代わりに使用します。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_DuctSilencerTypeCommon" ; + IFC4-PSD:propertyDef :pf919fb80d1de11e1800000215ad4efdf , :p177ff700d1df11e1800000215ad4efdf , :p0f27bc00d1df11e1800000215ad4efdf , :pfe774600d1de11e1800000215ad4efdf , :pdd165a00d1de11e1800000215ad4efdf , :p0636ea80d1df11e1800000215ad4efdf , :pd7b90f80d1de11e1800000215ad4efdf , :pf4554780d1de11e1800000215ad4efdf , :pef909380d1de11e1800000215ad4efdf . + +:pef909380d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Hydraulic diameter." ; + rdfs:label "HydraulicDiameter" ; + IFC4-PSD:definition "Hydraulic diameter." ; + IFC4-PSD:definitionAlias "水力直径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ef909380d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "HydraulicDiameter" ; + IFC4-PSD:nameAlias "Hydraulic Diameter"@en , "水力直径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pd7b90f80d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:HasExteriorInsulation + a rdf:Property ; + rdfs:seeAlso :p177ff700d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasExteriorInsulation . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Status a rdf:Property ; + rdfs:seeAlso :pdd165a00d1de11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p177ff700d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the silencer has exterior insulation. FALSE if it does not." ; + rdfs:label "HasExteriorInsulation" ; + IFC4-PSD:definition "TRUE if the silencer has exterior insulation. FALSE if it does not." ; + IFC4-PSD:definitionAlias "サイレンサに外部保温があるときTRUE"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "177ff700d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "HasExteriorInsulation" ; + IFC4-PSD:nameAlias "Has Exterior Insulation"@en , "外部保温"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf4554780d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The finished length of the silencer." ; + rdfs:label "Length" ; + IFC4-PSD:definition "The finished length of the silencer." ; + IFC4-PSD:definitionAlias ""@en , "サイレンサの仕上げ長さ"@ja-JP ; + IFC4-PSD:ifdguid "f4554780d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "Length" ; + IFC4-PSD:nameAlias "Length"@en , "長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:pfe774600d1de11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Possible range of airflow that can be delivered." ; + rdfs:label "AirFlowrateRange" ; + IFC4-PSD:definition "Possible range of airflow that can be delivered." ; + IFC4-PSD:definitionAlias ""@en , "送風可能な風量範囲"@ja-JP ; + IFC4-PSD:ifdguid "fe774600d1de11e1800000215ad4efdf" ; + IFC4-PSD:name "AirFlowrateRange" ; + IFC4-PSD:nameAlias "Air Flowrate Range"@en , "流量範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:WorkingPressureRange + a rdf:Property ; + rdfs:seeAlso :p0636ea80d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkingPressureRange . diff --git a/converter/src/main/resources/pset/Pset_ElectricAppliancePHistory.ttl b/converter/src/main/resources/pset/Pset_ElectricAppliancePHistory.ttl new file mode 100644 index 00000000..2fbfb8ab --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricAppliancePHistory.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PowerState a rdf:Property ; + rdfs:seeAlso :p7180bc80d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerState . + +:p7180bc80d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the power state of the device where True is on and False is off." ; + rdfs:label "PowerState" ; + IFC4-PSD:definition "Indicates the power state of the device where True is on and False is off." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7180bc80d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "PowerState" ; + IFC4-PSD:nameAlias "Power State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_ElectricAppliancePHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Captures realtime information for electric appliances, such as for energy usage. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ElectricAppliancePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcElectricAppliance ; + IFC4-PSD:applicableTypeValue "IfcElectricAppliance" ; + IFC4-PSD:definition "Captures realtime information for electric appliances, such as for energy usage. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricAppliancePHistory" ; + IFC4-PSD:propertyDef :p7180bc80d1df11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ElectricApplianceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeCommon.ttl new file mode 100644 index 00000000..9e6aa023 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :p83faf600d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p7ba2bb00d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR ; + IFC4-PSD:ifdguid "7ba2bb00d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "참조"@ko-KR , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_ElectricApplianceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for electric appliances. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ElectricApplianceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricAppliance ; + IFC4-PSD:applicableTypeValue "IfcElectricAppliance" ; + IFC4-PSD:definition "Common properties for electric appliances. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "電化製品の共通プロパティ。\nIFC4にて追加。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricApplianceTypeCommon" ; + IFC4-PSD:propertyDef :p83faf600d1df11e1800000215ad4efdf , :p7ba2bb00d1df11e1800000215ad4efdf . + +:p83faf600d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "83faf600d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p7ba2bb00d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_ElectricApplianceTypeDishwasher.ttl b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeDishwasher.ttl new file mode 100644 index 00000000..be6ed2f0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeDishwasher.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pb0af0d80d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of dishwasher." ; + rdfs:label "DishwasherType" ; + IFC4-PSD:definition "Type of dishwasher." ; + IFC4-PSD:definitionAlias "식기 세척기의 유형"@ko-KR , "食器洗浄機のタイプ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b0af0d80d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "DishwasherType" ; + IFC4-PSD:nameAlias "식기 세척기의 유형"@ko-KR , "食器洗浄機のタイプ"@ja-JP , "Dishwasher Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "POTWASHER" , "TRAYWASHER" , "DISHWASHER" , "BOTTLEWASHER" , "CUTLERYWASHER" , "OTHER" , "UNKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ElectricApplianceTypeDishwasher + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for dishwasher appliances. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ElectricApplianceTypeDishwasher" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcElectricAppliance/DISHWASHER" ; + IFC4-PSD:definition "Common properties for dishwasher appliances. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "食器洗浄機の共通のプロパティ。\nIFC4にて追加。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricApplianceTypeDishwasher" ; + IFC4-PSD:propertyDef :pb0af0d80d1df11e1800000215ad4efdf . + +:DishwasherType a rdf:Property ; + rdfs:seeAlso :pb0af0d80d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DishwasherType . diff --git a/converter/src/main/resources/pset/Pset_ElectricApplianceTypeElectricCooker.ttl b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeElectricCooker.ttl new file mode 100644 index 00000000..eca7590a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricApplianceTypeElectricCooker.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pcb818200d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of electric cooker." ; + rdfs:label "ElectricCookerType" ; + IFC4-PSD:definition "Type of electric cooker." ; + IFC4-PSD:definitionAlias "電気調理器のタイプ。"@ja-JP , ""@en , "전자 조리기의 유형."@ko-KR ; + IFC4-PSD:ifdguid "cb818200d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricCookerType" ; + IFC4-PSD:nameAlias "Electric Cooker Type"@en , "전기 밥솥의 종류"@ko-KR , "電気調理器のタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COOKINGKETTLE" , "STEAMCOOKER" , "UNKNOWN" , "OVEN" , "OTHER" , "TILTINGFRYINGPAN" , "UNSET" , "STOVE" , "DEEPFRYER" + ] . + +:ElectricCookerType a rdf:Property ; + rdfs:seeAlso :pcb818200d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricCookerType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ElectricApplianceTypeElectricCooker + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for electric cooker appliances. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ElectricApplianceTypeElectricCooker" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcElectricAppliance/ELECTRICCOOKER" ; + IFC4-PSD:definition "Common properties for electric cooker appliances. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "電気調理器の共通プロパティ。\nIFC4にて追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricApplianceTypeElectricCooker" ; + IFC4-PSD:propertyDef :pcb818200d1df11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ElectricDistributionBoardOccurrence.ttl b/converter/src/main/resources/pset/Pset_ElectricDistributionBoardOccurrence.ttl new file mode 100644 index 00000000..0ed2c489 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricDistributionBoardOccurrence.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc8b9fc58cd024eeda3208ff916082beb + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies if the current instance is a main distribution point or topmost level in an electrical distribution hierarchy (= TRUE) or a sub-main distribution point (= FALSE)." ; + rdfs:label "IsMain" ; + IFC4-PSD:definition "Identifies if the current instance is a main distribution point or topmost level in an electrical distribution hierarchy (= TRUE) or a sub-main distribution point (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c8b9fc58cd024eeda3208ff916082beb" ; + IFC4-PSD:name "IsMain" ; + IFC4-PSD:nameAlias "Is Main"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p421bd7510cf947d8982953510c16a01a + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies if the current instance requires a skilled person or instructed person to perform operations on the distribution board (= TRUE) or whether operations may be performed by a person without appropriate skills or instruction (= FALSE)." ; + rdfs:label "IsSkilledOperator" ; + IFC4-PSD:definition "Identifies if the current instance requires a skilled person or instructed person to perform operations on the distribution board (= TRUE) or whether operations may be performed by a person without appropriate skills or instruction (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "421bd7510cf947d8982953510c16a01a" ; + IFC4-PSD:name "IsSkilledOperator" ; + IFC4-PSD:nameAlias "Is Skilled Operator"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_ElectricDistributionBoardOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that may be applied to electric distribution board occurrences." ; + rdfs:label "Pset_ElectricDistributionBoardOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcElectricDistributionBoard ; + IFC4-PSD:applicableTypeValue "IfcElectricDistributionBoard" ; + IFC4-PSD:definition "Properties that may be applied to electric distribution board occurrences." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricDistributionBoardOccurrence" ; + IFC4-PSD:propertyDef :pc8b9fc58cd024eeda3208ff916082beb , :p421bd7510cf947d8982953510c16a01a . + +:IsSkilledOperator a rdf:Property ; + rdfs:seeAlso :p421bd7510cf947d8982953510c16a01a ; + rdfs:subPropertyOf IFC4-PSD:IsSkilledOperator . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsMain a rdf:Property ; + rdfs:seeAlso :pc8b9fc58cd024eeda3208ff916082beb ; + rdfs:subPropertyOf IFC4-PSD:IsMain . diff --git a/converter/src/main/resources/pset/Pset_ElectricDistributionBoardTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricDistributionBoardTypeCommon.ttl new file mode 100644 index 00000000..aedbc006 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricDistributionBoardTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ElectricDistributionBoardTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that may be applied to electric distribution boards." ; + rdfs:label "Pset_ElectricDistributionBoardTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricDistributionBoard ; + IFC4-PSD:applicableTypeValue "IfcElectricDistributionBoard" ; + IFC4-PSD:definition "Properties that may be applied to electric distribution boards." ; + IFC4-PSD:definitionAlias "配電盤に適用するプロパティ。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricDistributionBoardTypeCommon" ; + IFC4-PSD:propertyDef :pece26e00d1df11e1800000215ad4efdf , :pe653f680d1df11e1800000215ad4efdf . + +:pece26e00d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "ece26e00d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pe653f680d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "e653f680d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조"@ko-KR , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pece26e00d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :pe653f680d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ElectricFlowStorageDeviceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricFlowStorageDeviceTypeCommon.ttl new file mode 100644 index 00000000..3eb835c6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricFlowStorageDeviceTypeCommon.ttl @@ -0,0 +1,346 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p3df26200d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Function of the conductors to which the load is connected." ; + rdfs:label "ConnectedConductorFunction" ; + IFC4-PSD:definition "Function of the conductors to which the load is connected." ; + IFC4-PSD:definitionAlias "도체의 기능은 부하가 연결된 상태."@ko-KR , ""@en , "導体の機能は負荷が接続された状態。"@ja-JP ; + IFC4-PSD:ifdguid "3df26200d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectedConductorFunction" ; + IFC4-PSD:nameAlias "接続導体機能"@ja-JP , "연결 도체 기능"@ko-KR , "Connected Conductor Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PHASE_L3" , "PHASE_L2" , "OTHER" , "UNSET" , "NOTKNOWN" , "PHASE_L1" , "PROTECTIVEEARTHNEUTRAL" , "PROTECTIVEEARTH" , "NEUTRAL" + ] . + +:EarthFault1PolePowerFactorMinimumState + a rdf:Property ; + rdfs:seeAlso :p9d507200d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EarthFault1PolePowerFactorMinimumState . + +:ShortCircuit2PoleMinimumState + a rdf:Property ; + rdfs:seeAlso :p5c585d80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit2PoleMinimumState . + +:ShortCircuit3PolePowerFactorMaximumState + a rdf:Property ; + rdfs:seeAlso :p56fb1300d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit3PolePowerFactorMaximumState . + +:Pset_ElectricFlowStorageDeviceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The characteristics of the supply associated with an electrical device occurrence acting as a source of supply to an electrical distribution system NOTE: Properties within this property set should ONLY be used in circumstances when an electrical supply is applied. The property set, the properties contained and their values are not applicable to a circumstance where the sypply is not being applied to the eletrical system or is temporarily disconnected. All properties within this property set are considered to represent a steady state situation." ; + rdfs:label "Pset_ElectricFlowStorageDeviceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricFlowStorageDevice ; + IFC4-PSD:applicableTypeValue "IfcElectricFlowStorageDevice" ; + IFC4-PSD:definition "The characteristics of the supply associated with an electrical device occurrence acting as a source of supply to an electrical distribution system NOTE: Properties within this property set should ONLY be used in circumstances when an electrical supply is applied. The property set, the properties contained and their values are not applicable to a circumstance where the sypply is not being applied to the eletrical system or is temporarily disconnected. All properties within this property set are considered to represent a steady state situation." ; + IFC4-PSD:definitionAlias ""@en , "配電システムから電気機器への供給源として機能するために関連する電源の特性。電気供給が適用されるときのみ使用する必要がある場合このプロパティを設定する。プロパティセット、プロパティが含まれているそれらの値は電源、または電気システムに適用されていない一時的に切断されている状況には適用されない。このプロパティセットは定常状態の状況を表す。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricFlowStorageDeviceTypeCommon" ; + IFC4-PSD:propertyDef :p17342b80d1e011e1800000215ad4efdf , :p5c585d80d1e011e1800000215ad4efdf , :p359a2700d1e011e1800000215ad4efdf , :p2915ce80d1e011e1800000215ad4efdf , :p10a5b400d1e011e1800000215ad4efdf , :p890c7500d1e011e1800000215ad4efdf , :p51053200d1e011e1800000215ad4efdf , :p8dd12900d1e011e1800000215ad4efdf , :p76923b80d1e011e1800000215ad4efdf , :p932e7380d1e011e1800000215ad4efdf , :p56fb1300d1e011e1800000215ad4efdf , :p2e731900d1e011e1800000215ad4efdf , :p7db94980d1e011e1800000215ad4efdf , :p83af2a80d1e011e1800000215ad4efdf , :p9d507200d1e011e1800000215ad4efdf , :p3df26200d1e011e1800000215ad4efdf , :p64b09880d1e011e1800000215ad4efdf , :p97f32780d1e011e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p10a5b400d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:ShortCircuit1PolePowerFactorMinimumState + a rdf:Property ; + rdfs:seeAlso :p890c7500d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit1PolePowerFactorMinimumState . + +:NominalSupplyVoltage + a rdf:Property ; + rdfs:seeAlso :p2915ce80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSupplyVoltage . + +:p932e7380d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + rdfs:label "EarthFault1PolePowerFactorMaximumState" ; + IFC4-PSD:definition "Power factor of the maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + IFC4-PSD:definitionAlias "전원 공급 시점 점 1 상 및 PE / PEN 사이의 1 극 최대 지락 전류 역률."@ko-KR , ""@en , "電源供給時点の点1相とPE/PEN間の1極最大地絡電流力率。"@ja-JP ; + IFC4-PSD:ifdguid "932e7380d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "EarthFault1PolePowerFactorMaximumState" ; + IFC4-PSD:nameAlias "1 극 최대 지락 전류 역률"@ko-KR , "Earth Fault1 Pole Power Factor Maximum State"@en , "1極最大地絡電流力率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p7db94980d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + rdfs:label "ShortCircuit1PolePowerFactorMaximumState" ; + IFC4-PSD:definition "Power factor of the maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + IFC4-PSD:definitionAlias ""@en , "전원 공급 시점 점 1 단계와 N 사이의 1 극 최대 단락 전류 역률."@ko-KR , "電源供給時点の点1相とN間の1極最大短絡電流力率。"@ja-JP ; + IFC4-PSD:ifdguid "7db94980d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit1PolePowerFactorMaximumState" ; + IFC4-PSD:nameAlias "Short Circuit1 Pole Power Factor Maximum State"@en , "1 극 최대 단락 전류 역률"@ko-KR , "1極最大短絡電流力率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p10a5b400d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR ; + IFC4-PSD:ifdguid "10a5b400d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "Reference"@en , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p2e731900d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum and minimum allowed voltage of the supply e.g. boundaries of 380V/440V may be applied for a nominal voltage of 400V." ; + rdfs:label "NominalSupplyVoltageOffset" ; + IFC4-PSD:definition "The maximum and minimum allowed voltage of the supply e.g. boundaries of 380V/440V may be applied for a nominal voltage of 400V." ; + IFC4-PSD:definitionAlias "電源の最大値と最小許容電圧。たとえば380V/440Vの境界は400Vの公称電圧に適用される。"@ja-JP , "전원 최대 및 최소 허용 전압 예 : 380V/440V 경계는 400V의 정격 전압에 적용된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "2e731900d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSupplyVoltageOffset" ; + IFC4-PSD:nameAlias "Nominal Supply Voltage Offset"@en , "옵셋 공칭 전압"@ko-KR , "オフセット公称電圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:EarthFault1PoleMaximumState + a rdf:Property ; + rdfs:seeAlso :p8dd12900d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EarthFault1PoleMaximumState . + +:ShortCircuit1PolePowerFactorMaximumState + a rdf:Property ; + rdfs:seeAlso :p7db94980d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit1PolePowerFactorMaximumState . + +:p64b09880d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the minimum 2 pole short circuit current provided at the point of supply." ; + rdfs:label "ShortCircuit2PolePowerFactorMinimumState" ; + IFC4-PSD:definition "Power factor of the minimum 2 pole short circuit current provided at the point of supply." ; + IFC4-PSD:definitionAlias "전원 공급 시점의 양극 최소 단락 전류 역률."@ko-KR , "電源供給時点の2極最小短絡電流力率。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "64b09880d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit2PolePowerFactorMinimumState" ; + IFC4-PSD:nameAlias "2 극 최소 단락 전류 역률"@ko-KR , "Short Circuit2 Pole Power Factor Minimum State"@en , "2極最小短絡電流力率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:ConnectedConductorFunction + a rdf:Property ; + rdfs:seeAlso :p3df26200d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectedConductorFunction . + +:p2915ce80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal voltage of the supply." ; + rdfs:label "NominalSupplyVoltage" ; + IFC4-PSD:definition "The nominal voltage of the supply." ; + IFC4-PSD:definitionAlias ""@en , "전원 공칭 주파수"@ko-KR , "電源の公称電圧。"@ja-JP ; + IFC4-PSD:ifdguid "2915ce80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSupplyVoltage" ; + IFC4-PSD:nameAlias "Nominal Supply Voltage"@en , "공칭 주파수"@ko-KR , "公称電圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p9d507200d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + rdfs:label "EarthFault1PolePowerFactorMinimumState" ; + IFC4-PSD:definition "Power factor of the minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + IFC4-PSD:definitionAlias "電源供給時点の点1相とPE/PEN間の1極最小地絡電流力率。"@ja-JP , "전원 공급 시점 점 1 상 및 PE / PEN 사이의 1 극 최소 지락 전류 역률."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "9d507200d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "EarthFault1PolePowerFactorMinimumState" ; + IFC4-PSD:nameAlias "1극 최소 지락 전류 역률"@ko-KR , "Earth Fault1 Pole Power Factor Minimum State"@en , "1極最小地絡電流力率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p97f32780d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + rdfs:label "EarthFault1PoleMinimumState" ; + IFC4-PSD:definition "Minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + IFC4-PSD:definitionAlias ""@en , "전원 공급 시점 점 1 상 및 PE / PEN 사이의 1 극 최소 지락 전류"@ko-KR , "電源供給時点の点1相とPE/PEN間の1極最小地絡電流。"@ja-JP ; + IFC4-PSD:ifdguid "97f32780d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "EarthFault1PoleMinimumState" ; + IFC4-PSD:nameAlias "Earth Fault1 Pole Minimum State"@en , "1 극 최소 지락 전류"@ko-KR , "1極最小地絡電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p17342b80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "17342b80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p83af2a80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + rdfs:label "ShortCircuit1PoleMinimumState" ; + IFC4-PSD:definition "Minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + IFC4-PSD:definitionAlias "전원 공급 시점 점 1 단계와 N 사이의 1 극 최소 단락 전류."@ko-KR , "電源供給時点の点1相とN間の1極最小短絡電流。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "83af2a80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit1PoleMinimumState" ; + IFC4-PSD:nameAlias "1極最小短絡電流"@ja-JP , "Short Circuit1 Pole Minimum State"@en , "1 극 최소 단락 전류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:EarthFault1PolePowerFactorMaximumState + a rdf:Property ; + rdfs:seeAlso :p932e7380d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EarthFault1PolePowerFactorMaximumState . + +:ShortCircuit2PolePowerFactorMinimumState + a rdf:Property ; + rdfs:seeAlso :p64b09880d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit2PolePowerFactorMinimumState . + +:ShortCircuit3PoleMaximumState + a rdf:Property ; + rdfs:seeAlso :p51053200d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit3PoleMaximumState . + +:p890c7500d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + rdfs:label "ShortCircuit1PolePowerFactorMinimumState" ; + IFC4-PSD:definition "Power factor of the minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + IFC4-PSD:definitionAlias "電源供給時点の点1相とN間の1極最小短絡電流力率。"@ja-JP , "전원 공급 시점 점 1 단계와 N 사이의 1 극 최소 단락 전류 역률."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "890c7500d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit1PolePowerFactorMinimumState" ; + IFC4-PSD:nameAlias "1 극 최소 단락 전류 역률"@ko-KR , "Short Circuit1 Pole Power Factor Minimum State"@en , "1極最小短絡電流力率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p17342b80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p5c585d80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum 2 pole short circuit current provided at the point of supply." ; + rdfs:label "ShortCircuit2PoleMinimumState" ; + IFC4-PSD:definition "Minimum 2 pole short circuit current provided at the point of supply." ; + IFC4-PSD:definitionAlias "전원 공급 시점의 양극 최소 단락 전류."@ko-KR , ""@en , "電源供給時点の2極最小短絡電流。"@ja-JP ; + IFC4-PSD:ifdguid "5c585d80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit2PoleMinimumState" ; + IFC4-PSD:nameAlias "2 극 최소 단락 전류"@ko-KR , "2極最小短絡電流"@ja-JP , "Short Circuit2 Pole Minimum State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p359a2700d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal frequency of the supply." ; + rdfs:label "NominalFrequency" ; + IFC4-PSD:definition "The nominal frequency of the supply." ; + IFC4-PSD:definitionAlias ""@en , "전원 공칭 주파수."@ko-KR , "電源の公称周波数。"@ja-JP ; + IFC4-PSD:ifdguid "359a2700d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "NominalFrequency" ; + IFC4-PSD:nameAlias "공칭 주파수"@ko-KR , "公称周波数"@ja-JP , "Nominal Frequency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:p51053200d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum 3 pole short circuit current provided at the point of supply." ; + rdfs:label "ShortCircuit3PoleMaximumState" ; + IFC4-PSD:definition "Maximum 3 pole short circuit current provided at the point of supply." ; + IFC4-PSD:definitionAlias "電源供給時点の3極最大短絡電流。"@ja-JP , ""@en , "전원 공급 시점의 3 극 최대 단락 전류."@ko-KR ; + IFC4-PSD:ifdguid "51053200d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit3PoleMaximumState" ; + IFC4-PSD:nameAlias "3極最大短絡電流"@ja-JP , "3 극 최대 단락 전류"@ko-KR , "Short Circuit3 Pole Maximum State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:ShortCircuit1PoleMinimumState + a rdf:Property ; + rdfs:seeAlso :p83af2a80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit1PoleMinimumState . + +:EarthFault1PoleMinimumState + a rdf:Property ; + rdfs:seeAlso :p97f32780d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EarthFault1PoleMinimumState . + +:p56fb1300d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Power factor of the maximum 3 pole short circuit current provided at the point of supply." ; + rdfs:label "ShortCircuit3PolePowerFactorMaximumState" ; + IFC4-PSD:definition "Power factor of the maximum 3 pole short circuit current provided at the point of supply." ; + IFC4-PSD:definitionAlias "전원 공급 시점의 3 극 최대 단락 전류 역률."@ko-KR , "電源供給時点の3極最大短絡電流力率。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "56fb1300d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit3PolePowerFactorMaximumState" ; + IFC4-PSD:nameAlias "3極最大短絡電流力率"@ja-JP , "3 극 최대 단락 전류 역률"@ko-KR , "Short Circuit3 Pole Power Factor Maximum State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p8dd12900d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + rdfs:label "EarthFault1PoleMaximumState" ; + IFC4-PSD:definition "Maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN." ; + IFC4-PSD:definitionAlias "電源供給時点の点1相とPE/PEN間の1極最大地絡電流。"@ja-JP , ""@en , "전원 공급 시점 점 1 상 및 PE / PEN 사이의 1 극 최대 지락 전류."@ko-KR ; + IFC4-PSD:ifdguid "8dd12900d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "EarthFault1PoleMaximumState" ; + IFC4-PSD:nameAlias "1 극 최대 지락 전류"@ko-KR , "1極最大地絡電流"@ja-JP , "Earth Fault1 Pole Maximum State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:NominalSupplyVoltageOffset + a rdf:Property ; + rdfs:seeAlso :p2e731900d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSupplyVoltageOffset . + +:ShortCircuit1PoleMaximumState + a rdf:Property ; + rdfs:seeAlso :p76923b80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuit1PoleMaximumState . + +:NominalFrequency a rdf:Property ; + rdfs:seeAlso :p359a2700d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalFrequency . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p76923b80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + rdfs:label "ShortCircuit1PoleMaximumState" ; + IFC4-PSD:definition "Maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N." ; + IFC4-PSD:definitionAlias ""@en , "전원 공급 시점 점 1 단계와 N 사이의 1 극 최대 단락 전류 역률."@ko-KR , "電源供給時点の点1相とN間の1極最大短絡電流。"@ja-JP ; + IFC4-PSD:ifdguid "76923b80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuit1PoleMaximumState" ; + IFC4-PSD:nameAlias "1 극 최대 단락 전류"@ko-KR , "1極最大短絡電流"@ja-JP , "Short Circuit1 Pole Maximum State"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ElectricGeneratorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricGeneratorTypeCommon.ttl new file mode 100644 index 00000000..c2f22e75 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricGeneratorTypeCommon.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :pad685180d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_ElectricGeneratorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines a particular type of engine that is a machine for converting mechanical energy into electrical energy." ; + rdfs:label "Pset_ElectricGeneratorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricGenerator ; + IFC4-PSD:applicableTypeValue "IfcElectricGenerator" ; + IFC4-PSD:definition "Defines a particular type of engine that is a machine for converting mechanical energy into electrical energy." ; + IFC4-PSD:definitionAlias ""@en , "機械エネルギーを電気エネルギーに変換する特殊なエンジンを定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricGeneratorTypeCommon" ; + IFC4-PSD:propertyDef :pad685180d1e011e1800000215ad4efdf , :pa80b0700d1e011e1800000215ad4efdf , :pc53fd580d1e011e1800000215ad4efdf , :pbb1dd700d1e011e1800000215ad4efdf , :pc07b2180d1e011e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:StartCurrentFactor a rdf:Property ; + rdfs:seeAlso :pc07b2180d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StartCurrentFactor . + +:ElectricGeneratorEfficiency + a rdf:Property ; + rdfs:seeAlso :pbb1dd700d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricGeneratorEfficiency . + +:pbb1dd700d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio of output capacity to intake capacity." ; + rdfs:label "ElectricGeneratorEfficiency" ; + IFC4-PSD:definition "The ratio of output capacity to intake capacity." ; + IFC4-PSD:definitionAlias ""@en , "出力容量と入力容量の比率。"@ja-JP , "출력 용량을 입력 용량의 비율"@ko-KR ; + IFC4-PSD:ifdguid "bb1dd700d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricGeneratorEfficiency" ; + IFC4-PSD:nameAlias "Electric Generator Efficiency"@en , "発電効率"@ja-JP , "발전 효율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pad685180d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ad685180d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MaximumPowerOutput a rdf:Property ; + rdfs:seeAlso :pc53fd580d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPowerOutput . + +:pa80b0700d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다"@ko-KR , ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "a80b0700d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "참조"@ko-KR , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pc07b2180d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "IEC. Start current factor defines how large the peek starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and we get the start current." ; + rdfs:label "StartCurrentFactor" ; + IFC4-PSD:definition "IEC. Start current factor defines how large the peek starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and we get the start current." ; + IFC4-PSD:definitionAlias ""@en , "시동 전류 계수는 엔진이 움직이기 시작했다 피크 기동 전류를 정의합니다. 시동 전류 계수는 정격 전류 시동시 전류를 곱한 것"@ko-KR , "始動電流係数はエンジンが動き始めた時のピーク始動電流を定義。始動電流係数は定格電流と始動時の電流を掛け合わせたもの。"@ja-JP ; + IFC4-PSD:ifdguid "c07b2180d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "StartCurrentFactor" ; + IFC4-PSD:nameAlias "始動電流係数"@ja-JP , "시동 전류 계수"@ko-KR , "Start Current Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa80b0700d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pc53fd580d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum output power rating of the engine." ; + rdfs:label "MaximumPowerOutput" ; + IFC4-PSD:definition "The maximum output power rating of the engine." ; + IFC4-PSD:definitionAlias "엔진의 최대 출력 정격"@ko-KR , ""@en , "エンジンの最大出力定格。"@ja-JP ; + IFC4-PSD:ifdguid "c53fd580d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPowerOutput" ; + IFC4-PSD:nameAlias "최대 출력"@ko-KR , "Maximum Power Output"@en , "最大出力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ElectricMotorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricMotorTypeCommon.ttl new file mode 100644 index 00000000..cc99856a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricMotorTypeCommon.ttl @@ -0,0 +1,230 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1b147d80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the motor is single speed, i.e. has a single winding (= FALSE) or multi-speed i.e.has part winding (= TRUE) ." ; + rdfs:label "HasPartWinding" ; + IFC4-PSD:definition "Indication of whether the motor is single speed, i.e. has a single winding (= FALSE) or multi-speed i.e.has part winding (= TRUE) ." ; + IFC4-PSD:definitionAlias "モータが単一の速度であるかどうかを示す。例えば、単巻線、マルチスピード、分割巻線。"@ja-JP , "모터가 단일 속도인지 여부를 나타내는 예를 들어, 단일 권선, 다중 속도 분할 권선"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "1b147d80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "HasPartWinding" ; + IFC4-PSD:nameAlias "Has Part Winding"@en , "권선"@ko-KR , "巻線 "@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:ElectricMotorEfficiency + a rdf:Property ; + rdfs:seeAlso :pe99bb200d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectricMotorEfficiency . + +:p15b73300d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the motor enclosure is guarded (= TRUE) or not (= FALSE)." ; + rdfs:label "IsGuarded" ; + IFC4-PSD:definition "Indication of whether the motor enclosure is guarded (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "モーターの筐体が守られているかどうかを示す。"@ja-JP , "모터의 케이스가 지켜지고 있는지 여부를 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "15b73300d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "IsGuarded" ; + IFC4-PSD:nameAlias "보호"@ko-KR , "Is Guarded"@en , "保護"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pd7217880d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "d7217880d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:HasPartWinding a rdf:Property ; + rdfs:seeAlso :p1b147d80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasPartWinding . + +:FrameSize a rdf:Property ; + rdfs:seeAlso :p0fc15200d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrameSize . + +:TeTime a rdf:Property ; + rdfs:seeAlso :pf8826480d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TeTime . + +:Status a rdf:Property ; + rdfs:seeAlso :pd7217880d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pf8826480d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum time (in s) at which the motor could run with locked rotor when the motor is used in an EX-environment. The time indicates that a protective device should trip before this time when the starting current of the motor is slowing through the device." ; + rdfs:label "TeTime" ; + IFC4-PSD:definition "The maximum time (in s) at which the motor could run with locked rotor when the motor is used in an EX-environment. The time indicates that a protective device should trip before this time when the starting current of the motor is slowing through the device." ; + IFC4-PSD:definitionAlias ""@en , "モーターがEX環境でローターロックされて使用きる最大時間。\nモーター始動電流が機器を介して減速している時間より前に保護装置で停止する時間を示す。"@ja-JP , "모터가 EX 환경 로터 잠겨 사용 수있는 최대 시간. 모터 기동 전류가 장비를 통해 감속하고있다 시간 전에 보호 장치 중지 시간을 보여준다"@ko-KR ; + IFC4-PSD:ifdguid "f8826480d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "TeTime" ; + IFC4-PSD:nameAlias "最大時間"@ja-JP , "Te Time"@en , "최대 시간"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:Pset_ElectricMotorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines a particular type of engine that is a machine for converting electrical energy into mechanical energy. Note that in cases where a close coupled or monobloc pump or close coupled fan is being driven by the motor, the motor may itself be considered to be directly part of the pump or fan. In this case , motor information may need to be specified directly at the pump or fan and not througfh separate motor/motor connection entities. NOTE: StartingTime and TeTime added at IFC4" ; + rdfs:label "Pset_ElectricMotorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricMotor ; + IFC4-PSD:applicableTypeValue "IfcElectricMotor" ; + IFC4-PSD:definition "Defines a particular type of engine that is a machine for converting electrical energy into mechanical energy. Note that in cases where a close coupled or monobloc pump or close coupled fan is being driven by the motor, the motor may itself be considered to be directly part of the pump or fan. In this case , motor information may need to be specified directly at the pump or fan and not througfh separate motor/motor connection entities. NOTE: StartingTime and TeTime added at IFC4" ; + IFC4-PSD:definitionAlias "電気エネルギーを機械エネルギーに変換するエンジンを定義。一体型ポンプやファンの近くで接続した場合は、モーター自体が直接ポンプやファンの一部とみなされる可能性があるので、モーターで駆動されている時は注意。この場合、モーターの情報はモーター/モーターの接続実態を経由せずにポンプやファンで直接指定する必要がある。\nStartingTimeとTeTimeは IFC4で追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricMotorTypeCommon" ; + IFC4-PSD:propertyDef :p0fc15200d1e111e1800000215ad4efdf , :p15b73300d1e111e1800000215ad4efdf , :pd25cc480d1e011e1800000215ad4efdf , :p02a46300d1e111e1800000215ad4efdf , :p1b147d80d1e111e1800000215ad4efdf , :pe99bb200d1e011e1800000215ad4efdf , :pd7217880d1e011e1800000215ad4efdf , :pf8826480d1e011e1800000215ad4efdf , :pf3251a00d1e011e1800000215ad4efdf , :pe56f9480d1e011e1800000215ad4efdf , :peef8fc80d1e011e1800000215ad4efdf , :pfddfaf00d1e011e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :pd25cc480d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pe99bb200d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio of output capacity to intake capacity." ; + rdfs:label "ElectricMotorEfficiency" ; + IFC4-PSD:definition "The ratio of output capacity to intake capacity." ; + IFC4-PSD:definitionAlias "출력 용량을 입력 용량의 비율."@ko-KR , "出力容量と入力容量の比率。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e99bb200d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "ElectricMotorEfficiency" ; + IFC4-PSD:nameAlias "출력 효율"@ko-KR , "Electric Motor Efficiency"@en , "出力効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p0fc15200d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designation of the frame size according to the named range of frame sizes designated at the place of use or according to a given standard." ; + rdfs:label "FrameSize" ; + IFC4-PSD:definition "Designation of the frame size according to the named range of frame sizes designated at the place of use or according to a given standard." ; + IFC4-PSD:definitionAlias "フレームサイズの意味が実際の大きさを表示しているのか、規格表記なのかを指定。"@ja-JP , ""@en , "프레임 크기의 의미가 실제 크기를 표시하고 있는지, 표준 표기인지 지정합니다."@ko-KR ; + IFC4-PSD:ifdguid "0fc15200d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "FrameSize" ; + IFC4-PSD:nameAlias "프레임 크기"@ko-KR , "Frame Size"@en , "フレームサイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe56f9480d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum output power rating of the engine." ; + rdfs:label "MaximumPowerOutput" ; + IFC4-PSD:definition "The maximum output power rating of the engine." ; + IFC4-PSD:definitionAlias ""@en , "엔진의 최대 출력 정격."@ko-KR , "エンジンの最大出力定格。"@ja-JP ; + IFC4-PSD:ifdguid "e56f9480d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPowerOutput" ; + IFC4-PSD:nameAlias "最大出力"@ja-JP , "최대 출력"@ko-KR , "Maximum Power Output"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:IsGuarded a rdf:Property ; + rdfs:seeAlso :p15b73300d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsGuarded . + +:MotorEnclosureType a rdf:Property ; + rdfs:seeAlso :p02a46300d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MotorEnclosureType . + +:StartCurrentFactor a rdf:Property ; + rdfs:seeAlso :peef8fc80d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StartCurrentFactor . + +:peef8fc80d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "IEC. Start current factor defines how large the peak starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and to give the start current." ; + rdfs:label "StartCurrentFactor" ; + IFC4-PSD:definition "IEC. Start current factor defines how large the peak starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and to give the start current." ; + IFC4-PSD:definitionAlias "시동 전류 계수는 엔진이 움직이기 시작했다 피크 기동 전류를 정의합니다. 시동 전류 계수는 정격 전류 시동시 전류를 곱한 것"@ko-KR , ""@en , "始動電流係数はエンジンが動き始めた時のピーク始動電流を定義。始動電流係数は定格電流と始動時の電流を掛け合わせたもの。"@ja-JP ; + IFC4-PSD:ifdguid "eef8fc80d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "StartCurrentFactor" ; + IFC4-PSD:nameAlias "始動電流係数"@ja-JP , "시동전류 계수"@ko-KR , "Start Current Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:MaximumPowerOutput a rdf:Property ; + rdfs:seeAlso :pe56f9480d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPowerOutput . + +:p02a46300d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of motor enclosure from which that required may be selected." ; + rdfs:label "MotorEnclosureType" ; + IFC4-PSD:definition "A list of the available types of motor enclosure from which that required may be selected." ; + IFC4-PSD:definitionAlias "모터에 필요한 케이스를 사용 가능한 종류 목록에서 선택합니다."@ko-KR , "モーターに必要な筐体を使用可能なタイプのリストから選択。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "02a46300d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "MotorEnclosureType" ; + IFC4-PSD:nameAlias "모터 보호구조"@ko-KR , "モーター保護構造"@ja-JP , "Motor Enclosure Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OPENDRIPPROOF" , "TOTALLYENCLOSEDAIROVER" , "TOTALLYENCLOSEDFANCOOLED" , "TOTALLYENCLOSEDNONVENTILATED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pd25cc480d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "d25cc480d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "参照"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:StartingTime a rdf:Property ; + rdfs:seeAlso :pf3251a00d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StartingTime . + +:pf3251a00d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time (in s) needed for the motor to reach its rated speed with its driven equipment attached, starting from standstill and at the nominal voltage applied at its terminals." ; + rdfs:label "StartingTime" ; + IFC4-PSD:definition "The time (in s) needed for the motor to reach its rated speed with its driven equipment attached, starting from standstill and at the nominal voltage applied at its terminals." ; + IFC4-PSD:definitionAlias ""@en , "모터가 정지 상태에서 정격 전압을인가하여 정격 속도에 도달하는 데 필요한 시간"@ko-KR , "モーターが停止状態から定格電圧を印加し定格速度に到達するまでに必要な時間。"@ja-JP ; + IFC4-PSD:ifdguid "f3251a00d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "StartingTime" ; + IFC4-PSD:nameAlias "시작 시간"@ko-KR , "始動時間"@ja-JP , "Starting Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:LockedRotorCurrent a rdf:Property ; + rdfs:seeAlso :pfddfaf00d1e011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LockedRotorCurrent . + +:pfddfaf00d1e011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Input current when a motor armature is energized but not rotating." ; + rdfs:label "LockedRotorCurrent" ; + IFC4-PSD:definition "Input current when a motor armature is energized but not rotating." ; + IFC4-PSD:definitionAlias "モーターの電機子に電圧を印加しロータが回っていない時の入力電流。"@ja-JP , "모터의 전기자 전압을인가 로터가 회전하지 않을 때 입력 전류."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "fddfaf00d1e011e1800000215ad4efdf" ; + IFC4-PSD:name "LockedRotorCurrent" ; + IFC4-PSD:nameAlias "Locked Rotor Current"@en , "구속 회전자 전류"@ko-KR , "拘束ロータ電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ElectricTimeControlTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricTimeControlTypeCommon.ttl new file mode 100644 index 00000000..a7d8eb0d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricTimeControlTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ElectricTimeControlTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for electric time control devices. HISTORY: Added in IFC4." ; + rdfs:label "Pset_ElectricTimeControlTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElectricTimeControl ; + IFC4-PSD:applicableTypeValue "IfcElectricTimeControl" ; + IFC4-PSD:definition "Common properties for electric time control devices. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "電気時間制御装置のための共通のプロパティ。\nIFC4にて追加。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricTimeControlTypeCommon" ; + IFC4-PSD:propertyDef :p2bc4f380d1e111e1800000215ad4efdf , :p25cf1280d1e111e1800000215ad4efdf . + +:p25cf1280d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "25cf1280d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p2bc4f380d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :p25cf1280d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p2bc4f380d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "2bc4f380d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_ElectricalDeviceCommon.ttl b/converter/src/main/resources/pset/Pset_ElectricalDeviceCommon.ttl new file mode 100644 index 00000000..38091a1f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElectricalDeviceCommon.ttl @@ -0,0 +1,193 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HasProtectiveEarth a rdf:Property ; + rdfs:seeAlso :p50b86700d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasProtectiveEarth . + +:NumberOfPoles a rdf:Property ; + rdfs:seeAlso :p4b5b1c80d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfPoles . + +:p4b5b1c80d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of live lines that is intended to be handled by the device." ; + rdfs:label "NumberOfPoles" ; + IFC4-PSD:definition "The number of live lines that is intended to be handled by the device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4b5b1c80d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfPoles" ; + IFC4-PSD:nameAlias "Number Of Poles"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:IK_Code a rdf:Property ; + rdfs:seeAlso :paecd027ed5424357a5fd13331a99bc51 ; + rdfs:subPropertyOf IFC4-PSD:IK_Code . + +:pcf5234358315441fa6c17c9b65bf62a0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio between the rated electrical power and the product of the rated current and rated voltage" ; + rdfs:label "PowerFactor" ; + IFC4-PSD:definition "The ratio between the rated electrical power and the product of the rated current and rated voltage" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cf5234358315441fa6c17c9b65bf62a0" ; + IFC4-PSD:name "PowerFactor" ; + IFC4-PSD:nameAlias "Power Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p50b86700d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the electrical device has a protective earth connection (=TRUE) or not (= FALSE)." ; + rdfs:label "HasProtectiveEarth" ; + IFC4-PSD:definition "Indicates whether the electrical device has a protective earth connection (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "50b86700d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "HasProtectiveEarth" ; + IFC4-PSD:nameAlias "Has Protective Earth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf936102bd4824b7eb989a5571e353770 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Function of a line conductor to which a device is intended to be connected where L1, L2 and L3 represent the phase lines according to IEC 60446 notation (sometimes phase lines may be referenced by color [Red, Blue, Yellow] or by number [1, 2, 3] etc). Protective Earth is sometimes also known as CPC or common protective conductor. Note that for an electrical device, a set of line conductor functions may be applied." ; + rdfs:label "ConductorFunction" ; + IFC4-PSD:definition "Function of a line conductor to which a device is intended to be connected where L1, L2 and L3 represent the phase lines according to IEC 60446 notation (sometimes phase lines may be referenced by color [Red, Blue, Yellow] or by number [1, 2, 3] etc). Protective Earth is sometimes also known as CPC or common protective conductor. Note that for an electrical device, a set of line conductor functions may be applied." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f936102bd4824b7eb989a5571e353770" ; + IFC4-PSD:name "ConductorFunction" ; + IFC4-PSD:nameAlias "Conductor Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "PHASE_L3" , "OTHER" , "NEUTRAL" , "PROTECTIVEEARTH" , "PHASE_L1" , "PROTECTIVEEARTHNEUTRAL" , "NOTKNOWN" , "PHASE_L2" + ] . + +:pa2e15fb5e52e49e3b86731401fe07f86 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage that a device is designed to handle." ; + rdfs:label "RatedVoltage" ; + IFC4-PSD:definition "The voltage that a device is designed to handle." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a2e15fb5e52e49e3b86731401fe07f86" ; + IFC4-PSD:name "RatedVoltage" ; + IFC4-PSD:nameAlias "Rated Voltage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p5d3cbf80d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Insulation standard classes provides basic protection information against electric shock. Defines levels of insulation required in terms of constructional requirements (creepage and clearance distances) and electrical requirements (compliance with electric strength tests). Basic insulation is considered to be shorted under single fault conditions. The actual values required depend on the working voltage to which the insulation is subjected, as well as other factors. Also indicates whether the electrical device has a protective earth connection." ; + rdfs:label "InsulationStandardClass" ; + IFC4-PSD:definition "Insulation standard classes provides basic protection information against electric shock. Defines levels of insulation required in terms of constructional requirements (creepage and clearance distances) and electrical requirements (compliance with electric strength tests). Basic insulation is considered to be shorted under single fault conditions. The actual values required depend on the working voltage to which the insulation is subjected, as well as other factors. Also indicates whether the electrical device has a protective earth connection." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5d3cbf80d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "InsulationStandardClass" ; + IFC4-PSD:nameAlias "Insulation Standard Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CLASS0APPLIANCE" , "CLASS0IAPPLIANCE" , "CLASSIAPPLIANCE" , "CLASSIIAPPLIANCE" , "CLASSIIIAPPLIANCE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:RatedCurrent a rdf:Property ; + rdfs:seeAlso :p784d9d2144d440b5b30e2ad107609548 ; + rdfs:subPropertyOf IFC4-PSD:RatedCurrent . + +:p784d9d2144d440b5b30e2ad107609548 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current that a device is designed to handle." ; + rdfs:label "RatedCurrent" ; + IFC4-PSD:definition "The current that a device is designed to handle." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "784d9d2144d440b5b30e2ad107609548" ; + IFC4-PSD:name "RatedCurrent" ; + IFC4-PSD:nameAlias "Rated Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:ConductorFunction a rdf:Property ; + rdfs:seeAlso :pf936102bd4824b7eb989a5571e353770 ; + rdfs:subPropertyOf IFC4-PSD:ConductorFunction . + +:RatedVoltage a rdf:Property ; + rdfs:seeAlso :pa2e15fb5e52e49e3b86731401fe07f86 ; + rdfs:subPropertyOf IFC4-PSD:RatedVoltage . + +:Pset_ElectricalDeviceCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A collection of properties that are commonly used by electrical device types." ; + rdfs:label "Pset_ElectricalDeviceCommon" ; + IFC4-PSD:applicableClass IFC4:IfcDistributionElement ; + IFC4-PSD:applicableTypeValue "IfcDistributionElement" ; + IFC4-PSD:definition "A collection of properties that are commonly used by electrical device types." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElectricalDeviceCommon" ; + IFC4-PSD:propertyDef :p5d3cbf80d1df11e1800000215ad4efdf , :pcf5234358315441fa6c17c9b65bf62a0 , :paecd027ed5424357a5fd13331a99bc51 , :p784d9d2144d440b5b30e2ad107609548 , :p56ae4800d1df11e1800000215ad4efdf , :p50b86700d1df11e1800000215ad4efdf , :pf936102bd4824b7eb989a5571e353770 , :p4b5b1c80d1df11e1800000215ad4efdf , :pf69a795455c74842825a54711d3b5abc , :pa2e15fb5e52e49e3b86731401fe07f86 . + +:p56ae4800d1df11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "IP Code, the International Protection Marking, IEC 60529), classifies and rates the degree of protection provided against intrusion." ; + rdfs:label "IP_Code" ; + IFC4-PSD:definition "IP Code, the International Protection Marking, IEC 60529), classifies and rates the degree of protection provided against intrusion." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "56ae4800d1df11e1800000215ad4efdf" ; + IFC4-PSD:name "IP_Code" ; + IFC4-PSD:nameAlias "IP_ Code"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:InsulationStandardClass + a rdf:Property ; + rdfs:seeAlso :p5d3cbf80d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InsulationStandardClass . + +:PowerFactor a rdf:Property ; + rdfs:seeAlso :pcf5234358315441fa6c17c9b65bf62a0 ; + rdfs:subPropertyOf IFC4-PSD:PowerFactor . + +:pf69a795455c74842825a54711d3b5abc + a IFC4-PSD:PropertyDef ; + rdfs:comment "The upper and lower limits of frequency for which the operation of the device is certified." ; + rdfs:label "NominalFrequencyRange" ; + IFC4-PSD:definition "The upper and lower limits of frequency for which the operation of the device is certified." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f69a795455c74842825a54711d3b5abc" ; + IFC4-PSD:name "NominalFrequencyRange" ; + IFC4-PSD:nameAlias "Nominal Frequency Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:paecd027ed5424357a5fd13331a99bc51 + a IFC4-PSD:PropertyDef ; + rdfs:comment "IK Code according to IEC 62262 (2002) is a numeric classification for the degree of protection provided by enclosures for electrical equipment against external mechanical impacts.\n
NOTE  In earlier labeling, the third numeral (1..) had been occasionally added to the closely related IP Code on ingress protection, to indicate the level of impact protection.
" ; + rdfs:label "IK_Code" ; + IFC4-PSD:definition "IK Code according to IEC 62262 (2002) is a numeric classification for the degree of protection provided by enclosures for electrical equipment against external mechanical impacts.\n
NOTE  In earlier labeling, the third numeral (1..) had been occasionally added to the closely related IP Code on ingress protection, to indicate the level of impact protection.
" ; + IFC4-PSD:ifdguid "aecd027ed5424357a5fd13331a99bc51" ; + IFC4-PSD:name "IK_Code" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:IP_Code a rdf:Property ; + rdfs:seeAlso :p56ae4800d1df11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IP_Code . + +:NominalFrequencyRange + a rdf:Property ; + rdfs:seeAlso :pf69a795455c74842825a54711d3b5abc ; + rdfs:subPropertyOf IFC4-PSD:NominalFrequencyRange . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ElementAssemblyCommon.ttl b/converter/src/main/resources/pset/Pset_ElementAssemblyCommon.ttl new file mode 100644 index 00000000..42c5664f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElementAssemblyCommon.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p20e74f79d075407a92f93d6788281332 + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "20e74f79d075407a92f93d6788281332" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p943159a93c8d4316a7a01b4382c6ea80 ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ElementAssemblyCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrence and type objects of element assembly." ; + rdfs:label "Pset_ElementAssemblyCommon" ; + IFC4-PSD:definition "Properties common to the definition of all occurrence and type objects of element assembly." ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElementAssemblyCommon" ; + IFC4-PSD:propertyDef :p943159a93c8d4316a7a01b4382c6ea80 , :p20e74f79d075407a92f93d6788281332 . + +:Status a rdf:Property ; + rdfs:seeAlso :p20e74f79d075407a92f93d6788281332 ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p943159a93c8d4316a7a01b4382c6ea80 + a IFC4-PSD:PropertyDef ; + rdfs:label "Reference" ; + IFC4-PSD:ifdguid "943159a93c8d4316a7a01b4382c6ea80" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . diff --git a/converter/src/main/resources/pset/Pset_ElementComponentCommon.ttl b/converter/src/main/resources/pset/Pset_ElementComponentCommon.ttl new file mode 100644 index 00000000..0e1714e7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ElementComponentCommon.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ElementComponentCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Set of common properties of component elements (especially discrete accessories, but also fasteners, reinforcement elements, or other types of components)." ; + rdfs:label "Pset_ElementComponentCommon" ; + IFC4-PSD:applicableClass IFC4:IfcElementComponent ; + IFC4-PSD:applicableTypeValue "IfcElementComponent" ; + IFC4-PSD:definition "Set of common properties of component elements (especially discrete accessories, but also fasteners, reinforcement elements, or other types of components)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ElementComponentCommon" ; + IFC4-PSD:propertyDef :pf7b199ec69184e05b9a8d4dc3a89f6d7 , :p56f08e40f4ec44468b85b83294b65e5f , :p292f5db4336e4b319ebdd91a1ab594ab , :p7525c67c0faa44ba995f99d07b72dd31 . + +:DeliveryType a rdf:Property ; + rdfs:seeAlso :p292f5db4336e4b319ebdd91a1ab594ab ; + rdfs:subPropertyOf IFC4-PSD:DeliveryType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p56f08e40f4ec44468b85b83294b65e5f + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "56f08e40f4ec44468b85b83294b65e5f" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:CorrosionTreatment a rdf:Property ; + rdfs:seeAlso :pf7b199ec69184e05b9a8d4dc3a89f6d7 ; + rdfs:subPropertyOf IFC4-PSD:CorrosionTreatment . + +:Status a rdf:Property ; + rdfs:seeAlso :p56f08e40f4ec44468b85b83294b65e5f ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p7525c67c0faa44ba995f99d07b72dd31 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "具体的な参照ID(例えば、“WWS/VS1/400/001”はWWS系統、VS1/400サブシステム001番部品)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7525c67c0faa44ba995f99d07b72dd31" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pf7b199ec69184e05b9a8d4dc3a89f6d7 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Determines corrosion treatment for metal components. This property is provided if the requirement needs to be expressed (a) independently of a material specification and (b) as a mere requirements statement rather than a workshop design/ processing feature." ; + rdfs:label "CorrosionTreatment" ; + IFC4-PSD:definition "Determines corrosion treatment for metal components. This property is provided if the requirement needs to be expressed (a) independently of a material specification and (b) as a mere requirements statement rather than a workshop design/ processing feature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f7b199ec69184e05b9a8d4dc3a89f6d7" ; + IFC4-PSD:name "CorrosionTreatment" ; + IFC4-PSD:nameAlias "Corrosion Treatment"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PAINTED" , "EPOXYCOATED" , "GALVANISED" , "STAINLESS" , "NONE" , "NOTDEFINED" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p7525c67c0faa44ba995f99d07b72dd31 ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p292f5db4336e4b319ebdd91a1ab594ab + a IFC4-PSD:PropertyDef ; + rdfs:comment "Determines how the accessory will be delivered to the site." ; + rdfs:label "DeliveryType" ; + IFC4-PSD:definition "Determines how the accessory will be delivered to the site." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "292f5db4336e4b319ebdd91a1ab594ab" ; + IFC4-PSD:name "DeliveryType" ; + IFC4-PSD:nameAlias "Delivery Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CAST_IN_PLACE" , "WELDED_TO_STRUCTURE" , "LOOSE" , "ATTACHED_FOR_DELIVERY" , "PRECAST" , "NOTDEFINED" + ] . diff --git a/converter/src/main/resources/pset/Pset_EngineTypeCommon.ttl b/converter/src/main/resources/pset/Pset_EngineTypeCommon.ttl new file mode 100644 index 00000000..306ea505 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_EngineTypeCommon.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p4f883980d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4f883980d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p5fa01900d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The source of energy." ; + rdfs:label "EnergySource" ; + IFC4-PSD:definition "The source of energy." ; + IFC4-PSD:definitionAlias "エネルギー源(ディーゼル、ガソリン、天然ガス、プロパン、バイオディーゼル、下水ガス、水素、バイオ燃料、 他)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5fa01900d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "EnergySource" ; + IFC4-PSD:nameAlias "Energy Source"@en , "エネルギ源"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "GASOLINE" , "HYDROGEN" , "PROPANE" , "NATURALGAS" , "SEWAGEGAS" , "UNSET" , "BIODIESEL" , "DIESEL" , "UNKNOWN" , "OTHER" , "BIFUEL" + ] . + +:Pset_EngineTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Engine type common attributes." ; + rdfs:label "Pset_EngineTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcEngine ; + IFC4-PSD:applicableTypeValue "IfcEngine" ; + IFC4-PSD:definition "Engine type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "エンジンタイプ共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EngineTypeCommon" ; + IFC4-PSD:propertyDef :p5fa01900d1e111e1800000215ad4efdf , :p4f883980d1e111e1800000215ad4efdf , :p49925880d1e111e1800000215ad4efdf . + +:EnergySource a rdf:Property ; + rdfs:seeAlso :p5fa01900d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergySource . + +:p49925880d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "49925880d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p4f883980d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p49925880d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_EnvironmentalImpactIndicators.ttl b/converter/src/main/resources/pset/Pset_EnvironmentalImpactIndicators.ttl index c891cdb3..04deb925 100644 --- a/converter/src/main/resources/pset/Pset_EnvironmentalImpactIndicators.ttl +++ b/converter/src/main/resources/pset/Pset_EnvironmentalImpactIndicators.ttl @@ -1,381 +1,362 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_EnvironmentalImpactIndicators -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pc32a4680d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of greenhouse gases emitted calculated in equivalent CO2" ; + rdfs:label "ClimateChangePerUnit" ; + IFC4-PSD:definition "Quantity of greenhouse gases emitted calculated in equivalent CO2" ; + IFC4-PSD:definitionAlias ""@en , "CO2で計算された温室効果ガスの放出量。"@ja-JP , "CO2 등가 환산되는 온실 가스 발생량"@ko-KR , "Quantité d'émissions de gaz à effet de serre exprimée en Kg d'équivalent CO2 tels que définis dans la norme ISO21930:2007 [NDT : ainsi que dans les normes PrEN15804:2008 et NF P01-010]."@fr-FR ; + IFC4-PSD:ifdguid "c32a4680d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "ClimateChangePerUnit" ; + IFC4-PSD:nameAlias "단위당 기후 변화"@ko-KR , "単位あたり気候変動"@ja-JP , "Climate Change Per Unit"@en , "ChangementClimatiqueParUnite"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:InertWastePerUnit a rdf:Property ; + rdfs:seeAlso :pe0f7ab80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InertWastePerUnit . + +:pf2d94e80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene" ; + rdfs:label "PhotochemicalOzoneFormationPerUnit" ; + IFC4-PSD:definition "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene" ; + IFC4-PSD:definitionAlias ""@en , "エチレンで計算される光化学物質オゾンを生成するガスの量。"@ja-JP , "에틸렌에 해당 환산된 광화학 오존 생성 끊 가스량"@ko-KR , "Quantité de gaz producteurs d'ozone photochimique exprimée en équivalent ethylène tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "f2d94e80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "PhotochemicalOzoneFormationPerUnit" ; + IFC4-PSD:nameAlias "Photochemical Ozone Formation Per Unit"@en , "単位あたり光化学オゾン生成"@ja-JP , "FormationOzonePhotochimiqueParUnite"@fr-FR , "단위당 광화학 오존 생성"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pa7bf3b80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Expected service life in years." ; + rdfs:label "ExpectedServiceLife" ; + IFC4-PSD:definition "Expected service life in years." ; + IFC4-PSD:definitionAlias "Durée de vie typique exprimée en années."@fr-FR , "数年間の期待される耐用年数。"@ja-JP , ""@en , "예상 수명"@ko-KR ; + IFC4-PSD:ifdguid "a7bf3b80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "ExpectedServiceLife" ; + IFC4-PSD:nameAlias "期待される耐用期間"@ja-JP , "예상수명"@ko-KR , "DureeDeVieTypique"@fr-FR , "Expected Service Life"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:ClimateChangePerUnit + a rdf:Property ; + rdfs:seeAlso :pc32a4680d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClimateChangePerUnit . + +:LifeCyclePhase a rdf:Property ; + rdfs:seeAlso :p96762f00d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LifeCyclePhase . + +:p96762f00d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The whole life cycle or only a given phase from which environmental data are valid." ; + rdfs:label "LifeCyclePhase" ; + IFC4-PSD:definition "The whole life cycle or only a given phase from which environmental data are valid." ; + IFC4-PSD:definitionAlias "環境データが有効であるライフサイクル全てまたは特定の段階。"@ja-JP , "Le cycle de vie complet ou seulement une de ses phases pour lequel les les données environnementales sont valides"@fr-FR , "환경 데이터가 유효한지 라이프 사이클 또는 단 하나 주어진 단계"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "96762f00d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "LifeCyclePhase" ; + IFC4-PSD:nameAlias "라이프 사이클 단계"@ko-KR , "ライフサイクルフェーズ"@ja-JP , "Life Cycle Phase"@en , "PhaseCycleDeVie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "REPLACEMENT" , "REPAIR" , "DECONSTRUCTION" , "USERDEFINED" , "WHOLELIFECYCLE" , "USAGE" , "PRODUCTIONTRANSPORT" , "NOTDEFINED" , "CRADLETOSITE" , "OCCUPANCY" , "INSTALLATION" , "ACQUISITION" , "WASTE" , "MAINTENANCE" , "RECOVERY" , "MANUFACTURE" , "GROWTH" , "REFURBISHMENT" , "DISPOSALTRANSPORT" , "PROCUREMENT" , "OPERATION" , "TRANSPORT" , "DISPOSAL" , "PRODUCTION" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p82323200d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pc9202780d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2" ; + rdfs:label "AtmosphericAcidificationPerUnit" ; + IFC4-PSD:definition "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2" ; + IFC4-PSD:definitionAlias "Quantité de gaz responsables de l'acidification atmosphérique exprimée en Kg d'équivalent SO2 [NDT : selon les normes PrEN15804:2008 et NF P01-010]."@fr-FR , ""@en , "SO2에 해당 환산된 대기 산성 화의 원인이되는 가스량"@ko-KR , "SO2で計算される大気の酸性化に影響するガスの量。"@ja-JP ; + IFC4-PSD:ifdguid "c9202780d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericAcidificationPerUnit" ; + IFC4-PSD:nameAlias "단위당 대기 산성화"@ko-KR , "AcidificationAtmospheriqueParUnite"@fr-FR , "単位あたり大気酸性化"@ja-JP , "Atmospheric Acidification Per Unit"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p88281300d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference to a database or a classification" ; + rdfs:label "FunctionalUnitReference" ; + IFC4-PSD:definition "Reference to a database or a classification" ; + IFC4-PSD:definitionAlias "데이터베이스 또는 분류에 대한 참조"@ko-KR , "Référence à une base de données ou à une classification [NDT : référence, par exemple, à l'identification d'un produit dans la base INIES]"@fr-FR , "データベースやクラスへの参照。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "88281300d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "FunctionalUnitReference" ; + IFC4-PSD:nameAlias "기능단위참조"@ko-KR , "Functional Unit Reference"@en , "ReferenceUniteFonctionnelle"@fr-FR , "機能単位参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pec4ad700d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11" ; + rdfs:label "StratosphericOzoneLayerDestructionPerUnit" ; + IFC4-PSD:definition "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11" ; + IFC4-PSD:definitionAlias "Quantité de gaz destructeurs de la couche d'ozone exprimée en équivalent CFC-R11 tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR , ""@en , "CFC-R11で計算される成層圏のオゾン層を破壊するガスの量。"@ja-JP , "CFC-R11에 해당 환산된 성층권 오존층 파괴 가스량"@ko-KR ; + IFC4-PSD:ifdguid "ec4ad700d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "StratosphericOzoneLayerDestructionPerUnit" ; + IFC4-PSD:nameAlias "단위당 성층권 오존층 파괴"@ko-KR , "DestructionCoucheOzoneStartospheriqueParUnite"@fr-FR , "Stratospheric Ozone Layer Destruction Per Unit"@en , "単位あたり成層圏オゾン層破壊"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:RenewableEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:seeAlso :pcf160880d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RenewableEnergyConsumptionPerUnit . + :Pset_EnvironmentalImpactIndicators - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcElement ; - IFC4-PSD:applicableTypeValue "IfcElement" ; - IFC4-PSD:definition """Environmental impact indicators are related to a given “functional unit” (ISO 14040 concept). An example of functional unit is a \"Double glazing window with PVC frame\" and the unit to consider is \"one square meter of opening elements filled by this product”. -Indicators values are valid for the whole life cycle or only a specific phase (see LifeCyclePhase property). Values of all the indicators are expressed per year according to the expected service life. The first five properties capture the characteristics of the functional unit. The following properties are related to environmental indicators. -There is a consensus agreement international for the five one. Last ones are not yet fully and formally agreed at the international level.""" ; - IFC4-PSD:definitionAlias "Définition de l'IAI : Les indicateurs d'impacts environnementaux sont valables pour une unité fonctionnelle, concept défini dans l'ISO 14040. Exemple : fenêtre à double vitrage et à menuiserie en PVC ; l'unité à considérer est \"un mètre carré d'ouverture remplie par ce produit\"."@fr-FR ; - IFC4-PSD:definitionAlias """環境影響指標は、「機能単位functional unit (ISO 14040 コンセプト)」に関連があります。機能単位の例は「PVCフレームによる二重ガラス窓」です。そして、考慮する単位は「この製品で満たされた開口要素の1平方メートル」です。 - 指標の値は、ライフサイクル全て、または特定の段階(ライフサイクルフェーズLifeCyclePhaseプロパティ参照)だけにあてはまります。全ての指標の値は、期待される耐用年数によって年ごとに表現されます。初めの5つのプロパティは functional unitの特性を捉えています。 -以下の特性は、環境指標に関連があります。 -5つについての国際的な意見の合意があります。最後のものは、国際レベルで、まだ完全には正式に同意されていない。"""@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_EnvironmentalImpactIndicators" ; - IFC4-PSD:propertyDef :_82323200d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_88281300d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_8f4f2100d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_96762f00d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_a7bf3b80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_adb51c80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b3126700d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b9084800d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_be659280d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c32a4680d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c9202780d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cf160880d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d50be980d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_db01ca80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e0f7ab80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e6ed8c80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ec4ad700d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f2d94e80d1e111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f79e0280d1e111e1800000215ad4efdf ; -. -:_82323200d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project" ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte de ce projet."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトのための参照記号。"@ja-JP ; - IFC4-PSD:definitionAlias "이 프로젝트에서 여기에 특정한 형식에 대한 참조 ID"@ko-KR ; - IFC4-PSD:ifdguid "82323200d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "참조"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier ; - ] ; -. -:_88281300d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference to a database or a classification" ; - IFC4-PSD:definitionAlias "Référence à une base de données ou à une classification [NDT : référence, par exemple, à l'identification d'un produit dans la base INIES]"@fr-FR ; - IFC4-PSD:definitionAlias "データベースやクラスへの参照。"@ja-JP ; - IFC4-PSD:definitionAlias "데이터베이스 또는 분류에 대한 참조"@ko-KR ; - IFC4-PSD:ifdguid "88281300d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "FunctionalUnitReference" ; - IFC4-PSD:nameAlias "ReferenceUniteFonctionnelle"@fr-FR ; - IFC4-PSD:nameAlias "機能単位参照"@ja-JP ; - IFC4-PSD:nameAlias "기능단위참조"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_8f4f2100d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The unit of the quantity the environmental indicators values are related with." ; - IFC4-PSD:definitionAlias "Unité de la quantité prise en compte pour la détermination des impacts environnementaux."@fr-FR ; - IFC4-PSD:definitionAlias "関連する環境指数値の数量単位。"@ja-JP ; - IFC4-PSD:definitionAlias "환경 지표 값이 연결된 량의 단위"@ko-KR ; - IFC4-PSD:ifdguid "8f4f2100d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "Unit" ; - IFC4-PSD:nameAlias "Unite"@fr-FR ; - IFC4-PSD:nameAlias "単位"@ja-JP ; - IFC4-PSD:nameAlias "단위"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcText ; - ] ; -. -:_96762f00d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The whole life cycle or only a given phase from which environmental data are valid." ; - IFC4-PSD:definitionAlias "Le cycle de vie complet ou seulement une de ses phases pour lequel les les données environnementales sont valides"@fr-FR ; - IFC4-PSD:definitionAlias "環境データが有効であるライフサイクル全てまたは特定の段階。"@ja-JP ; - IFC4-PSD:definitionAlias "환경 데이터가 유효한지 라이프 사이클 또는 단 하나 주어진 단계"@ko-KR ; - IFC4-PSD:ifdguid "96762f00d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "LifeCyclePhase" ; - IFC4-PSD:nameAlias "PhaseCycleDeVie"@fr-FR ; - IFC4-PSD:nameAlias "ライフサイクルフェーズ"@ja-JP ; - IFC4-PSD:nameAlias "라이프 사이클 단계"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "Acquisition" ; - IFC4-PSD:enumItem "Cradletosite" ; - IFC4-PSD:enumItem "Deconstruction" ; - IFC4-PSD:enumItem "Disposal" ; - IFC4-PSD:enumItem "Disposaltransport" ; - IFC4-PSD:enumItem "Growth" ; - IFC4-PSD:enumItem "Installation" ; - IFC4-PSD:enumItem "Maintenance" ; - IFC4-PSD:enumItem "Manufacture" ; - IFC4-PSD:enumItem "NotDefined" ; - IFC4-PSD:enumItem "Occupancy" ; - IFC4-PSD:enumItem "Operation" ; - IFC4-PSD:enumItem "Procurement" ; - IFC4-PSD:enumItem "Production" ; - IFC4-PSD:enumItem "Productiontransport" ; - IFC4-PSD:enumItem "Recovery" ; - IFC4-PSD:enumItem "Refurbishment" ; - IFC4-PSD:enumItem "Repair" ; - IFC4-PSD:enumItem "Replacement" ; - IFC4-PSD:enumItem "Transport" ; - IFC4-PSD:enumItem "Usage" ; - IFC4-PSD:enumItem "UserDefined" ; - IFC4-PSD:enumItem "Waste" ; - IFC4-PSD:enumItem "Wholelifecycle" ; - ] ; -. -:_a7bf3b80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Expected service life in years." ; - IFC4-PSD:definitionAlias "Durée de vie typique exprimée en années."@fr-FR ; - IFC4-PSD:definitionAlias "数年間の期待される耐用年数。"@ja-JP ; - IFC4-PSD:definitionAlias "예상 수명"@ko-KR ; - IFC4-PSD:ifdguid "a7bf3b80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "ExpectedServiceLife" ; - IFC4-PSD:nameAlias "DureeDeVieTypique"@fr-FR ; - IFC4-PSD:nameAlias "期待される耐用期間"@ja-JP ; - IFC4-PSD:nameAlias "예상수명"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcTimeMeasure ; - ] ; -. -:_adb51c80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of energy used as defined in ISO21930:2007." ; - IFC4-PSD:definitionAlias "Consommation d'énergie primaire utilisée, telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에서 정의된 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007で定義されたエネルギー消費量。"@ja-JP ; - IFC4-PSD:ifdguid "adb51c80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "TotalPrimaryEnergyConsumptionPerUnit" ; - IFC4-PSD:nameAlias "ConsommationTotaleEnergiePrimaireParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり全一次エネルギ消費"@ja-JP ; - IFC4-PSD:nameAlias "단위당 모든 차 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_b3126700d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of water used." ; - IFC4-PSD:definitionAlias "Quantité d'eau utilisée telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]. Exprimée en litres."@fr-FR ; - IFC4-PSD:definitionAlias "リットル単位で表現された水の消費量。"@ja-JP ; - IFC4-PSD:definitionAlias "사용 수량의 리터 수"@ko-KR ; - IFC4-PSD:ifdguid "b3126700d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "WaterConsumptionPerUnit" ; - IFC4-PSD:nameAlias "ConsommationEauParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり水使用"@ja-JP ; - IFC4-PSD:nameAlias "단위 당 물 사용"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcVolumeMeasure ; - ] ; -. -:_b9084800d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of hazardous waste generated" ; - IFC4-PSD:definitionAlias "Quantité de déchets dangereux générés tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]."@fr-FR ; - IFC4-PSD:definitionAlias "生成された有害な廃棄量。"@ja-JP ; - IFC4-PSD:definitionAlias "유해 폐기물의 발생량"@ko-KR ; - IFC4-PSD:ifdguid "b9084800d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "HazardousWastePerUnit" ; - IFC4-PSD:nameAlias "DechetsDangereuxParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり有害廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "단위당 유해 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_be659280d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of non hazardous waste generated" ; - IFC4-PSD:definitionAlias "Quantité de déchets non dangereux générés tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]."@fr-FR ; - IFC4-PSD:definitionAlias "生成された無害な排気量。"@ja-JP ; - IFC4-PSD:definitionAlias "비 유해 폐기물의 발생량"@ko-KR ; - IFC4-PSD:ifdguid "be659280d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "NonHazardousWastePerUnit" ; - IFC4-PSD:nameAlias "DechetsNonDangereuxParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり非有害廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "단위당 비 유해 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_c32a4680d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of greenhouse gases emitted calculated in equivalent CO2" ; - IFC4-PSD:definitionAlias "CO2 등가 환산되는 온실 가스 발생량"@ko-KR ; - IFC4-PSD:definitionAlias "CO2で計算された温室効果ガスの放出量。"@ja-JP ; - IFC4-PSD:definitionAlias "Quantité d'émissions de gaz à effet de serre exprimée en Kg d'équivalent CO2 tels que définis dans la norme ISO21930:2007 [NDT : ainsi que dans les normes PrEN15804:2008 et NF P01-010]."@fr-FR ; - IFC4-PSD:ifdguid "c32a4680d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "ClimateChangePerUnit" ; - IFC4-PSD:nameAlias "ChangementClimatiqueParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり気候変動"@ja-JP ; - IFC4-PSD:nameAlias "단위당 기후 변화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_c9202780d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2" ; - IFC4-PSD:definitionAlias "Quantité de gaz responsables de l'acidification atmosphérique exprimée en Kg d'équivalent SO2 [NDT : selon les normes PrEN15804:2008 et NF P01-010]."@fr-FR ; - IFC4-PSD:definitionAlias "SO2で計算される大気の酸性化に影響するガスの量。"@ja-JP ; - IFC4-PSD:definitionAlias "SO2에 해당 환산된 대기 산성 화의 원인이되는 가스량"@ko-KR ; - IFC4-PSD:ifdguid "c9202780d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "AtmosphericAcidificationPerUnit" ; - IFC4-PSD:nameAlias "AcidificationAtmospheriqueParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり大気酸性化"@ja-JP ; - IFC4-PSD:nameAlias "단위당 대기 산성화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_cf160880d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of renewable energy used as defined in ISO21930:2007" ; - IFC4-PSD:definitionAlias "Consommation d'énergie renouvelable telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에 정의된 재생 가능 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007で定義される再生可能エネルギーの使用量。"@ja-JP ; - IFC4-PSD:ifdguid "cf160880d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "RenewableEnergyConsumptionPerUnit" ; - IFC4-PSD:nameAlias "ConsommationEnergieRenouvelableParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり再生可能エネルギ消費"@ja-JP ; - IFC4-PSD:nameAlias "단위당 재생 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_d50be980d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of non-renewable energy used as defined in ISO21930:2007" ; - IFC4-PSD:definitionAlias "Consommation d'énergie non renouvelable telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에 정의된 재생 불가 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007で定義される非再生エネルギーの使用量。"@ja-JP ; - IFC4-PSD:ifdguid "d50be980d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "NonRenewableEnergyConsumptionPerUnit" ; - IFC4-PSD:nameAlias "ConsommationEnergieNonRenouvelableParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり再生不可エネルギ消費"@ja-JP ; - IFC4-PSD:nameAlias "단위당 재생 불가 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_db01ca80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of resources used calculated in equivalent antimony" ; - IFC4-PSD:definitionAlias "Quantité de ressources consommées exprimée en équivalent Antimoine telles que définies dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "アンチモンで計算される資源の使用量。"@ja-JP ; - IFC4-PSD:definitionAlias "안티몬에 해당 환산된 사용 자원 량"@ko-KR ; - IFC4-PSD:ifdguid "db01ca80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "ResourceDepletionPerUnit" ; - IFC4-PSD:nameAlias "EpuisementRessourcesParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり資源消費"@ja-JP ; - IFC4-PSD:nameAlias "단위당 자원소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_e0f7ab80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of inert waste generated" ; - IFC4-PSD:definitionAlias "Quantité de déchets inertes générés [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成された安定廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "불활성 폐기물 발생량"@ko-KR ; - IFC4-PSD:ifdguid "e0f7ab80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "InertWastePerUnit" ; - IFC4-PSD:nameAlias "DechetsInertesParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり不活性廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "단위당 불황성 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_e6ed8c80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of radioactive waste generated" ; - IFC4-PSD:definitionAlias "Quantité de déchets radioactifs générés [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成された放射性廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "방사성 폐기물 발생량"@ko-KR ; - IFC4-PSD:ifdguid "e6ed8c80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "RadioactiveWastePerUnit" ; - IFC4-PSD:nameAlias "DechetsRadioactifsParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり放射性廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "단위당 방사성 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_ec4ad700d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11" ; - IFC4-PSD:definitionAlias "CFC-R11で計算される成層圏のオゾン層を破壊するガスの量。"@ja-JP ; - IFC4-PSD:definitionAlias "CFC-R11에 해당 환산된 성층권 오존층 파괴 가스량"@ko-KR ; - IFC4-PSD:definitionAlias "Quantité de gaz destructeurs de la couche d'ozone exprimée en équivalent CFC-R11 tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:ifdguid "ec4ad700d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "StratosphericOzoneLayerDestructionPerUnit" ; - IFC4-PSD:nameAlias "DestructionCoucheOzoneStartospheriqueParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり成層圏オゾン層破壊"@ja-JP ; - IFC4-PSD:nameAlias "단위당 성층권 오존층 파괴"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_f2d94e80d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene" ; - IFC4-PSD:definitionAlias "Quantité de gaz producteurs d'ozone photochimique exprimée en équivalent ethylène tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "エチレンで計算される光化学物質オゾンを生成するガスの量。"@ja-JP ; - IFC4-PSD:definitionAlias "에틸렌에 해당 환산된 광화학 오존 생성 끊 가스량"@ko-KR ; - IFC4-PSD:ifdguid "f2d94e80d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "PhotochemicalOzoneFormationPerUnit" ; - IFC4-PSD:nameAlias "FormationOzonePhotochimiqueParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり光化学オゾン生成"@ja-JP ; - IFC4-PSD:nameAlias "단위당 광화학 오존 생성"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_f79e0280d1e111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of eutrophicating compounds calculated in equivalent PO4" ; - IFC4-PSD:definitionAlias "PO4 (인산)에 상응하는 환산되는 부영 양화 성분 물량"@ko-KR ; - IFC4-PSD:definitionAlias "PO4で計算される富栄養化する化合物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "Quantité de composés responsables de l'eutrophisation exprimée en équivalent P04 tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme PrEN15804:2008]"@fr-FR ; - IFC4-PSD:ifdguid "f79e0280d1e111e1800000215ad4efdf" ; - IFC4-PSD:name "EutrophicationPerUnit" ; - IFC4-PSD:nameAlias "EutrophisationParUnite"@fr-FR ; - IFC4-PSD:nameAlias "単位あたり富栄養化"@ja-JP ; - IFC4-PSD:nameAlias "단위당 부영양화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Environmental impact indicators are related to a given “functional unit” (ISO 14040 concept). An example of functional unit is a \"Double glazing window with PVC frame\" and the unit to consider is \"one square meter of opening elements filled by this product”.\nIndicators values are valid for the whole life cycle or only a specific phase (see LifeCyclePhase property). Values of all the indicators are expressed per year according to the expected service life. The first five properties capture the characteristics of the functional unit. The following properties are related to environmental indicators.\nThere is a consensus agreement international for the five one. Last ones are not yet fully and formally agreed at the international level." ; + rdfs:label "Pset_EnvironmentalImpactIndicators" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "Environmental impact indicators are related to a given “functional unit” (ISO 14040 concept). An example of functional unit is a \"Double glazing window with PVC frame\" and the unit to consider is \"one square meter of opening elements filled by this product”.\nIndicators values are valid for the whole life cycle or only a specific phase (see LifeCyclePhase property). Values of all the indicators are expressed per year according to the expected service life. The first five properties capture the characteristics of the functional unit. The following properties are related to environmental indicators.\nThere is a consensus agreement international for the five one. Last ones are not yet fully and formally agreed at the international level." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : Les indicateurs d'impacts environnementaux sont valables pour une unité fonctionnelle, concept défini dans l'ISO 14040. Exemple : fenêtre à double vitrage et à menuiserie en PVC ; l'unité à considérer est \"un mètre carré d'ouverture remplie par ce produit\"."@fr-FR , "環境影響指標は、「機能単位functional unit (ISO 14040 コンセプト)」に関連があります。機能単位の例は「PVCフレームによる二重ガラス窓」です。そして、考慮する単位は「この製品で満たされた開口要素の1平方メートル」です。\n 指標の値は、ライフサイクル全て、または特定の段階(ライフサイクルフェーズLifeCyclePhaseプロパティ参照)だけにあてはまります。全ての指標の値は、期待される耐用年数によって年ごとに表現されます。初めの5つのプロパティは functional unitの特性を捉えています。\n以下の特性は、環境指標に関連があります。\n5つについての国際的な意見の合意があります。最後のものは、国際レベルで、まだ完全には正式に同意されていない。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EnvironmentalImpactIndicators" ; + IFC4-PSD:propertyDef :p88281300d1e111e1800000215ad4efdf , :pbe659280d1e111e1800000215ad4efdf , :pa7bf3b80d1e111e1800000215ad4efdf , :pc32a4680d1e111e1800000215ad4efdf , :pb9084800d1e111e1800000215ad4efdf , :pcf160880d1e111e1800000215ad4efdf , :pf2d94e80d1e111e1800000215ad4efdf , :pc9202780d1e111e1800000215ad4efdf , :p8f4f2100d1e111e1800000215ad4efdf , :padb51c80d1e111e1800000215ad4efdf , :pec4ad700d1e111e1800000215ad4efdf , :p82323200d1e111e1800000215ad4efdf , :pe0f7ab80d1e111e1800000215ad4efdf , :pdb01ca80d1e111e1800000215ad4efdf , :p96762f00d1e111e1800000215ad4efdf , :pb3126700d1e111e1800000215ad4efdf , :pf79e0280d1e111e1800000215ad4efdf , :pd50be980d1e111e1800000215ad4efdf , :pe6ed8c80d1e111e1800000215ad4efdf . + +:PhotochemicalOzoneFormationPerUnit + a rdf:Property ; + rdfs:seeAlso :pf2d94e80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PhotochemicalOzoneFormationPerUnit . + +:HazardousWastePerUnit + a rdf:Property ; + rdfs:seeAlso :pb9084800d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HazardousWastePerUnit . + +:pf79e0280d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of eutrophicating compounds calculated in equivalent PO4" ; + rdfs:label "EutrophicationPerUnit" ; + IFC4-PSD:definition "Quantity of eutrophicating compounds calculated in equivalent PO4" ; + IFC4-PSD:definitionAlias "Quantité de composés responsables de l'eutrophisation exprimée en équivalent P04 tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme PrEN15804:2008]"@fr-FR , ""@en , "PO4 (인산)에 상응하는 환산되는 부영 양화 성분 물량"@ko-KR , "PO4で計算される富栄養化する化合物の量。"@ja-JP ; + IFC4-PSD:ifdguid "f79e0280d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "EutrophicationPerUnit" ; + IFC4-PSD:nameAlias "単位あたり富栄養化"@ja-JP , "EutrophisationParUnite"@fr-FR , "Eutrophication Per Unit"@en , "단위당 부영양화"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:NonRenewableEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:seeAlso :pd50be980d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NonRenewableEnergyConsumptionPerUnit . + +:pb9084800d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of hazardous waste generated" ; + rdfs:label "HazardousWastePerUnit" ; + IFC4-PSD:definition "Quantity of hazardous waste generated" ; + IFC4-PSD:definitionAlias "유해 폐기물의 발생량"@ko-KR , "Quantité de déchets dangereux générés tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]."@fr-FR , "生成された有害な廃棄量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b9084800d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "HazardousWastePerUnit" ; + IFC4-PSD:nameAlias "단위당 유해 폐기물"@ko-KR , "Hazardous Waste Per Unit"@en , "単位あたり有害廃棄物"@ja-JP , "DechetsDangereuxParUnite"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:NonHazardousWastePerUnit + a rdf:Property ; + rdfs:seeAlso :pbe659280d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NonHazardousWastePerUnit . + +:ResourceDepletionPerUnit + a rdf:Property ; + rdfs:seeAlso :pdb01ca80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ResourceDepletionPerUnit . + +:Unit a rdf:Property ; + rdfs:seeAlso :p8f4f2100d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Unit . + +:pe0f7ab80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of inert waste generated" ; + rdfs:label "InertWastePerUnit" ; + IFC4-PSD:definition "Quantity of inert waste generated" ; + IFC4-PSD:definitionAlias "生成された安定廃棄物の量。"@ja-JP , ""@en , "Quantité de déchets inertes générés [NDT : selon la norme NF P01-010]"@fr-FR , "불활성 폐기물 발생량"@ko-KR ; + IFC4-PSD:ifdguid "e0f7ab80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "InertWastePerUnit" ; + IFC4-PSD:nameAlias "단위당 불황성 폐기물"@ko-KR , "Inert Waste Per Unit"@en , "DechetsInertesParUnite"@fr-FR , "単位あたり不活性廃棄物"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p82323200d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project" ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project" ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte de ce projet."@fr-FR , "이 프로젝트에서 여기에 특정한 형식에 대한 참조 ID"@ko-KR , ""@en , "このプロジェクトのための参照記号。"@ja-JP ; + IFC4-PSD:ifdguid "82323200d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:EutrophicationPerUnit + a rdf:Property ; + rdfs:seeAlso :pf79e0280d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EutrophicationPerUnit . + +:pdb01ca80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of resources used calculated in equivalent antimony" ; + rdfs:label "ResourceDepletionPerUnit" ; + IFC4-PSD:definition "Quantity of resources used calculated in equivalent antimony" ; + IFC4-PSD:definitionAlias "アンチモンで計算される資源の使用量。"@ja-JP , ""@en , "안티몬에 해당 환산된 사용 자원 량"@ko-KR , "Quantité de ressources consommées exprimée en équivalent Antimoine telles que définies dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "db01ca80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "ResourceDepletionPerUnit" ; + IFC4-PSD:nameAlias "EpuisementRessourcesParUnite"@fr-FR , "단위당 자원소비"@ko-KR , "Resource Depletion Per Unit"@en , "単位あたり資源消費"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:AtmosphericAcidificationPerUnit + a rdf:Property ; + rdfs:seeAlso :pc9202780d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericAcidificationPerUnit . + +:pe6ed8c80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of radioactive waste generated" ; + rdfs:label "RadioactiveWastePerUnit" ; + IFC4-PSD:definition "Quantity of radioactive waste generated" ; + IFC4-PSD:definitionAlias "Quantité de déchets radioactifs générés [NDT : selon la norme NF P01-010]"@fr-FR , "방사성 폐기물 발생량"@ko-KR , ""@en , "生成された放射性廃棄物の量。"@ja-JP ; + IFC4-PSD:ifdguid "e6ed8c80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "RadioactiveWastePerUnit" ; + IFC4-PSD:nameAlias "単位あたり放射性廃棄物"@ja-JP , "DechetsRadioactifsParUnite"@fr-FR , "단위당 방사성 폐기물"@ko-KR , "Radioactive Waste Per Unit"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:TotalPrimaryEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:seeAlso :padb51c80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalPrimaryEnergyConsumptionPerUnit . + +:FunctionalUnitReference + a rdf:Property ; + rdfs:seeAlso :p88281300d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FunctionalUnitReference . + +:pcf160880d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of renewable energy used as defined in ISO21930:2007" ; + rdfs:label "RenewableEnergyConsumptionPerUnit" ; + IFC4-PSD:definition "Quantity of renewable energy used as defined in ISO21930:2007" ; + IFC4-PSD:definitionAlias "ISO21930:2007で定義される再生可能エネルギーの使用量。"@ja-JP , "ISO21930 : 2007에 정의된 재생 가능 에너지 사용량"@ko-KR , ""@en , "Consommation d'énergie renouvelable telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "cf160880d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "RenewableEnergyConsumptionPerUnit" ; + IFC4-PSD:nameAlias "単位あたり再生可能エネルギ消費"@ja-JP , "ConsommationEnergieRenouvelableParUnite"@fr-FR , "단위당 재생 에너지 소비"@ko-KR , "Renewable Energy Consumption Per Unit"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . + +:p8f4f2100d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The unit of the quantity the environmental indicators values are related with." ; + rdfs:label "Unit" ; + IFC4-PSD:definition "The unit of the quantity the environmental indicators values are related with." ; + IFC4-PSD:definitionAlias ""@en , "関連する環境指数値の数量単位。"@ja-JP , "환경 지표 값이 연결된 량의 단위"@ko-KR , "Unité de la quantité prise en compte pour la détermination des impacts environnementaux."@fr-FR ; + IFC4-PSD:ifdguid "8f4f2100d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "Unit" ; + IFC4-PSD:nameAlias "단위"@ko-KR , "単位"@ja-JP , "Unit"@en , "Unite"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:pbe659280d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of non hazardous waste generated" ; + rdfs:label "NonHazardousWastePerUnit" ; + IFC4-PSD:definition "Quantity of non hazardous waste generated" ; + IFC4-PSD:definitionAlias "Quantité de déchets non dangereux générés tels que définis dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]."@fr-FR , "生成された無害な排気量。"@ja-JP , "비 유해 폐기물의 발생량"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "be659280d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "NonHazardousWastePerUnit" ; + IFC4-PSD:nameAlias "단위당 비 유해 폐기물"@ko-KR , "単位あたり非有害廃棄物"@ja-JP , "DechetsNonDangereuxParUnite"@fr-FR , "Non Hazardous Waste Per Unit"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pb3126700d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of water used." ; + rdfs:label "WaterConsumptionPerUnit" ; + IFC4-PSD:definition "Quantity of water used." ; + IFC4-PSD:definitionAlias "사용 수량의 리터 수"@ko-KR , "Quantité d'eau utilisée telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]. Exprimée en litres."@fr-FR , "リットル単位で表現された水の消費量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b3126700d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "WaterConsumptionPerUnit" ; + IFC4-PSD:nameAlias "単位あたり水使用"@ja-JP , "Water Consumption Per Unit"@en , "ConsommationEauParUnite"@fr-FR , "단위 당 물 사용"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:StratosphericOzoneLayerDestructionPerUnit + a rdf:Property ; + rdfs:seeAlso :pec4ad700d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StratosphericOzoneLayerDestructionPerUnit . + +:ExpectedServiceLife a rdf:Property ; + rdfs:seeAlso :pa7bf3b80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExpectedServiceLife . + +:RadioactiveWastePerUnit + a rdf:Property ; + rdfs:seeAlso :pe6ed8c80d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RadioactiveWastePerUnit . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WaterConsumptionPerUnit + a rdf:Property ; + rdfs:seeAlso :pb3126700d1e111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterConsumptionPerUnit . + +:pd50be980d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of non-renewable energy used as defined in ISO21930:2007" ; + rdfs:label "NonRenewableEnergyConsumptionPerUnit" ; + IFC4-PSD:definition "Quantity of non-renewable energy used as defined in ISO21930:2007" ; + IFC4-PSD:definitionAlias "ISO21930:2007で定義される非再生エネルギーの使用量。"@ja-JP , "ISO21930 : 2007에 정의된 재생 불가 에너지 사용량"@ko-KR , ""@en , "Consommation d'énergie non renouvelable telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "d50be980d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "NonRenewableEnergyConsumptionPerUnit" ; + IFC4-PSD:nameAlias "単位あたり再生不可エネルギ消費"@ja-JP , "ConsommationEnergieNonRenouvelableParUnite"@fr-FR , "Non Renewable Energy Consumption Per Unit"@en , "단위당 재생 불가 에너지 소비"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . + +:padb51c80d1e111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of energy used as defined in ISO21930:2007." ; + rdfs:label "TotalPrimaryEnergyConsumptionPerUnit" ; + IFC4-PSD:definition "Quantity of energy used as defined in ISO21930:2007." ; + IFC4-PSD:definitionAlias ""@en , "ISO21930:2007で定義されたエネルギー消費量。"@ja-JP , "Consommation d'énergie primaire utilisée, telle que définie dans la norme ISO21930:2007 [NDT : et dans la norme NF P01-010]"@fr-FR , "ISO21930 : 2007에서 정의된 에너지 사용량"@ko-KR ; + IFC4-PSD:ifdguid "adb51c80d1e111e1800000215ad4efdf" ; + IFC4-PSD:name "TotalPrimaryEnergyConsumptionPerUnit" ; + IFC4-PSD:nameAlias "単位あたり全一次エネルギ消費"@ja-JP , "단위당 모든 차 에너지 소비"@ko-KR , "ConsommationTotaleEnergiePrimaireParUnite"@fr-FR , "Total Primary Energy Consumption Per Unit"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_EnvironmentalImpactValues.ttl b/converter/src/main/resources/pset/Pset_EnvironmentalImpactValues.ttl index f93f0a12..307b34b3 100644 --- a/converter/src/main/resources/pset/Pset_EnvironmentalImpactValues.ttl +++ b/converter/src/main/resources/pset/Pset_EnvironmentalImpactValues.ttl @@ -1,270 +1,320 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_EnvironmentalImpactValues -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pb8fbc6f7870b486e80cd661b9dd0c27c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lead in time before start of process." ; + rdfs:label "LeadInTime" ; + IFC4-PSD:definition "Lead in time before start of process." ; + IFC4-PSD:definitionAlias "Lead in time before start of process."@en ; + IFC4-PSD:ifdguid "b8fbc6f7870b486e80cd661b9dd0c27c" ; + IFC4-PSD:name "LeadInTime" ; + IFC4-PSD:nameAlias "Lead In Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:PhotochemicalOzoneFormation + a rdf:Property ; + rdfs:seeAlso :p46e43300d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PhotochemicalOzoneFormation . + +:LeadInTime a rdf:Property ; + rdfs:seeAlso :pb8fbc6f7870b486e80cd661b9dd0c27c ; + rdfs:subPropertyOf IFC4-PSD:LeadInTime . + +:TotalPrimaryEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :p04225b00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalPrimaryEnergyConsumption . + +:ResourceDepletion a rdf:Property ; + rdfs:seeAlso :p303ddc00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ResourceDepletion . + +:RenewableEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :p25834700d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RenewableEnergyConsumption . + +:NonRenewableEnergyConsumption + a rdf:Property ; + rdfs:seeAlso :p2ae09180d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NonRenewableEnergyConsumption . + +:StratosphericOzoneLayerDestruction + a rdf:Property ; + rdfs:seeAlso :p40ee5200d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StratosphericOzoneLayerDestruction . + +:InertWaste a rdf:Property ; + rdfs:seeAlso :p359b2680d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InertWaste . + +:Duration a rdf:Property ; + rdfs:seeAlso :pb5b49d200bf249a49d558cef7acb75bd ; + rdfs:subPropertyOf IFC4-PSD:Duration . + +:RadioactiveWaste a rdf:Property ; + rdfs:seeAlso :p3b910780d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RadioactiveWaste . + +:p4cda1400d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of eutrophicating compounds calculated in equivalent PO4." ; + rdfs:label "Eutrophication" ; + IFC4-PSD:definition "Quantity of eutrophicating compounds calculated in equivalent PO4." ; + IFC4-PSD:definitionAlias "Quantité de composés responsables de l'eutrophisation exprimée en équivalent P04 [NDT : selon la norme PrEN15804:2008]"@fr-FR , "PO4 (인산)에 상응하는 환산되는 부영 양화 성분 물량"@ko-KR , "算出されたPO4と等しい富栄養化を混合する量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4cda1400d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "Eutrophication" ; + IFC4-PSD:nameAlias "Eutrophication"@en , "富栄養化"@ja-JP , "부영 양화"@ko-KR , "Eutrophisation"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p04225b00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of energy used as defined in ISO21930:2007." ; + rdfs:label "TotalPrimaryEnergyConsumption" ; + IFC4-PSD:definition "Quantity of energy used as defined in ISO21930:2007." ; + IFC4-PSD:definitionAlias ""@en , "Consommation d'énergie primaire utilisée, telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR , "ISO21930 : 2007에서 정의된 에너지 사용량"@ko-KR , "ISO21930:2007.で定義されているエネルギー量。"@ja-JP ; + IFC4-PSD:ifdguid "04225b00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "TotalPrimaryEnergyConsumption" ; + IFC4-PSD:nameAlias "ConsommationTotaleEnergiePrimaire"@fr-FR , "主なエネルギー消費の総量"@ja-JP , "모든 차 에너지 소비"@ko-KR , "Total Primary Energy Consumption"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . + +:Eutrophication a rdf:Property ; + rdfs:seeAlso :p4cda1400d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Eutrophication . + +:p14d2d100d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of non hazardous waste generated." ; + rdfs:label "NonHazardousWaste" ; + IFC4-PSD:definition "Quantity of non hazardous waste generated." ; + IFC4-PSD:definitionAlias ""@en , "비 유해 폐기물의 발생량"@ko-KR , "Quantité de déchets non dangereux générés [NDT : tels que définis dans la norme NF P01-010]"@fr-FR , "生成される一般廃棄物の量。"@ja-JP ; + IFC4-PSD:ifdguid "14d2d100d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "NonHazardousWaste" ; + IFC4-PSD:nameAlias "一般廃棄物"@ja-JP , "DechetsNonDangereux"@fr-FR , "Non Hazardous Waste"@en , "비 유해 폐기물"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0f758680d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of hazardous waste generated." ; + rdfs:label "HazardousWaste" ; + IFC4-PSD:definition "Quantity of hazardous waste generated." ; + IFC4-PSD:definitionAlias ""@en , "유해 폐기물의 발생량"@ko-KR , "Quantité de déchets dangereux générés [NDT : tels que définis dans la norme NF P01-010]"@fr-FR , "生成される有害廃棄物の量。"@ja-JP ; + IFC4-PSD:ifdguid "0f758680d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "HazardousWaste" ; + IFC4-PSD:nameAlias "유해 폐기물"@ko-KR , "DechetsDangereux"@fr-FR , "Hazardous Waste"@en , "有害廃棄物"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p40ee5200d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11." ; + rdfs:label "StratosphericOzoneLayerDestruction" ; + IFC4-PSD:definition "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11." ; + IFC4-PSD:definitionAlias ""@en , "CFC-R11에 해당 환산된 성층권 오존층 파괴 가스량"@ko-KR , "算出された CFC-R11と等しい大気オゾン層を破壊するガスの量。"@ja-JP , "Quantité de gaz destructeurs de la couche d'ozone exprimée en équivalent CFC-R11 [NDT : selon la norme NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "40ee5200d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "StratosphericOzoneLayerDestruction" ; + IFC4-PSD:nameAlias "DestructionCoucheOzoneStartospherique"@fr-FR , "성층권 오존층 파괴"@ko-KR , "大気オゾン層破壊"@ja-JP , "Stratospheric Ozone Layer Destruction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p1a301b80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of greenhouse gases emitted calculated in equivalent CO2." ; + rdfs:label "ClimateChange" ; + IFC4-PSD:definition "Quantity of greenhouse gases emitted calculated in equivalent CO2." ; + IFC4-PSD:definitionAlias "算出されたCO2と等しい放出される温室効果ガスの量。"@ja-JP , "Quantité d'émissions de gaz à effet de serre exprimée en Kg d'équivalent CO2, selon les normes PrEN15804:2008 [NDT : ou NF P01-010]"@fr-FR , ""@en , "CO2 등가 환산되는 온실 가스 발생량"@ko-KR ; + IFC4-PSD:ifdguid "1a301b80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "ClimateChange" ; + IFC4-PSD:nameAlias "Climate Change"@en , "ChangementClimatique"@fr-FR , "기후변화"@ko-KR , "気候変化"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p1f8d6600d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2." ; + rdfs:label "AtmosphericAcidification" ; + IFC4-PSD:definition "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2." ; + IFC4-PSD:definitionAlias "算出されたSO2と等しい大気中の酸性化の責任を負うガスの量。"@ja-JP , ""@en , "Quantité de gaz responsables de l'acidification atmosphérique exprimée en Kg d'équivalent SO2, selon les normes PrEN15804:2008 [NDT : ou NF P01-010]"@fr-FR , "SO2에 해당 환산된 대기 산성 화의 원인이되는 가스량"@ko-KR ; + IFC4-PSD:ifdguid "1f8d6600d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericAcidification" ; + IFC4-PSD:nameAlias "大気の酸性化"@ja-JP , "Atmospheric Acidification"@en , "대기산성화"@ko-KR , "AcidificationAtmospherique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p3b910780d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of radioactive waste generated." ; + rdfs:label "RadioactiveWaste" ; + IFC4-PSD:definition "Quantity of radioactive waste generated." ; + IFC4-PSD:definitionAlias "Quantité de déchets radioactifs générés [NDT : selon la norme NF P01-010]"@fr-FR , "방사성 폐기물 발생량"@ko-KR , ""@en , "生成される放射性廃棄物の量。"@ja-JP ; + IFC4-PSD:ifdguid "3b910780d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "RadioactiveWaste" ; + IFC4-PSD:nameAlias "放射性廃棄物"@ja-JP , "Radioactive Waste"@en , "방사성 폐기물"@ko-KR , "DechetsRadioactifs"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p25834700d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of renewable energy used as defined in ISO21930:2007" ; + rdfs:label "RenewableEnergyConsumption" ; + IFC4-PSD:definition "Quantity of renewable energy used as defined in ISO21930:2007" ; + IFC4-PSD:definitionAlias ""@en , "ISO21930 : 2007에 정의된 재생 가능 에너지 사용량"@ko-KR , "ISO21930:2007 で定義されている継続可能なエネルギー消費量。"@ja-JP , "Consommation d'énergie renouvelable telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR ; + IFC4-PSD:ifdguid "25834700d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "RenewableEnergyConsumption" ; + IFC4-PSD:nameAlias "継続可能なエネルギー消費量"@ja-JP , "Renewable Energy Consumption"@en , "재생 가능 에너지 소비"@ko-KR , "ConsommationEnergieRenouvelable"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . + +:ClimateChange a rdf:Property ; + rdfs:seeAlso :p1a301b80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClimateChange . + +:p46e43300d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene." ; + rdfs:label "PhotochemicalOzoneFormation" ; + IFC4-PSD:definition "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene." ; + IFC4-PSD:definitionAlias "Quantité de gaz producteurs d'ozone photochimique exprimée en équivalent ethylène [NDT : selon la norme NF P01-010]"@fr-FR , "에틸렌에 해당 환산된 광화학 오존 생성 끊 가스량"@ko-KR , ""@en , "算出された エチレンと等しい光化学オゾン層を生成するガスの量。"@ja-JP ; + IFC4-PSD:ifdguid "46e43300d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "PhotochemicalOzoneFormation" ; + IFC4-PSD:nameAlias "FormationOzonePhotochimique"@fr-FR , "光化学オゾン生成"@ja-JP , "광화학 오존 생성"@ko-KR , "Photochemical Ozone Formation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p359b2680d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of inert waste generated ." ; + rdfs:label "InertWaste" ; + IFC4-PSD:definition "Quantity of inert waste generated ." ; + IFC4-PSD:definitionAlias "Quantité de déchets inertes générés [NDT : selon la norme NF P01-010]"@fr-FR , "生成される安定廃棄物の量。"@ja-JP , ""@en , "불활성 폐기물 발생량"@ko-KR ; + IFC4-PSD:ifdguid "359b2680d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "InertWaste" ; + IFC4-PSD:nameAlias "DechetsInertes"@fr-FR , "Inert Waste"@en , "불활성 폐기불"@ko-KR , "安定廃棄物"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pb5b49d200bf249a49d558cef7acb75bd + a IFC4-PSD:PropertyDef ; + rdfs:comment "Duration of process." ; + rdfs:label "Duration" ; + IFC4-PSD:definition "Duration of process." ; + IFC4-PSD:definitionAlias "Duration of process."@en ; + IFC4-PSD:ifdguid "b5b49d200bf249a49d558cef7acb75bd" ; + IFC4-PSD:name "Duration" ; + IFC4-PSD:nameAlias "Duration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + :Pset_EnvironmentalImpactValues - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcElement ; - IFC4-PSD:applicableTypeValue "IfcElement" ; - IFC4-PSD:definition """The following properties capture environmental impact values of an element. They correspond to the indicators defined into Pset_EnvironmentalImpactIndicators. -Environmental impact values are obtained multiplying indicator value per unit by the relevant quantity of the element.""" ; - IFC4-PSD:definitionAlias "Définition de l'IAI : les propriétés suivantes capturent les valeurs des impacts environnementaux d'un élément. Ils correspondent aux indicateurs définis dans Pset_EnvironmentalImpactIndicators."@fr-FR ; - IFC4-PSD:definitionAlias """IAIによる定義:次のプロパティは、要素の環境への影響値を捕える。それらは Pset_EnvironmentalImpactIndicators に定義されている指標に対応。 -環境に影響する値は、要素の適切な数量によって、単位あたりに割り増した値を取得。"""@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_EnvironmentalImpactValues" ; - IFC4-PSD:propertyDef :_04225b00d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_097fa580d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0f758680d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_14d2d100d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1a301b80d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1f8d6600d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_25834700d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2ae09180d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_303ddc00d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_359b2680d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3b910780d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_40ee5200d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_46e43300d1e211e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4cda1400d1e211e1800000215ad4efdf ; -. -:_04225b00d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of energy used as defined in ISO21930:2007." ; - IFC4-PSD:definitionAlias "Consommation d'énergie primaire utilisée, telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에서 정의된 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007.で定義されているエネルギー量。"@ja-JP ; - IFC4-PSD:ifdguid "04225b00d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "TotalPrimaryEnergyConsumption" ; - IFC4-PSD:nameAlias "ConsommationTotaleEnergiePrimaire"@fr-FR ; - IFC4-PSD:nameAlias "主なエネルギー消費の総量"@ja-JP ; - IFC4-PSD:nameAlias "모든 차 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_097fa580d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of water used." ; - IFC4-PSD:definitionAlias "Quantité d'eau utilisée [NDT : telle que définie dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "水の消費量。"@ja-JP ; - IFC4-PSD:definitionAlias "사용 수량의 리터 수"@ko-KR ; - IFC4-PSD:ifdguid "097fa580d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "WaterConsumption" ; - IFC4-PSD:nameAlias "ConsommationEau"@fr-FR ; - IFC4-PSD:nameAlias "水消費量"@ja-JP ; - IFC4-PSD:nameAlias "물 사용"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcVolumeMeasure ; - ] ; -. -:_0f758680d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of hazardous waste generated." ; - IFC4-PSD:definitionAlias "Quantité de déchets dangereux générés [NDT : tels que définis dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成される有害廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "유해 폐기물의 발생량"@ko-KR ; - IFC4-PSD:ifdguid "0f758680d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "HazardousWaste" ; - IFC4-PSD:nameAlias "DechetsDangereux"@fr-FR ; - IFC4-PSD:nameAlias "有害廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "유해 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_14d2d100d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of non hazardous waste generated." ; - IFC4-PSD:definitionAlias "Quantité de déchets non dangereux générés [NDT : tels que définis dans la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成される一般廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "비 유해 폐기물의 발생량"@ko-KR ; - IFC4-PSD:ifdguid "14d2d100d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "NonHazardousWaste" ; - IFC4-PSD:nameAlias "DechetsNonDangereux"@fr-FR ; - IFC4-PSD:nameAlias "一般廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "비 유해 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_1a301b80d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of greenhouse gases emitted calculated in equivalent CO2." ; - IFC4-PSD:definitionAlias "CO2 등가 환산되는 온실 가스 발생량"@ko-KR ; - IFC4-PSD:definitionAlias "Quantité d'émissions de gaz à effet de serre exprimée en Kg d'équivalent CO2, selon les normes PrEN15804:2008 [NDT : ou NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "算出されたCO2と等しい放出される温室効果ガスの量。"@ja-JP ; - IFC4-PSD:ifdguid "1a301b80d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "ClimateChange" ; - IFC4-PSD:nameAlias "ChangementClimatique"@fr-FR ; - IFC4-PSD:nameAlias "気候変化"@ja-JP ; - IFC4-PSD:nameAlias "기후변화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_1f8d6600d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2." ; - IFC4-PSD:definitionAlias "Quantité de gaz responsables de l'acidification atmosphérique exprimée en Kg d'équivalent SO2, selon les normes PrEN15804:2008 [NDT : ou NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "SO2에 해당 환산된 대기 산성 화의 원인이되는 가스량"@ko-KR ; - IFC4-PSD:definitionAlias "算出されたSO2と等しい大気中の酸性化の責任を負うガスの量。"@ja-JP ; - IFC4-PSD:ifdguid "1f8d6600d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "AtmosphericAcidification" ; - IFC4-PSD:nameAlias "AcidificationAtmospherique"@fr-FR ; - IFC4-PSD:nameAlias "大気の酸性化"@ja-JP ; - IFC4-PSD:nameAlias "대기산성화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_25834700d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of renewable energy used as defined in ISO21930:2007" ; - IFC4-PSD:definitionAlias "Consommation d'énergie renouvelable telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에 정의된 재생 가능 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007 で定義されている継続可能なエネルギー消費量。"@ja-JP ; - IFC4-PSD:ifdguid "25834700d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "RenewableEnergyConsumption" ; - IFC4-PSD:nameAlias "ConsommationEnergieRenouvelable"@fr-FR ; - IFC4-PSD:nameAlias "継続可能なエネルギー消費量"@ja-JP ; - IFC4-PSD:nameAlias "재생 가능 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_2ae09180d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of non-renewable energy used as defined in ISO21930:2007" ; - IFC4-PSD:definitionAlias "Consommation d'énergie non renouvelable telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "ISO21930 : 2007에 정의된 재생 불가 에너지 사용량"@ko-KR ; - IFC4-PSD:definitionAlias "ISO21930:2007 で定義されている継続不可能なエネルギー消費量。"@ja-JP ; - IFC4-PSD:ifdguid "2ae09180d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "NonRenewableEnergyConsumption" ; - IFC4-PSD:nameAlias "ConsommationEnergieNonRenouvelable"@fr-FR ; - IFC4-PSD:nameAlias "継続不可能なエネルギー消費量"@ja-JP ; - IFC4-PSD:nameAlias "재생 불가 에너지 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcEnergyMeasure ; - ] ; -. -:_303ddc00d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of resources used calculated in equivalent antimony." ; - IFC4-PSD:definitionAlias "Quantité de ressources consommées exprimée en équivalent Antimoine [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "算出されたアンチモンと同等な資源の量。"@ja-JP ; - IFC4-PSD:definitionAlias "안티몬에 해당 환산된 사용 자원 량"@ko-KR ; - IFC4-PSD:ifdguid "303ddc00d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "ResourceDepletion" ; - IFC4-PSD:nameAlias "EpuisementRessources"@fr-FR ; - IFC4-PSD:nameAlias "資源の枯渇"@ja-JP ; - IFC4-PSD:nameAlias "자원 소비"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_359b2680d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of inert waste generated ." ; - IFC4-PSD:definitionAlias "Quantité de déchets inertes générés [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成される安定廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "불활성 폐기물 발생량"@ko-KR ; - IFC4-PSD:ifdguid "359b2680d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "InertWaste" ; - IFC4-PSD:nameAlias "DechetsInertes"@fr-FR ; - IFC4-PSD:nameAlias "安定廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "불활성 폐기불"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_3b910780d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of radioactive waste generated." ; - IFC4-PSD:definitionAlias "Quantité de déchets radioactifs générés [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "生成される放射性廃棄物の量。"@ja-JP ; - IFC4-PSD:definitionAlias "방사성 폐기물 발생량"@ko-KR ; - IFC4-PSD:ifdguid "3b910780d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "RadioactiveWaste" ; - IFC4-PSD:nameAlias "DechetsRadioactifs"@fr-FR ; - IFC4-PSD:nameAlias "放射性廃棄物"@ja-JP ; - IFC4-PSD:nameAlias "방사성 폐기물"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_40ee5200d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases destroying the stratospheric ozone layer calculated in equivalent CFC-R11." ; - IFC4-PSD:definitionAlias "CFC-R11에 해당 환산된 성층권 오존층 파괴 가스량"@ko-KR ; - IFC4-PSD:definitionAlias "Quantité de gaz destructeurs de la couche d'ozone exprimée en équivalent CFC-R11 [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "算出された CFC-R11と等しい大気オゾン層を破壊するガスの量。"@ja-JP ; - IFC4-PSD:ifdguid "40ee5200d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "StratosphericOzoneLayerDestruction" ; - IFC4-PSD:nameAlias "DestructionCoucheOzoneStartospherique"@fr-FR ; - IFC4-PSD:nameAlias "大気オゾン層破壊"@ja-JP ; - IFC4-PSD:nameAlias "성층권 오존층 파괴"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_46e43300d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of gases creating the photochemical ozone calculated in equivalent ethylene." ; - IFC4-PSD:definitionAlias "Quantité de gaz producteurs d'ozone photochimique exprimée en équivalent ethylène [NDT : selon la norme NF P01-010]"@fr-FR ; - IFC4-PSD:definitionAlias "算出された エチレンと等しい光化学オゾン層を生成するガスの量。"@ja-JP ; - IFC4-PSD:definitionAlias "에틸렌에 해당 환산된 광화학 오존 생성 끊 가스량"@ko-KR ; - IFC4-PSD:ifdguid "46e43300d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "PhotochemicalOzoneFormation" ; - IFC4-PSD:nameAlias "FormationOzonePhotochimique"@fr-FR ; - IFC4-PSD:nameAlias "光化学オゾン生成"@ja-JP ; - IFC4-PSD:nameAlias "광화학 오존 생성"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. -:_4cda1400d1e211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Quantity of eutrophicating compounds calculated in equivalent PO4." ; - IFC4-PSD:definitionAlias "PO4 (인산)에 상응하는 환산되는 부영 양화 성분 물량"@ko-KR ; - IFC4-PSD:definitionAlias "Quantité de composés responsables de l'eutrophisation exprimée en équivalent P04 [NDT : selon la norme PrEN15804:2008]"@fr-FR ; - IFC4-PSD:definitionAlias "算出されたPO4と等しい富栄養化を混合する量。"@ja-JP ; - IFC4-PSD:ifdguid "4cda1400d1e211e1800000215ad4efdf" ; - IFC4-PSD:name "Eutrophication" ; - IFC4-PSD:nameAlias "Eutrophisation"@fr-FR ; - IFC4-PSD:nameAlias "富栄養化"@ja-JP ; - IFC4-PSD:nameAlias "부영 양화"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcMassMeasure ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The following properties capture environmental impact values of an element. They correspond to the indicators defined into Pset_EnvironmentalImpactIndicators. \nEnvironmental impact values are obtained multiplying indicator value per unit by the relevant quantity of the element." ; + rdfs:label "Pset_EnvironmentalImpactValues" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "The following properties capture environmental impact values of an element. They correspond to the indicators defined into Pset_EnvironmentalImpactIndicators. \nEnvironmental impact values are obtained multiplying indicator value per unit by the relevant quantity of the element." ; + IFC4-PSD:definitionAlias "IAIによる定義:次のプロパティは、要素の環境への影響値を捕える。それらは Pset_EnvironmentalImpactIndicators に定義されている指標に対応。\n環境に影響する値は、要素の適切な数量によって、単位あたりに割り増した値を取得。"@ja-JP , "Définition de l'IAI : les propriétés suivantes capturent les valeurs des impacts environnementaux d'un élément. Ils correspondent aux indicateurs définis dans Pset_EnvironmentalImpactIndicators."@fr-FR , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EnvironmentalImpactValues" ; + IFC4-PSD:propertyDef :p359b2680d1e211e1800000215ad4efdf , :p40ee5200d1e211e1800000215ad4efdf , :pb8fbc6f7870b486e80cd661b9dd0c27c , :p097fa580d1e211e1800000215ad4efdf , :p88eae355e7df464a849be613af48fa32 , :p14d2d100d1e211e1800000215ad4efdf , :p46e43300d1e211e1800000215ad4efdf , :p303ddc00d1e211e1800000215ad4efdf , :p3b910780d1e211e1800000215ad4efdf , :pb5b49d200bf249a49d558cef7acb75bd , :p04225b00d1e211e1800000215ad4efdf , :p1f8d6600d1e211e1800000215ad4efdf , :p25834700d1e211e1800000215ad4efdf , :p0f758680d1e211e1800000215ad4efdf , :p2ae09180d1e211e1800000215ad4efdf , :p1a301b80d1e211e1800000215ad4efdf , :p4cda1400d1e211e1800000215ad4efdf . + +:HazardousWaste a rdf:Property ; + rdfs:seeAlso :p0f758680d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HazardousWaste . + +:p097fa580d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of water used." ; + rdfs:label "WaterConsumption" ; + IFC4-PSD:definition "Quantity of water used." ; + IFC4-PSD:definitionAlias ""@en , "사용 수량의 리터 수"@ko-KR , "Quantité d'eau utilisée [NDT : telle que définie dans la norme NF P01-010]"@fr-FR , "水の消費量。"@ja-JP ; + IFC4-PSD:ifdguid "097fa580d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "WaterConsumption" ; + IFC4-PSD:nameAlias "Water Consumption"@en , "물 사용"@ko-KR , "水消費量"@ja-JP , "ConsommationEau"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:NonHazardousWaste a rdf:Property ; + rdfs:seeAlso :p14d2d100d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NonHazardousWaste . + +:LeadOutTime a rdf:Property ; + rdfs:seeAlso :p88eae355e7df464a849be613af48fa32 ; + rdfs:subPropertyOf IFC4-PSD:LeadOutTime . + +:WaterConsumption a rdf:Property ; + rdfs:seeAlso :p097fa580d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterConsumption . + +:p2ae09180d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of non-renewable energy used as defined in ISO21930:2007" ; + rdfs:label "NonRenewableEnergyConsumption" ; + IFC4-PSD:definition "Quantity of non-renewable energy used as defined in ISO21930:2007" ; + IFC4-PSD:definitionAlias ""@en , "Consommation d'énergie non renouvelable telle que définie dans les normes ISO21930:2007 [NDT : ou NF P01-010]"@fr-FR , "ISO21930:2007 で定義されている継続不可能なエネルギー消費量。"@ja-JP , "ISO21930 : 2007에 정의된 재생 불가 에너지 사용량"@ko-KR ; + IFC4-PSD:ifdguid "2ae09180d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "NonRenewableEnergyConsumption" ; + IFC4-PSD:nameAlias "Non Renewable Energy Consumption"@en , "ConsommationEnergieNonRenouvelable"@fr-FR , "재생 불가 에너지 소비"@ko-KR , "継続不可能なエネルギー消費量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcEnergyMeasure + ] . + +:p303ddc00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Quantity of resources used calculated in equivalent antimony." ; + rdfs:label "ResourceDepletion" ; + IFC4-PSD:definition "Quantity of resources used calculated in equivalent antimony." ; + IFC4-PSD:definitionAlias ""@en , "안티몬에 해당 환산된 사용 자원 량"@ko-KR , "Quantité de ressources consommées exprimée en équivalent Antimoine [NDT : selon la norme NF P01-010]"@fr-FR , "算出されたアンチモンと同等な資源の量。"@ja-JP ; + IFC4-PSD:ifdguid "303ddc00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "ResourceDepletion" ; + IFC4-PSD:nameAlias "EpuisementRessources"@fr-FR , "자원 소비"@ko-KR , "Resource Depletion"@en , "資源の枯渇"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p88eae355e7df464a849be613af48fa32 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lead out time after end of process." ; + rdfs:label "LeadOutTime" ; + IFC4-PSD:definition "Lead out time after end of process." ; + IFC4-PSD:definitionAlias "Lead out time after end of process."@en ; + IFC4-PSD:ifdguid "88eae355e7df464a849be613af48fa32" ; + IFC4-PSD:name "LeadOutTime" ; + IFC4-PSD:nameAlias "Lead Out Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:AtmosphericAcidification + a rdf:Property ; + rdfs:seeAlso :p1f8d6600d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericAcidification . diff --git a/converter/src/main/resources/pset/Pset_EvaporativeCoolerPHistory.ttl b/converter/src/main/resources/pset/Pset_EvaporativeCoolerPHistory.ttl new file mode 100644 index 00000000..f9835c39 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_EvaporativeCoolerPHistory.ttl @@ -0,0 +1,114 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5f544d80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sensible heat transfer rate to primary air flow." ; + rdfs:label "SensibleHeatTransferRate" ; + IFC4-PSD:definition "Sensible heat transfer rate to primary air flow." ; + IFC4-PSD:definitionAlias "一次空気流の顕熱交換量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5f544d80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleHeatTransferRate" ; + IFC4-PSD:nameAlias "顕熱交換量"@ja-JP , "Sensible Heat Transfer Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Effectiveness a rdf:Property ; + rdfs:seeAlso :p5c595d00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Effectiveness . + +:WaterSumpTemperature + a rdf:Property ; + rdfs:seeAlso :p582d3f80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterSumpTemperature . + +:p582d3f80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water sump temperature." ; + rdfs:label "WaterSumpTemperature" ; + IFC4-PSD:definition "Water sump temperature." ; + IFC4-PSD:definitionAlias "液温度 (水溜り温度)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "582d3f80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "WaterSumpTemperature" ; + IFC4-PSD:nameAlias "Water Sump Temperature"@en , "液温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LatentHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p62e7d480d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LatentHeatTransferRate . + +:TotalHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p65e2c500d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatTransferRate . + +:p62e7d480d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Latent heat transfer rate to primary air flow." ; + rdfs:label "LatentHeatTransferRate" ; + IFC4-PSD:definition "Latent heat transfer rate to primary air flow." ; + IFC4-PSD:definitionAlias ""@en , "一次空気流の潜熱交換量"@ja-JP ; + IFC4-PSD:ifdguid "62e7d480d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "LatentHeatTransferRate" ; + IFC4-PSD:nameAlias "Latent Heat Transfer Rate"@en , "潜熱交換量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p65e2c500d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer rate to primary air flow." ; + rdfs:label "TotalHeatTransferRate" ; + IFC4-PSD:definition "Total heat transfer rate to primary air flow." ; + IFC4-PSD:definitionAlias ""@en , "一次空気流の全熱交換量"@ja-JP ; + IFC4-PSD:ifdguid "65e2c500d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatTransferRate" ; + IFC4-PSD:nameAlias "Total Heat Transfer Rate"@en , "全熱交換量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_EvaporativeCoolerPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Evaporative cooler performance history attributes." ; + rdfs:label "Pset_EvaporativeCoolerPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcEvaporativeCooler ; + IFC4-PSD:applicableTypeValue "IfcEvaporativeCooler" ; + IFC4-PSD:definition "Evaporative cooler performance history attributes." ; + IFC4-PSD:definitionAlias "蒸発冷却器の性能履歴属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EvaporativeCoolerPHistory" ; + IFC4-PSD:propertyDef :p5f544d80d1e211e1800000215ad4efdf , :p65e2c500d1e211e1800000215ad4efdf , :p5c595d00d1e211e1800000215ad4efdf , :p62e7d480d1e211e1800000215ad4efdf , :p582d3f80d1e211e1800000215ad4efdf . + +:p5c595d00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the change in dry bulb temperature of the (primary) air stream to the difference between the entering dry bulb temperature of the (primary) air and the wet-bulb temperature of the (secondary) air." ; + rdfs:label "Effectiveness" ; + IFC4-PSD:definition "Ratio of the change in dry bulb temperature of the (primary) air stream to the difference between the entering dry bulb temperature of the (primary) air and the wet-bulb temperature of the (secondary) air." ; + IFC4-PSD:definitionAlias ""@en , "(一次)空気の入力乾球温度と(二次)空気の湿球温度の差に対する(一次)空気の流れの乾球温度の変化の割合。"@ja-JP ; + IFC4-PSD:ifdguid "5c595d00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "Effectiveness" ; + IFC4-PSD:nameAlias "Effectiveness"@en , "効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SensibleHeatTransferRate + a rdf:Property ; + rdfs:seeAlso :p5f544d80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleHeatTransferRate . diff --git a/converter/src/main/resources/pset/Pset_EvaporativeCoolerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_EvaporativeCoolerTypeCommon.ttl new file mode 100644 index 00000000..05ff72bd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_EvaporativeCoolerTypeCommon.ttl @@ -0,0 +1,183 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FlowArrangement a rdf:Property ; + rdfs:seeAlso :p86128400d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowArrangement . + +:EffectivenessTable a rdf:Property ; + rdfs:seeAlso :pa7737000d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EffectivenessTable . + +:p7004c380d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "7004c380d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WaterPressDropCurve a rdf:Property ; + rdfs:seeAlso :pbce89a00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterPressDropCurve . + +:pa2162580d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Make-up water requirement." ; + rdfs:label "WaterRequirement" ; + IFC4-PSD:definition "Make-up water requirement." ; + IFC4-PSD:definitionAlias "水の要件"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a2162580d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "WaterRequirement" ; + IFC4-PSD:nameAlias "水要件"@ja-JP , "Water Requirement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p99255400d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operation ambient air temperature range." ; + rdfs:label "OperationTemperatureRange" ; + IFC4-PSD:definition "Allowable operation ambient air temperature range." ; + IFC4-PSD:definitionAlias "許容作動周囲空気温度範囲"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "99255400d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "OperationTemperatureRange" ; + IFC4-PSD:nameAlias "動作温度範囲"@ja-JP , "Operation Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pbce89a00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water pressure drop as function of water flow rate." ; + rdfs:label "WaterPressDropCurve" ; + IFC4-PSD:definition "Water pressure drop as function of water flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bce89a00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "WaterPressDropCurve" ; + IFC4-PSD:nameAlias "Water Press Drop Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p93c80980d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat exchange area." ; + rdfs:label "HeatExchangeArea" ; + IFC4-PSD:definition "Heat exchange area." ; + IFC4-PSD:definitionAlias "熱交換面積"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "93c80980d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "HeatExchangeArea" ; + IFC4-PSD:nameAlias "熱交換面積"@ja-JP , "Heat Exchange Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pa7737000d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total heat transfer effectiveness curve as a function of the primary air flow rate." ; + rdfs:label "EffectivenessTable" ; + IFC4-PSD:definition "Total heat transfer effectiveness curve as a function of the primary air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a7737000d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "EffectivenessTable" ; + IFC4-PSD:nameAlias "Effectiveness Table"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p76933b00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "76933b00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p86128400d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "CounterFlow: Air and water flow enter in different directions.\n\nCrossFlow: Air and water flow are perpendicular.\nParallelFlow: Air and water flow enter in same directions." ; + rdfs:label "FlowArrangement" ; + IFC4-PSD:definition "CounterFlow: Air and water flow enter in different directions.\n\nCrossFlow: Air and water flow are perpendicular.\nParallelFlow: Air and water flow enter in same directions." ; + IFC4-PSD:definitionAlias "カウンタフロー:空気と水の流れが逆方向で入る\nクロスフロー:空気と「水の流れが垂直\n平行流:空気と水の流れが同じ方向で入る"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "86128400d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "FlowArrangement" ; + IFC4-PSD:nameAlias "Flow Arrangement"@en , "流れ種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COUNTERFLOW" , "CROSSFLOW" , "PARALLELFLOW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pb1956e80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop as function of air flow rate." ; + rdfs:label "AirPressureDropCurve" ; + IFC4-PSD:definition "Air pressure drop as function of air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b1956e80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurve" ; + IFC4-PSD:nameAlias "Air Pressure Drop Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Pset_EvaporativeCoolerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Evaporative cooler type common attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_EvaporativeCoolerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcEvaporativeCooler ; + IFC4-PSD:applicableTypeValue "IfcEvaporativeCooler" ; + IFC4-PSD:definition "Evaporative cooler type common attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en , "蒸発冷却器共通属性を設定\nSound属性がIFC2x2 psetの付録で削除された:IfcSoundPropertiesを代わりに使用します。 WaterRequirement属性ユニットタイプはIFC2x2 psetの付録で変更された。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EvaporativeCoolerTypeCommon" ; + IFC4-PSD:propertyDef :p93c80980d1e211e1800000215ad4efdf , :pbce89a00d1e211e1800000215ad4efdf , :p99255400d1e211e1800000215ad4efdf , :p76933b00d1e211e1800000215ad4efdf , :p7004c380d1e211e1800000215ad4efdf , :pa7737000d1e211e1800000215ad4efdf , :pa2162580d1e211e1800000215ad4efdf , :p86128400d1e211e1800000215ad4efdf , :pb1956e80d1e211e1800000215ad4efdf . + +:WaterRequirement a rdf:Property ; + rdfs:seeAlso :pa2162580d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterRequirement . + +:Reference a rdf:Property ; + rdfs:seeAlso :p7004c380d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p76933b00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:OperationTemperatureRange + a rdf:Property ; + rdfs:seeAlso :p99255400d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationTemperatureRange . + +:HeatExchangeArea a rdf:Property ; + rdfs:seeAlso :p93c80980d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatExchangeArea . + +:AirPressureDropCurve + a rdf:Property ; + rdfs:seeAlso :pb1956e80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurve . diff --git a/converter/src/main/resources/pset/Pset_EvaporatorPHistory.ttl b/converter/src/main/resources/pset/Pset_EvaporatorPHistory.ttl new file mode 100644 index 00000000..e3dcb7ca --- /dev/null +++ b/converter/src/main/resources/pset/Pset_EvaporatorPHistory.ttl @@ -0,0 +1,221 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ExteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :pd12c9700d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExteriorHeatTransferCoefficient . + +:WaterFoulingResistance + a rdf:Property ; + rdfs:seeAlso :pfc16eb00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterFoulingResistance . + +:pe1dd0d00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "UV = f (VExterior, VInterior), UV as a function of interior and exterior fluid flow velocity at the entrance." ; + rdfs:label "UAcurves" ; + IFC4-PSD:definition "UV = f (VExterior, VInterior), UV as a function of interior and exterior fluid flow velocity at the entrance." ; + IFC4-PSD:definitionAlias "UV=f(V外面、V内面)、UVは、入り口での内面・外面流体速度の関数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e1dd0d00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "UAcurves" ; + IFC4-PSD:nameAlias "UAcurves"@en , "UA曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd8ec3b80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fouling resistance on the refrigerant side." ; + rdfs:label "RefrigerantFoulingResistance" ; + IFC4-PSD:definition "Fouling resistance on the refrigerant side." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d8ec3b80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "RefrigerantFoulingResistance" ; + IFC4-PSD:nameAlias "Refrigerant Fouling Resistance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:EvaporatingTemperature + a rdf:Property ; + rdfs:seeAlso :pdbe72c00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EvaporatingTemperature . + +:pdbe72c00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Refrigerant evaporating temperature." ; + rdfs:label "EvaporatingTemperature" ; + IFC4-PSD:definition "Refrigerant evaporating temperature." ; + IFC4-PSD:definitionAlias ""@en , "蒸発温度"@ja-JP ; + IFC4-PSD:ifdguid "dbe72c00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "EvaporatingTemperature" ; + IFC4-PSD:nameAlias "Evaporating Temperature"@en , "蒸発温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:peef9fc00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gain between the evaporator outlet and the compressor inlet." ; + rdfs:label "CompressorEvaporatorHeatGain" ; + IFC4-PSD:definition "Heat gain between the evaporator outlet and the compressor inlet." ; + IFC4-PSD:definitionAlias "蒸発器出口と圧縮機入口間の熱取得"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "eef9fc00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorEvaporatorHeatGain" ; + IFC4-PSD:nameAlias "圧縮機・蒸発器熱取得"@ja-JP , "Compressor Evaporator Heat Gain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:EvaporatorMeanVoidFraction + a rdf:Property ; + rdfs:seeAlso :pf8836400d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EvaporatorMeanVoidFraction . + +:pd4c01e00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Interior heat transfer coefficient associated with interior surface area." ; + rdfs:label "InteriorHeatTransferCoefficient" ; + IFC4-PSD:definition "Interior heat transfer coefficient associated with interior surface area." ; + IFC4-PSD:definitionAlias "内面に関連づけられた内面熱交換係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d4c01e00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "Interior Heat Transfer Coefficient"@en , "内面熱交換係数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pdee21c80d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Logarithmic mean temperature difference between refrigerant and water or air." ; + rdfs:label "LogarithmicMeanTemperatureDifference" ; + IFC4-PSD:definition "Logarithmic mean temperature difference between refrigerant and water or air." ; + IFC4-PSD:definitionAlias "冷媒と水または空気の対数平均温度差"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "dee21c80d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "LogarithmicMeanTemperatureDifference" ; + IFC4-PSD:nameAlias "対数平均温度差"@ja-JP , "Logarithmic Mean Temperature Difference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CompressorEvaporatorHeatGain + a rdf:Property ; + rdfs:seeAlso :peef9fc00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorEvaporatorHeatGain . + +:LogarithmicMeanTemperatureDifference + a rdf:Property ; + rdfs:seeAlso :pdee21c80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LogarithmicMeanTemperatureDifference . + +:pf3beb000d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure drop between the evaporator outlet and the compressor inlet." ; + rdfs:label "CompressorEvaporatorPressureDrop" ; + IFC4-PSD:definition "Pressure drop between the evaporator outlet and the compressor inlet." ; + IFC4-PSD:definitionAlias ""@en , "蒸発器出口と圧縮機入口間の圧力降下"@ja-JP ; + IFC4-PSD:ifdguid "f3beb000d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "CompressorEvaporatorPressureDrop" ; + IFC4-PSD:nameAlias "Compressor Evaporator Pressure Drop"@en , "圧縮機・蒸発器圧力降下"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_EvaporatorPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Evaporator performance history attributes." ; + rdfs:label "Pset_EvaporatorPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcEvaporator ; + IFC4-PSD:applicableTypeValue "IfcEvaporator" ; + IFC4-PSD:definition "Evaporator performance history attributes." ; + IFC4-PSD:definitionAlias ""@en , "蒸発器性能履歴属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EvaporatorPHistory" ; + IFC4-PSD:propertyDef :pd12c9700d1e211e1800000215ad4efdf , :pd8ec3b80d1e211e1800000215ad4efdf , :pe1dd0d00d1e211e1800000215ad4efdf , :pfc16eb00d1e211e1800000215ad4efdf , :pd4c01e00d1e211e1800000215ad4efdf , :pf8836400d1e211e1800000215ad4efdf , :pdbe72c00d1e211e1800000215ad4efdf , :pce31a680d1e211e1800000215ad4efdf , :pf3beb000d1e211e1800000215ad4efdf , :pdee21c80d1e211e1800000215ad4efdf , :peef9fc00d1e211e1800000215ad4efdf . + +:RefrigerantFoulingResistance + a rdf:Property ; + rdfs:seeAlso :pd8ec3b80d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefrigerantFoulingResistance . + +:InteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :pd4c01e00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorHeatTransferCoefficient . + +:pce31a680d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + rdfs:label "HeatRejectionRate" ; + IFC4-PSD:definition "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor." ; + IFC4-PSD:definitionAlias "冷凍効果と圧縮機への電源入力の相当熱量の合計"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ce31a680d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "HeatRejectionRate" ; + IFC4-PSD:nameAlias "排熱量"@ja-JP , "Heat Rejection Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pfc16eb00d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fouling resistance on water/air side." ; + rdfs:label "WaterFoulingResistance" ; + IFC4-PSD:definition "Fouling resistance on water/air side." ; + IFC4-PSD:definitionAlias "水/空気面の汚れ抵抗"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fc16eb00d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "WaterFoulingResistance" ; + IFC4-PSD:nameAlias "Water Fouling Resistance"@en , "水側汚れ抵抗"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:UAcurves a rdf:Property ; + rdfs:seeAlso :pe1dd0d00d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UAcurves . + +:CompressorEvaporatorPressureDrop + a rdf:Property ; + rdfs:seeAlso :pf3beb000d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressorEvaporatorPressureDrop . + +:pf8836400d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mean void fraction in evaporator." ; + rdfs:label "EvaporatorMeanVoidFraction" ; + IFC4-PSD:definition "Mean void fraction in evaporator." ; + IFC4-PSD:definitionAlias "蒸発器の平均の空隙率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f8836400d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "EvaporatorMeanVoidFraction" ; + IFC4-PSD:nameAlias "Evaporator Mean Void Fraction"@en , "蒸発器平均空隙率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:HeatRejectionRate a rdf:Property ; + rdfs:seeAlso :pce31a680d1e211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatRejectionRate . + +:pd12c9700d1e211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Exterior heat transfer coefficient associated with exterior surface area." ; + rdfs:label "ExteriorHeatTransferCoefficient" ; + IFC4-PSD:definition "Exterior heat transfer coefficient associated with exterior surface area." ; + IFC4-PSD:definitionAlias ""@en , "外表面に関連づけられた外表面熱交換係数"@ja-JP ; + IFC4-PSD:ifdguid "d12c9700d1e211e1800000215ad4efdf" ; + IFC4-PSD:name "ExteriorHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "外表面熱交換係数"@ja-JP , "Exterior Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_EvaporatorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_EvaporatorTypeCommon.ttl new file mode 100644 index 00000000..1b86a0e7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_EvaporatorTypeCommon.ttl @@ -0,0 +1,216 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5021cf80d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "External surface area (both primary and secondary area)." ; + rdfs:label "ExternalSurfaceArea" ; + IFC4-PSD:definition "External surface area (both primary and secondary area)." ; + IFC4-PSD:definitionAlias ""@en , "外表面積(一次・二次の両面積)"@ja-JP ; + IFC4-PSD:ifdguid "5021cf80d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "ExternalSurfaceArea" ; + IFC4-PSD:nameAlias "外表面積"@ja-JP , "External Surface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:EvaporatorCoolant a rdf:Property ; + rdfs:seeAlso :p28cb0280d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EvaporatorCoolant . + +:RefrigerantClass a rdf:Property ; + rdfs:seeAlso :p397b7880d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RefrigerantClass . + +:p397b7880d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Refrigerant class used by the compressor.\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + rdfs:label "RefrigerantClass" ; + IFC4-PSD:definition "Refrigerant class used by the compressor.\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons." ; + IFC4-PSD:definitionAlias ""@en , "圧縮機で使用される冷媒種類\nCFC: Chlorofluorocarbons.\nHCFC: Hydrochlorofluorocarbons.\nHFC: Hydrofluorocarbons.\n(CFC, HCFC, HFC, HYDROCARBONS, AMMONIA, CO2, H2O, その他)"@ja-JP ; + IFC4-PSD:ifdguid "397b7880d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "RefrigerantClass" ; + IFC4-PSD:nameAlias "冷媒分類"@ja-JP , "Refrigerant Class"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AMMONIA" , "HCFC" , "H2O" , "CFC" , "CO2" , "HYDROCARBONS" , "NOTKNOWN" , "OTHER" , "UNSET" , "HFC" + ] . + +:p0c2eca80d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0c2eca80d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:InternalSurfaceArea a rdf:Property ; + rdfs:seeAlso :p56b04700d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalSurfaceArea . + +:p05a05300d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "05a05300d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p616adc00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal volume of evaporator (water side)." ; + rdfs:label "InternalWaterVolume" ; + IFC4-PSD:definition "Internal volume of evaporator (water side)." ; + IFC4-PSD:definitionAlias "蒸発器(水側)の内部容積"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "616adc00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "InternalWaterVolume" ; + IFC4-PSD:nameAlias "Internal Water Volume"@en , "内部水容積"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:Pset_EvaporatorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Evaporator type common attributes." ; + rdfs:label "Pset_EvaporatorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcEvaporator ; + IFC4-PSD:applicableTypeValue "IfcEvaporator" ; + IFC4-PSD:definition "Evaporator type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "蒸発器タイプ共通属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_EvaporatorTypeCommon" ; + IFC4-PSD:propertyDef :p5021cf80d1e311e1800000215ad4efdf , :p28cb0280d1e311e1800000215ad4efdf , :p397b7880d1e311e1800000215ad4efdf , :p616adc00d1e311e1800000215ad4efdf , :p6760bd00d1e311e1800000215ad4efdf , :p5c0d9180d1e311e1800000215ad4efdf , :p6d569e00d1e311e1800000215ad4efdf , :p56b04700d1e311e1800000215ad4efdf , :p0c2eca80d1e311e1800000215ad4efdf , :p05a05300d1e311e1800000215ad4efdf , :p1bae1380d1e311e1800000215ad4efdf . + +:InternalWaterVolume a rdf:Property ; + rdfs:seeAlso :p616adc00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalWaterVolume . + +:p56b04700d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal surface area." ; + rdfs:label "InternalSurfaceArea" ; + IFC4-PSD:definition "Internal surface area." ; + IFC4-PSD:definitionAlias ""@en , "内部表面積"@ja-JP ; + IFC4-PSD:ifdguid "56b04700d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "InternalSurfaceArea" ; + IFC4-PSD:nameAlias "Internal Surface Area"@en , "内表面積"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p1bae1380d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "ColdLiquid: Evaporator is using liquid type of fluid to exchange heat with refrigerant.\nColdAir: Evaporator is using air to exchange heat with refrigerant." ; + rdfs:label "EvaporatorMediumType" ; + IFC4-PSD:definition "ColdLiquid: Evaporator is using liquid type of fluid to exchange heat with refrigerant.\nColdAir: Evaporator is using air to exchange heat with refrigerant." ; + IFC4-PSD:definitionAlias "ColdLiquidは:蒸発器は、冷媒と熱交換するために液状の流体を使用しています。\nColdAir:蒸発器は、冷媒と熱交換するために空気を使用している。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1bae1380d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "EvaporatorMediumType" ; + IFC4-PSD:nameAlias "Evaporator Medium Type"@en , "蒸発媒体"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COLDLIQUID" , "COLDAIR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p6760bd00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal heat transfer surface area associated with nominal overall heat transfer coefficient." ; + rdfs:label "NominalHeatTransferArea" ; + IFC4-PSD:definition "Nominal heat transfer surface area associated with nominal overall heat transfer coefficient." ; + IFC4-PSD:definitionAlias ""@en , "設計全熱交換係数の設計熱交換面積"@ja-JP ; + IFC4-PSD:ifdguid "6760bd00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatTransferArea" ; + IFC4-PSD:nameAlias "Nominal Heat Transfer Area"@en , "設計熱交換面積"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p28cb0280d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The fluid used for the coolant in the evaporator." ; + rdfs:label "EvaporatorCoolant" ; + IFC4-PSD:definition "The fluid used for the coolant in the evaporator." ; + IFC4-PSD:definitionAlias ""@en , "蒸発器で使用する流体(水、ブライン、グリコール、 他)"@ja-JP ; + IFC4-PSD:ifdguid "28cb0280d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "EvaporatorCoolant" ; + IFC4-PSD:nameAlias "Evaporator Coolant"@en , "蒸発器冷却剤"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WATER" , "BRINE" , "GLYCOL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:EvaporatorMediumType + a rdf:Property ; + rdfs:seeAlso :p1bae1380d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EvaporatorMediumType . + +:Status a rdf:Property ; + rdfs:seeAlso :p0c2eca80d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5c0d9180d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal volume of evaporator (refrigerant side)." ; + rdfs:label "InternalRefrigerantVolume" ; + IFC4-PSD:definition "Internal volume of evaporator (refrigerant side)." ; + IFC4-PSD:definitionAlias ""@en , "蒸発器(冷媒側)の内部容積"@ja-JP ; + IFC4-PSD:ifdguid "5c0d9180d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "InternalRefrigerantVolume" ; + IFC4-PSD:nameAlias "内部冷媒容積"@ja-JP , "Internal Refrigerant Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p05a05300d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:NominalHeatTransferCoefficient + a rdf:Property ; + rdfs:seeAlso :p6d569e00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatTransferCoefficient . + +:p6d569e00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal overall heat transfer coefficient associated with nominal heat transfer area." ; + rdfs:label "NominalHeatTransferCoefficient" ; + IFC4-PSD:definition "Nominal overall heat transfer coefficient associated with nominal heat transfer area." ; + IFC4-PSD:definitionAlias "設計熱交換面積の全熱交換係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6d569e00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeatTransferCoefficient" ; + IFC4-PSD:nameAlias "設計熱交換係数"@ja-JP , "Nominal Heat Transfer Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:ExternalSurfaceArea a rdf:Property ; + rdfs:seeAlso :p5021cf80d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExternalSurfaceArea . + +:NominalHeatTransferArea + a rdf:Property ; + rdfs:seeAlso :p6760bd00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeatTransferArea . + +:InternalRefrigerantVolume + a rdf:Property ; + rdfs:seeAlso :p5c0d9180d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalRefrigerantVolume . diff --git a/converter/src/main/resources/pset/Pset_FanCentrifugal.ttl b/converter/src/main/resources/pset/Pset_FanCentrifugal.ttl new file mode 100644 index 00000000..4140c0ab --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FanCentrifugal.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:DirectionOfRotation a rdf:Property ; + rdfs:seeAlso :p94ad6b00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DirectionOfRotation . + +:DischargePosition a rdf:Property ; + rdfs:seeAlso :p7cd5e700d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargePosition . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_FanCentrifugal a IFC4-PSD:PropertySetDef ; + rdfs:comment "Centrifugal fan occurrence attributes attached to an instance of IfcFan." ; + rdfs:label "Pset_FanCentrifugal" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFan/CENTRIFUGAL" ; + IFC4-PSD:definition "Centrifugal fan occurrence attributes attached to an instance of IfcFan." ; + IFC4-PSD:definitionAlias ""@en , "IfcFanの値に付け加えられた遠心送風機の属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FanCentrifugal" ; + IFC4-PSD:propertyDef :p7cd5e700d1e311e1800000215ad4efdf , :pa262f080d1e311e1800000215ad4efdf , :p94ad6b00d1e311e1800000215ad4efdf . + +:Arrangement a rdf:Property ; + rdfs:seeAlso :pa262f080d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Arrangement . + +:p94ad6b00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The direction of the centrifugal fan wheel rotation when viewed from the drive side of the fan.\n\nCLOCKWISE: Clockwise. \nCOUNTERCLOCKWISE: Counter-clockwise. \nOTHER: Other type of fan rotation." ; + rdfs:label "DirectionOfRotation" ; + IFC4-PSD:definition "The direction of the centrifugal fan wheel rotation when viewed from the drive side of the fan.\n\nCLOCKWISE: Clockwise. \nCOUNTERCLOCKWISE: Counter-clockwise. \nOTHER: Other type of fan rotation." ; + IFC4-PSD:definitionAlias ""@en , "ファンの駆動側から見たホイール回転方向\nCLOCKWISE  時計回り\n COUNTERCLOCKWISE 反時計回り\n OTHER その他"@ja-JP ; + IFC4-PSD:ifdguid "94ad6b00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "DirectionOfRotation" ; + IFC4-PSD:nameAlias "角度方向"@ja-JP , "Direction Of Rotation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CLOCKWISE" , "COUNTERCLOCKWISE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pa262f080d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the fan and motor drive arrangement as defined by AMCA.\n\nARRANGEMENT1: Arrangement 1. \nARRANGEMENT2: Arrangement 2. \nARRANGEMENT3: Arrangement 3. \nARRANGEMENT4: Arrangement 4. \nARRANGEMENT7: Arrangement 7. \nARRANGEMENT8: Arrangement 8. \nARRANGEMENT9: Arrangement 9. \nARRANGEMENT10: Arrangement 10. \nOTHER: Other type of fan drive arrangement." ; + rdfs:label "Arrangement" ; + IFC4-PSD:definition "Defines the fan and motor drive arrangement as defined by AMCA.\n\nARRANGEMENT1: Arrangement 1. \nARRANGEMENT2: Arrangement 2. \nARRANGEMENT3: Arrangement 3. \nARRANGEMENT4: Arrangement 4. \nARRANGEMENT7: Arrangement 7. \nARRANGEMENT8: Arrangement 8. \nARRANGEMENT9: Arrangement 9. \nARRANGEMENT10: Arrangement 10. \nOTHER: Other type of fan drive arrangement." ; + IFC4-PSD:definitionAlias "ファンとモーターの配置(AMCAによる定義)\nARRANGEMENT1, ARRANGEMENT2, ARRANGEMENT3, ARRANGEMENT4, ARRANGEMENT7, ARRANGEMENT8, ARRANGEMENT9, ARRANGEMENT10, OTHER, NOTKNOWN, UNSET"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a262f080d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "Arrangement" ; + IFC4-PSD:nameAlias "Arrangement"@en , "配置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ARRANGEMENT2" , "ARRANGEMENT3" , "ARRANGEMENT9" , "UNSET" , "ARRANGEMENT1" , "ARRANGEMENT8" , "ARRANGEMENT10" , "ARRANGEMENT4" , "NOTKNOWN" , "OTHER" , "ARRANGEMENT7" + ] . + +:p7cd5e700d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Centrifugal fan discharge position.\n\nTOPHORIZONTAL: Top horizontal discharge. \nTOPANGULARDOWN: Top angular down discharge. \nDOWNBLAST: Downblast discharge. \nBOTTOMANGULARDOWN: Bottom angular down discharge. \nBOTTOMHORIZONTAL: Bottom horizontal discharge. \nBOTTOMANGULARUP: Bottom angular up discharge. \nUPBLAST: Upblast discharge. \nTOPANGULARUP: Top angular up discharge. \nOTHER: Other type of fan arrangement." ; + rdfs:label "DischargePosition" ; + IFC4-PSD:definition "Centrifugal fan discharge position.\n\nTOPHORIZONTAL: Top horizontal discharge. \nTOPANGULARDOWN: Top angular down discharge. \nDOWNBLAST: Downblast discharge. \nBOTTOMANGULARDOWN: Bottom angular down discharge. \nBOTTOMHORIZONTAL: Bottom horizontal discharge. \nBOTTOMANGULARUP: Bottom angular up discharge. \nUPBLAST: Upblast discharge. \nTOPANGULARUP: Top angular up discharge. \nOTHER: Other type of fan arrangement." ; + IFC4-PSD:definitionAlias ""@en , "遠心送風機の吐出位置\nTOPHORIZONTAL: 上部水平 \nTOPANGULARDOWN: 上部角度付き下向き \nDOWNBLAST: 下向き\nBOTTOMANGULARDOWN: 下部角度付き下向き\nBOTTOMHORIZONTAL: 下部水平\nBOTTOMANGULARUP: 下部角度付き上向き\nUPBLAST: 上向き\nTOPANGULARUP: 上部角度付き上向き. \nOTHER: その他"@ja-JP ; + IFC4-PSD:ifdguid "7cd5e700d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "DischargePosition" ; + IFC4-PSD:nameAlias "吐出位置"@ja-JP , "Discharge Position"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "TOPHORIZONTAL" , "OTHER" , "NOTKNOWN" , "UNSET" , "DOWNBLAST" , "BOTTOMHORIZONTAL" , "BOTTOMANGULARDOWN" , "BOTTOMANGULARUP" , "TOPANGULARUP" , "UPBLAST" , "TOPANGULARDOWN" + ] . diff --git a/converter/src/main/resources/pset/Pset_FanOccurrence.ttl b/converter/src/main/resources/pset/Pset_FanOccurrence.ttl new file mode 100644 index 00000000..b11c2098 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FanOccurrence.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p12717680d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diameter of fan wheel - used to scale performance of geometrically similar fans." ; + rdfs:label "ImpellerDiameter" ; + IFC4-PSD:definition "Diameter of fan wheel - used to scale performance of geometrically similar fans." ; + IFC4-PSD:definitionAlias ""@en , "ファンホイールの直径 - 幾何学的に類似したファンの性能を基準化するために使用。"@ja-JP ; + IFC4-PSD:ifdguid "12717680d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "ImpellerDiameter" ; + IFC4-PSD:nameAlias "羽根径"@ja-JP , "Impeller Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0d142c00d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the motor heat released into the fluid flow." ; + rdfs:label "FractionOfMotorHeatToAirStream" ; + IFC4-PSD:definition "Fraction of the motor heat released into the fluid flow." ; + IFC4-PSD:definitionAlias "流体中にモーター発熱が放出される場合にTRUE"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0d142c00d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "FractionOfMotorHeatToAirStream" ; + IFC4-PSD:nameAlias "モーター排熱"@ja-JP , "Fraction Of Motor Heat To Air Stream"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:ApplicationOfFan a rdf:Property ; + rdfs:seeAlso :pcfaf9e80d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ApplicationOfFan . + +:pe0601480d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the relationship between a fan and a coil.\n\nDrawThrough: Fan located downstream of the coil.\nBlowThrough: Fan located upstream of the coil." ; + rdfs:label "CoilPosition" ; + IFC4-PSD:definition "Defines the relationship between a fan and a coil.\n\nDrawThrough: Fan located downstream of the coil.\nBlowThrough: Fan located upstream of the coil." ; + IFC4-PSD:definitionAlias ""@en , "Fanとコイル間の関係定義\nDwawThrough:ファンはコイルの下流に位置\nBlowThrough:ファンはコイルの上流に位置"@ja-JP ; + IFC4-PSD:ifdguid "e0601480d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "CoilPosition" ; + IFC4-PSD:nameAlias "コイル位置"@ja-JP , "Coil Position"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DRAWTHROUGH" , "BLOWTHROUGH" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pcfaf9e80d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The functional application of the fan.\n\nSupplyAir: Supply air fan. \nReturnAir: Return air fan. \nExhaustAir: Exhaust air fan. \nOther: Other type of application not defined above." ; + rdfs:label "ApplicationOfFan" ; + IFC4-PSD:definition "The functional application of the fan.\n\nSupplyAir: Supply air fan. \nReturnAir: Return air fan. \nExhaustAir: Exhaust air fan. \nOther: Other type of application not defined above." ; + IFC4-PSD:definitionAlias "Fanの系統\nSUPPLYAIR, RETURNAIR, EXHAUSTAIR, COOLINGTOWER, OTHER"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cfaf9e80d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "ApplicationOfFan" ; + IFC4-PSD:nameAlias "Application Of Fan"@en , "Fan用途"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SUPPLYAIR" , "RETURNAIR" , "EXHAUSTAIR" , "COOLINGTOWER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FractionOfMotorHeatToAirStream + a rdf:Property ; + rdfs:seeAlso :p0d142c00d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FractionOfMotorHeatToAirStream . + +:pece46d00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the location of the motor relative to the air stream.\n\nInAirStream: Fan motor is in the air stream.\nOutOfAirStream: Fan motor is out of the air stream." ; + rdfs:label "MotorPosition" ; + IFC4-PSD:definition "Defines the location of the motor relative to the air stream.\n\nInAirStream: Fan motor is in the air stream.\nOutOfAirStream: Fan motor is out of the air stream." ; + IFC4-PSD:definitionAlias ""@en , "空気流路と相対的なモーターの位置定義\n流路内、流路外 その他"@ja-JP ; + IFC4-PSD:ifdguid "ece46d00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "MotorPosition" ; + IFC4-PSD:nameAlias "Motor Position"@en , "モーター位置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "INAIRSTREAM" , "OUTOFAIRSTREAM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ImpellerDiameter a rdf:Property ; + rdfs:seeAlso :p12717680d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ImpellerDiameter . + +:CoilPosition a rdf:Property ; + rdfs:seeAlso :pe0601480d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoilPosition . + +:pbeff2880d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the type of connection at the fan discharge.\n\nDuct: Discharge into ductwork.\nScreen: Discharge into screen outlet.\nLouver: Discharge into a louver.\nDamper: Discharge into a damper." ; + rdfs:label "DischargeType" ; + IFC4-PSD:definition "Defines the type of connection at the fan discharge.\n\nDuct: Discharge into ductwork.\nScreen: Discharge into screen outlet.\nLouver: Discharge into a louver.\nDamper: Discharge into a damper." ; + IFC4-PSD:definitionAlias "送風機出口の接続形式定義\nDuct:ダクトへの吐き出し\nScreen:SCREEN内への吐き出し\nLouver:ルーバーへの吐き出し"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "beff2880d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeType" ; + IFC4-PSD:nameAlias "吐出形式"@ja-JP , "Discharge Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DUCT" , "SCREEN" , "LOUVER" , "DAMPER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MotorPosition a rdf:Property ; + rdfs:seeAlso :pece46d00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MotorPosition . + +:DischargeType a rdf:Property ; + rdfs:seeAlso :pbeff2880d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeType . + +:pfa015c00d1e311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the method of mounting the fan in the building." ; + rdfs:label "FanMountingType" ; + IFC4-PSD:definition "Defines the method of mounting the fan in the building." ; + IFC4-PSD:definitionAlias "建物へのFan設置方法定義\nMANUFACTUREDCURB, FIELDERECTEDCURB, CONCRETEPAD, SUSPENDED, WALLMOUNTED, DUCTMOUNTED"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fa015c00d1e311e1800000215ad4efdf" ; + IFC4-PSD:name "FanMountingType" ; + IFC4-PSD:nameAlias "Fan設置タイプ"@ja-JP , "Fan Mounting Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WALLMOUNTED" , "CONCRETEPAD" , "OTHER" , "UNSET" , "MANUFACTUREDCURB" , "NOTKNOWN" , "FIELDERECTEDCURB" , "DUCTMOUNTED" , "SUSPENDED" + ] . + +:FanMountingType a rdf:Property ; + rdfs:seeAlso :pfa015c00d1e311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FanMountingType . + +:Pset_FanOccurrence a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fan occurrence attributes attached to an instance of IfcFan." ; + rdfs:label "Pset_FanOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcFan ; + IFC4-PSD:applicableTypeValue "IfcFan" ; + IFC4-PSD:definition "Fan occurrence attributes attached to an instance of IfcFan." ; + IFC4-PSD:definitionAlias "IfcFanの値に付け加えられたFan属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FanOccurrence" ; + IFC4-PSD:propertyDef :p0d142c00d1e411e1800000215ad4efdf , :pe0601480d1e311e1800000215ad4efdf , :p12717680d1e411e1800000215ad4efdf , :pfa015c00d1e311e1800000215ad4efdf , :pbeff2880d1e311e1800000215ad4efdf , :pece46d00d1e311e1800000215ad4efdf , :pcfaf9e80d1e311e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_FanPHistory.ttl b/converter/src/main/resources/pset/Pset_FanPHistory.ttl new file mode 100644 index 00000000..57ffc461 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FanPHistory.ttl @@ -0,0 +1,178 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FanPowerRate a rdf:Property ; + rdfs:seeAlso :p2cab5480d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FanPowerRate . + +:p303edb80d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan shaft power." ; + rdfs:label "ShaftPowerRate" ; + IFC4-PSD:definition "Fan shaft power." ; + IFC4-PSD:definitionAlias ""@en , "ファン軸動力"@ja-JP ; + IFC4-PSD:ifdguid "303edb80d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "ShaftPowerRate" ; + IFC4-PSD:nameAlias "Shaft Power Rate"@en , "軸動力量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p33d26280d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The speed at which air discharges from the fan through the fan housing discharge opening." ; + rdfs:label "DischargeVelocity" ; + IFC4-PSD:definition "The speed at which air discharges from the fan through the fan housing discharge opening." ; + IFC4-PSD:definitionAlias "ファン吐出口からの吐出風速"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "33d26280d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeVelocity" ; + IFC4-PSD:nameAlias "Discharge Velocity"@en , "吐出速度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p2cab5480d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan power consumption." ; + rdfs:label "FanPowerRate" ; + IFC4-PSD:definition "Fan power consumption." ; + IFC4-PSD:definitionAlias "ファン消費電力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2cab5480d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "FanPowerRate" ; + IFC4-PSD:nameAlias "Fan Power Rate"@en , "Fan効率動力量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ShaftPowerRate a rdf:Property ; + rdfs:seeAlso :p303edb80d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShaftPowerRate . + +:DischargeVelocity a rdf:Property ; + rdfs:seeAlso :p33d26280d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeVelocity . + +:FanEfficiency a rdf:Property ; + rdfs:seeAlso :p26b57380d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FanEfficiency . + +:p2026fc00d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan rotation speed." ; + rdfs:label "FanRotationSpeed" ; + IFC4-PSD:definition "Fan rotation speed." ; + IFC4-PSD:definitionAlias ""@en , "回転速度"@ja-JP ; + IFC4-PSD:ifdguid "2026fc00d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "FanRotationSpeed" ; + IFC4-PSD:nameAlias "回転速度"@ja-JP , "Fan Rotation Speed"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:DischargePressureLoss + a rdf:Property ; + rdfs:seeAlso :p36cd5300d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargePressureLoss . + +:p36cd5300d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan discharge pressure loss associated with the discharge arrangement." ; + rdfs:label "DischargePressureLoss" ; + IFC4-PSD:definition "Fan discharge pressure loss associated with the discharge arrangement." ; + IFC4-PSD:definitionAlias ""@en , "吐出部に関連した吐出圧力損失"@ja-JP ; + IFC4-PSD:ifdguid "36cd5300d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "DischargePressureLoss" ; + IFC4-PSD:nameAlias "Discharge Pressure Loss"@en , "吐出圧力損失"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:WheelTipSpeed a rdf:Property ; + rdfs:seeAlso :p23ba8300d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WheelTipSpeed . + +:OverallEfficiency a rdf:Property ; + rdfs:seeAlso :p29b06400d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallEfficiency . + +:p23ba8300d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan blade tip speed, typically defined as the linear speed of the tip of the fan blade furthest from the shaft." ; + rdfs:label "WheelTipSpeed" ; + IFC4-PSD:definition "Fan blade tip speed, typically defined as the linear speed of the tip of the fan blade furthest from the shaft." ; + IFC4-PSD:definitionAlias "ファンブレード先端速度\n通常、軸から最も遠いファンブレードの先端の直線速度として定義されている"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "23ba8300d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "WheelTipSpeed" ; + IFC4-PSD:nameAlias "ホイール先端速度"@ja-JP , "Wheel Tip Speed"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p26b57380d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan mechanical efficiency." ; + rdfs:label "FanEfficiency" ; + IFC4-PSD:definition "Fan mechanical efficiency." ; + IFC4-PSD:definitionAlias ""@en , "ファン機械効率"@ja-JP ; + IFC4-PSD:ifdguid "26b57380d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "FanEfficiency" ; + IFC4-PSD:nameAlias "Fan Efficiency"@en , "Fan効率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_FanPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fan performance history attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_FanPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcFan ; + IFC4-PSD:applicableTypeValue "IfcFan" ; + IFC4-PSD:definition "Fan performance history attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en , "Fan性能履歴属性\nSound属性はIFC2x2付録で削除された。: IfcSoundPropertiesを代わりに使う"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FanPHistory" ; + IFC4-PSD:propertyDef :p3a60da00d1e411e1800000215ad4efdf , :p29b06400d1e411e1800000215ad4efdf , :p33d26280d1e411e1800000215ad4efdf , :p303edb80d1e411e1800000215ad4efdf , :p36cd5300d1e411e1800000215ad4efdf , :p2026fc00d1e411e1800000215ad4efdf , :p2cab5480d1e411e1800000215ad4efdf , :p26b57380d1e411e1800000215ad4efdf , :p23ba8300d1e411e1800000215ad4efdf . + +:p29b06400d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total efficiency of motor and fan." ; + rdfs:label "OverallEfficiency" ; + IFC4-PSD:definition "Total efficiency of motor and fan." ; + IFC4-PSD:definitionAlias "モーターとファンの全体効率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "29b06400d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "OverallEfficiency" ; + IFC4-PSD:nameAlias "全体効率"@ja-JP , "Overall Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FanRotationSpeed a rdf:Property ; + rdfs:seeAlso :p2026fc00d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FanRotationSpeed . + +:p3a60da00d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan drive power losses associated with the type of connection between the motor and the fan wheel." ; + rdfs:label "DrivePowerLoss" ; + IFC4-PSD:definition "Fan drive power losses associated with the type of connection between the motor and the fan wheel." ; + IFC4-PSD:definitionAlias ""@en , "ファン駆動力損失は、モータとファンホイールとの間の接続の種類に関連付けられている。"@ja-JP ; + IFC4-PSD:ifdguid "3a60da00d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "DrivePowerLoss" ; + IFC4-PSD:nameAlias "Drive Power Loss"@en , "駆動電力損失"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:DrivePowerLoss a rdf:Property ; + rdfs:seeAlso :p3a60da00d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrivePowerLoss . diff --git a/converter/src/main/resources/pset/Pset_FanTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FanTypeCommon.ttl new file mode 100644 index 00000000..cd23f508 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FanTypeCommon.ttl @@ -0,0 +1,251 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9b88ad80d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal fan power rate." ; + rdfs:label "NominalPowerRate" ; + IFC4-PSD:definition "Nominal fan power rate." ; + IFC4-PSD:definitionAlias "設計動力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9b88ad80d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalPowerRate" ; + IFC4-PSD:nameAlias "Nominal Power Rate"@en , "設計動力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p96c3f980d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal fan wheel speed." ; + rdfs:label "NominalRotationSpeed" ; + IFC4-PSD:definition "Nominal fan wheel speed." ; + IFC4-PSD:definitionAlias ""@en , "設計ホイール速度"@ja-JP ; + IFC4-PSD:ifdguid "96c3f980d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalRotationSpeed" ; + IFC4-PSD:nameAlias "Nominal Rotation Speed"@en , "設計回転速度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRotationalFrequencyMeasure + ] . + +:Pset_FanTypeCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fan type common attributes." ; + rdfs:label "Pset_FanTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFan ; + IFC4-PSD:applicableTypeValue "IfcFan" ; + IFC4-PSD:definition "Fan type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "Fanタイプ共通属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FanTypeCommon" ; + IFC4-PSD:propertyDef :p96c3f980d1e411e1800000215ad4efdf , :p5b292f80d1e411e1800000215ad4efdf , :p43ea4200d1e411e1800000215ad4efdf , :p83189300d1e411e1800000215ad4efdf , :p4b115000d1e411e1800000215ad4efdf , :p890e7400d1e411e1800000215ad4efdf , :p90ce1880d1e411e1800000215ad4efdf , :p7ac05800d1e411e1800000215ad4efdf , :pa0e5f800d1e411e1800000215ad4efdf , :p9b88ad80d1e411e1800000215ad4efdf , :pb22f0480d1e411e1800000215ad4efdf , :pa6dbd900d1e411e1800000215ad4efdf , :p6a0fe200d1e411e1800000215ad4efdf . + +:OperationalCriteria a rdf:Property ; + rdfs:seeAlso :pa0e5f800d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationalCriteria . + +:pa0e5f800d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Time of operation at maximum operational ambient air temperature." ; + rdfs:label "OperationalCriteria" ; + IFC4-PSD:definition "Time of operation at maximum operational ambient air temperature." ; + IFC4-PSD:definitionAlias "最大動作周囲温度での動作の時間"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a0e5f800d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "OperationalCriteria" ; + IFC4-PSD:nameAlias "動作環境"@ja-JP , "Operational Criteria"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:EfficiencyCurve a rdf:Property ; + rdfs:seeAlso :pb22f0480d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EfficiencyCurve . + +:CapacityControlType a rdf:Property ; + rdfs:seeAlso :p6a0fe200d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapacityControlType . + +:Reference a rdf:Property ; + rdfs:seeAlso :p43ea4200d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:PressureCurve a rdf:Property ; + rdfs:seeAlso :pa6dbd900d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureCurve . + +:Status a rdf:Property ; + rdfs:seeAlso :p4b115000d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:NominalStaticPressure + a rdf:Property ; + rdfs:seeAlso :p90ce1880d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalStaticPressure . + +:NominalTotalPressure + a rdf:Property ; + rdfs:seeAlso :p890e7400d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalTotalPressure . + +:p6a0fe200d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "InletVane: Control by adjusting inlet vane.\nVariableSpeedDrive: Control by variable speed drive. \nBladePitchAngle: Control by adjusting blade pitch angle.\nTwoSpeed: Control by switch between high and low speed.\nDischargeDamper: Control by modulating discharge damper." ; + rdfs:label "CapacityControlType" ; + IFC4-PSD:definition "InletVane: Control by adjusting inlet vane.\nVariableSpeedDrive: Control by variable speed drive. \nBladePitchAngle: Control by adjusting blade pitch angle.\nTwoSpeed: Control by switch between high and low speed.\nDischargeDamper: Control by modulating discharge damper." ; + IFC4-PSD:definitionAlias "InletVane: インレットベーン\nVariableSpeedDrive: 変速駆動 \nBladePitchAngle: 羽根ピッチ制御\nTwoSpeed: 二速制御\nDischargeDamper: 吐出ダンパ制御"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6a0fe200d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "CapacityControlType" ; + IFC4-PSD:nameAlias "Capacity Control Type"@en , "容量制御方式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "INLETVANE" , "VARIABLESPEEDDRIVE" , "BLADEPITCHANGLE" , "TWOSPEED" , "DISCHARGEDAMPER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NominalAirFlowRate a rdf:Property ; + rdfs:seeAlso :p83189300d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalAirFlowRate . + +:p90ce1880d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The static pressure within the air stream that the fan must overcome to insure designed circulation of air." ; + rdfs:label "NominalStaticPressure" ; + IFC4-PSD:definition "The static pressure within the air stream that the fan must overcome to insure designed circulation of air." ; + IFC4-PSD:definitionAlias ""@en , "設計空気循環量を保証するためにファンが克服しなければならない気流中の静圧"@ja-JP ; + IFC4-PSD:ifdguid "90ce1880d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalStaticPressure" ; + IFC4-PSD:nameAlias "設計静圧"@ja-JP , "Nominal Static Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p4b115000d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "4b115000d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pb22f0480d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fan efficiency =f (flow rate)." ; + rdfs:label "EfficiencyCurve" ; + IFC4-PSD:definition "Fan efficiency =f (flow rate)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b22f0480d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "EfficiencyCurve" ; + IFC4-PSD:nameAlias "Efficiency Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p5b292f80d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Motor drive type:\nDIRECTDRIVE: Direct drive. \nBELTDRIVE: Belt drive. \nCOUPLING: Coupling. \nOTHER: Other type of motor drive. \nUNKNOWN: Unknown motor drive type." ; + rdfs:label "MotorDriveType" ; + IFC4-PSD:definition "Motor drive type:\nDIRECTDRIVE: Direct drive. \nBELTDRIVE: Belt drive. \nCOUPLING: Coupling. \nOTHER: Other type of motor drive. \nUNKNOWN: Unknown motor drive type." ; + IFC4-PSD:definitionAlias "モーター駆動種類\nDIRECTDRIVE: ダイレクトドライブ\nBELTDRIVE: ベルトドライブ\nCOUPLING: カップリング\nOTHER: その他"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5b292f80d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "MotorDriveType" ; + IFC4-PSD:nameAlias "モーター駆動種類"@ja-JP , "Motor Drive Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DIRECTDRIVE" , "BELTDRIVE" , "COUPLING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p890e7400d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal total pressure rise across the fan." ; + rdfs:label "NominalTotalPressure" ; + IFC4-PSD:definition "Nominal total pressure rise across the fan." ; + IFC4-PSD:definitionAlias "ファンでの設計全圧上昇"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "890e7400d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalTotalPressure" ; + IFC4-PSD:nameAlias "設計全圧"@ja-JP , "Nominal Total Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:OperationTemperatureRange + a rdf:Property ; + rdfs:seeAlso :p7ac05800d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationTemperatureRange . + +:p43ea4200d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "43ea4200d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:MotorDriveType a rdf:Property ; + rdfs:seeAlso :p5b292f80d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MotorDriveType . + +:pa6dbd900d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure rise = f (flow rate)." ; + rdfs:label "PressureCurve" ; + IFC4-PSD:definition "Pressure rise = f (flow rate)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a6dbd900d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "PressureCurve" ; + IFC4-PSD:nameAlias "Pressure Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:NominalRotationSpeed + a rdf:Property ; + rdfs:seeAlso :p96c3f980d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalRotationSpeed . + +:p7ac05800d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operation ambient air temperature range." ; + rdfs:label "OperationTemperatureRange" ; + IFC4-PSD:definition "Allowable operation ambient air temperature range." ; + IFC4-PSD:definitionAlias ""@en , "許容動作周囲温度範囲"@ja-JP ; + IFC4-PSD:ifdguid "7ac05800d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "OperationTemperatureRange" ; + IFC4-PSD:nameAlias "動作温度範囲"@ja-JP , "Operation Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NominalPowerRate a rdf:Property ; + rdfs:seeAlso :p9b88ad80d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalPowerRate . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p83189300d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal air flow rate." ; + rdfs:label "NominalAirFlowRate" ; + IFC4-PSD:definition "Nominal air flow rate." ; + IFC4-PSD:definitionAlias "設計風量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "83189300d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "NominalAirFlowRate" ; + IFC4-PSD:nameAlias "Nominal Air Flow Rate"@en , "設計風量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_FastenerWeld.ttl b/converter/src/main/resources/pset/Pset_FastenerWeld.ttl new file mode 100644 index 00000000..364858ca --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FastenerWeld.ttl @@ -0,0 +1,296 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pcc68e280d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "See Type1." ; + rdfs:label "Type2" ; + IFC4-PSD:definition "See Type1." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cc68e280d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Type2" ; + IFC4-PSD:nameAlias "Type2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:z a rdf:Property ; + rdfs:seeAlso :p1a7de600d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:z . + +:c a rdf:Property ; + rdfs:seeAlso :pf3271900d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:c . + +:Intermittent a rdf:Property ; + rdfs:seeAlso :p21a4f400d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Intermittent . + +:n a rdf:Property ; + rdfs:seeAlso :p0e922400d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:n . + +:Process a rdf:Property ; + rdfs:seeAlso :pdf7bb280d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Process . + +:p28336b80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If intermittent weld, staggered or not" ; + rdfs:label "Staggered" ; + IFC4-PSD:definition "If intermittent weld, staggered or not" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "28336b80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "Staggered" ; + IFC4-PSD:nameAlias "Staggered"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pdf7bb280d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference number of the welding process according to ISO 4063, an up to three digits long code" ; + rdfs:label "Process" ; + IFC4-PSD:definition "Reference number of the welding process according to ISO 4063, an up to three digits long code" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "df7bb280d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Process" ; + IFC4-PSD:nameAlias "Process"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:peacede00d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure a according to ISO 2553" ; + rdfs:label "a" ; + IFC4-PSD:definition "Measure a according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "eacede00d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "a" ; + IFC4-PSD:nameAlias "a"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pf9b59080d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure d according to ISO 2553" ; + rdfs:label "d" ; + IFC4-PSD:definition "Measure d according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f9b59080d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "d" ; + IFC4-PSD:nameAlias "d"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:s a rdf:Property ; + rdfs:seeAlso :p1356d800d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:s . + +:p00dc9e80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure e according to ISO 2553" ; + rdfs:label "e" ; + IFC4-PSD:definition "Measure e according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "00dc9e80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "e" ; + IFC4-PSD:nameAlias "e"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Surface2 a rdf:Property ; + rdfs:seeAlso :pd854a480d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Surface2 . + +:Staggered a rdf:Property ; + rdfs:seeAlso :p28336b80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Staggered . + +:pc541d480d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type of weld seam according to ISO 2553. Note, combined welds are given by two corresponding symbols in the direction of the normal axis of the coordinate system. For example, an X weld is specified by Type1 = 'V' and Type2 = 'V'." ; + rdfs:label "Type1" ; + IFC4-PSD:definition "Type of weld seam according to ISO 2553. Note, combined welds are given by two corresponding symbols in the direction of the normal axis of the coordinate system. For example, an X weld is specified by Type1 = 'V' and Type2 = 'V'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c541d480d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Type1" ; + IFC4-PSD:nameAlias "Type1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p1a7de600d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure z according to ISO 2553" ; + rdfs:label "z" ; + IFC4-PSD:definition "Measure z according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1a7de600d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "z" ; + IFC4-PSD:nameAlias "z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:a a rdf:Property ; + rdfs:seeAlso :peacede00d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:a . + +:ProcessName a rdf:Property ; + rdfs:seeAlso :pe4d8fd00d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProcessName . + +:pd25ec380d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Aspect of weld seam surface, i.e. 'plane', 'curved' or 'hollow'. Combined welds are given by two corresponding symbols analogous to Type1 and Type2." ; + rdfs:label "Surface1" ; + IFC4-PSD:definition "Aspect of weld seam surface, i.e. 'plane', 'curved' or 'hollow'. Combined welds are given by two corresponding symbols analogous to Type1 and Type2." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d25ec380d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Surface1" ; + IFC4-PSD:nameAlias "Surface1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:l a rdf:Property ; + rdfs:seeAlso :p076b1600d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:l . + +:Type2 a rdf:Property ; + rdfs:seeAlso :pcc68e280d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Type2 . + +:Surface1 a rdf:Property ; + rdfs:seeAlso :pd25ec380d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Surface1 . + +:Pset_FastenerWeld a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties related to welded connections." ; + rdfs:label "Pset_FastenerWeld" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFastener/WELD" ; + IFC4-PSD:definition "Properties related to welded connections." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FastenerWeld" ; + IFC4-PSD:propertyDef :pc541d480d1e411e1800000215ad4efdf , :pdf7bb280d1e411e1800000215ad4efdf , :pd854a480d1e411e1800000215ad4efdf , :pd25ec380d1e411e1800000215ad4efdf , :peacede00d1e411e1800000215ad4efdf , :pcc68e280d1e411e1800000215ad4efdf , :pe4d8fd00d1e411e1800000215ad4efdf , :pf9b59080d1e411e1800000215ad4efdf , :p00dc9e80d1e511e1800000215ad4efdf , :p0e922400d1e511e1800000215ad4efdf , :p1356d800d1e511e1800000215ad4efdf , :pf3271900d1e411e1800000215ad4efdf , :p076b1600d1e511e1800000215ad4efdf , :p1a7de600d1e511e1800000215ad4efdf , :p21a4f400d1e511e1800000215ad4efdf , :p28336b80d1e511e1800000215ad4efdf . + +:pf3271900d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure c according to ISO 2553" ; + rdfs:label "c" ; + IFC4-PSD:definition "Measure c according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f3271900d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "c" ; + IFC4-PSD:nameAlias "c"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pd854a480d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "See Surface1." ; + rdfs:label "Surface2" ; + IFC4-PSD:definition "See Surface1." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d854a480d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "Surface2" ; + IFC4-PSD:nameAlias "Surface2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p21a4f400d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If fillet weld, intermittent or not" ; + rdfs:label "Intermittent" ; + IFC4-PSD:definition "If fillet weld, intermittent or not" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "21a4f400d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "Intermittent" ; + IFC4-PSD:nameAlias "Intermittent"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Type1 a rdf:Property ; + rdfs:seeAlso :pc541d480d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Type1 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0e922400d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Count n according to ISO 2553" ; + rdfs:label "n" ; + IFC4-PSD:definition "Count n according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0e922400d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "n" ; + IFC4-PSD:nameAlias "n"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:pe4d8fd00d1e411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Name of the welding process. Alternative to the numeric Process property." ; + rdfs:label "ProcessName" ; + IFC4-PSD:definition "Name of the welding process. Alternative to the numeric Process property." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e4d8fd00d1e411e1800000215ad4efdf" ; + IFC4-PSD:name "ProcessName" ; + IFC4-PSD:nameAlias "Process Name"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:e a rdf:Property ; + rdfs:seeAlso :p00dc9e80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:e . + +:p076b1600d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure l according to ISO 2553" ; + rdfs:label "l" ; + IFC4-PSD:definition "Measure l according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "076b1600d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "l" ; + IFC4-PSD:nameAlias "l"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p1356d800d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measure s according to ISO 2553" ; + rdfs:label "s" ; + IFC4-PSD:definition "Measure s according to ISO 2553" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1356d800d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "s" ; + IFC4-PSD:nameAlias "s"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:d a rdf:Property ; + rdfs:seeAlso :pf9b59080d1e411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:d . diff --git a/converter/src/main/resources/pset/Pset_FilterPHistory.ttl b/converter/src/main/resources/pset/Pset_FilterPHistory.ttl new file mode 100644 index 00000000..b1815162 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FilterPHistory.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_FilterPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Filter performance history attributes." ; + rdfs:label "Pset_FilterPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcFilter ; + IFC4-PSD:applicableTypeValue "IfcFilter" ; + IFC4-PSD:definition "Filter performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FilterPHistory" ; + IFC4-PSD:propertyDef :p3c776880d1e511e1800000215ad4efdf , :p397c7800d1e511e1800000215ad4efdf , :p35505a80d1e511e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WeightedEfficiency a rdf:Property ; + rdfs:seeAlso :p397c7800d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WeightedEfficiency . + +:p397c7800d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Filter efficiency based the particle weight concentration before and after filter against particles with certain size distribution." ; + rdfs:label "WeightedEfficiency" ; + IFC4-PSD:definition "Filter efficiency based the particle weight concentration before and after filter against particles with certain size distribution." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "397c7800d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "WeightedEfficiency" ; + IFC4-PSD:nameAlias "Weighted Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CountedEfficiency a rdf:Property ; + rdfs:seeAlso :p35505a80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CountedEfficiency . + +:p3c776880d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mass of particle holding in the filter." ; + rdfs:label "ParticleMassHolding" ; + IFC4-PSD:definition "Mass of particle holding in the filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3c776880d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "ParticleMassHolding" ; + IFC4-PSD:nameAlias "Particle Mass Holding"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ParticleMassHolding a rdf:Property ; + rdfs:seeAlso :p3c776880d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ParticleMassHolding . + +:p35505a80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Filter efficiency based the particle counts concentration before and after filter against particles with certain size distribution." ; + rdfs:label "CountedEfficiency" ; + IFC4-PSD:definition "Filter efficiency based the particle counts concentration before and after filter against particles with certain size distribution." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "35505a80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "CountedEfficiency" ; + IFC4-PSD:nameAlias "Counted Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_FilterTypeAirParticleFilter.ttl b/converter/src/main/resources/pset/Pset_FilterTypeAirParticleFilter.ttl new file mode 100644 index 00000000..d6dd2e04 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FilterTypeAirParticleFilter.ttl @@ -0,0 +1,220 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FaceSurfaceArea a rdf:Property ; + rdfs:seeAlso :p79435f80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaceSurfaceArea . + +:CountedEfficiencyCurve + a rdf:Property ; + rdfs:seeAlso :p9a0bb500d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CountedEfficiencyCurve . + +:p8a8c6c00d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal filter efficiency based the particle weight concentration before and after the filter against particles with a certain size distribution." ; + rdfs:label "NominalWeightedEfficiency" ; + IFC4-PSD:definition "Nominal filter efficiency based the particle weight concentration before and after the filter against particles with a certain size distribution." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8a8c6c00d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWeightedEfficiency" ; + IFC4-PSD:nameAlias "Nominal Weighted Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p852f2180d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal filter efficiency based the particle count concentration before and after the filter against particles with a certain size distribution." ; + rdfs:label "NominalCountedEfficiency" ; + IFC4-PSD:definition "Nominal filter efficiency based the particle count concentration before and after the filter against particles with a certain size distribution." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "852f2180d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCountedEfficiency" ; + IFC4-PSD:nameAlias "Nominal Counted Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:DustHoldingCapacity a rdf:Property ; + rdfs:seeAlso :p747eab80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DustHoldingCapacity . + +:pa5f77700d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weighted efficiency curve as a function of dust holding weight, efficiency = f (dust holding weight)." ; + rdfs:label "WeightedEfficiencyCurve" ; + IFC4-PSD:definition "Weighted efficiency curve as a function of dust holding weight, efficiency = f (dust holding weight)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a5f77700d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "WeightedEfficiencyCurve" ; + IFC4-PSD:nameAlias "Weighted Efficiency Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcMassMeasure + ] . + +:WeightedEfficiencyCurve + a rdf:Property ; + rdfs:seeAlso :pa5f77700d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WeightedEfficiencyCurve . + +:NominalCountedEfficiency + a rdf:Property ; + rdfs:seeAlso :p852f2180d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCountedEfficiency . + +:PressureDropCurve a rdf:Property ; + rdfs:seeAlso :p8fe9b680d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureDropCurve . + +:p8fe9b680d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Under certain dust holding weight, DelPressure = f (fluidflowRate)" ; + rdfs:label "PressureDropCurve" ; + IFC4-PSD:definition "Under certain dust holding weight, DelPressure = f (fluidflowRate)" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8fe9b680d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "PressureDropCurve" ; + IFC4-PSD:nameAlias "Pressure Drop Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:FrameMaterial a rdf:Property ; + rdfs:seeAlso :p63359f00d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FrameMaterial . + +:SeparationType a rdf:Property ; + rdfs:seeAlso :p66308f80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SeparationType . + +:p747eab80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum filter dust holding capacity." ; + rdfs:label "DustHoldingCapacity" ; + IFC4-PSD:definition "Maximum filter dust holding capacity." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "747eab80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "DustHoldingCapacity" ; + IFC4-PSD:nameAlias "Dust Holding Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:NominalWeightedEfficiency + a rdf:Property ; + rdfs:seeAlso :p8a8c6c00d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWeightedEfficiency . + +:p7fd1d700d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total extended media area." ; + rdfs:label "MediaExtendedArea" ; + IFC4-PSD:definition "Total extended media area." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7fd1d700d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "MediaExtendedArea" ; + IFC4-PSD:nameAlias "Media Extended Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p4731fd80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A panel dry type extended surface filter is a dry-type air filter with random fiber mats or blankets in the forms of pockets, V-shaped or radial pleats, and include the following:\n\nCoarseFilter: Filter with a efficiency lower than 30% for atmosphere dust-spot.\nCoarseMetalScreen: Filter made of metal screen.\nCoarseCellFoams: Filter made of cell foams.\nCoarseSpunGlass: Filter made of spun glass.\nMediumFilter: Filter with an efficiency between 30-98% for atmosphere dust-spot.\nMediumElectretFilter: Filter with fine electret synthetic fibers.\nMediumNaturalFiberFilter: Filter with natural fibers.\nHEPAFilter: High efficiency particulate air filter.\nULPAFilter: Ultra low penetration air filter.\nMembraneFilters: Filter made of membrane for certain pore diameters in flat sheet and pleated form.\nA renewable media with a moving curtain viscous filter are random-fiber media coated with viscous substance in roll form or curtain where fresh media is fed across the face of the filter and the dirty media is rewound onto a roll at the bottom or to into a reservoir:\nRollForm: Viscous filter used in roll form.\nAdhesiveReservoir: Viscous filter used in moving curtain form.\nA renewable moving curtain dry media filter is a random-fiber dry media of relatively high porosity used in moving-curtain(roll) filters.\nAn electrical filter uses electrostatic precipitation to remove and collect particulate contaminants." ; + rdfs:label "AirParticleFilterType" ; + IFC4-PSD:definition "A panel dry type extended surface filter is a dry-type air filter with random fiber mats or blankets in the forms of pockets, V-shaped or radial pleats, and include the following:\n\nCoarseFilter: Filter with a efficiency lower than 30% for atmosphere dust-spot.\nCoarseMetalScreen: Filter made of metal screen.\nCoarseCellFoams: Filter made of cell foams.\nCoarseSpunGlass: Filter made of spun glass.\nMediumFilter: Filter with an efficiency between 30-98% for atmosphere dust-spot.\nMediumElectretFilter: Filter with fine electret synthetic fibers.\nMediumNaturalFiberFilter: Filter with natural fibers.\nHEPAFilter: High efficiency particulate air filter.\nULPAFilter: Ultra low penetration air filter.\nMembraneFilters: Filter made of membrane for certain pore diameters in flat sheet and pleated form.\nA renewable media with a moving curtain viscous filter are random-fiber media coated with viscous substance in roll form or curtain where fresh media is fed across the face of the filter and the dirty media is rewound onto a roll at the bottom or to into a reservoir:\nRollForm: Viscous filter used in roll form.\nAdhesiveReservoir: Viscous filter used in moving curtain form.\nA renewable moving curtain dry media filter is a random-fiber dry media of relatively high porosity used in moving-curtain(roll) filters.\nAn electrical filter uses electrostatic precipitation to remove and collect particulate contaminants." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4731fd80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "AirParticleFilterType" ; + IFC4-PSD:nameAlias "Air Particle Filter Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OTHER" , "COARSECELLFOAMS" , "ULPAFILTER" , "ROLLFORM" , "COARSEMETALSCREEN" , "NOTKNOWN" , "MEMBRANEFILTERS" , "UNSET" , "HEPAFILTER" , "RENEWABLEMOVINGCURTIANDRYMEDIAFILTER" , "ADHESIVERESERVOIR" , "ELECTRICALFILTER" , "MEDIUMNATURALFIBERFILTER" , "COARSESPUNGLASS" , "MEDIUMELECTRETFILTER" + ] . + +:p79435f80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Face area of filter frame." ; + rdfs:label "FaceSurfaceArea" ; + IFC4-PSD:definition "Face area of filter frame." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "79435f80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "FaceSurfaceArea" ; + IFC4-PSD:nameAlias "Face Surface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:Pset_FilterTypeAirParticleFilter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air particle filter type attributes." ; + rdfs:label "Pset_FilterTypeAirParticleFilter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFilter/AIRPARTICLEFILTER" ; + IFC4-PSD:definition "Air particle filter type attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FilterTypeAirParticleFilter" ; + IFC4-PSD:propertyDef :p7fd1d700d1e511e1800000215ad4efdf , :p8fe9b680d1e511e1800000215ad4efdf , :p4731fd80d1e511e1800000215ad4efdf , :pa5f77700d1e511e1800000215ad4efdf , :p79435f80d1e511e1800000215ad4efdf , :p747eab80d1e511e1800000215ad4efdf , :p66308f80d1e511e1800000215ad4efdf , :p9a0bb500d1e511e1800000215ad4efdf , :p63359f00d1e511e1800000215ad4efdf , :p8a8c6c00d1e511e1800000215ad4efdf , :p852f2180d1e511e1800000215ad4efdf . + +:AirParticleFilterType + a rdf:Property ; + rdfs:seeAlso :p4731fd80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirParticleFilterType . + +:MediaExtendedArea a rdf:Property ; + rdfs:seeAlso :p7fd1d700d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MediaExtendedArea . + +:p63359f00d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Filter frame material." ; + rdfs:label "FrameMaterial" ; + IFC4-PSD:definition "Filter frame material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "63359f00d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "FrameMaterial" ; + IFC4-PSD:nameAlias "Frame Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:p9a0bb500d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Counted efficiency curve as a function of dust holding weight, efficiency = f (dust holding weight)." ; + rdfs:label "CountedEfficiencyCurve" ; + IFC4-PSD:definition "Counted efficiency curve as a function of dust holding weight, efficiency = f (dust holding weight)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9a0bb500d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "CountedEfficiencyCurve" ; + IFC4-PSD:nameAlias "Counted Efficiency Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcMassMeasure + ] . + +:p66308f80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air particulate filter media separation type." ; + rdfs:label "SeparationType" ; + IFC4-PSD:definition "Air particulate filter media separation type." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "66308f80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "SeparationType" ; + IFC4-PSD:nameAlias "Separation Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BAG" , "PLEAT" , "TREADSEPARATION" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_FilterTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FilterTypeCommon.ttl new file mode 100644 index 00000000..b7f31a85 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FilterTypeCommon.ttl @@ -0,0 +1,251 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalParticleGeometricMeanDiameter + a rdf:Property ; + rdfs:seeAlso :pfd95e280d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalParticleGeometricMeanDiameter . + +:pb60f5680d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "b60f5680d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pd212f800d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Initial new filter fluid resistance (i.e., pressure drop at the maximum air flowrate across the filter when the filter is new per ASHRAE Standard 52.1)." ; + rdfs:label "InitialResistance" ; + IFC4-PSD:definition "Initial new filter fluid resistance (i.e., pressure drop at the maximum air flowrate across the filter when the filter is new per ASHRAE Standard 52.1)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d212f800d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "InitialResistance" ; + IFC4-PSD:nameAlias "Initial Resistance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p02f32d00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Particle geometric standard deviation associated with nominal efficiency." ; + rdfs:label "NominalParticleGeometricStandardDeviation" ; + IFC4-PSD:definition "Particle geometric standard deviation associated with nominal efficiency." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "02f32d00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalParticleGeometricStandardDeviation" ; + IFC4-PSD:nameAlias "Nominal Particle Geometric Standard Deviation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:pccb5ad80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weight of filter." ; + rdfs:label "Weight" ; + IFC4-PSD:definition "Weight of filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ccb5ad80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "Weight" ; + IFC4-PSD:nameAlias "Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pdd662380d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operation ambient fluid temperature range." ; + rdfs:label "OperationTemperatureRange" ; + IFC4-PSD:definition "Allowable operation ambient fluid temperature range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "dd662380d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "OperationTemperatureRange" ; + IFC4-PSD:nameAlias "Operation Temperature Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NominalMediaSurfaceVelocity + a rdf:Property ; + rdfs:seeAlso :peeaf3000d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalMediaSurfaceVelocity . + +:NominalFlowrate a rdf:Property ; + rdfs:seeAlso :pf8389800d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalFlowrate . + +:NominalParticleGeometricStandardDeviation + a rdf:Property ; + rdfs:seeAlso :p02f32d00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalParticleGeometricStandardDeviation . + +:Status a rdf:Property ; + rdfs:seeAlso :pbb6ca100d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:OperationTemperatureRange + a rdf:Property ; + rdfs:seeAlso :pdd662380d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationTemperatureRange . + +:FlowRateRange a rdf:Property ; + rdfs:seeAlso :pe3f49b00d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowRateRange . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InitialResistance a rdf:Property ; + rdfs:seeAlso :pd212f800d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InitialResistance . + +:pe3f49b00d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Possible range of fluid flowrate that can be delivered." ; + rdfs:label "FlowRateRange" ; + IFC4-PSD:definition "Possible range of fluid flowrate that can be delivered." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e3f49b00d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "FlowRateRange" ; + IFC4-PSD:nameAlias "Flow Rate Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:FinalResistance a rdf:Property ; + rdfs:seeAlso :pd808d900d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FinalResistance . + +:pfd95e280d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Particle geometric mean diameter associated with nominal efficiency." ; + rdfs:label "NominalParticleGeometricMeanDiameter" ; + IFC4-PSD:definition "Particle geometric mean diameter associated with nominal efficiency." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fd95e280d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalParticleGeometricMeanDiameter" ; + IFC4-PSD:nameAlias "Nominal Particle Geometric Mean Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pf2db4d80d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total pressure drop across the filter." ; + rdfs:label "NominalPressureDrop" ; + IFC4-PSD:definition "Total pressure drop across the filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f2db4d80d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalPressureDrop" ; + IFC4-PSD:nameAlias "Nominal Pressure Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pd808d900d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1)." ; + rdfs:label "FinalResistance" ; + IFC4-PSD:definition "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d808d900d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "FinalResistance" ; + IFC4-PSD:nameAlias "Final Resistance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:NominalFilterFaceVelocity + a rdf:Property ; + rdfs:seeAlso :pea831280d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalFilterFaceVelocity . + +:pea831280d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Filter face velocity." ; + rdfs:label "NominalFilterFaceVelocity" ; + IFC4-PSD:definition "Filter face velocity." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ea831280d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalFilterFaceVelocity" ; + IFC4-PSD:nameAlias "Nominal Filter Face Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:NominalPressureDrop a rdf:Property ; + rdfs:seeAlso :pf2db4d80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalPressureDrop . + +:peeaf3000d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Average fluid velocity at the media surface." ; + rdfs:label "NominalMediaSurfaceVelocity" ; + IFC4-PSD:definition "Average fluid velocity at the media surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "eeaf3000d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalMediaSurfaceVelocity" ; + IFC4-PSD:nameAlias "Nominal Media Surface Velocity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:Pset_FilterTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Filter type common attributes." ; + rdfs:label "Pset_FilterTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFilter ; + IFC4-PSD:applicableTypeValue "IfcFilter" ; + IFC4-PSD:definition "Filter type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FilterTypeCommon" ; + IFC4-PSD:propertyDef :pd212f800d1e511e1800000215ad4efdf , :pea831280d1e511e1800000215ad4efdf , :pbb6ca100d1e511e1800000215ad4efdf , :pb60f5680d1e511e1800000215ad4efdf , :p02f32d00d1e611e1800000215ad4efdf , :pf2db4d80d1e511e1800000215ad4efdf , :pccb5ad80d1e511e1800000215ad4efdf , :pd808d900d1e511e1800000215ad4efdf , :pdd662380d1e511e1800000215ad4efdf , :pfd95e280d1e511e1800000215ad4efdf , :pe3f49b00d1e511e1800000215ad4efdf , :pf8389800d1e511e1800000215ad4efdf , :peeaf3000d1e511e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :pb60f5680d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pf8389800d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal fluid flow rate through the filter." ; + rdfs:label "NominalFlowrate" ; + IFC4-PSD:definition "Nominal fluid flow rate through the filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f8389800d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalFlowrate" ; + IFC4-PSD:nameAlias "Nominal Flowrate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pbb6ca100d1e511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "bb6ca100d1e511e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Weight a rdf:Property ; + rdfs:seeAlso :pccb5ad80d1e511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Weight . diff --git a/converter/src/main/resources/pset/Pset_FilterTypeCompressedAirFilter.ttl b/converter/src/main/resources/pset/Pset_FilterTypeCompressedAirFilter.ttl new file mode 100644 index 00000000..709ebcc4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FilterTypeCompressedAirFilter.ttl @@ -0,0 +1,115 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:CloggingIndicator a rdf:Property ; + rdfs:seeAlso :p2ae29080d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CloggingIndicator . + +:p0c7c9500d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "ACTIVATEDCARBON: absorbs oil vapor and odor; PARTICLE_FILTER: used to absorb solid particles of medium size; COALESCENSE_FILTER: used to absorb fine solid, oil, and water particles, also called micro filter" ; + rdfs:label "CompressedAirFilterType" ; + IFC4-PSD:definition "ACTIVATEDCARBON: absorbs oil vapor and odor; PARTICLE_FILTER: used to absorb solid particles of medium size; COALESCENSE_FILTER: used to absorb fine solid, oil, and water particles, also called micro filter" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0c7c9500d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "CompressedAirFilterType" ; + IFC4-PSD:nameAlias "Compressed Air Filter Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ACTIVATEDCARBON" , "PARTICLE_FILTER" , "COALESCENSE_FILTER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:AutomaticCondensateDischarge + a rdf:Property ; + rdfs:seeAlso :p25854600d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AutomaticCondensateDischarge . + +:p17cfc080d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum pressure under normal operating conditions." ; + rdfs:label "OperationPressureMax" ; + IFC4-PSD:definition "Maximum pressure under normal operating conditions." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "17cfc080d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "OperationPressureMax" ; + IFC4-PSD:nameAlias "Operation Pressure Max"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p25854600d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Whether or not the condensing water or oil is discharged automatically from the filter." ; + rdfs:label "AutomaticCondensateDischarge" ; + IFC4-PSD:definition "Whether or not the condensing water or oil is discharged automatically from the filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "25854600d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "AutomaticCondensateDischarge" ; + IFC4-PSD:nameAlias "Automatic Condensate Discharge"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:ParticleAbsorptionCurve + a rdf:Property ; + rdfs:seeAlso :p1bfbde00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ParticleAbsorptionCurve . + +:CompressedAirFilterType + a rdf:Property ; + rdfs:seeAlso :p0c7c9500d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressedAirFilterType . + +:p2ae29080d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Whether the filter has an indicator to display the degree of clogging of the filter." ; + rdfs:label "CloggingIndicator" ; + IFC4-PSD:definition "Whether the filter has an indicator to display the degree of clogging of the filter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2ae29080d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "CloggingIndicator" ; + IFC4-PSD:nameAlias "Clogging Indicator"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_FilterTypeCompressedAirFilter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Compressed air filter type attributes." ; + rdfs:label "Pset_FilterTypeCompressedAirFilter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFilter/COMPRESSEDAIRFILTER" ; + IFC4-PSD:definition "Compressed air filter type attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FilterTypeCompressedAirFilter" ; + IFC4-PSD:propertyDef :p2ae29080d1e611e1800000215ad4efdf , :p17cfc080d1e611e1800000215ad4efdf , :p1bfbde00d1e611e1800000215ad4efdf , :p25854600d1e611e1800000215ad4efdf , :p0c7c9500d1e611e1800000215ad4efdf . + +:p1bfbde00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of particles that are removed by the filter. Each entry describes the ratio of particles absorbed greater than equal to the specified size and less than the next specified size. For example, given for 3 significant particle sizes >= 0,1 micro m, >= 1 micro m, >= 5 micro m" ; + rdfs:label "ParticleAbsorptionCurve" ; + IFC4-PSD:definition "Ratio of particles that are removed by the filter. Each entry describes the ratio of particles absorbed greater than equal to the specified size and less than the next specified size. For example, given for 3 significant particle sizes >= 0,1 micro m, >= 1 micro m, >= 5 micro m" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1bfbde00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "ParticleAbsorptionCurve" ; + IFC4-PSD:nameAlias "Particle Absorption Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPositiveRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:OperationPressureMax + a rdf:Property ; + rdfs:seeAlso :p17cfc080d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperationPressureMax . diff --git a/converter/src/main/resources/pset/Pset_FilterTypeWaterFilter.ttl b/converter/src/main/resources/pset/Pset_FilterTypeWaterFilter.ttl new file mode 100644 index 00000000..609275fe --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FilterTypeWaterFilter.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p35048f00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Further qualifies the type of water filter. Filtration removes undissolved matter; Purification removes dissolved matter; Softening replaces dissolved matter." ; + rdfs:label "WaterFilterType" ; + IFC4-PSD:definition "Further qualifies the type of water filter. Filtration removes undissolved matter; Purification removes dissolved matter; Softening replaces dissolved matter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "35048f00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "WaterFilterType" ; + IFC4-PSD:nameAlias "Water Filter Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FILTRATION_DIATOMACEOUSEARTH" , "FILTRATION_SAND" , "PURIFICATION_DEIONIZING" , "PURIFICATION_REVERSEOSMOSIS" , "SOFTENING_ZEOLITE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_FilterTypeWaterFilter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Water filter type attributes." ; + rdfs:label "Pset_FilterTypeWaterFilter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFilter/WATERFILTER" ; + IFC4-PSD:definition "Water filter type attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FilterTypeWaterFilter" ; + IFC4-PSD:propertyDef :p35048f00d1e611e1800000215ad4efdf . + +:WaterFilterType a rdf:Property ; + rdfs:seeAlso :p35048f00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterFilterType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeBreechingInlet.ttl b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeBreechingInlet.ttl new file mode 100644 index 00000000..89e2667c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeBreechingInlet.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:InletDiameter a rdf:Property ; + rdfs:seeAlso :p54032100d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletDiameter . + +:p54032100d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The inlet diameter of the breeching inlet." ; + rdfs:label "InletDiameter" ; + IFC4-PSD:definition "The inlet diameter of the breeching inlet." ; + IFC4-PSD:definitionAlias "入口の直径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "54032100d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "InletDiameter" ; + IFC4-PSD:nameAlias "Inlet Diameter"@en , "入口口径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:BreechingInletType a rdf:Property ; + rdfs:seeAlso :p49488c00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BreechingInletType . + +:p5ebdb600d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the type coupling on the inlet of the breeching inlet." ; + rdfs:label "CouplingType" ; + IFC4-PSD:definition "Defines the type coupling on the inlet of the breeching inlet." ; + IFC4-PSD:definitionAlias "送水口入口のカップリングタイプ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5ebdb600d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "CouplingType" ; + IFC4-PSD:nameAlias "Coupling Type"@en , "カップリングタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "INSTANTANEOUS_FEMALE" , "INSTANTANEOUS_MALE" , "OTHER" , "USERDEFINED" , "NOTDEFINED" + ] . + +:p49488c00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the type of breeching inlet." ; + rdfs:label "BreechingInletType" ; + IFC4-PSD:definition "Defines the type of breeching inlet." ; + IFC4-PSD:definitionAlias ""@en , "送水口タイプの定義。"@ja-JP ; + IFC4-PSD:ifdguid "49488c00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "BreechingInletType" ; + IFC4-PSD:nameAlias "送水口タイプ"@ja-JP , "Breeching Inlet Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "TWOWAY" , "FOURWAY" , "OTHER" , "USERDEFINED" , "NOTDEFINED" + ] . + +:HasCaps a rdf:Property ; + rdfs:seeAlso :p6a10e180d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasCaps . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:OutletDiameter a rdf:Property ; + rdfs:seeAlso :p59606b80d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletDiameter . + +:CouplingType a rdf:Property ; + rdfs:seeAlso :p5ebdb600d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CouplingType . + +:Pset_FireSuppressionTerminalTypeBreechingInlet + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Symmetrical pipe fitting that unites two or more inlets into a single pipe (BS6100 330 114 adapted)." ; + rdfs:label "Pset_FireSuppressionTerminalTypeBreechingInlet" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFireSuppressionTerminal/BREECHINGINLET" ; + IFC4-PSD:definition "Symmetrical pipe fitting that unites two or more inlets into a single pipe (BS6100 330 114 adapted)." ; + IFC4-PSD:definitionAlias ""@en , "ひとつのパイプ(適合BS6100330114)に2つ以上の入口をもつ対称配管継手。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FireSuppressionTerminalTypeBreechingInlet" ; + IFC4-PSD:propertyDef :p6a10e180d1e611e1800000215ad4efdf , :p49488c00d1e611e1800000215ad4efdf , :p5ebdb600d1e611e1800000215ad4efdf , :p59606b80d1e611e1800000215ad4efdf , :p54032100d1e611e1800000215ad4efdf . + +:p59606b80d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The outlet diameter of the breeching inlet." ; + rdfs:label "OutletDiameter" ; + IFC4-PSD:definition "The outlet diameter of the breeching inlet." ; + IFC4-PSD:definitionAlias ""@en , "出口の直径。"@ja-JP ; + IFC4-PSD:ifdguid "59606b80d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "OutletDiameter" ; + IFC4-PSD:nameAlias "出口口径"@ja-JP , "Outlet Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p6a10e180d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Does the inlet connection have protective caps." ; + rdfs:label "HasCaps" ; + IFC4-PSD:definition "Does the inlet connection have protective caps." ; + IFC4-PSD:definitionAlias ""@en , "入口接続が保護キャップを持っているか。"@ja-JP ; + IFC4-PSD:ifdguid "6a10e180d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HasCaps" ; + IFC4-PSD:nameAlias "Has Caps"@en , "保護キャップ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeCommon.ttl new file mode 100644 index 00000000..336e3fe4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_FireSuppressionTerminalTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for fire suppression terminals." ; + rdfs:label "Pset_FireSuppressionTerminalTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFireSuppressionTerminal ; + IFC4-PSD:applicableTypeValue "IfcFireSuppressionTerminal" ; + IFC4-PSD:definition "Common properties for fire suppression terminals." ; + IFC4-PSD:definitionAlias "消火栓の共通プロパティを設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FireSuppressionTerminalTypeCommon" ; + IFC4-PSD:propertyDef :p785efd80d1e611e1800000215ad4efdf , :p739a4980d1e611e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p785efd80d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p785efd80d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "785efd80d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p739a4980d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "使用される認識分類システムで分類基準がない場合、プロジェクトで指定された型(タイプ'A-1'など)で提供されるレファレンスID。"@ja-JP ; + IFC4-PSD:ifdguid "739a4980d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p739a4980d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeFireHydrant.ttl b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeFireHydrant.ttl new file mode 100644 index 00000000..afbabc44 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeFireHydrant.ttl @@ -0,0 +1,197 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:CapColor a rdf:Property ; + rdfs:seeAlso :pc07e2000d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapColor . + +:pbbb96c00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Color of the body of the hydrant.\n\nNote: Consult local fire regulations for statutory colors that may be required for hydrant bodies in particular circumstances." ; + rdfs:label "BodyColor" ; + IFC4-PSD:definition "Color of the body of the hydrant.\n\nNote: Consult local fire regulations for statutory colors that may be required for hydrant bodies in particular circumstances." ; + IFC4-PSD:definitionAlias ""@en , "消火栓本体の色。\n\n注意:特定の状況で消火栓ボディに求められる地域消防規則法定色による。"@ja-JP ; + IFC4-PSD:ifdguid "bbb96c00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "BodyColor" ; + IFC4-PSD:nameAlias "Body Color"@en , "本体色"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:BodyColor a rdf:Property ; + rdfs:seeAlso :pbbb96c00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BodyColor . + +:pa5abab80d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric rate of fluid discharge." ; + rdfs:label "DischargeFlowRate" ; + IFC4-PSD:definition "The volumetric rate of fluid discharge." ; + IFC4-PSD:definitionAlias "放水液体の体積。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a5abab80d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeFlowRate" ; + IFC4-PSD:nameAlias "Discharge Flow Rate"@en , "放水流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:PumperConnectionSize + a rdf:Property ; + rdfs:seeAlso :p94629f00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PumperConnectionSize . + +:pc07e2000d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Color of the caps of the hydrant.\n\nNote: Consult local fire regulations for statutory colors that may be required for hydrant caps in particular circumstances." ; + rdfs:label "CapColor" ; + IFC4-PSD:definition "Color of the caps of the hydrant.\n\nNote: Consult local fire regulations for statutory colors that may be required for hydrant caps in particular circumstances." ; + IFC4-PSD:definitionAlias "消火栓キャップの色。\n\n注意:特定の状況で消火栓キャップに求められる地域消防規則法定色による。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c07e2000d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "CapColor" ; + IFC4-PSD:nameAlias "Cap Color"@en , "キャップ色"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:WaterIsPotable a rdf:Property ; + rdfs:seeAlso :pb0fed700d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterIsPotable . + +:p9af11680d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of hose connections on the hydrant (excluding the pumper connection)." ; + rdfs:label "NumberOfHoseConnections" ; + IFC4-PSD:definition "The number of hose connections on the hydrant (excluding the pumper connection)." ; + IFC4-PSD:definitionAlias "(ポンプ接続を除く)消火栓のホース接続の数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9af11680d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfHoseConnections" ; + IFC4-PSD:nameAlias "ホースの接続の数"@ja-JP , "Number Of Hose Connections"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HoseConnectionSize a rdf:Property ; + rdfs:seeAlso :p9fb5ca80d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseConnectionSize . + +:Pset_FireSuppressionTerminalTypeFireHydrant + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device, fitted to a pipe, through which a temporary supply of water may be provided (BS6100 330 6107)\n\nFor further details on fire hydrants, see www.firehydrant.org" ; + rdfs:label "Pset_FireSuppressionTerminalTypeFireHydrant" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFireSuppressionTerminal/FIREHYDRANT" ; + IFC4-PSD:definition "Device, fitted to a pipe, through which a temporary supply of water may be provided (BS6100 330 6107)\n\nFor further details on fire hydrants, see www.firehydrant.org" ; + IFC4-PSD:definitionAlias ""@en , "(BS61003306107)から供給される一時的な水を通す配管に取り付けられる装置。\n\n消火栓の詳細については、www.firehydrant.orgを参照。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FireSuppressionTerminalTypeFireHydrant" ; + IFC4-PSD:propertyDef :pb65c2180d1e611e1800000215ad4efdf , :pbbb96c00d1e611e1800000215ad4efdf , :pb0fed700d1e611e1800000215ad4efdf , :p94629f00d1e611e1800000215ad4efdf , :pc07e2000d1e611e1800000215ad4efdf , :p9fb5ca80d1e611e1800000215ad4efdf , :pa5abab80d1e611e1800000215ad4efdf , :p8a40a080d1e611e1800000215ad4efdf , :paa705f80d1e611e1800000215ad4efdf , :p9af11680d1e611e1800000215ad4efdf . + +:paa705f80d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Alphanumeric indication of the flow class of a hydrant (may be used in connection with or instead of the FlowRate property)." ; + rdfs:label "FlowClass" ; + IFC4-PSD:definition "Alphanumeric indication of the flow class of a hydrant (may be used in connection with or instead of the FlowRate property)." ; + IFC4-PSD:definitionAlias "消火栓流量クラスの英数字表示(流量属性と一緒に、または代わりに用いられる)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "aa705f80d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "FlowClass" ; + IFC4-PSD:nameAlias "Flow Class"@en , "流量クラス"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FireHydrantType a rdf:Property ; + rdfs:seeAlso :p8a40a080d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireHydrantType . + +:p9fb5ca80d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of connections to which a hose may be connected (other than that to be linked to a pumping unit)." ; + rdfs:label "HoseConnectionSize" ; + IFC4-PSD:definition "The size of connections to which a hose may be connected (other than that to be linked to a pumping unit)." ; + IFC4-PSD:definitionAlias "接続ホースのサイズ(ポンプユニット接続以外の)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9fb5ca80d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseConnectionSize" ; + IFC4-PSD:nameAlias "Hose Connection Size"@en , "ホース接続サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfHoseConnections + a rdf:Property ; + rdfs:seeAlso :p9af11680d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfHoseConnections . + +:DischargeFlowRate a rdf:Property ; + rdfs:seeAlso :pa5abab80d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeFlowRate . + +:p94629f00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of a connection to which a fire hose may be connected that is then linked to a pumping unit." ; + rdfs:label "PumperConnectionSize" ; + IFC4-PSD:definition "The size of a connection to which a fire hose may be connected that is then linked to a pumping unit." ; + IFC4-PSD:definitionAlias ""@en , "ポンプユニットに接続されであろう消防ホースの接続サイズ。"@ja-JP ; + IFC4-PSD:ifdguid "94629f00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "PumperConnectionSize" ; + IFC4-PSD:nameAlias "ポンプ接続サイズ"@ja-JP , "Pumper Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8a40a080d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the range of hydrant types from which the required type can be selected where.\n\nDryBarrel:\t A hydrant that has isolating valves fitted below ground and that may be used where the possibility of water freezing is a consideration.\nWetBarrel:\t A hydrant that has isolating valves fitted above ground and that may be used where there is no possibility of water freezing." ; + rdfs:label "FireHydrantType" ; + IFC4-PSD:definition "Defines the range of hydrant types from which the required type can be selected where.\n\nDryBarrel:\t A hydrant that has isolating valves fitted below ground and that may be used where the possibility of water freezing is a consideration.\nWetBarrel:\t A hydrant that has isolating valves fitted above ground and that may be used where there is no possibility of water freezing." ; + IFC4-PSD:definitionAlias ""@en , "消火栓の必要なタイプを定義する。\n\n乾式l:凍結の可能性のあるとき地中に開放弁セット。\n\n湿式:凍結の可能性のないとき地上に開放弁セット。"@ja-JP ; + IFC4-PSD:ifdguid "8a40a080d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "FireHydrantType" ; + IFC4-PSD:nameAlias "Fire Hydrant Type"@en , "消火栓のタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DRYBARREL" , "WETBARREL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pb65c2180d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum pressure that the hydrant is manufactured to withstand." ; + rdfs:label "PressureRating" ; + IFC4-PSD:definition "Maximum pressure that the hydrant is manufactured to withstand." ; + IFC4-PSD:definitionAlias "最大圧力、消火栓の耐圧。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b65c2180d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRating" ; + IFC4-PSD:nameAlias "Pressure Rating"@en , "圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:PressureRating a rdf:Property ; + rdfs:seeAlso :pb65c2180d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRating . + +:pb0fed700d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the water flow from the hydrant is potable (set TRUE) or non potable (set FALSE)." ; + rdfs:label "WaterIsPotable" ; + IFC4-PSD:definition "Indication of whether the water flow from the hydrant is potable (set TRUE) or non potable (set FALSE)." ; + IFC4-PSD:definitionAlias "消火栓の水が飲用かどうかの表示(飲用:TRUEを設定、飲用以外:FALSEを設定)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b0fed700d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "WaterIsPotable" ; + IFC4-PSD:nameAlias "飲用水かどうか"@ja-JP , "Water Is Potable"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FlowClass a rdf:Property ; + rdfs:seeAlso :paa705f80d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowClass . diff --git a/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeHoseReel.ttl b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeHoseReel.ttl new file mode 100644 index 00000000..dd89fc51 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeHoseReel.ttl @@ -0,0 +1,163 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ClassOfService a rdf:Property ; + rdfs:seeAlso :p0935d900d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClassOfService . + +:HoseLength a rdf:Property ; + rdfs:seeAlso :pf58a7280d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseLength . + +:HoseReelMountingType + a rdf:Property ; + rdfs:seeAlso :pd986d100d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseReelMountingType . + +:p10f57d80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The name of the authority that applies the classification of service to the hose reel (e.g. NFPA/FEMA)." ; + rdfs:label "ClassificationAuthority" ; + IFC4-PSD:definition "The name of the authority that applies the classification of service to the hose reel (e.g. NFPA/FEMA)." ; + IFC4-PSD:definitionAlias "ホースリールの分類認証機関の名称。(例 NFPA/ FEMA)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "10f57d80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ClassificationAuthority" ; + IFC4-PSD:nameAlias "分類認証機関"@ja-JP , "Classification Authority"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pfc18ea00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of nozzle (in terms of spray pattern) fitted to the end of the hose from which the type required may be set." ; + rdfs:label "HoseNozzleType" ; + IFC4-PSD:definition "Identifies the predefined types of nozzle (in terms of spray pattern) fitted to the end of the hose from which the type required may be set." ; + IFC4-PSD:definitionAlias "あらかじめ定義済みのホースの先端に取り付けられるノズルの型(放出パターンの観点から)から必要な型を設定する識別。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fc18ea00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseNozzleType" ; + IFC4-PSD:nameAlias "Hose Nozzle Type"@en , "ホースノズルタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FOG" , "STRAIGHTSTREAM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_FireSuppressionTerminalTypeHoseReel + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A supporting framework on which a hose may be wound (BS6100 155 8201).\n\nNote that the service provided by the hose (water/foam) is determined by the context of the system onto which the hose reel is connected." ; + rdfs:label "Pset_FireSuppressionTerminalTypeHoseReel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFireSuppressionTerminal/HOSEREEL" ; + IFC4-PSD:definition "A supporting framework on which a hose may be wound (BS6100 155 8201).\n\nNote that the service provided by the hose (water/foam) is determined by the context of the system onto which the hose reel is connected." ; + IFC4-PSD:definitionAlias "ホースが損傷したときのサポートの仕組み。(BS61001558201)\n\nホースに供給されるサービスが水か泡かは、そのホースリールが接続されているシステムによる。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FireSuppressionTerminalTypeHoseReel" ; + IFC4-PSD:propertyDef :pfc18ea00d1e611e1800000215ad4efdf , :p10f57d80d1e711e1800000215ad4efdf , :p0935d900d1e711e1800000215ad4efdf , :pd986d100d1e611e1800000215ad4efdf , :pe9061a00d1e611e1800000215ad4efdf , :pf58a7280d1e611e1800000215ad4efdf , :peefbfb00d1e611e1800000215ad4efdf , :pcc69e200d1e611e1800000215ad4efdf . + +:pf58a7280d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Notional length of the hose fitted to the hose reel when fully extended." ; + rdfs:label "HoseLength" ; + IFC4-PSD:definition "Notional length of the hose fitted to the hose reel when fully extended." ; + IFC4-PSD:definitionAlias ""@en , "ホースホースリールに装着されたホースの公称長さ(全て伸ばされたときの)。"@ja-JP ; + IFC4-PSD:ifdguid "f58a7280d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseLength" ; + IFC4-PSD:nameAlias "Hose Length"@en , "ホースの長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pcc69e200d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of hose arrangement from which the type required may be set." ; + rdfs:label "HoseReelType" ; + IFC4-PSD:definition "Identifies the predefined types of hose arrangement from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "あらかじめ定義済みのホース構成の型から必要な型を設定する識別。"@ja-JP ; + IFC4-PSD:ifdguid "cc69e200d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseReelType" ; + IFC4-PSD:nameAlias "Hose Reel Type"@en , "ホースリールタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RACK" , "REEL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pe9061a00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection to the hose reel." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection to the hose reel." ; + IFC4-PSD:definitionAlias "ホースリールへの入口接続のサイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e9061a00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "Inlet Connection Size"@en , "インレット接続サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HoseNozzleType a rdf:Property ; + rdfs:seeAlso :pfc18ea00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseNozzleType . + +:HoseReelType a rdf:Property ; + rdfs:seeAlso :pcc69e200d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseReelType . + +:p0935d900d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A classification of usage of the hose reel that may be applied." ; + rdfs:label "ClassOfService" ; + IFC4-PSD:definition "A classification of usage of the hose reel that may be applied." ; + IFC4-PSD:definitionAlias "適用されるホースリールの使用方法の分類。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0935d900d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ClassOfService" ; + IFC4-PSD:nameAlias "Class Of Service"@en , "サービスクラス"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:peefbfb00d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Notional diameter (bore) of the hose." ; + rdfs:label "HoseDiameter" ; + IFC4-PSD:definition "Notional diameter (bore) of the hose." ; + IFC4-PSD:definitionAlias ""@en , "ホースの公称口径(内径)。"@ja-JP ; + IFC4-PSD:ifdguid "eefbfb00d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseDiameter" ; + IFC4-PSD:nameAlias "ホース径"@ja-JP , "Hose Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:HoseDiameter a rdf:Property ; + rdfs:seeAlso :peefbfb00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoseDiameter . + +:pd986d100d1e611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of hose reel mounting from which the type required may be set." ; + rdfs:label "HoseReelMountingType" ; + IFC4-PSD:definition "Identifies the predefined types of hose reel mounting from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "あらかじめ定義済みの取り付けホースリールの型から必要な型を設定する識別。"@ja-JP ; + IFC4-PSD:ifdguid "d986d100d1e611e1800000215ad4efdf" ; + IFC4-PSD:name "HoseReelMountingType" ; + IFC4-PSD:nameAlias "Hose Reel Mounting Type"@en , "ホースリール装着タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CABINET_RECESSED" , "CABINET_SEMIRECESSED" , "SURFACE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ClassificationAuthority + a rdf:Property ; + rdfs:seeAlso :p10f57d80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClassificationAuthority . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :pe9061a00d1e611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . diff --git a/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeSprinkler.ttl b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeSprinkler.ttl new file mode 100644 index 00000000..7f1120a9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FireSuppressionTerminalTypeSprinkler.ttl @@ -0,0 +1,233 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ResidualFlowingPressure + a rdf:Property ; + rdfs:seeAlso :p721d5100d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ResidualFlowingPressure . + +:p78133200d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The coefficient of flow at the sprinkler." ; + rdfs:label "DischargeCoefficient" ; + IFC4-PSD:definition "The coefficient of flow at the sprinkler." ; + IFC4-PSD:definitionAlias "スプリンクラーの流れの係数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "78133200d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeCoefficient" ; + IFC4-PSD:nameAlias "Discharge Coefficient"@en , "流量係数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p59ad3680d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the liquid in the bulb for a bulb activated sprinkler. Note that the liquid color varies according to the activation temperature requirement of the sprinkler head. Note also that this property does not need to be asserted for quick response activated sprinklers." ; + rdfs:label "BulbLiquidColor" ; + IFC4-PSD:definition "The color of the liquid in the bulb for a bulb activated sprinkler. Note that the liquid color varies according to the activation temperature requirement of the sprinkler head. Note also that this property does not need to be asserted for quick response activated sprinklers." ; + IFC4-PSD:definitionAlias "バルブ作動スプリンクラーのバルブ液体色の設定。液体色は、スプリンクラーヘッドの作動温度に応じて変化する。また、この属性は、高速応答スプリンクラーは設定する必要はない。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "59ad3680d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "BulbLiquidColor" ; + IFC4-PSD:nameAlias "Bulb Liquid Color"@en , "バルブ液体色"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "GREEN" , "OTHER" , "ORANGE" , "UNSET" , "BLUE" , "RED" , "NOTKNOWN" , "YELLOW" , "MAUVE" + ] . + +:ActivationTemperature + a rdf:Property ; + rdfs:seeAlso :p47cb9380d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActivationTemperature . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :p83665d80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:Pset_FireSuppressionTerminalTypeSprinkler + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device for sprinkling water from a pipe under pressure over an area (BS6100 100 3432)" ; + rdfs:label "Pset_FireSuppressionTerminalTypeSprinkler" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFireSuppressionTerminal/SPRINKLER" ; + IFC4-PSD:definition "Device for sprinkling water from a pipe under pressure over an area (BS6100 100 3432)" ; + IFC4-PSD:definitionAlias ""@en , "特定エリアに水圧をかけた配管より散水する装置。(BS61001003432)"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FireSuppressionTerminalTypeSprinkler" ; + IFC4-PSD:propertyDef :p4d28de00d1e711e1800000215ad4efdf , :p78133200d1e711e1800000215ad4efdf , :p531ebf00d1e711e1800000215ad4efdf , :p83665d80d1e711e1800000215ad4efdf , :p47cb9380d1e711e1800000215ad4efdf , :p31bdd300d1e711e1800000215ad4efdf , :p3da99500d1e711e1800000215ad4efdf , :p721d5100d1e711e1800000215ad4efdf , :p59ad3680d1e711e1800000215ad4efdf , :p6cc00680d1e711e1800000215ad4efdf , :p7d707c80d1e711e1800000215ad4efdf , :p1d79d600d1e711e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Activation a rdf:Property ; + rdfs:seeAlso :p31bdd300d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Activation . + +:MaximumWorkingPressure + a rdf:Property ; + rdfs:seeAlso :p7d707c80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumWorkingPressure . + +:p3da99500d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined methods of sprinkler response from which that required may be set." ; + rdfs:label "Response" ; + IFC4-PSD:definition "Identifies the predefined methods of sprinkler response from which that required may be set." ; + IFC4-PSD:definitionAlias "あらかじめ定義済みのスプリンクラーの応答方式から必要な方式を設定する識別。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3da99500d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Response" ; + IFC4-PSD:nameAlias "Response"@en , "応答"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "QUICK" , "STANDARD" , "NOTKNOWN" , "UNSET" + ] . + +:p31bdd300d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined methods of sprinkler activation from which that required may be set." ; + rdfs:label "Activation" ; + IFC4-PSD:definition "Identifies the predefined methods of sprinkler activation from which that required may be set." ; + IFC4-PSD:definitionAlias "あらかじめ定義済みのスプリンクラーの作動方式から必要な方式を設定する識別。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "31bdd300d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Activation" ; + IFC4-PSD:nameAlias "作動"@ja-JP , "Activation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BULB" , "FUSIBLESOLDER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4d28de00d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The area that the sprinkler is designed to protect." ; + rdfs:label "CoverageArea" ; + IFC4-PSD:definition "The area that the sprinkler is designed to protect." ; + IFC4-PSD:definitionAlias ""@en , "スプリンクラーの設計保護区画面積。"@ja-JP ; + IFC4-PSD:ifdguid "4d28de00d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "CoverageArea" ; + IFC4-PSD:nameAlias "カバー面積"@ja-JP , "Coverage Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:DischargeFlowRate a rdf:Property ; + rdfs:seeAlso :p6cc00680d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeFlowRate . + +:p7d707c80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum pressure that the object is manufactured to withstand." ; + rdfs:label "MaximumWorkingPressure" ; + IFC4-PSD:definition "Maximum pressure that the object is manufactured to withstand." ; + IFC4-PSD:definitionAlias ""@en , "最大圧力、製造耐圧。"@ja-JP ; + IFC4-PSD:ifdguid "7d707c80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumWorkingPressure" ; + IFC4-PSD:nameAlias "Maximum Working Pressure"@en , "最大作動圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:CoverageArea a rdf:Property ; + rdfs:seeAlso :p4d28de00d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverageArea . + +:BulbLiquidColor a rdf:Property ; + rdfs:seeAlso :p59ad3680d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BulbLiquidColor . + +:p1d79d600d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of sprinkler from which the type required may be set." ; + rdfs:label "SprinklerType" ; + IFC4-PSD:definition "Identifies the predefined types of sprinkler from which the type required may be set." ; + IFC4-PSD:definitionAlias "あらかじめ定義済みのスプリンクラーの型から必要な型を設定する識別。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1d79d600d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerType" ; + IFC4-PSD:nameAlias "Sprinkler Type"@en , "スプリンクラータイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UPRIGHT" , "CEILING" , "SIDEWALL" , "CUTOFF" , "NOTKNOWN" , "CONCEALED" , "RECESSEDPENDANT" , "PENDANT" , "UNSET" , "OTHER" + ] . + +:p531ebf00d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the sprinkler has a deflector (baffle) fitted to diffuse the discharge on activation (= TRUE) or not (= FALSE)." ; + rdfs:label "HasDeflector" ; + IFC4-PSD:definition "Indication of whether the sprinkler has a deflector (baffle) fitted to diffuse the discharge on activation (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "スプリンクラー作動時、放水を拡散させる偏向器(バッフル)取り付けているかどうかの表示(= TRUE)そうでないか(= FALSE)を返します。"@ja-JP ; + IFC4-PSD:ifdguid "531ebf00d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "HasDeflector" ; + IFC4-PSD:nameAlias "ディフレクターの有無"@ja-JP , "Has Deflector"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p6cc00680d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric rate of fluid discharge." ; + rdfs:label "DischargeFlowRate" ; + IFC4-PSD:definition "The volumetric rate of fluid discharge." ; + IFC4-PSD:definitionAlias "吐出流体の体積流量。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6cc00680d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "DischargeFlowRate" ; + IFC4-PSD:nameAlias "Discharge Flow Rate"@en , "吐出流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Response a rdf:Property ; + rdfs:seeAlso :p3da99500d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Response . + +:DischargeCoefficient + a rdf:Property ; + rdfs:seeAlso :p78133200d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DischargeCoefficient . + +:HasDeflector a rdf:Property ; + rdfs:seeAlso :p531ebf00d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasDeflector . + +:p83665d80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection to the sprinkler." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection to the sprinkler." ; + IFC4-PSD:definitionAlias ""@en , "スプリンクラーへの入口接続のサイズ。"@ja-JP ; + IFC4-PSD:ifdguid "83665d80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "Connection Size"@en , "接続サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p721d5100d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The residual flowing pressure in the pipeline at which the discharge flow rate is determined." ; + rdfs:label "ResidualFlowingPressure" ; + IFC4-PSD:definition "The residual flowing pressure in the pipeline at which the discharge flow rate is determined." ; + IFC4-PSD:definitionAlias ""@en , "吐出流量が確保される、パイプラインの流れ時残留圧力。"@ja-JP ; + IFC4-PSD:ifdguid "721d5100d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ResidualFlowingPressure" ; + IFC4-PSD:nameAlias "Residual Flowing Pressure"@en , "残留流動圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p47cb9380d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature at which the object is designed to activate." ; + rdfs:label "ActivationTemperature" ; + IFC4-PSD:definition "The temperature at which the object is designed to activate." ; + IFC4-PSD:definitionAlias ""@en , "設計作動温度。"@ja-JP ; + IFC4-PSD:ifdguid "47cb9380d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ActivationTemperature" ; + IFC4-PSD:nameAlias "Activation Temperature"@en , "作動温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:SprinklerType a rdf:Property ; + rdfs:seeAlso :p1d79d600d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerType . diff --git a/converter/src/main/resources/pset/Pset_FlowInstrumentPHistory.ttl b/converter/src/main/resources/pset/Pset_FlowInstrumentPHistory.ttl new file mode 100644 index 00000000..2d77e7d3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowInstrumentPHistory.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p90834c80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates measured values over time which may be recorded continuously or only when changed beyond a particular deadband." ; + rdfs:label "Value" ; + IFC4-PSD:definition "Indicates measured values over time which may be recorded continuously or only when changed beyond a particular deadband." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "90834c80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Quality a rdf:Property ; + rdfs:seeAlso :p94af6a00d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Quality . + +:p97aa5a80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "97aa5a80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p94af6a00d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + rdfs:label "Quality" ; + IFC4-PSD:definition "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "94af6a00d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Quality" ; + IFC4-PSD:nameAlias "Quality"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p97aa5a80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_FlowInstrumentPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history of flow instrument values. HISTORY: Added in IFC4." ; + rdfs:label "Pset_FlowInstrumentPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcFlowInstrument ; + IFC4-PSD:applicableTypeValue "IfcFlowInstrument" ; + IFC4-PSD:definition "Properties for history of flow instrument values. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowInstrumentPHistory" ; + IFC4-PSD:propertyDef :p90834c80d1e711e1800000215ad4efdf , :p97aa5a80d1e711e1800000215ad4efdf , :p94af6a00d1e711e1800000215ad4efdf . + +:Value a rdf:Property ; + rdfs:seeAlso :p90834c80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FlowInstrumentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FlowInstrumentTypeCommon.ttl new file mode 100644 index 00000000..374465f0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowInstrumentTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :pa6910d00d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa133c280d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pa133c280d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a133c280d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_FlowInstrumentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Flow Instrument type common attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_FlowInstrumentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFlowInstrument ; + IFC4-PSD:applicableTypeValue "IfcFlowInstrument" ; + IFC4-PSD:definition "Flow Instrument type common attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "流体計器の共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowInstrumentTypeCommon" ; + IFC4-PSD:propertyDef :pa6910d00d1e711e1800000215ad4efdf , :pa133c280d1e711e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa6910d00d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a6910d00d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_FlowInstrumentTypePressureGauge.ttl b/converter/src/main/resources/pset/Pset_FlowInstrumentTypePressureGauge.ttl new file mode 100644 index 00000000..6302b11e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowInstrumentTypePressureGauge.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:DisplaySize a rdf:Property ; + rdfs:seeAlso :pcaece980d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DisplaySize . + +:Pset_FlowInstrumentTypePressureGauge + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that reads and displays a pressure value at a point or the pressure difference between two points." ; + rdfs:label "Pset_FlowInstrumentTypePressureGauge" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowInstrument/PRESSUREGAUGE" ; + IFC4-PSD:definition "A device that reads and displays a pressure value at a point or the pressure difference between two points." ; + IFC4-PSD:definitionAlias "その位置の圧力、または、2か所の差圧を測定し表示するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowInstrumentTypePressureGauge" ; + IFC4-PSD:propertyDef :pcaece980d1e711e1800000215ad4efdf , :pbc9ecd80d1e711e1800000215ad4efdf . + +:pbc9ecd80d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the means by which pressure is displayed." ; + rdfs:label "PressureGaugeType" ; + IFC4-PSD:definition "Identifies the means by which pressure is displayed." ; + IFC4-PSD:definitionAlias "圧力が表示される手段を識別する。"@ja-JP , "압력이 표시되는 방법을 확인한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "bc9ecd80d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "PressureGaugeType" ; + IFC4-PSD:nameAlias "圧力計タイプ"@ja-JP , "Pressure Gauge Type"@en , "압력계 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DIAL" , "DIGITAL" , "MANOMETER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pcaece980d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical size of the display. For a dial pressure gauge it will be the diameter of the dial." ; + rdfs:label "DisplaySize" ; + IFC4-PSD:definition "The physical size of the display. For a dial pressure gauge it will be the diameter of the dial." ; + IFC4-PSD:definitionAlias "표시의 크기입니다. 다이얼 게이지에 관해서는 전화 직경된다."@ko-KR , "表示のサイズ。 ダイヤル圧力計に関しては、ダイヤルの直径になる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "caece980d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "DisplaySize" ; + IFC4-PSD:nameAlias "表示サイズ"@ja-JP , "디스플레이 크기"@ko-KR , "Display Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PressureGaugeType a rdf:Property ; + rdfs:seeAlso :pbc9ecd80d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureGaugeType . diff --git a/converter/src/main/resources/pset/Pset_FlowInstrumentTypeThermometer.ttl b/converter/src/main/resources/pset/Pset_FlowInstrumentTypeThermometer.ttl new file mode 100644 index 00000000..24075a4a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowInstrumentTypeThermometer.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe5bf5e00d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The physical size of the display. In the case of a stem thermometer, this will be the length of the stem. For a dial thermometer, it will be the diameter of the dial." ; + rdfs:label "DisplaySize" ; + IFC4-PSD:definition "The physical size of the display. In the case of a stem thermometer, this will be the length of the stem. For a dial thermometer, it will be the diameter of the dial." ; + IFC4-PSD:definitionAlias ""@en , "表示のサイズ。 棒温度計の場合では、軸の長さになる。 ダイヤル温度計に関しては、ダイヤルの直径になる。"@ja-JP , "표시의 크기입니다. 막대 온도계의 경우, 축의 길이가된다. 다이얼 온도계에 대해서는 다이얼 직경된다."@ko-KR ; + IFC4-PSD:ifdguid "e5bf5e00d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "DisplaySize" ; + IFC4-PSD:nameAlias "表示サイズ"@ja-JP , "디스플레이 크기"@ko-KR , "Display Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DisplaySize a rdf:Property ; + rdfs:seeAlso :pe5bf5e00d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DisplaySize . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_FlowInstrumentTypeThermometer + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that reads and displays a temperature value at a point." ; + rdfs:label "Pset_FlowInstrumentTypeThermometer" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowInstrument/THERMOMETER" ; + IFC4-PSD:definition "A device that reads and displays a temperature value at a point." ; + IFC4-PSD:definitionAlias "温度を測定し表示するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowInstrumentTypeThermometer" ; + IFC4-PSD:propertyDef :pe5bf5e00d1e711e1800000215ad4efdf , :pd7714200d1e711e1800000215ad4efdf . + +:pd7714200d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the means by which temperature is displayed." ; + rdfs:label "ThermometerType" ; + IFC4-PSD:definition "Identifies the means by which temperature is displayed." ; + IFC4-PSD:definitionAlias ""@en , "온도가 표시되는 방법을 확인한다."@ko-KR , "温度が表示される手段を識別する。"@ja-JP ; + IFC4-PSD:ifdguid "d7714200d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "ThermometerType" ; + IFC4-PSD:nameAlias "온도계 유형"@ko-KR , "Thermometer Type"@en , "温度計タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DIAL" , "DIGITAL" , "STEM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ThermometerType a rdf:Property ; + rdfs:seeAlso :pd7714200d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermometerType . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterOccurrence.ttl b/converter/src/main/resources/pset/Pset_FlowMeterOccurrence.ttl new file mode 100644 index 00000000..7da2dbbd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterOccurrence.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_FlowMeterOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Flow meter occurrence common attributes." ; + rdfs:label "Pset_FlowMeterOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcFlowMeter ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter" ; + IFC4-PSD:definition "Flow meter occurrence common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterOccurrence" ; + IFC4-PSD:propertyDef :pf374e380d1e711e1800000215ad4efdf . + +:Purpose a rdf:Property ; + rdfs:seeAlso :pf374e380d1e711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Purpose . + +:pf374e380d1e711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the purpose of the flow meter occurrence." ; + rdfs:label "Purpose" ; + IFC4-PSD:definition "Enumeration defining the purpose of the flow meter occurrence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f374e380d1e711e1800000215ad4efdf" ; + IFC4-PSD:name "Purpose" ; + IFC4-PSD:nameAlias "Purpose"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MASTER" , "SUBMASTER" , "SUBMETER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FlowMeterTypeCommon.ttl new file mode 100644 index 00000000..1228c7c3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterTypeCommon.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2a4af980d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the meter has a connection for remote reading through connection of a communication device (set TRUE) or not (set FALSE)." ; + rdfs:label "RemoteReading" ; + IFC4-PSD:definition "Indicates whether the meter has a connection for remote reading through connection of a communication device (set TRUE) or not (set FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2a4af980d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "RemoteReading" ; + IFC4-PSD:nameAlias "Remote Reading"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0d162b00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0d162b00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p07204a00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_FlowMeterTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of a flow meter type" ; + rdfs:label "Pset_FlowMeterTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFlowMeter ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter" ; + IFC4-PSD:definition "Common attributes of a flow meter type" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterTypeCommon" ; + IFC4-PSD:propertyDef :p07204a00d1e811e1800000215ad4efdf , :p0d162b00d1e811e1800000215ad4efdf , :p1bfcdd80d1e811e1800000215ad4efdf , :p2a4af980d1e811e1800000215ad4efdf . + +:p1bfcdd80d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of the form that readout from the meter takes. In the case of a dial read out, this may comprise multiple dials that give a cumulative reading and/or a mechanical odometer." ; + rdfs:label "ReadOutType" ; + IFC4-PSD:definition "Indication of the form that readout from the meter takes. In the case of a dial read out, this may comprise multiple dials that give a cumulative reading and/or a mechanical odometer." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1bfcdd80d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "ReadOutType" ; + IFC4-PSD:nameAlias "Read Out Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DIAL" , "DIGITAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p0d162b00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p07204a00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "07204a00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:ReadOutType a rdf:Property ; + rdfs:seeAlso :p1bfcdd80d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReadOutType . + +:RemoteReading a rdf:Property ; + rdfs:seeAlso :p2a4af980d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RemoteReading . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterTypeEnergyMeter.ttl b/converter/src/main/resources/pset/Pset_FlowMeterTypeEnergyMeter.ttl new file mode 100644 index 00000000..0c0bb88e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterTypeEnergyMeter.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_FlowMeterTypeEnergyMeter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device that measures, indicates and sometimes records, the energy usage in a system." ; + rdfs:label "Pset_FlowMeterTypeEnergyMeter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter/ENERGYMETER" ; + IFC4-PSD:definition "Device that measures, indicates and sometimes records, the energy usage in a system." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterTypeEnergyMeter" ; + IFC4-PSD:propertyDef :p4058ba00d1e811e1800000215ad4efdf , :p3636bb80d1e811e1800000215ad4efdf , :p3afb6f80d1e811e1800000215ad4efdf . + +:MultipleTarriff a rdf:Property ; + rdfs:seeAlso :p4058ba00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MultipleTarriff . + +:p3636bb80d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal current that is designed to be measured." ; + rdfs:label "NominalCurrent" ; + IFC4-PSD:definition "The nominal current that is designed to be measured." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3636bb80d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrent" ; + IFC4-PSD:nameAlias "Nominal Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:MaximumCurrent a rdf:Property ; + rdfs:seeAlso :p3afb6f80d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumCurrent . + +:p3afb6f80d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum allowed current that a device is certified to handle." ; + rdfs:label "MaximumCurrent" ; + IFC4-PSD:definition "The maximum allowed current that a device is certified to handle." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3afb6f80d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumCurrent" ; + IFC4-PSD:nameAlias "Maximum Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p4058ba00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether meter has built-in support for multiple tarriffs (variable energy cost rates)." ; + rdfs:label "MultipleTarriff" ; + IFC4-PSD:definition "Indicates whether meter has built-in support for multiple tarriffs (variable energy cost rates)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4058ba00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MultipleTarriff" ; + IFC4-PSD:nameAlias "Multiple Tarriff"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalCurrent a rdf:Property ; + rdfs:seeAlso :p3636bb80d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrent . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterTypeGasMeter.ttl b/converter/src/main/resources/pset/Pset_FlowMeterTypeGasMeter.ttl new file mode 100644 index 00000000..e9818fff --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterTypeGasMeter.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:MaximumPressureLoss a rdf:Property ; + rdfs:seeAlso :p68e0b400d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPressureLoss . + +:p641c0000d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum rate of flow which the meter is expected to pass." ; + rdfs:label "MaximumFlowRate" ; + IFC4-PSD:definition "Maximum rate of flow which the meter is expected to pass." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "641c0000d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumFlowRate" ; + IFC4-PSD:nameAlias "Maximum Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Pset_FlowMeterTypeGasMeter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device that measures, indicates and sometimes records, the volume of gas that passes through it without interrupting the flow." ; + rdfs:label "Pset_FlowMeterTypeGasMeter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter/GASMETER" ; + IFC4-PSD:definition "Device that measures, indicates and sometimes records, the volume of gas that passes through it without interrupting the flow." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterTypeGasMeter" ; + IFC4-PSD:propertyDef :p68e0b400d1e811e1800000215ad4efdf , :p641c0000d1e811e1800000215ad4efdf , :p4cdd1280d1e811e1800000215ad4efdf , :p5c5c5b80d1e811e1800000215ad4efdf . + +:GasType a rdf:Property ; + rdfs:seeAlso :p4cdd1280d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GasType . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :p5c5c5b80d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:p5c5c5b80d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the size of inlet and outlet pipe connections to the meter." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "Defines the size of inlet and outlet pipe connections to the meter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5c5c5b80d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:MaximumFlowRate a rdf:Property ; + rdfs:seeAlso :p641c0000d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumFlowRate . + +:p68e0b400d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure loss expected across the meter under conditions of maximum flow." ; + rdfs:label "MaximumPressureLoss" ; + IFC4-PSD:definition "Pressure loss expected across the meter under conditions of maximum flow." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "68e0b400d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPressureLoss" ; + IFC4-PSD:nameAlias "Maximum Pressure Loss"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p4cdd1280d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of gas that may be specified." ; + rdfs:label "GasType" ; + IFC4-PSD:definition "Defines the types of gas that may be specified." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4cdd1280d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "GasType" ; + IFC4-PSD:nameAlias "Gas Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COMMERCIALBUTANE" , "COMMERCIALPROPANE" , "LIQUEFIEDPETROLEUMGAS" , "NATURALGAS" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterTypeOilMeter.ttl b/converter/src/main/resources/pset/Pset_FlowMeterTypeOilMeter.ttl new file mode 100644 index 00000000..1f0eba9e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterTypeOilMeter.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :p75650c80d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:MaximumFlowRate a rdf:Property ; + rdfs:seeAlso :p7bf38400d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumFlowRate . + +:Pset_FlowMeterTypeOilMeter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device that measures, indicates and sometimes records, the volume of oil that passes through it without interrupting the flow." ; + rdfs:label "Pset_FlowMeterTypeOilMeter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter/OILMETER" ; + IFC4-PSD:definition "Device that measures, indicates and sometimes records, the volume of oil that passes through it without interrupting the flow." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterTypeOilMeter" ; + IFC4-PSD:propertyDef :p7bf38400d1e811e1800000215ad4efdf , :p75650c80d1e811e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p75650c80d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the size of inlet and outlet pipe connections to the meter." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "Defines the size of inlet and outlet pipe connections to the meter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "75650c80d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p7bf38400d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum rate of flow which the meter is expected to pass." ; + rdfs:label "MaximumFlowRate" ; + IFC4-PSD:definition "Maximum rate of flow which the meter is expected to pass." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7bf38400d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumFlowRate" ; + IFC4-PSD:nameAlias "Maximum Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_FlowMeterTypeWaterMeter.ttl b/converter/src/main/resources/pset/Pset_FlowMeterTypeWaterMeter.ttl new file mode 100644 index 00000000..ab52fc66 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FlowMeterTypeWaterMeter.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:MaximumPressureLoss a rdf:Property ; + rdfs:seeAlso :p9fb6ca00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPressureLoss . + +:pa47b7e00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the type of backflow preventer installed to prevent the backflow of contaminated or polluted water from an irrigation/reticulation system to a potable water supply." ; + rdfs:label "BackflowPreventerType" ; + IFC4-PSD:definition "Identifies the type of backflow preventer installed to prevent the backflow of contaminated or polluted water from an irrigation/reticulation system to a potable water supply." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a47b7e00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "BackflowPreventerType" ; + IFC4-PSD:nameAlias "Backflow Preventer Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "NOTKNOWN" , "ATMOSPHERICVACUUMBREAKER" , "PRESSUREVACUUMBREAKER" , "ANTISIPHONVALVE" , "DOUBLECHECKBACKFLOWPREVENTER" , "OTHER" , "REDUCEDPRESSUREBACKFLOWPREVENTER" , "UNSET" + ] . + +:BackflowPreventerType + a rdf:Property ; + rdfs:seeAlso :pa47b7e00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BackflowPreventerType . + +:MaximumFlowRate a rdf:Property ; + rdfs:seeAlso :p99c0e900d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumFlowRate . + +:Type a rdf:Property ; + rdfs:seeAlso :p87df4600d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Type . + +:p93327180d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the size of inlet and outlet pipe connections to the meter." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "Defines the size of inlet and outlet pipe connections to the meter." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "93327180d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_FlowMeterTypeWaterMeter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Device that measures, indicates and sometimes records, the volume of water that passes through it without interrupting the flow." ; + rdfs:label "Pset_FlowMeterTypeWaterMeter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFlowMeter/WATERMETER" ; + IFC4-PSD:definition "Device that measures, indicates and sometimes records, the volume of water that passes through it without interrupting the flow." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FlowMeterTypeWaterMeter" ; + IFC4-PSD:propertyDef :p87df4600d1e811e1800000215ad4efdf , :pa47b7e00d1e811e1800000215ad4efdf , :p99c0e900d1e811e1800000215ad4efdf , :p93327180d1e811e1800000215ad4efdf , :p9fb6ca00d1e811e1800000215ad4efdf . + +:p87df4600d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the allowed values for selection of the flow meter operation type." ; + rdfs:label "Type" ; + IFC4-PSD:definition "Defines the allowed values for selection of the flow meter operation type." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "87df4600d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "Type" ; + IFC4-PSD:nameAlias "Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COMPOUND" , "INFERENTIAL" , "PISTON" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p9fb6ca00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure loss expected across the meter under conditions of maximum flow." ; + rdfs:label "MaximumPressureLoss" ; + IFC4-PSD:definition "Pressure loss expected across the meter under conditions of maximum flow." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9fb6ca00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPressureLoss" ; + IFC4-PSD:nameAlias "Maximum Pressure Loss"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :p93327180d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:p99c0e900d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum rate of flow which the meter is expected to pass." ; + rdfs:label "MaximumFlowRate" ; + IFC4-PSD:definition "Maximum rate of flow which the meter is expected to pass." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "99c0e900d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumFlowRate" ; + IFC4-PSD:nameAlias "Maximum Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FootingCommon.ttl b/converter/src/main/resources/pset/Pset_FootingCommon.ttl new file mode 100644 index 00000000..7fb298b0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FootingCommon.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :pbd842f00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p43b9731226b04190b668d0c68f6ce88c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)" ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)" ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de , "荷重に関係している部材かどうかを示すブーリアン値。"@ja , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr , "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)."@en ; + IFC4-PSD:ifdguid "43b9731226b04190b668d0c68f6ce88c" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "耐力部材"@ja , "Tragendes Bauteil"@de , "Load Bearing"@en , "Porteur"@fr ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:padd19c59b07f4f5db87f60e3bbe18ce0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "add19c59b07f4f5db87f60e3bbe18ce0" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :padd19c59b07f4f5db87f60e3bbe18ce0 ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p43b9731226b04190b668d0c68f6ce88c ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:Pset_FootingCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcFooting." ; + rdfs:label "Pset_FootingCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFooting ; + IFC4-PSD:applicableTypeValue "IfcFooting" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcFooting." ; + IFC4-PSD:definitionAlias ""@en , "生成されたすべてのIfcFooting の定義に共通するプロパティ。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FootingCommon" ; + IFC4-PSD:propertyDef :p43b9731226b04190b668d0c68f6ce88c , :padd19c59b07f4f5db87f60e3bbe18ce0 , :pbd842f00d1e811e1800000215ad4efdf . + +:pbd842f00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "当プロジェクトにおけるこの指定型式のためのリファレンスID。(たとえは、'A-1'型)"@ja-JP ; + IFC4-PSD:ifdguid "bd842f00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FurnitureTypeChair.ttl b/converter/src/main/resources/pset/Pset_FurnitureTypeChair.ttl new file mode 100644 index 00000000..ef97e1e1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FurnitureTypeChair.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:LowestSeatingHeight a rdf:Property ; + rdfs:seeAlso :pe0164800d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowestSeatingHeight . + +:pcaa11e00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of seating height if the chair height is not adjustable." ; + rdfs:label "SeatingHeight" ; + IFC4-PSD:definition "The value of seating height if the chair height is not adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "caa11e00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "SeatingHeight" ; + IFC4-PSD:nameAlias "Seating Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pe0164800d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of seating height of low level if the chair height is adjustable." ; + rdfs:label "LowestSeatingHeight" ; + IFC4-PSD:definition "The value of seating height of low level if the chair height is adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e0164800d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "LowestSeatingHeight" ; + IFC4-PSD:nameAlias "Lowest Seating Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:HighestSeatingHeight + a rdf:Property ; + rdfs:seeAlso :pd096ff00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HighestSeatingHeight . + +:Pset_FurnitureTypeChair + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of specific properties for furniture type chair. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Chair" ; + rdfs:label "Pset_FurnitureTypeChair" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFurniture/CHAIR" ; + IFC4-PSD:definition "A set of specific properties for furniture type chair. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Chair" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FurnitureTypeChair" ; + IFC4-PSD:propertyDef :pe0164800d1e811e1800000215ad4efdf , :pd096ff00d1e811e1800000215ad4efdf , :pcaa11e00d1e811e1800000215ad4efdf . + +:SeatingHeight a rdf:Property ; + rdfs:seeAlso :pcaa11e00d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SeatingHeight . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd096ff00d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of seating height of high level if the chair height is adjustable." ; + rdfs:label "HighestSeatingHeight" ; + IFC4-PSD:definition "The value of seating height of high level if the chair height is adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d096ff00d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "HighestSeatingHeight" ; + IFC4-PSD:nameAlias "Highest Seating Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_FurnitureTypeCommon.ttl b/converter/src/main/resources/pset/Pset_FurnitureTypeCommon.ttl new file mode 100644 index 00000000..cdb67b90 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FurnitureTypeCommon.ttl @@ -0,0 +1,151 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p7334640eaf3943b9acb2ae43ea34a47d + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "7334640eaf3943b9acb2ae43ea34a47d" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NominalLength a rdf:Property ; + rdfs:seeAlso :p076d1500d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalLength . + +:p1fdd2f80d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the furniture type is intended to be 'built in' i.e. physically attached to a building or facility (= TRUE) or not i.e. Loose and movable (= FALSE)." ; + rdfs:label "IsBuiltIn" ; + IFC4-PSD:definition "Indicates whether the furniture type is intended to be 'built in' i.e. physically attached to a building or facility (= TRUE) or not i.e. Loose and movable (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1fdd2f80d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "IsBuiltIn" ; + IFC4-PSD:nameAlias "Is Built In"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p076d1500d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal length of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "NominalLength" ; + IFC4-PSD:definition "The nominal length of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "076d1500d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalLength" ; + IFC4-PSD:nameAlias "Nominal Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p00460700d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "00460700d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "Nominal Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:MainColor a rdf:Property ; + rdfs:seeAlso :p19e74e80d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MainColor . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_FurnitureTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for all types of furniture such as chair, desk, table, and file cabinet. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FurnitureCommon. IFC 2x4: 'IsBuiltIn' property added" ; + rdfs:label "Pset_FurnitureTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcFurniture ; + IFC4-PSD:applicableTypeValue "IfcFurniture" ; + IFC4-PSD:definition "Common properties for all types of furniture such as chair, desk, table, and file cabinet. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FurnitureCommon. IFC 2x4: 'IsBuiltIn' property added" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FurnitureTypeCommon" ; + IFC4-PSD:propertyDef :p7334640eaf3943b9acb2ae43ea34a47d , :p00460700d1e911e1800000215ad4efdf , :p118f1380d1e911e1800000215ad4efdf , :p076d1500d1e911e1800000215ad4efdf , :pc67404c9010c4f04a3d3f31eb6a4d813 , :p19e74e80d1e911e1800000215ad4efdf , :pf7553580d1e811e1800000215ad4efdf , :p1fdd2f80d1e911e1800000215ad4efdf . + +:NominalDepth a rdf:Property ; + rdfs:seeAlso :p118f1380d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDepth . + +:p118f1380d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal depth of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "NominalDepth" ; + IFC4-PSD:definition "The nominal depth of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "118f1380d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDepth" ; + IFC4-PSD:nameAlias "Nominal Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pc67404c9010c4f04a3d3f31eb6a4d813 ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p19e74e80d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The main color of the furniture of this type." ; + rdfs:label "MainColor" ; + IFC4-PSD:definition "The main color of the furniture of this type." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "19e74e80d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "MainColor" ; + IFC4-PSD:nameAlias "Main Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Style a rdf:Property ; + rdfs:seeAlso :pf7553580d1e811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Style . + +:Status a rdf:Property ; + rdfs:seeAlso :p7334640eaf3943b9acb2ae43ea34a47d ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:IsBuiltIn a rdf:Property ; + rdfs:seeAlso :p1fdd2f80d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsBuiltIn . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p00460700d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:pc67404c9010c4f04a3d3f31eb6a4d813 + a IFC4-PSD:PropertyDef ; + rdfs:label "Reference" ; + IFC4-PSD:ifdguid "c67404c9010c4f04a3d3f31eb6a4d813" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:pf7553580d1e811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the furniture style." ; + rdfs:label "Style" ; + IFC4-PSD:definition "Description of the furniture style." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f7553580d1e811e1800000215ad4efdf" ; + IFC4-PSD:name "Style" ; + IFC4-PSD:nameAlias "Style"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_FurnitureTypeDesk.ttl b/converter/src/main/resources/pset/Pset_FurnitureTypeDesk.ttl new file mode 100644 index 00000000..ccbf3d21 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FurnitureTypeDesk.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2cfa1e80d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of the work surface area of the desk." ; + rdfs:label "WorksurfaceArea" ; + IFC4-PSD:definition "The value of the work surface area of the desk." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2cfa1e80d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "WorksurfaceArea" ; + IFC4-PSD:nameAlias "Worksurface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:WorksurfaceArea a rdf:Property ; + rdfs:seeAlso :p2cfa1e80d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorksurfaceArea . + +:Pset_FurnitureTypeDesk + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of specific properties for furniture type desk. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Desk" ; + rdfs:label "Pset_FurnitureTypeDesk" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFurniture/DESK" ; + IFC4-PSD:definition "A set of specific properties for furniture type desk. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Desk" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FurnitureTypeDesk" ; + IFC4-PSD:propertyDef :p2cfa1e80d1e911e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_FurnitureTypeFileCabinet.ttl b/converter/src/main/resources/pset/Pset_FurnitureTypeFileCabinet.ttl new file mode 100644 index 00000000..a3ca2836 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FurnitureTypeFileCabinet.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p38e5e080d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the file cabinet is lockable (= TRUE) or not (= FALSE)." ; + rdfs:label "WithLock" ; + IFC4-PSD:definition "Indicates whether the file cabinet is lockable (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "38e5e080d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "WithLock" ; + IFC4-PSD:nameAlias "With Lock"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_FurnitureTypeFileCabinet + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of specific properties for furniture type file cabinet HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FileCabinet" ; + rdfs:label "Pset_FurnitureTypeFileCabinet" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFurniture/FILECABINET" ; + IFC4-PSD:definition "A set of specific properties for furniture type file cabinet HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FileCabinet" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FurnitureTypeFileCabinet" ; + IFC4-PSD:propertyDef :p38e5e080d1e911e1800000215ad4efdf . + +:WithLock a rdf:Property ; + rdfs:seeAlso :p38e5e080d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WithLock . diff --git a/converter/src/main/resources/pset/Pset_FurnitureTypeTable.ttl b/converter/src/main/resources/pset/Pset_FurnitureTypeTable.ttl new file mode 100644 index 00000000..65d77fca --- /dev/null +++ b/converter/src/main/resources/pset/Pset_FurnitureTypeTable.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p4bf8b080d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum number of chairs that can fit with the table for normal use." ; + rdfs:label "NumberOfChairs" ; + IFC4-PSD:definition "Maximum number of chairs that can fit with the table for normal use." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4bf8b080d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfChairs" ; + IFC4-PSD:nameAlias "Number Of Chairs"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NumberOfChairs a rdf:Property ; + rdfs:seeAlso :p4bf8b080d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfChairs . + +:WorksurfaceArea a rdf:Property ; + rdfs:seeAlso :p469b6600d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorksurfaceArea . + +:p469b6600d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of the work surface area of the desk.." ; + rdfs:label "WorksurfaceArea" ; + IFC4-PSD:definition "The value of the work surface area of the desk.." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "469b6600d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "WorksurfaceArea" ; + IFC4-PSD:nameAlias "Worksurface Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:Pset_FurnitureTypeTable + a IFC4-PSD:PropertySetDef ; + rdfs:comment "HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Table" ; + rdfs:label "Pset_FurnitureTypeTable" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcFurniture/TABLE" ; + IFC4-PSD:definition "HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Table" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_FurnitureTypeTable" ; + IFC4-PSD:propertyDef :p469b6600d1e911e1800000215ad4efdf , :p4bf8b080d1e911e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_HeatExchangerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_HeatExchangerTypeCommon.ttl new file mode 100644 index 00000000..50f02eeb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_HeatExchangerTypeCommon.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p70ed2380d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the basic flow arrangements for the heat exchanger:\n\nCOUNTERFLOW: Counterflow heat exchanger arrangement. \nCROSSFLOW: Crossflow heat exchanger arrangement. \nPARALLELFLOW: Parallel flow heat exchanger arrangement. \nMULTIPASS: Multipass flow heat exchanger arrangement. \nOTHER: Other type of heat exchanger flow arrangement not defined above." ; + rdfs:label "Arrangement" ; + IFC4-PSD:definition "Defines the basic flow arrangements for the heat exchanger:\n\nCOUNTERFLOW: Counterflow heat exchanger arrangement. \nCROSSFLOW: Crossflow heat exchanger arrangement. \nPARALLELFLOW: Parallel flow heat exchanger arrangement. \nMULTIPASS: Multipass flow heat exchanger arrangement. \nOTHER: Other type of heat exchanger flow arrangement not defined above." ; + IFC4-PSD:definitionAlias ""@en , "熱交換器の流れの基本的配置(カウンターフロー、クロスフロー。パラレルフロー、マルチパス、その他)"@ja-JP ; + IFC4-PSD:ifdguid "70ed2380d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Arrangement" ; + IFC4-PSD:nameAlias "配置"@ja-JP , "Arrangement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COUNTERFLOW" , "CROSSFLOW" , "PARALLELFLOW" , "MULTIPASS" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p59ae3600d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p59ae3600d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "59ae3600d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Arrangement a rdf:Property ; + rdfs:seeAlso :p70ed2380d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Arrangement . + +:Status a rdf:Property ; + rdfs:seeAlso :p5f0b8080d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p5f0b8080d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "5f0b8080d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_HeatExchangerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Heat exchanger type common attributes." ; + rdfs:label "Pset_HeatExchangerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcHeatExchanger ; + IFC4-PSD:applicableTypeValue "IfcHeatExchanger" ; + IFC4-PSD:definition "Heat exchanger type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_HeatExchangerTypeCommon" ; + IFC4-PSD:propertyDef :p59ae3600d1e911e1800000215ad4efdf , :p5f0b8080d1e911e1800000215ad4efdf , :p70ed2380d1e911e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_HeatExchangerTypePlate.ttl b/converter/src/main/resources/pset/Pset_HeatExchangerTypePlate.ttl new file mode 100644 index 00000000..890259ea --- /dev/null +++ b/converter/src/main/resources/pset/Pset_HeatExchangerTypePlate.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_HeatExchangerTypePlate + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Plate heat exchanger type common attributes." ; + rdfs:label "Pset_HeatExchangerTypePlate" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcHeatExchanger/PLATE" ; + IFC4-PSD:definition "Plate heat exchanger type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_HeatExchangerTypePlate" ; + IFC4-PSD:propertyDef :p8a8e6b00d1e911e1800000215ad4efdf . + +:NumberOfPlates a rdf:Property ; + rdfs:seeAlso :p8a8e6b00d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfPlates . + +:p8a8e6b00d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of plates used by the plate heat exchanger." ; + rdfs:label "NumberOfPlates" ; + IFC4-PSD:definition "Number of plates used by the plate heat exchanger." ; + IFC4-PSD:definitionAlias "プレート式熱交換器に使われているプレート数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8a8e6b00d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfPlates" ; + IFC4-PSD:nameAlias "プレート数"@ja-JP , "Number Of Plates"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . diff --git a/converter/src/main/resources/pset/Pset_HumidifierPHistory.ttl b/converter/src/main/resources/pset/Pset_HumidifierPHistory.ttl new file mode 100644 index 00000000..ca8d224e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_HumidifierPHistory.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AtmosphericPressure a rdf:Property ; + rdfs:seeAlso :p9843f080d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtmosphericPressure . + +:Pset_HumidifierPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Humidifier performance history attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + rdfs:label "Pset_HumidifierPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcHumidifier ; + IFC4-PSD:applicableTypeValue "IfcHumidifier" ; + IFC4-PSD:definition "Humidifier performance history attributes.\nSound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_HumidifierPHistory" ; + IFC4-PSD:propertyDef :p9843f080d1e911e1800000215ad4efdf , :pa7c33980d1e911e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa7c33980d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Saturation efficiency: Ratio of leaving air absolute humidity to the maximum absolute humidity." ; + rdfs:label "SaturationEfficiency" ; + IFC4-PSD:definition "Saturation efficiency: Ratio of leaving air absolute humidity to the maximum absolute humidity." ; + IFC4-PSD:definitionAlias "飽和比率:最大絶対湿度に対する現在の絶対湿度の割合"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a7c33980d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "SaturationEfficiency" ; + IFC4-PSD:nameAlias "飽和比率"@ja-JP , "Saturation Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p9843f080d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ambient atmospheric pressure." ; + rdfs:label "AtmosphericPressure" ; + IFC4-PSD:definition "Ambient atmospheric pressure." ; + IFC4-PSD:definitionAlias ""@en , "標準大気圧(外気圧)"@ja-JP ; + IFC4-PSD:ifdguid "9843f080d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "AtmosphericPressure" ; + IFC4-PSD:nameAlias "Atmospheric Pressure"@en , "標準大気圧(外気圧)"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SaturationEfficiency + a rdf:Property ; + rdfs:seeAlso :pa7c33980d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SaturationEfficiency . diff --git a/converter/src/main/resources/pset/Pset_HumidifierTypeCommon.ttl b/converter/src/main/resources/pset/Pset_HumidifierTypeCommon.ttl new file mode 100644 index 00000000..30ba149c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_HumidifierTypeCommon.ttl @@ -0,0 +1,199 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p02f52c00d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Saturation efficiency as a function of the air flow rate." ; + rdfs:label "SaturationEfficiencyCurve" ; + IFC4-PSD:definition "Saturation efficiency as a function of the air flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "02f52c00d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "SaturationEfficiencyCurve" ; + IFC4-PSD:nameAlias "Saturation Efficiency Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + +:WaterRequirement a rdf:Property ; + rdfs:seeAlso :pfcff4b00d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterRequirement . + +:pd6d9ab00d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The weight of the humidifier." ; + rdfs:label "Weight" ; + IFC4-PSD:definition "The weight of the humidifier." ; + IFC4-PSD:definitionAlias "加湿器の重量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d6d9ab00d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Weight" ; + IFC4-PSD:nameAlias "重量"@ja-JP , "Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:InternalControl a rdf:Property ; + rdfs:seeAlso :pe953e480d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalControl . + +:pe1944000d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal rate of air flow into which water vapor is added." ; + rdfs:label "NominalAirFlowRate" ; + IFC4-PSD:definition "Nominal rate of air flow into which water vapor is added." ; + IFC4-PSD:definitionAlias ""@en , "加湿される気流の平均量"@ja-JP ; + IFC4-PSD:ifdguid "e1944000d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalAirFlowRate" ; + IFC4-PSD:nameAlias "Nominal Air Flow Rate"@en , "気流量の平均"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:NominalMoistureGain a rdf:Property ; + rdfs:seeAlso :pdc36f580d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalMoistureGain . + +:pb3166500d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b3166500d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p11dbde80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air pressure drop versus air-flow rate." ; + rdfs:label "AirPressureDropCurve" ; + IFC4-PSD:definition "Air pressure drop versus air-flow rate." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "11dbde80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressureDropCurve" ; + IFC4-PSD:nameAlias "Air Pressure Drop Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcPressureMeasure ; + IFC4-PSD:definingValue IFC4:IfcVolumetricFlowRateMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb90c4600d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "b90c4600d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pe953e480d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Internal modulation control." ; + rdfs:label "InternalControl" ; + IFC4-PSD:definition "Internal modulation control." ; + IFC4-PSD:definitionAlias ""@en , "内部調整の制御"@ja-JP ; + IFC4-PSD:ifdguid "e953e480d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "InternalControl" ; + IFC4-PSD:nameAlias "内部制御"@ja-JP , "Internal Control"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ONOFF" , "STEPPED" , "MODULATING" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SaturationEfficiencyCurve + a rdf:Property ; + rdfs:seeAlso :p02f52c00d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SaturationEfficiencyCurve . + +:Weight a rdf:Property ; + rdfs:seeAlso :pd6d9ab00d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Weight . + +:NominalAirFlowRate a rdf:Property ; + rdfs:seeAlso :pe1944000d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalAirFlowRate . + +:pfcff4b00d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Make-up water requirement." ; + rdfs:label "WaterRequirement" ; + IFC4-PSD:definition "Make-up water requirement." ; + IFC4-PSD:definitionAlias "補給水の必要量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fcff4b00d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "WaterRequirement" ; + IFC4-PSD:nameAlias "Water Requirement"@en , "水必要量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Application a rdf:Property ; + rdfs:seeAlso :pcaede900d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Application . + +:pcaede900d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Humidifier application.\n\nFixed: Humidifier installed in a ducted flow distribution system.\nPortable: Humidifier is not installed in a ducted flow distribution system." ; + rdfs:label "Application" ; + IFC4-PSD:definition "Humidifier application.\n\nFixed: Humidifier installed in a ducted flow distribution system.\nPortable: Humidifier is not installed in a ducted flow distribution system." ; + IFC4-PSD:definitionAlias ""@en , "加湿器の応用 (固定式:ダクト搬送系に設置する加湿器、可搬式:クト搬送系に設置しない加湿器)"@ja-JP ; + IFC4-PSD:ifdguid "caede900d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "Application" ; + IFC4-PSD:nameAlias "Application"@en , "応用"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PORTABLE" , "FIXED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pb90c4600d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_HumidifierTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Humidifier type common attributes.\nWaterProperties attribute renamed to WaterRequirement and unit type modified in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_HumidifierTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcHumidifier ; + IFC4-PSD:applicableTypeValue "IfcHumidifier" ; + IFC4-PSD:definition "Humidifier type common attributes.\nWaterProperties attribute renamed to WaterRequirement and unit type modified in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en , "加湿器型情報に関する共通プロパティ属性設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_HumidifierTypeCommon" ; + IFC4-PSD:propertyDef :pe1944000d1e911e1800000215ad4efdf , :pb90c4600d1e911e1800000215ad4efdf , :pe953e480d1e911e1800000215ad4efdf , :pcaede900d1e911e1800000215ad4efdf , :pdc36f580d1e911e1800000215ad4efdf , :p11dbde80d1ea11e1800000215ad4efdf , :pb3166500d1e911e1800000215ad4efdf , :pfcff4b00d1e911e1800000215ad4efdf , :p02f52c00d1ea11e1800000215ad4efdf , :pd6d9ab00d1e911e1800000215ad4efdf . + +:AirPressureDropCurve + a rdf:Property ; + rdfs:seeAlso :p11dbde80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressureDropCurve . + +:Reference a rdf:Property ; + rdfs:seeAlso :pb3166500d1e911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pdc36f580d1e911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal rate of water vapor added into the airstream." ; + rdfs:label "NominalMoistureGain" ; + IFC4-PSD:definition "Nominal rate of water vapor added into the airstream." ; + IFC4-PSD:definitionAlias ""@en , "気流に加わった水蒸気の平均量"@ja-JP ; + IFC4-PSD:ifdguid "dc36f580d1e911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalMoistureGain" ; + IFC4-PSD:nameAlias "加湿量の平均"@ja-JP , "Nominal Moisture Gain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassFlowRateMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_InterceptorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_InterceptorTypeCommon.ttl new file mode 100644 index 00000000..f633a8f0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_InterceptorTypeCommon.ttl @@ -0,0 +1,196 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :p697a4a00d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . + +:p42bc1380d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length, measured along the x-axis of the local coordinate system of the object, of the body of the object." ; + rdfs:label "NominalBodyLength" ; + IFC4-PSD:definition "Nominal or quoted length, measured along the x-axis of the local coordinate system of the object, of the body of the object." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "42bc1380d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyLength" ; + IFC4-PSD:nameAlias "Nominal Body Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p59fb0100d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "59fb0100d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "Inlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p71d28500d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system of the cover of the oil interceptor." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system of the cover of the oil interceptor." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "71d28500d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "Cover Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p320b9d80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "320b9d80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :p59fb0100d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . + +:NominalBodyWidth a rdf:Property ; + rdfs:seeAlso :p4a7bb800d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyWidth . + +:VentilatingPipeSize a rdf:Property ; + rdfs:seeAlso :p78f99300d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilatingPipeSize . + +:NominalBodyDepth a rdf:Property ; + rdfs:seeAlso :p523b5c80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyDepth . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :p71d28500d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:p523b5c80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted =length, measured along the z-axis of the local coordinate system of the object, of the body of the object." ; + rdfs:label "NominalBodyDepth" ; + IFC4-PSD:definition "Nominal or quoted =length, measured along the z-axis of the local coordinate system of the object, of the body of the object." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "523b5c80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyDepth" ; + IFC4-PSD:nameAlias "Nominal Body Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_InterceptorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for interceptors." ; + rdfs:label "Pset_InterceptorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcInterceptor ; + IFC4-PSD:applicableTypeValue "IfcInterceptor" ; + IFC4-PSD:definition "Common properties for interceptors." ; + IFC4-PSD:definitionAlias "阻集器の共通プロパティを設定します。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_InterceptorTypeCommon" ; + IFC4-PSD:propertyDef :p4a7bb800d1ea11e1800000215ad4efdf , :p71d28500d1ea11e1800000215ad4efdf , :p59fb0100d1ea11e1800000215ad4efdf , :p697a4a00d1ea11e1800000215ad4efdf , :p78f99300d1ea11e1800000215ad4efdf , :p62533c00d1ea11e1800000215ad4efdf , :p320b9d80d1ea11e1800000215ad4efdf , :p523b5c80d1ea11e1800000215ad4efdf , :p2ae48f80d1ea11e1800000215ad4efdf , :p42bc1380d1ea11e1800000215ad4efdf . + +:p697a4a00d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the oil interceptor." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the oil interceptor." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "697a4a00d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "Cover Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalBodyLength a rdf:Property ; + rdfs:seeAlso :p42bc1380d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyLength . + +:Status a rdf:Property ; + rdfs:seeAlso :p320b9d80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p78f99300d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the ventilating pipe(s)." ; + rdfs:label "VentilatingPipeSize" ; + IFC4-PSD:definition "Size of the ventilating pipe(s)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "78f99300d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilatingPipeSize" ; + IFC4-PSD:nameAlias "Ventilating Pipe Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p4a7bb800d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length, measured along the y-axis of the local coordinate system of the object, of the body of the object." ; + rdfs:label "NominalBodyWidth" ; + IFC4-PSD:definition "Nominal or quoted length, measured along the y-axis of the local coordinate system of the object, of the body of the object." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4a7bb800d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyWidth" ; + IFC4-PSD:nameAlias "Nominal Body Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p2ae48f80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "使用される認識分類システムで分類基準がない場合、プロジェクトで指定された型(タイプ'A-1'など)で提供されるレファレンスID。"@ja-JP ; + IFC4-PSD:ifdguid "2ae48f80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p62533c00d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2ae48f80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p62533c00d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "62533c00d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_JunctionBoxTypeCommon.ttl b/converter/src/main/resources/pset/Pset_JunctionBoxTypeCommon.ttl new file mode 100644 index 00000000..caeabdc1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_JunctionBoxTypeCommon.ttl @@ -0,0 +1,178 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p87e04580d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "87e04580d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:NumberOfGangs a rdf:Property ; + rdfs:seeAlso :p9dee0600d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfGangs . + +:pe60d2880d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "IEC 60529 (1989) Classification of degrees of protection provided by enclosures (IP Code)." ; + rdfs:label "IP_Code" ; + IFC4-PSD:definition "IEC 60529 (1989) Classification of degrees of protection provided by enclosures (IP Code)." ; + IFC4-PSD:definitionAlias ""@en , "인클로저에 의한 국제 보호 등급 (IP 코드)."@ko-KR , "エンクロージャによる国際保護等級(IPコード)。"@ja-JP ; + IFC4-PSD:ifdguid "e60d2880d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "IP_Code" ; + IFC4-PSD:nameAlias "IP_ Code"@en , "기밀성 인클로저 등급"@ko-KR , "機密性エンクロージャ等級"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p9dee0600d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of slots available for switches/outlets (most commonly 1, 2, 3, or 4)." ; + rdfs:label "NumberOfGangs" ; + IFC4-PSD:definition "Number of slots available for switches/outlets (most commonly 1, 2, 3, or 4)." ; + IFC4-PSD:definitionAlias "スロットスイッチ/コンセント(最も一般的に1、2、3、または4)で使用可能な数。"@ja-JP , ""@en , "슬롯 스위치 / 콘센트 (가장 일반적으로 1,2,3 또는 4)에서 사용할 수있는 수."@ko-KR ; + IFC4-PSD:ifdguid "9dee0600d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfGangs" ; + IFC4-PSD:nameAlias "Number Of Gangs"@en , "분기의 수"@ko-KR , "分岐の数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:ShapeType a rdf:Property ; + rdfs:seeAlso :pae9e7c00d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShapeType . + +:ClearDepth a rdf:Property ; + rdfs:seeAlso :pa34b5080d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearDepth . + +:PlacingType a rdf:Property ; + rdfs:seeAlso :pbeb65b80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlacingType . + +:Pset_JunctionBoxTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A junction box is an enclosure within which cables are connected.\n\nHistory: New in IFC4" ; + rdfs:label "Pset_JunctionBoxTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcJunctionBox ; + IFC4-PSD:applicableTypeValue "IfcJunctionBox" ; + IFC4-PSD:definition "A junction box is an enclosure within which cables are connected.\n\nHistory: New in IFC4" ; + IFC4-PSD:definitionAlias "ジャンクションボックスは中にケーブルが接続されているケース。\n IFC4にて新規。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_JunctionBoxTypeCommon" ; + IFC4-PSD:propertyDef :pae9e7c00d1ea11e1800000215ad4efdf , :p9dee0600d1ea11e1800000215ad4efdf , :pe60d2880d1ea11e1800000215ad4efdf , :pbeb65b80d1ea11e1800000215ad4efdf , :p8dd62680d1ea11e1800000215ad4efdf , :p87e04580d1ea11e1800000215ad4efdf , :pcece3b00d1ea11e1800000215ad4efdf , :pa34b5080d1ea11e1800000215ad4efdf , :pdf7eb100d1ea11e1800000215ad4efdf . + +:pcece3b00d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Method of mounting to be adopted for the type of junction box." ; + rdfs:label "MountingType" ; + IFC4-PSD:definition "Method of mounting to be adopted for the type of junction box." ; + IFC4-PSD:definitionAlias ""@en , "지얀 섹션 보트 상자 설치 방법."@ko-KR , "ジヤンクションボツクスの取り付け方法。"@ja-JP ; + IFC4-PSD:ifdguid "cece3b00d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "MountingType" ; + IFC4-PSD:nameAlias "설치"@ko-KR , "取り付け"@ja-JP , "Mounting Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FACENAIL" , "SIDENAIL" , "CUT_IN" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p87e04580d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pdf7eb100d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the junction box type is allowed for exposure to outdoor elements (set TRUE where external exposure is allowed)." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication of whether the junction box type is allowed for exposure to outdoor elements (set TRUE where external exposure is allowed)." ; + IFC4-PSD:definitionAlias "ジャンクションボックスが外部露出の許可がされているかどうかを表示(外部露出が許可されている場合は設定)。"@ja-JP , "정션 박스 외부 노출의 허가가되어 있는지 여부를 표시 (외부 노출이 허용되는 경우 설정)."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "df7eb100d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "外部露出"@ja-JP , "외부노출"@ko-KR , "Is External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p8dd62680d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8dd62680d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pdf7eb100d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa34b5080d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear unobstructed depth available for cable inclusion within the junction box." ; + rdfs:label "ClearDepth" ; + IFC4-PSD:definition "Clear unobstructed depth available for cable inclusion within the junction box." ; + IFC4-PSD:definitionAlias "지얀 섹션 상자에 케이블을 거둘 깊이."@ko-KR , ""@en , "ジヤンクションボックスにケーブルを収められる深さ。"@ja-JP ; + IFC4-PSD:ifdguid "a34b5080d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "ClearDepth" ; + IFC4-PSD:nameAlias "Clear Depth"@en , "명확한 깊이"@ko-KR , "明確な深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:MountingType a rdf:Property ; + rdfs:seeAlso :pcece3b00d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MountingType . + +:pbeb65b80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location at which the type of junction box can be located." ; + rdfs:label "PlacingType" ; + IFC4-PSD:definition "Location at which the type of junction box can be located." ; + IFC4-PSD:definitionAlias ""@en , "지얀 섹션 보트 상자 설치 방법."@ko-KR , "ジヤンクションボックスの配置場所。"@ja-JP ; + IFC4-PSD:ifdguid "beb65b80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "PlacingType" ; + IFC4-PSD:nameAlias "위치"@ko-KR , "Placing Type"@en , "位置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CEILING" , "FLOOR" , "WALL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IP_Code a rdf:Property ; + rdfs:seeAlso :pe60d2880d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IP_Code . + +:Status a rdf:Property ; + rdfs:seeAlso :p8dd62680d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pae9e7c00d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Shape of the junction box." ; + rdfs:label "ShapeType" ; + IFC4-PSD:definition "Shape of the junction box." ; + IFC4-PSD:definitionAlias "ジヤンクションボックスの形状。"@ja-JP , "지얀 섹션 상자 모양."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "ae9e7c00d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "ShapeType" ; + IFC4-PSD:nameAlias "形状"@ja-JP , "형상"@ko-KR , "Shape Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RECTANGULAR" , "ROUND" , "SLOT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_LampTypeCommon.ttl b/converter/src/main/resources/pset/Pset_LampTypeCommon.ttl new file mode 100644 index 00000000..1b6a1761 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_LampTypeCommon.ttl @@ -0,0 +1,216 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ColorTemperature a rdf:Property ; + rdfs:seeAlso :p59af3580d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColorTemperature . + +:p0fc64f80d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Luminous flux is a photometric measure of radiant flux, i.e. the volume of light emitted from a light source. Luminous flux is measured either for the interior as a whole or for a part of the interior (partial luminous flux for a solid angle). All other photometric parameters are derivatives of luminous flux. Luminous flux is measured in lumens (lm). The luminous flux is given as a nominal value for each lamp." ; + rdfs:label "ContributedLuminousFlux" ; + IFC4-PSD:definition "Luminous flux is a photometric measure of radiant flux, i.e. the volume of light emitted from a light source. Luminous flux is measured either for the interior as a whole or for a part of the interior (partial luminous flux for a solid angle). All other photometric parameters are derivatives of luminous flux. Luminous flux is measured in lumens (lm). The luminous flux is given as a nominal value for each lamp." ; + IFC4-PSD:definitionAlias "광속은 방사들을 광도 측정 것으로, 예를 들어, 광원에서 방출 양이다. 광속은 모든 실내, 실내 일부 (입체 각의 부분적인 광속)로 측정한다.모든 광도 측정 항목은 빠른 파생이다. 광속 단위 루멘으로 정해진다. 광속은 각 램프의 값으로 주어진다."@ko-KR , ""@en , "光束は放射束を光度測定したもので、たとえば、光源からの発光の量である。光束は全室内、または室内の一部(立体角の部分的な光束)で計測する。\n全ての光度測定の項目は高速の派生である。光束は単位ルーメンで計られる。光束は各ランプからの値で与えられる。"@ja-JP ; + IFC4-PSD:ifdguid "0fc64f80d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "ContributedLuminousFlux" ; + IFC4-PSD:nameAlias "광속"@ko-KR , "光束"@ja-JP , "Contributed Luminous Flux"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLuminousFluxMeasure + ] . + +:LampMaintenanceFactor + a rdf:Property ; + rdfs:seeAlso :p1c4aa800d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LampMaintenanceFactor . + +:p41d7b180d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "In both the DIN and CIE standards, artificial light sources are classified in terms of their color appearance. To the human eye they all appear to be white; the difference can only be detected by direct comparison. Visual performance is not directly affected by differences in color appearance." ; + rdfs:label "ColorAppearance" ; + IFC4-PSD:definition "In both the DIN and CIE standards, artificial light sources are classified in terms of their color appearance. To the human eye they all appear to be white; the difference can only be detected by direct comparison. Visual performance is not directly affected by differences in color appearance." ; + IFC4-PSD:definitionAlias ""@ko-KR , ""@en , "DIN(ドイツ規格協会)とCIE(国際照明委員会)の両方の規格で、人工照明は色の見え方で分類される。\n人の目には全て白く見えてくる、その差異は直接比較することにより判別することが可能である。視機能は色の見え方の差異に直接影響はしない。"@ja-JP ; + IFC4-PSD:ifdguid "41d7b180d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "ColorAppearance" ; + IFC4-PSD:nameAlias "색상의 외관"@ko-KR , "色の見え方"@ja-JP , "Color Appearance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p22d91f80d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of ballast used to stabilise gas discharge by limiting the current during operation and to deliver the necessary striking voltage for starting. Ballasts are needed to operate Discharge Lamps such as Fluorescent, Compact Fluorescent, High-pressure Mercury, Metal Halide and High-pressure Sodium Lamps. \nMagnetic ballasts are chokes which limit the current passing through a lamp connected in series on the principle of self-induction. The resultant current and power are decisive for the efficient operation of the lamp. A specially designed ballast is required for every type of lamp to comply with lamp rating in terms of Luminous Flux, Color Appearance and service life. The two types of magnetic ballasts for fluorescent lamps are KVG Conventional (EC-A series) and VVG Low-loss ballasts (EC-B series). Low-loss ballasts have a higher efficiency, which means reduced ballast losses and a lower thermal load. Electronic ballasts are used to run fluorescent lamps at high frequencies (approx. 35 - 40 kHz)." ; + rdfs:label "LampBallastType" ; + IFC4-PSD:definition "The type of ballast used to stabilise gas discharge by limiting the current during operation and to deliver the necessary striking voltage for starting. Ballasts are needed to operate Discharge Lamps such as Fluorescent, Compact Fluorescent, High-pressure Mercury, Metal Halide and High-pressure Sodium Lamps. \nMagnetic ballasts are chokes which limit the current passing through a lamp connected in series on the principle of self-induction. The resultant current and power are decisive for the efficient operation of the lamp. A specially designed ballast is required for every type of lamp to comply with lamp rating in terms of Luminous Flux, Color Appearance and service life. The two types of magnetic ballasts for fluorescent lamps are KVG Conventional (EC-A series) and VVG Low-loss ballasts (EC-B series). Low-loss ballasts have a higher efficiency, which means reduced ballast losses and a lower thermal load. Electronic ballasts are used to run fluorescent lamps at high frequencies (approx. 35 - 40 kHz)." ; + IFC4-PSD:definitionAlias "安定器は使用中の過電流を抑え、蛍光ランプの起動に必要な高い電圧を供給し、ガス放電を安定させる。安定器は蛍光灯、水銀灯、メタルハライドランプ、高圧ナトリウムランプ等の放電灯使用する時に必要となる。\n磁気式安定器はランプに流れる電流の制限のために、直列に接続された自己誘導の手法を用いている電流と出力から照明の効率運用の結果がわかる。\n特別な設計の安定器は全ての照明の光束、色の見え方、寿命の要求に答える。\n蛍光灯用の磁気式安定器にはKVG従来型とVVG省電力型の2種類がある。\n省電力型安定器は光効率で、安定器での損失の低減及び低熱負荷になっている。電子式安定器は蛍光灯を高周波で安定的に点灯させる。"@ja-JP , "안정기는 사용중인 서지를 억제하고, 형광 램프 시작하는 데 필요한 높은 전압을 공급하여 가스 방전을 안정시킨다. 안정기는 형광등, 수은등, 메탈 할라이드 램프, 고압 나트륨 램프 등의 방전등 사용 때 필요하다. 마그네틱 안정기는 램프에 흐르는 전류의 제한을 위해 직렬로 연결된 자기 유도 방법을 사용하는 전류 출력에서 조명 효율 운영 결과 알 수있다. 특별한 디자인의 안정기는 모든 조명의 광속, 색상의 외관 수명의 요구에 반응한다. 형광 등용 자기 식 안정기에 KVG 기존과 VVG 절전 형의 2 종류가있다. 에너지 절약형 안정기는 조명 효율에서 안정기의 손실 감소 및 낮은 열 부하되어있다. 전자식 안정기는 형광등 고주파에서 안정적으로 점등한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "22d91f80d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LampBallastType" ; + IFC4-PSD:nameAlias "安定期のタイプ"@ja-JP , "Lamp Ballast Type"@en , "안정기의 종류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONVENTIONAL" , "ELECTRONIC" , "LOWLOSS" , "OTHER" , "RESISTOR" , "NOTKNOWN" , "UNSET" + ] . + +:p1c4aa800d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Non recoverable losses of luminous flux of a lamp due to lamp depreciation; i.e. the decreasing of light output of a luminaire due to aging and dirt." ; + rdfs:label "LampMaintenanceFactor" ; + IFC4-PSD:definition "Non recoverable losses of luminous flux of a lamp due to lamp depreciation; i.e. the decreasing of light output of a luminaire due to aging and dirt." ; + IFC4-PSD:definitionAlias "복구할 수없는 광량 감소가 원인 광원 자체의 광속 저하, 예를 들어 조명기구의 노후화 및 오염에 의한 광량 감소."@ko-KR , "回復不可能な光量減少が原因の光源自体の光束の低下、たとえば照明器具の老朽化や汚れによる光量の減少。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1c4aa800d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LampMaintenanceFactor" ; + IFC4-PSD:nameAlias "保守率"@ja-JP , "보수 비율"@ko-KR , "Lamp Maintenance Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:LampBallastType a rdf:Property ; + rdfs:seeAlso :p22d91f80d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LampBallastType . + +:ColorAppearance a rdf:Property ; + rdfs:seeAlso :p41d7b180d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColorAppearance . + +:p59af3580d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color temperature of any source of radiation is defined as the temperature (in Kelvin) of a black-body or Planckian radiator whose radiation has the same chromaticity as the source of radiation. Often the values are only approximate color temperatures as the black-body radiator cannot emit radiation of every chromaticity value. The color temperatures of the commonest artificial light sources range from less than 3000K (warm white) to 4000K (intermediate) and over 5000K (daylight)." ; + rdfs:label "ColorTemperature" ; + IFC4-PSD:definition "The color temperature of any source of radiation is defined as the temperature (in Kelvin) of a black-body or Planckian radiator whose radiation has the same chromaticity as the source of radiation. Often the values are only approximate color temperatures as the black-body radiator cannot emit radiation of every chromaticity value. The color temperatures of the commonest artificial light sources range from less than 3000K (warm white) to 4000K (intermediate) and over 5000K (daylight)." ; + IFC4-PSD:definitionAlias "放射源の色温度は黒体、または完全放射体の色温度にて定義され、与えられた放射の色度と等しい黒体の温度のこと。与えられた放射の色度が黒体放射軌跡上にない場合に、相対分光分布を黒体放射に近似する。最も一般的な人工光源の色温度の範囲は、3000K以下(暖白)から4000K(中間)で、5000k以上は昼光。"@ja-JP , ""@en , "방사 원의 색온도는 흑체 또는 흑체의 색온도에서 정의된 주어진 방사의 색도와 동일 흑체의 온도 것. 주어진 방사의 색도가 흑체 복사 궤적에없는 경우 상대 분광 분포를 흑체 복사에 근사한다. 가장 일반적인 인공 광원의 색온도 범위는 3000K 이하 (따뜻한 흰색)에서 4000K (중간)에서 5000k 이상은 일광."@ko-KR ; + IFC4-PSD:ifdguid "59af3580d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "ColorTemperature" ; + IFC4-PSD:nameAlias "Color Temperature"@en , "색온도"@ko-KR , "色温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:ColorRenderingIndex a rdf:Property ; + rdfs:seeAlso :p5fa51680d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ColorRenderingIndex . + +:pfde4ac80d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fde4ac80d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4b611980d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The spectrum of radiation describes its composition with regard to wavelength. Light, for example, as the portion of electromagnetic radiation that is visible to the human eye, is radiation with wavelengths in the range of approx. 380 to 780 nm (1 nm = 10 m). The corresponding range of colours varies from violet to indigo, blue, green, yellow, orange, and red. These colours form a continuous spectrum, in which the various spectral sectors merge into each other." ; + rdfs:label "Spectrum" ; + IFC4-PSD:definition "The spectrum of radiation describes its composition with regard to wavelength. Light, for example, as the portion of electromagnetic radiation that is visible to the human eye, is radiation with wavelengths in the range of approx. 380 to 780 nm (1 nm = 10 m). The corresponding range of colours varies from violet to indigo, blue, green, yellow, orange, and red. These colours form a continuous spectrum, in which the various spectral sectors merge into each other." ; + IFC4-PSD:definitionAlias "波長を考慮して合成することを放射スペクトルで表現する。\n光は可視の電磁波の一種で、訳380~780nmの範囲の波長の放射である。\n色の変化は紫から藍色、青、緑、黄色、オレンジ、赤の範囲に相当する。これらの色は連続する波長で、お互いに合成した波長領域である。"@ja-JP , ""@en , ""@ko-KR ; + IFC4-PSD:ifdguid "4b611980d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "Spectrum" ; + IFC4-PSD:nameAlias "파장"@ko-KR , "波長域"@ja-JP , "Spectrum"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNumericMeasure ; + IFC4-PSD:definingValue IFC4:IfcNumericMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pfde4ac80d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :pf58c7180d1ea11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LightEmitterNominalPower + a rdf:Property ; + rdfs:seeAlso :p15bc3080d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightEmitterNominalPower . + +:Spectrum a rdf:Property ; + rdfs:seeAlso :p4b611980d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Spectrum . + +:p15bc3080d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Light emitter nominal power." ; + rdfs:label "LightEmitterNominalPower" ; + IFC4-PSD:definition "Light emitter nominal power." ; + IFC4-PSD:definitionAlias "발광하는 정격 와트"@ko-KR , "発光するための定格ワット数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "15bc3080d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LightEmitterNominalPower" ; + IFC4-PSD:nameAlias "Light Emitter Nominal Power"@en , "照明器具ワット数"@ja-JP , "조명기구 와트"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p32f0ff00d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the form of compensation used for power factor correction and radio suppression." ; + rdfs:label "LampCompensationType" ; + IFC4-PSD:definition "Identifies the form of compensation used for power factor correction and radio suppression." ; + IFC4-PSD:definitionAlias ""@en , ""@ko-KR , "力率の改善と高調波の抑制のために使用される補正"@ja-JP ; + IFC4-PSD:ifdguid "32f0ff00d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LampCompensationType" ; + IFC4-PSD:nameAlias "램프보정"@ko-KR , "Lamp Compensation Type"@en , "ランプ補正"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CAPACITIVE" , "INDUCTIVE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_LampTypeCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "A lamp is a component within a light fixture that is designed to emit light. \n\nHistory: Name changed from Pset_LampEmitterTypeCommon in IFC 2x3." ; + rdfs:label "Pset_LampTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcLamp ; + IFC4-PSD:applicableTypeValue "IfcLamp" ; + IFC4-PSD:definition "A lamp is a component within a light fixture that is designed to emit light. \n\nHistory: Name changed from Pset_LampEmitterTypeCommon in IFC 2x3." ; + IFC4-PSD:definitionAlias "ランプは光を発するように設計された照明器具の部品。\nIFC 2x3のPset_LampEmitterTypeCommonから名前が変更。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_LampTypeCommon" ; + IFC4-PSD:propertyDef :p41d7b180d1eb11e1800000215ad4efdf , :p0fc64f80d1eb11e1800000215ad4efdf , :p5fa51680d1eb11e1800000215ad4efdf , :p15bc3080d1eb11e1800000215ad4efdf , :pf58c7180d1ea11e1800000215ad4efdf , :p59af3580d1eb11e1800000215ad4efdf , :p32f0ff00d1eb11e1800000215ad4efdf , :p1c4aa800d1eb11e1800000215ad4efdf , :pfde4ac80d1ea11e1800000215ad4efdf , :p22d91f80d1eb11e1800000215ad4efdf , :p4b611980d1eb11e1800000215ad4efdf . + +:ContributedLuminousFlux + a rdf:Property ; + rdfs:seeAlso :p0fc64f80d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContributedLuminousFlux . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5fa51680d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The CRI indicates how well a light source renders eight standard colors compared to perfect reference lamp with the same color temperature. The CRI scale ranges from 1 to 100, with 100 representing perfect rendering properties." ; + rdfs:label "ColorRenderingIndex" ; + IFC4-PSD:definition "The CRI indicates how well a light source renders eight standard colors compared to perfect reference lamp with the same color temperature. The CRI scale ranges from 1 to 100, with 100 representing perfect rendering properties." ; + IFC4-PSD:definitionAlias "같은 색온도의 기준 광원으로 규정된 8 가지 시험 색 표의 광원에 의한 색채를 다시 표현을 비교한다. CRI의 평가 척도는 1에서 100에서 기준 광원의 경우 100로한다."@ko-KR , "同じ色温度の基準光源で、規定された8色の試験色票での光源による色彩の再表現を比較する。CRIの評価スケールは1~100で、基準光源の場合を100とする。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5fa51680d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "ColorRenderingIndex" ; + IFC4-PSD:nameAlias "연색 평가수"@ko-KR , "Color Rendering Index"@en , "演色評価数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:LampCompensationType + a rdf:Property ; + rdfs:seeAlso :p32f0ff00d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LampCompensationType . + +:pf58c7180d1ea11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f58c7180d1ea11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "Reference"@en , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_LandRegistration.ttl b/converter/src/main/resources/pset/Pset_LandRegistration.ttl new file mode 100644 index 00000000..aa7ab89a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_LandRegistration.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p6c296f00d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identification number assigned by the statutory registration authority to a land parcel." ; + rdfs:label "LandID" ; + IFC4-PSD:definition "Identification number assigned by the statutory registration authority to a land parcel." ; + IFC4-PSD:definitionAlias "登記における識別番号。"@ja-JP , ""@en , "등기의 ID입니다."@ko-KR , "Identifiant numérique de la parcelle attribué par une autorité [NDT : exemple : DGI]"@fr-FR ; + IFC4-PSD:ifdguid "6c296f00d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LandID" ; + IFC4-PSD:nameAlias "敷地ID"@ja-JP , "Land ID"@en , "부지 ID"@ko-KR , "IdParcelle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p73e91380d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the identity assigned to a land parcel is permanent (= TRUE) or temporary (=FALSE)." ; + rdfs:label "IsPermanentID" ; + IFC4-PSD:definition "Indicates whether the identity assigned to a land parcel is permanent (= TRUE) or temporary (=FALSE)." ; + IFC4-PSD:definitionAlias "Indique si l'identifiant est permanent (VRAI) ou non (FAUX)"@fr-FR , ""@en , "敷地IDが恒久的なものかどうかを示すブーリアン値。"@ja-JP , "부지 ID가 영구적인 것인지 여부를 나타내는 값입니다."@ko-KR ; + IFC4-PSD:ifdguid "73e91380d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "IsPermanentID" ; + IFC4-PSD:nameAlias "Is Permanent ID"@en , "IdPermanent"@fr-FR , "영구 ID 구분"@ko-KR , "恒久ID区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:LandTitleID a rdf:Property ; + rdfs:seeAlso :p7b102180d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LandTitleID . + +:Pset_LandRegistration + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Specifies the identity of land within a statutory registration system. NOTE: The property LandTitleID is to be used in preference to deprecated attribute LandTitleNumber in IfcSite." ; + rdfs:label "Pset_LandRegistration" ; + IFC4-PSD:applicableClass IFC4:IfcSite ; + IFC4-PSD:applicableTypeValue "IfcSite" ; + IFC4-PSD:definition "Specifies the identity of land within a statutory registration system. NOTE: The property LandTitleID is to be used in preference to deprecated attribute LandTitleNumber in IfcSite." ; + IFC4-PSD:definitionAlias ""@en , "敷地の登記システム上の識別情報に関するプロパティセット定義。備考:LandTitileIDプロパティは、IfcSite.LandTitleNumber属性が廃止されるのに伴い、優先的に使用される。"@ja-JP , "Définition de l'IAI : spécifie l'identité de l'entité foncière attribué par une autorité. Nota : La propriété LandTitleID doit être utilisée de préférence à l'attribut LandTitleNumber de la classe IfcSite."@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_LandRegistration" ; + IFC4-PSD:propertyDef :p6c296f00d1eb11e1800000215ad4efdf , :p73e91380d1eb11e1800000215ad4efdf , :p7b102180d1eb11e1800000215ad4efdf . + +:IsPermanentID a rdf:Property ; + rdfs:seeAlso :p73e91380d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsPermanentID . + +:p7b102180d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identification number assigned by the statutory registration authority to the title to a land parcel." ; + rdfs:label "LandTitleID" ; + IFC4-PSD:definition "Identification number assigned by the statutory registration authority to the title to a land parcel." ; + IFC4-PSD:definitionAlias "Identifiant numérique du titre de la parcelle attribué par une autorité."@fr-FR , "등기소의 ID입니다."@ko-KR , "登記所による識別番号。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7b102180d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LandTitleID" ; + IFC4-PSD:nameAlias "Land Title ID"@en , "IdTitreParcelle"@fr-FR , "부지 번호 ID"@ko-KR , "敷地番号ID"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:LandID a rdf:Property ; + rdfs:seeAlso :p6c296f00d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LandID . diff --git a/converter/src/main/resources/pset/Pset_LightFixtureTypeCommon.ttl b/converter/src/main/resources/pset/Pset_LightFixtureTypeCommon.ttl new file mode 100644 index 00000000..1b26ea2f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_LightFixtureTypeCommon.ttl @@ -0,0 +1,200 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9549ff80d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9549ff80d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pa4c94880d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of sources ." ; + rdfs:label "NumberOfSources" ; + IFC4-PSD:definition "Number of sources ." ; + IFC4-PSD:definitionAlias ""@en , "電球数。"@ja-JP , "전구수"@ko-KR ; + IFC4-PSD:ifdguid "a4c94880d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfSources" ; + IFC4-PSD:nameAlias "Number Of Sources"@en , "전구수"@ko-KR , "電球数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p8ebb8800d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "8ebb8800d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pd80bd780d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The arithmetical allowance made for depreciation of lamps and reflective equipment from their initial values due to dirt, fumes, or age." ; + rdfs:label "MaintenanceFactor" ; + IFC4-PSD:definition "The arithmetical allowance made for depreciation of lamps and reflective equipment from their initial values due to dirt, fumes, or age." ; + IFC4-PSD:definitionAlias ""@en , "汚れ、煙、年数による初期からのランプや反射装置の低減許容計算。"@ja-JP , "먼지, 연기, 연수의 초기부터 램프와 반사 장치의 저감 허용 계산."@ko-KR ; + IFC4-PSD:ifdguid "d80bd780d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "MaintenanceFactor" ; + IFC4-PSD:nameAlias "보수 비율"@ko-KR , "Maintenance Factor"@en , "保守率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p8ebb8800d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:MaximumSpaceSensibleLoad + a rdf:Property ; + rdfs:seeAlso :pe528c680d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumSpaceSensibleLoad . + +:paa269300d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wattage on whole lightfitting device with all sources intact." ; + rdfs:label "TotalWattage" ; + IFC4-PSD:definition "Wattage on whole lightfitting device with all sources intact." ; + IFC4-PSD:definitionAlias ""@en , "全ての照明器具のワット数。"@ja-JP , "모든 조명기구 와트."@ko-KR ; + IFC4-PSD:ifdguid "aa269300d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalWattage" ; + IFC4-PSD:nameAlias "総ワット数"@ja-JP , "총 와트"@ko-KR , "Total Wattage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:pde01b880d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum or Peak sensible thermal load contributed to return air plenum by the light fixture." ; + rdfs:label "MaximumPlenumSensibleLoad" ; + IFC4-PSD:definition "Maximum or Peak sensible thermal load contributed to return air plenum by the light fixture." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "de01b880d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPlenumSensibleLoad" ; + IFC4-PSD:nameAlias "Maximum Plenum Sensible Load"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:LightFixturePlacingType + a rdf:Property ; + rdfs:seeAlso :pc5919e00d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightFixturePlacingType . + +:pc5919e00d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of placing specification for light fixtures from which that required may be selected." ; + rdfs:label "LightFixturePlacingType" ; + IFC4-PSD:definition "A list of the available types of placing specification for light fixtures from which that required may be selected." ; + IFC4-PSD:definitionAlias "照明器具の取付場所をリストから選択。"@ja-JP , ""@en , "조명기구의 설치 장소를 목록에서 선택합니다."@ko-KR ; + IFC4-PSD:ifdguid "c5919e00d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LightFixturePlacingType" ; + IFC4-PSD:nameAlias "Light Fixture Placing Type"@en , "조명기구 설치 장소"@ko-KR , "照明器具取付場所"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CEILING" , "FLOOR" , "FURNITURE" , "POLE" , "WALL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MaximumPlenumSensibleLoad + a rdf:Property ; + rdfs:seeAlso :pde01b880d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPlenumSensibleLoad . + +:SensibleLoadToRadiant + a rdf:Property ; + rdfs:seeAlso :pea861100d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleLoadToRadiant . + +:NumberOfSources a rdf:Property ; + rdfs:seeAlso :pa4c94880d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSources . + +:pe528c680d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum or Peak sensible thermal load contributed to the conditioned space by the light fixture." ; + rdfs:label "MaximumSpaceSensibleLoad" ; + IFC4-PSD:definition "Maximum or Peak sensible thermal load contributed to the conditioned space by the light fixture." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e528c680d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumSpaceSensibleLoad" ; + IFC4-PSD:nameAlias "Maximum Space Sensible Load"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:paf83dd80d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of mounting for light fixtures from which that required may be selected." ; + rdfs:label "LightFixtureMountingType" ; + IFC4-PSD:definition "A list of the available types of mounting for light fixtures from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "照明器具の取付方法をリストから選択。"@ja-JP , "조명기구의 설치 방법을 목록에서 선택합니다."@ko-KR ; + IFC4-PSD:ifdguid "af83dd80d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "LightFixtureMountingType" ; + IFC4-PSD:nameAlias "조명기구 설치방법"@ko-KR , "照明器具取付方法"@ja-JP , "Light Fixture Mounting Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "POLE_TOP" , "TRACKMOUNTED" , "POLE_SIDE" , "CABLESPANNED" , "RECESSED" , "UNSET" , "SUSPENDED" , "FREESTANDING" , "NOTKNOWN" , "SURFACE" , "OTHER" + ] . + +:Pset_LightFixtureTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common data for light fixtures.\nHistory: IFC4 - Article number and manufacturer specific information deleted. Use Pset_ManufacturerTypeInformation. ArticleNumber instead. Load properties moved from Pset_LightFixtureTypeThermal (deleted)." ; + rdfs:label "Pset_LightFixtureTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcLightFixture ; + IFC4-PSD:applicableTypeValue "IfcLightFixture" ; + IFC4-PSD:definition "Common data for light fixtures.\nHistory: IFC4 - Article number and manufacturer specific information deleted. Use Pset_ManufacturerTypeInformation. ArticleNumber instead. Load properties moved from Pset_LightFixtureTypeThermal (deleted)." ; + IFC4-PSD:definitionAlias ""@en , "照明器具の共通データ。\nIFC4でArticleNumberは削除されました。代わりにPset_ManufacturerTypeInformationを使用してください。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_LightFixtureTypeCommon" ; + IFC4-PSD:propertyDef :pde01b880d1eb11e1800000215ad4efdf , :pd80bd780d1eb11e1800000215ad4efdf , :pe528c680d1eb11e1800000215ad4efdf , :paf83dd80d1eb11e1800000215ad4efdf , :pea861100d1eb11e1800000215ad4efdf , :p9549ff80d1eb11e1800000215ad4efdf , :p8ebb8800d1eb11e1800000215ad4efdf , :paa269300d1eb11e1800000215ad4efdf , :pc5919e00d1eb11e1800000215ad4efdf , :pa4c94880d1eb11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:TotalWattage a rdf:Property ; + rdfs:seeAlso :paa269300d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalWattage . + +:MaintenanceFactor a rdf:Property ; + rdfs:seeAlso :pd80bd780d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaintenanceFactor . + +:LightFixtureMountingType + a rdf:Property ; + rdfs:seeAlso :paf83dd80d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightFixtureMountingType . + +:Status a rdf:Property ; + rdfs:seeAlso :p9549ff80d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pea861100d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Percent of sensible thermal load to radiant heat." ; + rdfs:label "SensibleLoadToRadiant" ; + IFC4-PSD:definition "Percent of sensible thermal load to radiant heat." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ea861100d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleLoadToRadiant" ; + IFC4-PSD:nameAlias "Sensible Load To Radiant"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_LightFixtureTypeSecurityLighting.ttl b/converter/src/main/resources/pset/Pset_LightFixtureTypeSecurityLighting.ttl new file mode 100644 index 00000000..7f253ce1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_LightFixtureTypeSecurityLighting.ttl @@ -0,0 +1,129 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_LightFixtureTypeSecurityLighting + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that characterize security lighting." ; + rdfs:label "Pset_LightFixtureTypeSecurityLighting" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcLightFixture/SECURITYLIGHTING" ; + IFC4-PSD:definition "Properties that characterize security lighting." ; + IFC4-PSD:definitionAlias ""@en , "防犯灯の特徴プロパティ。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_LightFixtureTypeSecurityLighting" ; + IFC4-PSD:propertyDef :p28833500d1ec11e1800000215ad4efdf , :p1a351900d1ec11e1800000215ad4efdf , :p0d182a00d1ec11e1800000215ad4efdf , :pf5d93c80d1eb11e1800000215ad4efdf , :p05588580d1ec11e1800000215ad4efdf , :p35a02400d1ec11e1800000215ad4efdf . + +:FixtureHeight a rdf:Property ; + rdfs:seeAlso :p05588580d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FixtureHeight . + +:p28833500d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The direction of escape pictogram." ; + rdfs:label "PictogramEscapeDirection" ; + IFC4-PSD:definition "The direction of escape pictogram." ; + IFC4-PSD:definitionAlias "피난 표지판 방향"@ko-KR , "避難標識の向き。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "28833500d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "PictogramEscapeDirection" ; + IFC4-PSD:nameAlias "避難標識の向き"@ja-JP , "피난 표지판 방향"@ko-KR , "Pictogram Escape Direction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RIGHTARROW" , "LEFTARROW" , "DOWNARROW" , "UPARROW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SelfTestFunction a rdf:Property ; + rdfs:seeAlso :p0d182a00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelfTestFunction . + +:p0d182a00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of self test function." ; + rdfs:label "SelfTestFunction" ; + IFC4-PSD:definition "The type of self test function." ; + IFC4-PSD:definitionAlias ""@en , "자기 진단 기능의 유형"@ko-KR , "自己診断機能のタイプ。"@ja-JP ; + IFC4-PSD:ifdguid "0d182a00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "SelfTestFunction" ; + IFC4-PSD:nameAlias "Self Test Function"@en , "자기 진단 기능"@ko-KR , "自己診断機能"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CENTRAL" , "LOCAL" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Addressablility a rdf:Property ; + rdfs:seeAlso :p35a02400d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Addressablility . + +:pf5d93c80d1eb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of security lighting." ; + rdfs:label "SecurityLightingType" ; + IFC4-PSD:definition "The type of security lighting." ; + IFC4-PSD:definitionAlias "防犯灯のタイプ。"@ja-JP , ""@en , "방범등 유형"@ko-KR ; + IFC4-PSD:ifdguid "f5d93c80d1eb11e1800000215ad4efdf" ; + IFC4-PSD:name "SecurityLightingType" ; + IFC4-PSD:nameAlias "防犯灯"@ja-JP , "방범등"@ko-KR , "Security Lighting Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SAFETYLIGHT" , "WARNINGLIGHT" , "EMERGENCYEXITLIGHT" , "BLUEILLUMINATION" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:BackupSupplySystem a rdf:Property ; + rdfs:seeAlso :p1a351900d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BackupSupplySystem . + +:p1a351900d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of backup supply system." ; + rdfs:label "BackupSupplySystem" ; + IFC4-PSD:definition "The type of backup supply system." ; + IFC4-PSD:definitionAlias "電源バックアップシステムのタイプ。"@ja-JP , ""@en , "전원 백업 시스템 유형"@ko-KR ; + IFC4-PSD:ifdguid "1a351900d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "BackupSupplySystem" ; + IFC4-PSD:nameAlias "전원백업 시스템"@ko-KR , "電源バックアップシステム"@ja-JP , "Backup Supply System"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LOCALBATTERY" , "CENTRALBATTERY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:PictogramEscapeDirection + a rdf:Property ; + rdfs:seeAlso :p28833500d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PictogramEscapeDirection . + +:p05588580d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The height of the fixture, such as the text height of an exit sign." ; + rdfs:label "FixtureHeight" ; + IFC4-PSD:definition "The height of the fixture, such as the text height of an exit sign." ; + IFC4-PSD:definitionAlias "出口標識などの器具の高さ。"@ja-JP , ""@en , "출구 표지판 등의기구의 높이"@ko-KR ; + IFC4-PSD:ifdguid "05588580d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "FixtureHeight" ; + IFC4-PSD:nameAlias "기구의 높이"@ko-KR , "器具の高さ"@ja-JP , "Fixture Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SecurityLightingType + a rdf:Property ; + rdfs:seeAlso :pf5d93c80d1eb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecurityLightingType . + +:p35a02400d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of addressability." ; + rdfs:label "Addressablility" ; + IFC4-PSD:definition "The type of addressability." ; + IFC4-PSD:definitionAlias "アドレス指定能力のタイプ。"@ja-JP , ""@en , "주소 지정 능력 타입"@ko-KR ; + IFC4-PSD:ifdguid "35a02400d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "Addressablility" ; + IFC4-PSD:nameAlias "주소 지정 능력"@ko-KR , "アドレス指定能力"@ja-JP , "Addressablility"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "IMPLEMENTED" , "UPGRADEABLETO" , "NOTIMPLEMENTED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_ManufacturerOccurrence.ttl b/converter/src/main/resources/pset/Pset_ManufacturerOccurrence.ttl new file mode 100644 index 00000000..a1418608 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ManufacturerOccurrence.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p56687980d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The serial number assigned to an occurrence of a product." ; + rdfs:label "SerialNumber" ; + IFC4-PSD:definition "The serial number assigned to an occurrence of a product." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "56687980d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "SerialNumber" ; + IFC4-PSD:nameAlias "Serial Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p5c5e5a80d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The identity of the batch reference from which an occurrence of a product is taken." ; + rdfs:label "BatchReference" ; + IFC4-PSD:definition "The identity of the batch reference from which an occurrence of a product is taken." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5c5e5a80d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "BatchReference" ; + IFC4-PSD:nameAlias "Batch Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p4bade480d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The date that the manufactured item was purchased." ; + rdfs:label "AcquisitionDate" ; + IFC4-PSD:definition "The date that the manufactured item was purchased." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4bade480d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "AcquisitionDate" ; + IFC4-PSD:nameAlias "Acquisition Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + +:SerialNumber a rdf:Property ; + rdfs:seeAlso :p56687980d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SerialNumber . + +:AcquisitionDate a rdf:Property ; + rdfs:seeAlso :p4bade480d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcquisitionDate . + +:AssemblyPlace a rdf:Property ; + rdfs:seeAlso :p62543b80d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssemblyPlace . + +:BatchReference a rdf:Property ; + rdfs:seeAlso :p5c5e5a80d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BatchReference . + +:p510b2f00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The identity of the bar code given to an occurrence of the product." ; + rdfs:label "BarCode" ; + IFC4-PSD:definition "The identity of the bar code given to an occurrence of the product." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "510b2f00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "BarCode" ; + IFC4-PSD:nameAlias "Bar Code"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p62543b80d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining where the assembly is intended to take place, either in a factory, other offsite location or on the building site." ; + rdfs:label "AssemblyPlace" ; + IFC4-PSD:definition "Enumeration defining where the assembly is intended to take place, either in a factory, other offsite location or on the building site." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "62543b80d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "AssemblyPlace" ; + IFC4-PSD:nameAlias "Assembly Place"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FACTORY" , "OFFSITE" , "SITE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_ManufacturerOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines properties of individual instances of manufactured products that may be given by the manufacturer.\nHISTORY: IFC 2x4: AssemblyPlace property added. This property does not need to be asserted if Pset_ManufacturerTypeInformation is allocated to the type and the AssemblyPlace property is asserted there." ; + rdfs:label "Pset_ManufacturerOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "Defines properties of individual instances of manufactured products that may be given by the manufacturer.\nHISTORY: IFC 2x4: AssemblyPlace property added. This property does not need to be asserted if Pset_ManufacturerTypeInformation is allocated to the type and the AssemblyPlace property is asserted there." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ManufacturerOccurrence" ; + IFC4-PSD:propertyDef :p5c5e5a80d1ec11e1800000215ad4efdf , :p62543b80d1ec11e1800000215ad4efdf , :p510b2f00d1ec11e1800000215ad4efdf , :p56687980d1ec11e1800000215ad4efdf , :p4bade480d1ec11e1800000215ad4efdf . + +:BarCode a rdf:Property ; + rdfs:seeAlso :p510b2f00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BarCode . diff --git a/converter/src/main/resources/pset/Pset_ManufacturerTypeInformation.ttl b/converter/src/main/resources/pset/Pset_ManufacturerTypeInformation.ttl new file mode 100644 index 00000000..b7edb392 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ManufacturerTypeInformation.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9f203280d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining where the assembly is intended to take place, either in a factory or on the building site." ; + rdfs:label "AssemblyPlace" ; + IFC4-PSD:definition "Enumeration defining where the assembly is intended to take place, either in a factory or on the building site." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9f203280d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "AssemblyPlace" ; + IFC4-PSD:nameAlias "Assembly Place"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FACTORY" , "OFFSITE" , "SITE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ModelLabel a rdf:Property ; + rdfs:seeAlso :p8c0d6280d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ModelLabel . + +:ArticleNumber a rdf:Property ; + rdfs:seeAlso :p7e57dd00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ArticleNumber . + +:ProductionYear a rdf:Property ; + rdfs:seeAlso :p9891bb00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProductionYear . + +:p78fa9280d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The Global Trade Item Number (GTIN) is an identifier for trade items developed by GS1 (www.gs1.org)." ; + rdfs:label "GlobalTradeItemNumber" ; + IFC4-PSD:definition "The Global Trade Item Number (GTIN) is an identifier for trade items developed by GS1 (www.gs1.org)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "78fa9280d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "GlobalTradeItemNumber" ; + IFC4-PSD:nameAlias "Global Trade Item Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p8c0d6280d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The descriptive model name of the product model (or product line) as assigned by the manufacturer of the manufactured item." ; + rdfs:label "ModelLabel" ; + IFC4-PSD:definition "The descriptive model name of the product model (or product line) as assigned by the manufacturer of the manufactured item." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8c0d6280d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "ModelLabel" ; + IFC4-PSD:nameAlias "Model Label"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_ManufacturerTypeInformation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines characteristics of types (ranges) of manufactured products that may be given by the manufacturer. Note that the term 'manufactured' may also be used to refer to products that are supplied and identified by the supplier or that are assembled off site by a third party provider. \nHISTORY: This property set replaces the entity IfcManufacturerInformation from previous IFC releases. IFC 2x4: AssemblyPlace property added." ; + rdfs:label "Pset_ManufacturerTypeInformation" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "Defines characteristics of types (ranges) of manufactured products that may be given by the manufacturer. Note that the term 'manufactured' may also be used to refer to products that are supplied and identified by the supplier or that are assembled off site by a third party provider. \nHISTORY: This property set replaces the entity IfcManufacturerInformation from previous IFC releases. IFC 2x4: AssemblyPlace property added." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ManufacturerTypeInformation" ; + IFC4-PSD:propertyDef :p9f203280d1ec11e1800000215ad4efdf , :p9891bb00d1ec11e1800000215ad4efdf , :p78fa9280d1ec11e1800000215ad4efdf , :p8c0d6280d1ec11e1800000215ad4efdf , :p929bda00d1ec11e1800000215ad4efdf , :p84e65480d1ec11e1800000215ad4efdf , :p7e57dd00d1ec11e1800000215ad4efdf . + +:ModelReference a rdf:Property ; + rdfs:seeAlso :p84e65480d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ModelReference . + +:p929bda00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The organization that manufactured and/or assembled the item." ; + rdfs:label "Manufacturer" ; + IFC4-PSD:definition "The organization that manufactured and/or assembled the item." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "929bda00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "Manufacturer" ; + IFC4-PSD:nameAlias "Manufacturer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p84e65480d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The model number or designator of the product model (or product line) as assigned by the manufacturer of the manufactured item." ; + rdfs:label "ModelReference" ; + IFC4-PSD:definition "The model number or designator of the product model (or product line) as assigned by the manufacturer of the manufactured item." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "84e65480d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "ModelReference" ; + IFC4-PSD:nameAlias "Model Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:AssemblyPlace a rdf:Property ; + rdfs:seeAlso :p9f203280d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssemblyPlace . + +:GlobalTradeItemNumber + a rdf:Property ; + rdfs:seeAlso :p78fa9280d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlobalTradeItemNumber . + +:p9891bb00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The year of production of the manufactured item." ; + rdfs:label "ProductionYear" ; + IFC4-PSD:definition "The year of production of the manufactured item." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9891bb00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "ProductionYear" ; + IFC4-PSD:nameAlias "Production Year"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p7e57dd00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Article number or reference that is be applied to a configured product according to a standard scheme for article number definition as defined by the manufacturer. It is often used as the purchasing number." ; + rdfs:label "ArticleNumber" ; + IFC4-PSD:definition "Article number or reference that is be applied to a configured product according to a standard scheme for article number definition as defined by the manufacturer. It is often used as the purchasing number." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7e57dd00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "ArticleNumber" ; + IFC4-PSD:nameAlias "Article Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Manufacturer a rdf:Property ; + rdfs:seeAlso :p929bda00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Manufacturer . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_MaterialCombustion.ttl b/converter/src/main/resources/pset/Pset_MaterialCombustion.ttl new file mode 100644 index 00000000..d9722732 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialCombustion.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:N20Content a rdf:Property ; + rdfs:seeAlso :pbc550100d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:N20Content . + +:SpecificHeatCapacity + a rdf:Property ; + rdfs:seeAlso :pb6f7b680d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecificHeatCapacity . + +:pb6f7b680d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Specific heat of the products of combustion: heat energy absorbed per temperature unit." ; + rdfs:label "SpecificHeatCapacity" ; + IFC4-PSD:definition "Specific heat of the products of combustion: heat energy absorbed per temperature unit." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b6f7b680d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "SpecificHeatCapacity" ; + IFC4-PSD:nameAlias "Specific Heat Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSpecificHeatCapacityMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_MaterialCombustion + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended material properties of products of combustion generated by elements typically used within the context of building services and flow distribution systems." ; + rdfs:label "Pset_MaterialCombustion" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of extended material properties of products of combustion generated by elements typically used within the context of building services and flow distribution systems." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialCombustion" ; + IFC4-PSD:propertyDef :pc1b24b80d1ec11e1800000215ad4efdf , :pbc550100d1ec11e1800000215ad4efdf , :pb6f7b680d1ec11e1800000215ad4efdf , :pc7a82c80d1ec11e1800000215ad4efdf . + +:pbc550100d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nitrous oxide (N2O) content of the products of combustion. This is measured in weight of N2O per unit weight and is therefore unitless." ; + rdfs:label "N20Content" ; + IFC4-PSD:definition "Nitrous oxide (N2O) content of the products of combustion. This is measured in weight of N2O per unit weight and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bc550100d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "N20Content" ; + IFC4-PSD:nameAlias "N20 Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pc1b24b80d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Carbon monoxide (CO) content of the products of combustion. This is measured in weight of CO per unit weight and is therefore unitless." ; + rdfs:label "COContent" ; + IFC4-PSD:definition "Carbon monoxide (CO) content of the products of combustion. This is measured in weight of CO per unit weight and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c1b24b80d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "COContent" ; + IFC4-PSD:nameAlias "COContent"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pc7a82c80d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Carbon dioxide (CO2) content of the products of combustion. This is measured in weight of CO2 per unit weight and is therefore unitless." ; + rdfs:label "CO2Content" ; + IFC4-PSD:definition "Carbon dioxide (CO2) content of the products of combustion. This is measured in weight of CO2 per unit weight and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c7a82c80d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "CO2Content" ; + IFC4-PSD:nameAlias "CO2 Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:CO2Content a rdf:Property ; + rdfs:seeAlso :pc7a82c80d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CO2Content . + +:COContent a rdf:Property ; + rdfs:seeAlso :pc1b24b80d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:COContent . diff --git a/converter/src/main/resources/pset/Pset_MaterialCommon.ttl b/converter/src/main/resources/pset/Pset_MaterialCommon.ttl index 5cad2358..ce57fe96 100644 --- a/converter/src/main/resources/pset/Pset_MaterialCommon.ttl +++ b/converter/src/main/resources/pset/Pset_MaterialCommon.ttl @@ -1,61 +1,75 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_MaterialCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_MaterialCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcMaterial" ; - IFC4-PSD:definition "A set of general material properties." ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_MaterialCommon" ; - IFC4-PSD:propertyDef :_d262c180d1ec11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d858a280d1ec11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ddb5ed00d1ec11e1800000215ad4efdf ; -. -:_d262c180d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Molecular weight of material (typically gas)." ; - IFC4-PSD:ifdguid "d262c180d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "MolecularWeight" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_d858a280d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The void fraction of the total volume occupied by material (Vbr - Vnet)/Vbr." ; - IFC4-PSD:ifdguid "d858a280d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "Porosity" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ddb5ed00d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Material mass density." ; - IFC4-PSD:ifdguid "ddb5ed00d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "MassDensity" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:Porosity a rdf:Property ; + rdfs:seeAlso :pd858a280d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Porosity . + +:MolecularWeight a rdf:Property ; + rdfs:seeAlso :pd262c180d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MolecularWeight . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pddb5ed00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Material mass density." ; + rdfs:label "MassDensity" ; + IFC4-PSD:definition "Material mass density." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ddb5ed00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "MassDensity" ; + IFC4-PSD:nameAlias "Mass Density"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassDensityMeasure + ] . + +:MassDensity a rdf:Property ; + rdfs:seeAlso :pddb5ed00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MassDensity . + +:pd858a280d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The void fraction of the total volume occupied by material (Vbr - Vnet)/Vbr." ; + rdfs:label "Porosity" ; + IFC4-PSD:definition "The void fraction of the total volume occupied by material (Vbr - Vnet)/Vbr." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d858a280d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "Porosity" ; + IFC4-PSD:nameAlias "Porosity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:Pset_MaterialCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of general material properties." ; + rdfs:label "Pset_MaterialCommon" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of general material properties." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialCommon" ; + IFC4-PSD:propertyDef :pd262c180d1ec11e1800000215ad4efdf , :pddb5ed00d1ec11e1800000215ad4efdf , :pd858a280d1ec11e1800000215ad4efdf . + +:pd262c180d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Molecular weight of material (typically gas)." ; + rdfs:label "MolecularWeight" ; + IFC4-PSD:definition "Molecular weight of material (typically gas)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d262c180d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "MolecularWeight" ; + IFC4-PSD:nameAlias "Molecular Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMolecularWeightMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_MaterialConcrete.ttl b/converter/src/main/resources/pset/Pset_MaterialConcrete.ttl index b8d26d0d..49d0ef94 100644 --- a/converter/src/main/resources/pset/Pset_MaterialConcrete.ttl +++ b/converter/src/main/resources/pset/Pset_MaterialConcrete.ttl @@ -1,94 +1,128 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_MaterialConcrete -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . +:pfcb47f00d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the workability of the fresh concrete defined according to local standards." ; + rdfs:label "Workability" ; + IFC4-PSD:definition "Description of the workability of the fresh concrete defined according to local standards." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fcb47f00d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "Workability" ; + IFC4-PSD:nameAlias "Workability"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. :Pset_MaterialConcrete - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcMaterial/Concrete" ; - IFC4-PSD:definition "A set of extended mechanical properties related to concrete materials." ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_MaterialConcrete" ; - IFC4-PSD:propertyDef :_01793300d1ed11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_076f1400d1ed11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ea3a4580d1ec11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f0302680d1ec11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f7573480d1ec11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_fcb47f00d1ec11e1800000215ad4efdf ; -. -:_01793300d1ed11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Description of the water impermeability denoting the water repelling properties." ; - IFC4-PSD:ifdguid "01793300d1ed11e1800000215ad4efdf" ; - IFC4-PSD:name "WaterImpermeability" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_076f1400d1ed11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The protective pore ratio indicating the frost-resistance of the concrete." ; - IFC4-PSD:ifdguid "076f1400d1ed11e1800000215ad4efdf" ; - IFC4-PSD:name "ProtectivePoreRatio" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ea3a4580d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The compressive strength of the concrete." ; - IFC4-PSD:ifdguid "ea3a4580d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "CompressiveStrength" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f0302680d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The maximum aggregate size of the concrete." ; - IFC4-PSD:ifdguid "f0302680d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "MaxAggregateSize" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f7573480d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Description of the admixtures added to the concrete mix." ; - IFC4-PSD:ifdguid "f7573480d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "AdmixturesDescription" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_fcb47f00d1ec11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Description of the workability of the fresh concrete defined according to local standards." ; - IFC4-PSD:ifdguid "fcb47f00d1ec11e1800000215ad4efdf" ; - IFC4-PSD:name "Workability" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended mechanical properties related to concrete materials." ; + rdfs:label "Pset_MaterialConcrete" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMaterial/Concrete" ; + IFC4-PSD:definition "A set of extended mechanical properties related to concrete materials." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialConcrete" ; + IFC4-PSD:propertyDef :p076f1400d1ed11e1800000215ad4efdf , :pf0302680d1ec11e1800000215ad4efdf , :pea3a4580d1ec11e1800000215ad4efdf , :pf7573480d1ec11e1800000215ad4efdf , :pfcb47f00d1ec11e1800000215ad4efdf , :p01793300d1ed11e1800000215ad4efdf . + +:CompressiveStrength a rdf:Property ; + rdfs:seeAlso :pea3a4580d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CompressiveStrength . + +:AdmixturesDescription + a rdf:Property ; + rdfs:seeAlso :pf7573480d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdmixturesDescription . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p01793300d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the water impermeability denoting the water repelling properties." ; + rdfs:label "WaterImpermeability" ; + IFC4-PSD:definition "Description of the water impermeability denoting the water repelling properties." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "01793300d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterImpermeability" ; + IFC4-PSD:nameAlias "Water Impermeability"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:pea3a4580d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The compressive strength of the concrete." ; + rdfs:label "CompressiveStrength" ; + IFC4-PSD:definition "The compressive strength of the concrete." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ea3a4580d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "CompressiveStrength" ; + IFC4-PSD:nameAlias "Compressive Strength"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ProtectivePoreRatio a rdf:Property ; + rdfs:seeAlso :p076f1400d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProtectivePoreRatio . + +:p076f1400d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The protective pore ratio indicating the frost-resistance of the concrete." ; + rdfs:label "ProtectivePoreRatio" ; + IFC4-PSD:definition "The protective pore ratio indicating the frost-resistance of the concrete." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "076f1400d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ProtectivePoreRatio" ; + IFC4-PSD:nameAlias "Protective Pore Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:pf7573480d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the admixtures added to the concrete mix." ; + rdfs:label "AdmixturesDescription" ; + IFC4-PSD:definition "Description of the admixtures added to the concrete mix." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f7573480d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "AdmixturesDescription" ; + IFC4-PSD:nameAlias "Admixtures Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:WaterImpermeability a rdf:Property ; + rdfs:seeAlso :p01793300d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterImpermeability . + +:Workability a rdf:Property ; + rdfs:seeAlso :pfcb47f00d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Workability . + +:pf0302680d1ec11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum aggregate size of the concrete." ; + rdfs:label "MaxAggregateSize" ; + IFC4-PSD:definition "The maximum aggregate size of the concrete." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f0302680d1ec11e1800000215ad4efdf" ; + IFC4-PSD:name "MaxAggregateSize" ; + IFC4-PSD:nameAlias "Max Aggregate Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:MaxAggregateSize a rdf:Property ; + rdfs:seeAlso :pf0302680d1ec11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaxAggregateSize . diff --git a/converter/src/main/resources/pset/Pset_MaterialEnergy.ttl b/converter/src/main/resources/pset/Pset_MaterialEnergy.ttl new file mode 100644 index 00000000..add14629 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialEnergy.ttl @@ -0,0 +1,149 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ThermalConductivityTemperatureDerivative + a rdf:Property ; + rdfs:seeAlso :p1e156b00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalConductivityTemperatureDerivative . + +:SpecificHeatTemperatureDerivative + a rdf:Property ; + rdfs:seeAlso :p22da1f00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecificHeatTemperatureDerivative . + +:p181f8a00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal gradient coefficient for moisture capacity. Based on water vapor density." ; + rdfs:label "MoistureCapacityThermalGradient" ; + IFC4-PSD:definition "Thermal gradient coefficient for moisture capacity. Based on water vapor density." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "181f8a00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "MoistureCapacityThermalGradient" ; + IFC4-PSD:nameAlias "Moisture Capacity Thermal Gradient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:MoistureCapacityThermalGradient + a rdf:Property ; + rdfs:seeAlso :p181f8a00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MoistureCapacityThermalGradient . + +:p34bbc200d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fill pressure (e.g. for between-pane gas fills): the pressure exerted by a mass of gas confined in a constant volume." ; + rdfs:label "GasPressure" ; + IFC4-PSD:definition "Fill pressure (e.g. for between-pane gas fills): the pressure exerted by a mass of gas confined in a constant volume." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "34bbc200d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "GasPressure" ; + IFC4-PSD:nameAlias "Gas Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ViscosityTemperatureDerivative + a rdf:Property ; + rdfs:seeAlso :p1229a900d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ViscosityTemperatureDerivative . + +:VisibleRefractionIndex + a rdf:Property ; + rdfs:seeAlso :p28d00000d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleRefractionIndex . + +:p1e156b00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal conductivity temperature derivative." ; + rdfs:label "ThermalConductivityTemperatureDerivative" ; + IFC4-PSD:definition "Thermal conductivity temperature derivative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1e156b00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalConductivityTemperatureDerivative" ; + IFC4-PSD:nameAlias "Thermal Conductivity Temperature Derivative"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p2f5e7780d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Index of refraction (solar) defines the \"bending\" of the solar ray when it passes from one medium into another." ; + rdfs:label "SolarRefractionIndex" ; + IFC4-PSD:definition "Index of refraction (solar) defines the \"bending\" of the solar ray when it passes from one medium into another." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2f5e7780d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarRefractionIndex" ; + IFC4-PSD:nameAlias "Solar Refraction Index"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p1229a900d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Viscosity temperature derivative." ; + rdfs:label "ViscosityTemperatureDerivative" ; + IFC4-PSD:definition "Viscosity temperature derivative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1229a900d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ViscosityTemperatureDerivative" ; + IFC4-PSD:nameAlias "Viscosity Temperature Derivative"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:SolarRefractionIndex + a rdf:Property ; + rdfs:seeAlso :p2f5e7780d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarRefractionIndex . + +:Pset_MaterialEnergy a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended material properties for energy calculation purposes." ; + rdfs:label "Pset_MaterialEnergy" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of extended material properties for energy calculation purposes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialEnergy" ; + IFC4-PSD:propertyDef :p34bbc200d1ed11e1800000215ad4efdf , :p28d00000d1ed11e1800000215ad4efdf , :p1229a900d1ed11e1800000215ad4efdf , :p1e156b00d1ed11e1800000215ad4efdf , :p181f8a00d1ed11e1800000215ad4efdf , :p2f5e7780d1ed11e1800000215ad4efdf , :p22da1f00d1ed11e1800000215ad4efdf . + +:p22da1f00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Specific heat temperature derivative." ; + rdfs:label "SpecificHeatTemperatureDerivative" ; + IFC4-PSD:definition "Specific heat temperature derivative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "22da1f00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "SpecificHeatTemperatureDerivative" ; + IFC4-PSD:nameAlias "Specific Heat Temperature Derivative"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p28d00000d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Index of refraction (visible) defines the \"bending\" of the sola! r ray in the visible spectrum when it passes from one medium into another." ; + rdfs:label "VisibleRefractionIndex" ; + IFC4-PSD:definition "Index of refraction (visible) defines the \"bending\" of the sola! r ray in the visible spectrum when it passes from one medium into another." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "28d00000d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleRefractionIndex" ; + IFC4-PSD:nameAlias "Visible Refraction Index"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:GasPressure a rdf:Property ; + rdfs:seeAlso :p34bbc200d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GasPressure . diff --git a/converter/src/main/resources/pset/Pset_MaterialFuel.ttl b/converter/src/main/resources/pset/Pset_MaterialFuel.ttl new file mode 100644 index 00000000..262ed29f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialFuel.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_MaterialFuel a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended material properties of fuel energy typically used within the context of building services and flow distribution systems." ; + rdfs:label "Pset_MaterialFuel" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of extended material properties of fuel energy typically used within the context of building services and flow distribution systems." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialFuel" ; + IFC4-PSD:propertyDef :p3eddc080d1ed11e1800000215ad4efdf , :p4ef5a000d1ed11e1800000215ad4efdf , :p4a30ec00d1ed11e1800000215ad4efdf , :p44d3a180d1ed11e1800000215ad4efdf . + +:p4a30ec00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lower Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in vapor form in the combustion products." ; + rdfs:label "LowerHeatingValue" ; + IFC4-PSD:definition "Lower Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in vapor form in the combustion products." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4a30ec00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerHeatingValue" ; + IFC4-PSD:nameAlias "Lower Heating Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcHeatingValueMeasure + ] . + +:HigherHeatingValue a rdf:Property ; + rdfs:seeAlso :p4ef5a000d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HigherHeatingValue . + +:p4ef5a000d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Higher Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in liquid form in the combustion products." ; + rdfs:label "HigherHeatingValue" ; + IFC4-PSD:definition "Higher Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in liquid form in the combustion products." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4ef5a000d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "HigherHeatingValue" ; + IFC4-PSD:nameAlias "Higher Heating Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcHeatingValueMeasure + ] . + +:LowerHeatingValue a rdf:Property ; + rdfs:seeAlso :p4a30ec00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerHeatingValue . + +:CarbonContent a rdf:Property ; + rdfs:seeAlso :p44d3a180d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CarbonContent . + +:p44d3a180d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The carbon content in the fuel. This is measured in weight of carbon per unit weight of fuel and is therefore unitless." ; + rdfs:label "CarbonContent" ; + IFC4-PSD:definition "The carbon content in the fuel. This is measured in weight of carbon per unit weight of fuel and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "44d3a180d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "CarbonContent" ; + IFC4-PSD:nameAlias "Carbon Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p3eddc080d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Combustion temperature of the material when air is at 298 K and 100 kPa." ; + rdfs:label "CombustionTemperature" ; + IFC4-PSD:definition "Combustion temperature of the material when air is at 298 K and 100 kPa." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3eddc080d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "CombustionTemperature" ; + IFC4-PSD:nameAlias "Combustion Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CombustionTemperature + a rdf:Property ; + rdfs:seeAlso :p3eddc080d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CombustionTemperature . diff --git a/converter/src/main/resources/pset/Pset_MaterialHygroscopic.ttl b/converter/src/main/resources/pset/Pset_MaterialHygroscopic.ttl new file mode 100644 index 00000000..b659595e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialHygroscopic.ttl @@ -0,0 +1,113 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5ddc5280d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The vapor permeability relationship of air/material (typically value > 1), measured in low relative humidity (typically in 0/50 % RH)." ; + rdfs:label "LowerVaporResistanceFactor" ; + IFC4-PSD:definition "The vapor permeability relationship of air/material (typically value > 1), measured in low relative humidity (typically in 0/50 % RH)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5ddc5280d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerVaporResistanceFactor" ; + IFC4-PSD:nameAlias "Lower Vapor Resistance Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:MoistureDiffusivity a rdf:Property ; + rdfs:seeAlso :p6c2a6e80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MoistureDiffusivity . + +:p6c2a6e80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Moisture diffusivity is a transport property that is frequently used in the hygrothermal analysis of building envelope components." ; + rdfs:label "MoistureDiffusivity" ; + IFC4-PSD:definition "Moisture diffusivity is a transport property that is frequently used in the hygrothermal analysis of building envelope components." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6c2a6e80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "MoistureDiffusivity" ; + IFC4-PSD:nameAlias "Moisture Diffusivity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMoistureDiffusivityMeasure + ] . + +:p59179e80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The vapor permeability relationship of air/material (typically value > 1), measured in high relative humidity (typically in 95/50 % RH)." ; + rdfs:label "UpperVaporResistanceFactor" ; + IFC4-PSD:definition "The vapor permeability relationship of air/material (typically value > 1), measured in high relative humidity (typically in 95/50 % RH)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "59179e80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "UpperVaporResistanceFactor" ; + IFC4-PSD:nameAlias "Upper Vapor Resistance Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p67fe5100d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The rate of water vapor transmission per unit area per unit of vapor pressure differential under test conditions." ; + rdfs:label "VaporPermeability" ; + IFC4-PSD:definition "The rate of water vapor transmission per unit area per unit of vapor pressure differential under test conditions." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "67fe5100d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "VaporPermeability" ; + IFC4-PSD:nameAlias "Vapor Permeability"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVaporPermeabilityMeasure + ] . + +:LowerVaporResistanceFactor + a rdf:Property ; + rdfs:seeAlso :p5ddc5280d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerVaporResistanceFactor . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsothermalMoistureCapacity + a rdf:Property ; + rdfs:seeAlso :p63399d00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsothermalMoistureCapacity . + +:Pset_MaterialHygroscopic + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of hygroscopic properties of materials." ; + rdfs:label "Pset_MaterialHygroscopic" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of hygroscopic properties of materials." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialHygroscopic" ; + IFC4-PSD:propertyDef :p63399d00d1ed11e1800000215ad4efdf , :p59179e80d1ed11e1800000215ad4efdf , :p5ddc5280d1ed11e1800000215ad4efdf , :p67fe5100d1ed11e1800000215ad4efdf , :p6c2a6e80d1ed11e1800000215ad4efdf . + +:VaporPermeability a rdf:Property ; + rdfs:seeAlso :p67fe5100d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VaporPermeability . + +:p63399d00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Based on water vapor density." ; + rdfs:label "IsothermalMoistureCapacity" ; + IFC4-PSD:definition "Based on water vapor density." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "63399d00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "IsothermalMoistureCapacity" ; + IFC4-PSD:nameAlias "Isothermal Moisture Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIsothermalMoistureCapacityMeasure + ] . + +:UpperVaporResistanceFactor + a rdf:Property ; + rdfs:seeAlso :p59179e80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpperVaporResistanceFactor . diff --git a/converter/src/main/resources/pset/Pset_MaterialMechanical.ttl b/converter/src/main/resources/pset/Pset_MaterialMechanical.ttl new file mode 100644 index 00000000..44d4f164 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialMechanical.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ShearModulus a rdf:Property ; + rdfs:seeAlso :p806e6b80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearModulus . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ThermalExpansionCoefficient + a rdf:Property ; + rdfs:seeAlso :p8b290080d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalExpansionCoefficient . + +:p806e6b80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the shear modulus of elasticity of the material." ; + rdfs:label "ShearModulus" ; + IFC4-PSD:definition "A measure of the shear modulus of elasticity of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "806e6b80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ShearModulus" ; + IFC4-PSD:nameAlias "Shear Modulus"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcModulusOfElasticityMeasure + ] . + +:Pset_MaterialMechanical + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of mechanical material properties normally used for structural analysis purpose. It contains all properties which are independent of the actual material type." ; + rdfs:label "Pset_MaterialMechanical" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of mechanical material properties normally used for structural analysis purpose. It contains all properties which are independent of the actual material type." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialMechanical" ; + IFC4-PSD:propertyDef :p7b112100d1ed11e1800000215ad4efdf , :p806e6b80d1ed11e1800000215ad4efdf , :p8b290080d1ed11e1800000215ad4efdf , :p764c6d00d1ed11e1800000215ad4efdf , :p85331f80d1ed11e1800000215ad4efdf . + +:PoissonRatio a rdf:Property ; + rdfs:seeAlso :p85331f80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PoissonRatio . + +:DynamicViscosity a rdf:Property ; + rdfs:seeAlso :p764c6d00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DynamicViscosity . + +:p8b290080d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the expansion coefficient for warming up the material about one Kelvin." ; + rdfs:label "ThermalExpansionCoefficient" ; + IFC4-PSD:definition "A measure of the expansion coefficient for warming up the material about one Kelvin." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8b290080d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalExpansionCoefficient" ; + IFC4-PSD:nameAlias "Thermal Expansion Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalExpansionCoefficientMeasure + ] . + +:YoungModulus a rdf:Property ; + rdfs:seeAlso :p7b112100d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YoungModulus . + +:p7b112100d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the Young's modulus of elasticity of the material." ; + rdfs:label "YoungModulus" ; + IFC4-PSD:definition "A measure of the Young's modulus of elasticity of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7b112100d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "YoungModulus" ; + IFC4-PSD:nameAlias "Young Modulus"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcModulusOfElasticityMeasure + ] . + +:p764c6d00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the viscous resistance of the material." ; + rdfs:label "DynamicViscosity" ; + IFC4-PSD:definition "A measure of the viscous resistance of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "764c6d00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "DynamicViscosity" ; + IFC4-PSD:nameAlias "Dynamic Viscosity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDynamicViscosityMeasure + ] . + +:p85331f80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the lateral deformations in the elastic range." ; + rdfs:label "PoissonRatio" ; + IFC4-PSD:definition "A measure of the lateral deformations in the elastic range." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "85331f80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "PoissonRatio" ; + IFC4-PSD:nameAlias "Poisson Ratio"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_MaterialOptical.ttl b/converter/src/main/resources/pset/Pset_MaterialOptical.ttl new file mode 100644 index 00000000..1b8e27e9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialOptical.ttl @@ -0,0 +1,186 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pbd3a6280d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reflectance at normal incidence (visible): front side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the \"front\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + rdfs:label "VisibleReflectanceFront" ; + IFC4-PSD:definition "Reflectance at normal incidence (visible): front side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the \"front\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bd3a6280d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleReflectanceFront" ; + IFC4-PSD:nameAlias "Visible Reflectance Front"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pa72ca200d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal IR emissivity: back side. Defines the fraction of thermal energy emitted per unit area to \"blackbody\" at the same temperature, through the \"back\" side of the material." ; + rdfs:label "ThermalIrEmissivityBack" ; + IFC4-PSD:definition "Thermal IR emissivity: back side. Defines the fraction of thermal energy emitted per unit area to \"blackbody\" at the same temperature, through the \"back\" side of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a72ca200d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalIrEmissivityBack" ; + IFC4-PSD:nameAlias "Thermal Ir Emissivity Back"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:VisibleReflectanceFront + a rdf:Property ; + rdfs:seeAlso :pbd3a6280d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleReflectanceFront . + +:Pset_MaterialOptical + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of optical properties of materials." ; + rdfs:label "Pset_MaterialOptical" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of optical properties of materials." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialOptical" ; + IFC4-PSD:propertyDef :pbd3a6280d1ed11e1800000215ad4efdf , :pa72ca200d1ed11e1800000215ad4efdf , :pac89ec80d1ed11e1800000215ad4efdf , :pc3304380d1ed11e1800000215ad4efdf , :pc7f4f780d1ed11e1800000215ad4efdf , :p954aff00d1ed11e1800000215ad4efdf , :pa1cf5780d1ed11e1800000215ad4efdf , :pb7448180d1ed11e1800000215ad4efdf , :p9c720d00d1ed11e1800000215ad4efdf . + +:SolarReflectanceBack + a rdf:Property ; + rdfs:seeAlso :pc3304380d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarReflectanceBack . + +:SolarTransmittance a rdf:Property ; + rdfs:seeAlso :p9c720d00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarTransmittance . + +:VisibleReflectanceBack + a rdf:Property ; + rdfs:seeAlso :pb7448180d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleReflectanceBack . + +:ThermalIrTransmittance + a rdf:Property ; + rdfs:seeAlso :pa1cf5780d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalIrTransmittance . + +:pac89ec80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal IR emissivity: front side. Defines the fraction of thermal energy emitted per unit area to \"blackbody\" at the same temperature, through the \"front\" side of the material." ; + rdfs:label "ThermalIrEmissivityFront" ; + IFC4-PSD:definition "Thermal IR emissivity: front side. Defines the fraction of thermal energy emitted per unit area to \"blackbody\" at the same temperature, through the \"front\" side of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ac89ec80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalIrEmissivityFront" ; + IFC4-PSD:nameAlias "Thermal Ir Emissivity Front"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc7f4f780d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reflectance at normal incidence (solar): front side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the \"front\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + rdfs:label "SolarReflectanceFront" ; + IFC4-PSD:definition "Reflectance at normal incidence (solar): front side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the \"front\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c7f4f780d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarReflectanceFront" ; + IFC4-PSD:nameAlias "Solar Reflectance Front"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pc3304380d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reflectance at normal incidence (solar): back side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the \"back\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + rdfs:label "SolarReflectanceBack" ; + IFC4-PSD:definition "Reflectance at normal incidence (solar): back side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the \"back\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c3304380d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarReflectanceBack" ; + IFC4-PSD:nameAlias "Solar Reflectance Back"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pb7448180d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reflectance at normal incidence (visible): back side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the \"back\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + rdfs:label "VisibleReflectanceBack" ; + IFC4-PSD:definition "Reflectance at normal incidence (visible): back side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the \"back\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b7448180d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleReflectanceBack" ; + IFC4-PSD:nameAlias "Visible Reflectance Back"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p9c720d00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Transmittance at normal incidence (solar). Defines the fraction of solar radiation that passes through per unit area, perpendicular to the surface." ; + rdfs:label "SolarTransmittance" ; + IFC4-PSD:definition "Transmittance at normal incidence (solar). Defines the fraction of solar radiation that passes through per unit area, perpendicular to the surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9c720d00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "SolarTransmittance" ; + IFC4-PSD:nameAlias "Solar Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ThermalIrEmissivityBack + a rdf:Property ; + rdfs:seeAlso :pa72ca200d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalIrEmissivityBack . + +:pa1cf5780d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal IR transmittance at normal incidence. Defines the fraction of thermal energy that passes through per unit area, perpendicular to the surface." ; + rdfs:label "ThermalIrTransmittance" ; + IFC4-PSD:definition "Thermal IR transmittance at normal incidence. Defines the fraction of thermal energy that passes through per unit area, perpendicular to the surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a1cf5780d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalIrTransmittance" ; + IFC4-PSD:nameAlias "Thermal Ir Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p954aff00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Transmittance at normal incidence (visible). Defines the fraction of the visible spectrum of solar radiation that passes through per unit area, perpendicular to the surface." ; + rdfs:label "VisibleTransmittance" ; + IFC4-PSD:definition "Transmittance at normal incidence (visible). Defines the fraction of the visible spectrum of solar radiation that passes through per unit area, perpendicular to the surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "954aff00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleTransmittance" ; + IFC4-PSD:nameAlias "Visible Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:SolarReflectanceFront + a rdf:Property ; + rdfs:seeAlso :pc7f4f780d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarReflectanceFront . + +:ThermalIrEmissivityFront + a rdf:Property ; + rdfs:seeAlso :pac89ec80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalIrEmissivityFront . + +:VisibleTransmittance + a rdf:Property ; + rdfs:seeAlso :p954aff00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleTransmittance . diff --git a/converter/src/main/resources/pset/Pset_MaterialSteel.ttl b/converter/src/main/resources/pset/Pset_MaterialSteel.ttl new file mode 100644 index 00000000..81633c2b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialSteel.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe9ee7a00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the proportional stress of the material. It describes the stress before the first plastic deformation occurs and is commonly measured at a deformation of 0.01%." ; + rdfs:label "ProportionalStress" ; + IFC4-PSD:definition "A measure of the proportional stress of the material. It describes the stress before the first plastic deformation occurs and is commonly measured at a deformation of 0.01%." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e9ee7a00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "ProportionalStress" ; + IFC4-PSD:nameAlias "Proportional Stress"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:UltimateStress a rdf:Property ; + rdfs:seeAlso :pd9d69a80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UltimateStress . + +:Pset_MaterialSteel a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended mechanical properties related to steel (or other metallic and isotropic) materials." ; + rdfs:label "Pset_MaterialSteel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMaterial/Steel" ; + IFC4-PSD:definition "A set of extended mechanical properties related to steel (or other metallic and isotropic) materials." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialSteel" ; + IFC4-PSD:propertyDef :pd3e0b980d1ed11e1800000215ad4efdf , :pf541a580d1ed11e1800000215ad4efdf , :pefe45b00d1ed11e1800000215ad4efdf , :pe9ee7a00d1ed11e1800000215ad4efdf , :pd9d69a80d1ed11e1800000215ad4efdf , :pe4912f80d1ed11e1800000215ad4efdf , :pdf33e500d1ed11e1800000215ad4efdf . + +:pdf33e500d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the (engineering) strain at the state of ultimate stress of the material." ; + rdfs:label "UltimateStrain" ; + IFC4-PSD:definition "A measure of the (engineering) strain at the state of ultimate stress of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "df33e500d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "UltimateStrain" ; + IFC4-PSD:nameAlias "Ultimate Strain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pd9d69a80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the ultimate stress of the material." ; + rdfs:label "UltimateStress" ; + IFC4-PSD:definition "A measure of the ultimate stress of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d9d69a80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "UltimateStress" ; + IFC4-PSD:nameAlias "Ultimate Stress"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pefe45b00d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the permanent displacement, as in slip or twinning, which remains after the stress has been removed. Currently applied to a strain of 0.2% proportional stress of the material." ; + rdfs:label "PlasticStrain" ; + IFC4-PSD:definition "A measure of the permanent displacement, as in slip or twinning, which remains after the stress has been removed. Currently applied to a strain of 0.2% proportional stress of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "efe45b00d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "PlasticStrain" ; + IFC4-PSD:nameAlias "Plastic Strain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:HardeningModule a rdf:Property ; + rdfs:seeAlso :pe4912f80d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HardeningModule . + +:ProportionalStress a rdf:Property ; + rdfs:seeAlso :pe9ee7a00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProportionalStress . + +:pf541a580d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Measures of decrease in stress over long time intervals resulting from plastic flow. Different relaxation values for different initial stress levels for a material may be given. It describes the time dependent relative relaxation value for a given initial stress level at constant strain.\nRelating values are the \"RelaxationValue\". Related values are the \"InitialStress\"" ; + rdfs:label "Relaxations" ; + IFC4-PSD:definition "Measures of decrease in stress over long time intervals resulting from plastic flow. Different relaxation values for different initial stress levels for a material may be given. It describes the time dependent relative relaxation value for a given initial stress level at constant strain.\nRelating values are the \"RelaxationValue\". Related values are the \"InitialStress\"" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f541a580d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "Relaxations" ; + IFC4-PSD:nameAlias "Relaxations"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcNormalisedRatioMeasure ; + IFC4-PSD:definingValue IFC4:IfcNormalisedRatioMeasure + ] . + +:pe4912f80d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the hardening module of the material (slope of stress versus strain curve after yield range)." ; + rdfs:label "HardeningModule" ; + IFC4-PSD:definition "A measure of the hardening module of the material (slope of stress versus strain curve after yield range)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e4912f80d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "HardeningModule" ; + IFC4-PSD:nameAlias "Hardening Module"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcModulusOfElasticityMeasure + ] . + +:UltimateStrain a rdf:Property ; + rdfs:seeAlso :pdf33e500d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UltimateStrain . + +:YieldStress a rdf:Property ; + rdfs:seeAlso :pd3e0b980d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YieldStress . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Relaxations a rdf:Property ; + rdfs:seeAlso :pf541a580d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Relaxations . + +:pd3e0b980d1ed11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the yield stress (or characteristic 0.2 percent proof stress) of the material." ; + rdfs:label "YieldStress" ; + IFC4-PSD:definition "A measure of the yield stress (or characteristic 0.2 percent proof stress) of the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d3e0b980d1ed11e1800000215ad4efdf" ; + IFC4-PSD:name "YieldStress" ; + IFC4-PSD:nameAlias "Yield Stress"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:PlasticStrain a rdf:Property ; + rdfs:seeAlso :pefe45b00d1ed11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlasticStrain . diff --git a/converter/src/main/resources/pset/Pset_MaterialThermal.ttl b/converter/src/main/resources/pset/Pset_MaterialThermal.ttl new file mode 100644 index 00000000..9c483127 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialThermal.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ThermalConductivity a rdf:Property ; + rdfs:seeAlso :p17d3be80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalConductivity . + +:p11dddd80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The freezing point of the material (fluid)." ; + rdfs:label "FreezingPoint" ; + IFC4-PSD:definition "The freezing point of the material (fluid)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "11dddd80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "FreezingPoint" ; + IFC4-PSD:nameAlias "Freezing Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p07234880d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the specific heat of the material: heat energy absorbed per temperature unit." ; + rdfs:label "SpecificHeatCapacity" ; + IFC4-PSD:definition "Defines the specific heat of the material: heat energy absorbed per temperature unit." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "07234880d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "SpecificHeatCapacity" ; + IFC4-PSD:nameAlias "Specific Heat Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSpecificHeatCapacityMeasure + ] . + +:p0be7fc80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The boiling point of the material (fluid)." ; + rdfs:label "BoilingPoint" ; + IFC4-PSD:definition "The boiling point of the material (fluid)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0be7fc80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "BoilingPoint" ; + IFC4-PSD:nameAlias "Boiling Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:BoilingPoint a rdf:Property ; + rdfs:seeAlso :p0be7fc80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BoilingPoint . + +:FreezingPoint a rdf:Property ; + rdfs:seeAlso :p11dddd80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FreezingPoint . + +:p17d3be80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The rate at which thermal energy is transmitted through the material." ; + rdfs:label "ThermalConductivity" ; + IFC4-PSD:definition "The rate at which thermal energy is transmitted through the material." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "17d3be80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalConductivity" ; + IFC4-PSD:nameAlias "Thermal Conductivity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalConductivityMeasure + ] . + +:SpecificHeatCapacity + a rdf:Property ; + rdfs:seeAlso :p07234880d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecificHeatCapacity . + +:Pset_MaterialThermal + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of thermal material properties." ; + rdfs:label "Pset_MaterialThermal" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of thermal material properties." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialThermal" ; + IFC4-PSD:propertyDef :p0be7fc80d1ee11e1800000215ad4efdf , :p07234880d1ee11e1800000215ad4efdf , :p11dddd80d1ee11e1800000215ad4efdf , :p17d3be80d1ee11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_MaterialWater.ttl b/converter/src/main/resources/pset/Pset_MaterialWater.ttl new file mode 100644 index 00000000..5637b28a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialWater.ttl @@ -0,0 +1,146 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p3fc32200d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum water PH in a range from 0-14." ; + rdfs:label "PHLevel" ; + IFC4-PSD:definition "Maximum water PH in a range from 0-14." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3fc32200d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "PHLevel" ; + IFC4-PSD:nameAlias "PHLevel"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPHMeasure + ] . + +:p27530780d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water hardness as positive, multivalent ion concentration in the water (usually concentrations of calcium and magnesium ions in terms of calcium carbonate)." ; + rdfs:label "Hardness" ; + IFC4-PSD:definition "Water hardness as positive, multivalent ion concentration in the water (usually concentrations of calcium and magnesium ions in terms of calcium carbonate)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "27530780d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "Hardness" ; + IFC4-PSD:nameAlias "Hardness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIonConcentrationMeasure + ] . + +:p2cb05200d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum alkalinity concentration (maximum sum of concentrations of each of the negative ions substances measured as CaCO3)." ; + rdfs:label "AlkalinityConcentration" ; + IFC4-PSD:definition "Maximum alkalinity concentration (maximum sum of concentrations of each of the negative ions substances measured as CaCO3)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2cb05200d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "AlkalinityConcentration" ; + IFC4-PSD:nameAlias "Alkalinity Concentration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIonConcentrationMeasure + ] . + +:PHLevel a rdf:Property ; + rdfs:seeAlso :p3fc32200d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PHLevel . + +:Hardness a rdf:Property ; + rdfs:seeAlso :p27530780d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Hardness . + +:p3afe6e00d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the dissolved solids to the total amount of water. This is measured in weight of dissolved solids per weight of water and is therefore unitless." ; + rdfs:label "DissolvedSolidsContent" ; + IFC4-PSD:definition "Fraction of the dissolved solids to the total amount of water. This is measured in weight of dissolved solids per weight of water and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3afe6e00d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "DissolvedSolidsContent" ; + IFC4-PSD:nameAlias "Dissolved Solids Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:AcidityConcentration + a rdf:Property ; + rdfs:seeAlso :p320d9c80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcidityConcentration . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsPotable a rdf:Property ; + rdfs:seeAlso :p215d2680d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsPotable . + +:AlkalinityConcentration + a rdf:Property ; + rdfs:seeAlso :p2cb05200d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AlkalinityConcentration . + +:p3639ba00d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of impurities such as dust to the total amount of water. This is measured in weight of impurities per weight of water and is therefore unitless." ; + rdfs:label "ImpuritiesContent" ; + IFC4-PSD:definition "Fraction of impurities such as dust to the total amount of water. This is measured in weight of impurities per weight of water and is therefore unitless." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3639ba00d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "ImpuritiesContent" ; + IFC4-PSD:nameAlias "Impurities Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p320d9c80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum CaCO3 equivalent that would neutralize the acid." ; + rdfs:label "AcidityConcentration" ; + IFC4-PSD:definition "Maximum CaCO3 equivalent that would neutralize the acid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "320d9c80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "AcidityConcentration" ; + IFC4-PSD:nameAlias "Acidity Concentration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIonConcentrationMeasure + ] . + +:DissolvedSolidsContent + a rdf:Property ; + rdfs:seeAlso :p3afe6e00d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DissolvedSolidsContent . + +:ImpuritiesContent a rdf:Property ; + rdfs:seeAlso :p3639ba00d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ImpuritiesContent . + +:Pset_MaterialWater a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of extended material properties for of water typically used within the context of building services and flow distribution systems." ; + rdfs:label "Pset_MaterialWater" ; + IFC4-PSD:applicableClass IFC4:IfcMaterial ; + IFC4-PSD:applicableTypeValue "IfcMaterial" ; + IFC4-PSD:definition "A set of extended material properties for of water typically used within the context of building services and flow distribution systems." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialWater" ; + IFC4-PSD:propertyDef :p3fc32200d1ee11e1800000215ad4efdf , :p2cb05200d1ee11e1800000215ad4efdf , :p320d9c80d1ee11e1800000215ad4efdf , :p3afe6e00d1ee11e1800000215ad4efdf , :p3639ba00d1ee11e1800000215ad4efdf , :p27530780d1ee11e1800000215ad4efdf , :p215d2680d1ee11e1800000215ad4efdf . + +:p215d2680d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If TRUE, then the water is considered potable." ; + rdfs:label "IsPotable" ; + IFC4-PSD:definition "If TRUE, then the water is considered potable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "215d2680d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "IsPotable" ; + IFC4-PSD:nameAlias "Is Potable"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_MaterialWood.ttl b/converter/src/main/resources/pset/Pset_MaterialWood.ttl new file mode 100644 index 00000000..ffc9f3ae --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialWood.ttl @@ -0,0 +1,178 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:MoistureContent a rdf:Property ; + rdfs:seeAlso :p67b28580d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MoistureContent . + +:Pset_MaterialWood a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of properties applicable to wood-based materials that specify kind and grade of material as well as moisture related parameters." ; + rdfs:label "Pset_MaterialWood" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMaterial/Wood" ; + IFC4-PSD:definition "This is a collection of properties applicable to wood-based materials that specify kind and grade of material as well as moisture related parameters." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialWood" ; + IFC4-PSD:propertyDef :p494c8a00d1ee11e1800000215ad4efdf , :p6bdea300d1ee11e1800000215ad4efdf , :p70a35700d1ee11e1800000215ad4efdf , :p63866800d1ee11e1800000215ad4efdf , :p54071f00d1ee11e1800000215ad4efdf , :p5f5a4a80d1ee11e1800000215ad4efdf , :p4ea9d480d1ee11e1800000215ad4efdf , :p59646980d1ee11e1800000215ad4efdf , :p67b28580d1ee11e1800000215ad4efdf . + +:StrengthGrade a rdf:Property ; + rdfs:seeAlso :p4ea9d480d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StrengthGrade . + +:AppearanceGrade a rdf:Property ; + rdfs:seeAlso :p54071f00d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AppearanceGrade . + +:Layup a rdf:Property ; + rdfs:seeAlso :p59646980d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Layup . + +:DimensionalChangeCoefficient + a rdf:Property ; + rdfs:seeAlso :p6bdea300d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DimensionalChangeCoefficient . + +:ThicknessSwelling a rdf:Property ; + rdfs:seeAlso :p70a35700d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThicknessSwelling . + +:p4ea9d480d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Grade with respect to mechanical strength and stiffness." ; + rdfs:label "StrengthGrade" ; + IFC4-PSD:definition "Grade with respect to mechanical strength and stiffness." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4ea9d480d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "StrengthGrade" ; + IFC4-PSD:nameAlias "Strength Grade"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p59646980d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Configuration of the lamination." ; + rdfs:label "Layup" ; + IFC4-PSD:definition "Configuration of the lamination." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "59646980d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "Layup" ; + IFC4-PSD:nameAlias "Layup"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p5f5a4a80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of layers." ; + rdfs:label "Layers" ; + IFC4-PSD:definition "Number of layers." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5f5a4a80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "Layers" ; + IFC4-PSD:nameAlias "Layers"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p494c8a00d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wood species of a solid wood or laminated wood product." ; + rdfs:label "Species" ; + IFC4-PSD:definition "Wood species of a solid wood or laminated wood product." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "494c8a00d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "Species" ; + IFC4-PSD:nameAlias "Species"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p70a35700d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Swelling ratio relative to board depth." ; + rdfs:label "ThicknessSwelling" ; + IFC4-PSD:definition "Swelling ratio relative to board depth." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "70a35700d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "ThicknessSwelling" ; + IFC4-PSD:nameAlias "Thickness Swelling"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Plies a rdf:Property ; + rdfs:seeAlso :p63866800d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Plies . + +:p67b28580d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total weight of moisture relative to oven-dried weight of the wood." ; + rdfs:label "MoistureContent" ; + IFC4-PSD:definition "Total weight of moisture relative to oven-dried weight of the wood." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "67b28580d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "MoistureContent" ; + IFC4-PSD:nameAlias "Moisture Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p6bdea300d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weighted dimensional change coefficient, relative to 1% change in moisture content." ; + rdfs:label "DimensionalChangeCoefficient" ; + IFC4-PSD:definition "Weighted dimensional change coefficient, relative to 1% change in moisture content." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6bdea300d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "DimensionalChangeCoefficient" ; + IFC4-PSD:nameAlias "Dimensional Change Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p63866800d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of plies." ; + rdfs:label "Plies" ; + IFC4-PSD:definition "Number of plies." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "63866800d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "Plies" ; + IFC4-PSD:nameAlias "Plies"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p54071f00d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Grade with respect to visual quality." ; + rdfs:label "AppearanceGrade" ; + IFC4-PSD:definition "Grade with respect to visual quality." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "54071f00d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "AppearanceGrade" ; + IFC4-PSD:nameAlias "Appearance Grade"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Layers a rdf:Property ; + rdfs:seeAlso :p5f5a4a80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Layers . + +:Species a rdf:Property ; + rdfs:seeAlso :p494c8a00d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Species . diff --git a/converter/src/main/resources/pset/Pset_MaterialWoodBasedBeam.ttl b/converter/src/main/resources/pset/Pset_MaterialWoodBasedBeam.ttl new file mode 100644 index 00000000..1a717131 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialWoodBasedBeam.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:InPlaneNegative a rdf:Property ; + rdfs:seeAlso :pcd9f0d00d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InPlaneNegative . + +:OutOfPlane a rdf:Property ; + rdfs:seeAlso :p2078c480d1ef11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutOfPlane . + +:p7dc04600d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; tension zone of unbalanced layups is stressed in tension." ; + rdfs:label "InPlane" ; + IFC4-PSD:definition "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; tension zone of unbalanced layups is stressed in tension." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7dc04600d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "InPlane" ; + IFC4-PSD:nameAlias "In Plane"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:p7862fb80d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." ; + rdfs:label "ApplicableStructuralDesignMethod" ; + IFC4-PSD:definition "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7862fb80d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "ApplicableStructuralDesignMethod" ; + IFC4-PSD:nameAlias "Applicable Structural Design Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ApplicableStructuralDesignMethod + a rdf:Property ; + rdfs:seeAlso :p7862fb80d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ApplicableStructuralDesignMethod . + +:p2078c480d1ef11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to out-of-plane load, i.e. bending about the weak axis." ; + rdfs:label "OutOfPlane" ; + IFC4-PSD:definition "Mechanical properties with respect to out-of-plane load, i.e. bending about the weak axis." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2078c480d1ef11e1800000215ad4efdf" ; + IFC4-PSD:name "OutOfPlane" ; + IFC4-PSD:nameAlias "Out Of Plane"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:Pset_MaterialWoodBasedBeam + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of mechanical properties applicable to wood-based materials for beam-like products, especially laminated materials like glulam and LVL.\nAnisotropy of such materials is taken into account by different properties according to grain direction and load types.\n\nAll values shall be given for a standardized service condition, a standardized load duration and a standardized reference size of the member according to local design codes.\n\nNOTE: In cases where mechanical material properties are graduated for different given reference sizes, separate instances of IfcExtendedMaterialProperties and IfcMaterial have to be used for each required graduation. Mechanically differing versions of a material are treated as different materials.\n\nReferences to the orientation of grain or lay-up correspond to material orientation given by geometrical or topological representation of element objects or types, especially IfcMemberType and IfcStructuralMember." ; + rdfs:label "Pset_MaterialWoodBasedBeam" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMaterial/Wood" ; + IFC4-PSD:definition "This is a collection of mechanical properties applicable to wood-based materials for beam-like products, especially laminated materials like glulam and LVL.\nAnisotropy of such materials is taken into account by different properties according to grain direction and load types.\n\nAll values shall be given for a standardized service condition, a standardized load duration and a standardized reference size of the member according to local design codes.\n\nNOTE: In cases where mechanical material properties are graduated for different given reference sizes, separate instances of IfcExtendedMaterialProperties and IfcMaterial have to be used for each required graduation. Mechanically differing versions of a material are treated as different materials.\n\nReferences to the orientation of grain or lay-up correspond to material orientation given by geometrical or topological representation of element objects or types, especially IfcMemberType and IfcStructuralMember." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialWoodBasedBeam" ; + IFC4-PSD:propertyDef :pcd9f0d00d1ee11e1800000215ad4efdf , :p7dc04600d1ee11e1800000215ad4efdf , :p7862fb80d1ee11e1800000215ad4efdf , :p2078c480d1ef11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pcd9f0d00d1ee11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; compression zone of unbalanced layups is stressed in tension." ; + rdfs:label "InPlaneNegative" ; + IFC4-PSD:definition "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; compression zone of unbalanced layups is stressed in tension." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cd9f0d00d1ee11e1800000215ad4efdf" ; + IFC4-PSD:name "InPlaneNegative" ; + IFC4-PSD:nameAlias "In Plane Negative"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:InPlane a rdf:Property ; + rdfs:seeAlso :p7dc04600d1ee11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InPlane . diff --git a/converter/src/main/resources/pset/Pset_MaterialWoodBasedPanel.ttl b/converter/src/main/resources/pset/Pset_MaterialWoodBasedPanel.ttl new file mode 100644 index 00000000..54fcdc7c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MaterialWoodBasedPanel.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InPlane a rdf:Property ; + rdfs:seeAlso :p7b122080d1ef11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InPlane . + +:p7b122080d1ef11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to in-plane load, i.e. for function as a membrane." ; + rdfs:label "InPlane" ; + IFC4-PSD:definition "Mechanical properties with respect to in-plane load, i.e. for function as a membrane." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7b122080d1ef11e1800000215ad4efdf" ; + IFC4-PSD:name "InPlane" ; + IFC4-PSD:nameAlias "In Plane"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:pe52ac580d1ef11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to out-of-plane load, i.e. for function as a plate; tension zone of unbalanced layups is stressed in tension." ; + rdfs:label "OutOfPlane" ; + IFC4-PSD:definition "Mechanical properties with respect to out-of-plane load, i.e. for function as a plate; tension zone of unbalanced layups is stressed in tension." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e52ac580d1ef11e1800000215ad4efdf" ; + IFC4-PSD:name "OutOfPlane" ; + IFC4-PSD:nameAlias "Out Of Plane"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:p75b4d600d1ef11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." ; + rdfs:label "ApplicableStructuralDesignMethod" ; + IFC4-PSD:definition "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "75b4d600d1ef11e1800000215ad4efdf" ; + IFC4-PSD:name "ApplicableStructuralDesignMethod" ; + IFC4-PSD:nameAlias "Applicable Structural Design Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:OutOfPlaneNegative a rdf:Property ; + rdfs:seeAlso :p510d2e00d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutOfPlaneNegative . + +:p510d2e00d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical properties with respect to out-of-plane load i.e. for function as a plate; compression zone of unbalanced layups is stressed in tension." ; + rdfs:label "OutOfPlaneNegative" ; + IFC4-PSD:definition "Mechanical properties with respect to out-of-plane load i.e. for function as a plate; compression zone of unbalanced layups is stressed in tension." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "510d2e00d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "OutOfPlaneNegative" ; + IFC4-PSD:nameAlias "Out Of Plane Negative"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypeComplexProperty ] . + +:Pset_MaterialWoodBasedPanel + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of mechanical properties related to wood-based materials for panel-like products like plywood or OSB. The propositions given above for wood-based beam materials with respect to anisotropy, strength graduation according to element sizes (especially panel thickness) apply accordingly." ; + rdfs:label "Pset_MaterialWoodBasedPanel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMaterial/Wood" ; + IFC4-PSD:definition "This is a collection of mechanical properties related to wood-based materials for panel-like products like plywood or OSB. The propositions given above for wood-based beam materials with respect to anisotropy, strength graduation according to element sizes (especially panel thickness) apply accordingly." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MaterialWoodBasedPanel" ; + IFC4-PSD:propertyDef :p75b4d600d1ef11e1800000215ad4efdf , :p510d2e00d1f011e1800000215ad4efdf , :p7b122080d1ef11e1800000215ad4efdf , :pe52ac580d1ef11e1800000215ad4efdf . + +:ApplicableStructuralDesignMethod + a rdf:Property ; + rdfs:seeAlso :p75b4d600d1ef11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ApplicableStructuralDesignMethod . + +:OutOfPlane a rdf:Property ; + rdfs:seeAlso :pe52ac580d1ef11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutOfPlane . diff --git a/converter/src/main/resources/pset/Pset_MechanicalFastenerBolt.ttl b/converter/src/main/resources/pset/Pset_MechanicalFastenerBolt.ttl new file mode 100644 index 00000000..37bdbbbe --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MechanicalFastenerBolt.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe7d9ea80d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal diameter of the thread, if different from the bolt's overall nominal diameter" ; + rdfs:label "ThreadDiameter" ; + IFC4-PSD:definition "Nominal diameter of the thread, if different from the bolt's overall nominal diameter" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e7d9ea80d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "ThreadDiameter" ; + IFC4-PSD:nameAlias "Thread Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ThreadLength a rdf:Property ; + rdfs:seeAlso :pee686200d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThreadLength . + +:pf45e4300d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Count of nuts to be mounted on one bolt" ; + rdfs:label "NutsCount" ; + IFC4-PSD:definition "Count of nuts to be mounted on one bolt" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f45e4300d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "NutsCount" ; + IFC4-PSD:nameAlias "Nuts Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:p0b9d3080d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Shape of the nut, e.g. 'Hexagon', 'Cap', 'Castle', 'Wing'" ; + rdfs:label "NutShape" ; + IFC4-PSD:definition "Shape of the nut, e.g. 'Hexagon', 'Cap', 'Castle', 'Wing'" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0b9d3080d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "NutShape" ; + IFC4-PSD:nameAlias "Nut Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:WashersCount a rdf:Property ; + rdfs:seeAlso :pfa542400d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WashersCount . + +:p1d7ed380d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Shape of the washers, e.g. 'Standard', 'Square'" ; + rdfs:label "WasherShape" ; + IFC4-PSD:definition "Shape of the washers, e.g. 'Standard', 'Square'" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1d7ed380d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "WasherShape" ; + IFC4-PSD:nameAlias "Washer Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pfa542400d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Count of washers to be mounted on one bolt" ; + rdfs:label "WashersCount" ; + IFC4-PSD:definition "Count of washers to be mounted on one bolt" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fa542400d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "WashersCount" ; + IFC4-PSD:nameAlias "Washers Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pee686200d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal length of the thread" ; + rdfs:label "ThreadLength" ; + IFC4-PSD:definition "Nominal length of the thread" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ee686200d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "ThreadLength" ; + IFC4-PSD:nameAlias "Thread Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pff18d800d1f011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Shape of the bolt's head, e.g. 'Hexagon', 'Countersunk', 'Cheese'" ; + rdfs:label "HeadShape" ; + IFC4-PSD:definition "Shape of the bolt's head, e.g. 'Hexagon', 'Countersunk', 'Cheese'" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ff18d800d1f011e1800000215ad4efdf" ; + IFC4-PSD:name "HeadShape" ; + IFC4-PSD:nameAlias "Head Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ThreadDiameter a rdf:Property ; + rdfs:seeAlso :pe7d9ea80d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThreadDiameter . + +:Pset_MechanicalFastenerBolt + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties related to bolt-type fasteners. The properties of a whole set with bolt, washers and nut may be provided. Note, it is usually not necessary to transmit these properties in case of standardized bolts. Instead, the standard is referred to." ; + rdfs:label "Pset_MechanicalFastenerBolt" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcMechanicalFastener/BOLT" ; + IFC4-PSD:definition "Properties related to bolt-type fasteners. The properties of a whole set with bolt, washers and nut may be provided. Note, it is usually not necessary to transmit these properties in case of standardized bolts. Instead, the standard is referred to." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MechanicalFastenerBolt" ; + IFC4-PSD:propertyDef :pee686200d1f011e1800000215ad4efdf , :pf45e4300d1f011e1800000215ad4efdf , :pff18d800d1f011e1800000215ad4efdf , :pe7d9ea80d1f011e1800000215ad4efdf , :p0b9d3080d1f111e1800000215ad4efdf , :pfa542400d1f011e1800000215ad4efdf , :p05a74f80d1f111e1800000215ad4efdf , :p1d7ed380d1f111e1800000215ad4efdf . + +:WasherShape a rdf:Property ; + rdfs:seeAlso :p1d7ed380d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WasherShape . + +:p05a74f80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If applicable, shape of the head's slot, e.g. 'Slot', 'Allen'" ; + rdfs:label "KeyShape" ; + IFC4-PSD:definition "If applicable, shape of the head's slot, e.g. 'Slot', 'Allen'" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "05a74f80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "KeyShape" ; + IFC4-PSD:nameAlias "Key Shape"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:NutsCount a rdf:Property ; + rdfs:seeAlso :pf45e4300d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NutsCount . + +:KeyShape a rdf:Property ; + rdfs:seeAlso :p05a74f80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:KeyShape . + +:NutShape a rdf:Property ; + rdfs:seeAlso :p0b9d3080d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NutShape . + +:HeadShape a rdf:Property ; + rdfs:seeAlso :pff18d800d1f011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeadShape . diff --git a/converter/src/main/resources/pset/Pset_MedicalDeviceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_MedicalDeviceTypeCommon.ttl new file mode 100644 index 00000000..bcdcd9b0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MedicalDeviceTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Status a rdf:Property ; + rdfs:seeAlso :p2ff90d00d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Pset_MedicalDeviceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Medical device type common attributes." ; + rdfs:label "Pset_MedicalDeviceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcMedicalDevice ; + IFC4-PSD:applicableTypeValue "IfcMedicalDevice" ; + IFC4-PSD:definition "Medical device type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "医療機器に関する共通プロパティ属性設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MedicalDeviceTypeCommon" ; + IFC4-PSD:propertyDef :p2ff90d00d1f111e1800000215ad4efdf , :p2a032c00d1f111e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2a032c00d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p2ff90d00d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2ff90d00d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p2a032c00d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "2a032c00d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_MemberCommon.ttl b/converter/src/main/resources/pset/Pset_MemberCommon.ttl index 188c75af..7a92b0e3 100644 --- a/converter/src/main/resources/pset/Pset_MemberCommon.ttl +++ b/converter/src/main/resources/pset/Pset_MemberCommon.ttl @@ -1,219 +1,178 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_MemberCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; -. -:Pset_MemberCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcMember" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcMember." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcMember"@fr-FR ; - IFC4-PSD:definitionAlias "IfcMemberオブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcMember实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_MemberCommon" ; - IFC4-PSD:propertyDef :_499a5480d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4f903580d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5dde5180d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_646cc900d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_69317d00d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_6e8ec780d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7484a880d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_7a7a8980d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_80706a80d1f111e1800000215ad4efdf ; -. -:_499a5480d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "499a5480d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_4f903580d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "4f903580d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_5dde5180d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Clear span for this object. -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence.""" ; - IFC4-PSD:definitionAlias "German-description-2"@de-DE ; - IFC4-PSD:definitionAlias "Portée libre. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; - IFC4-PSD:definitionAlias "このオブジェクトの全長。"@ja-JP ; - IFC4-PSD:definitionAlias """该对象的净跨度。 -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"""@zh-CN ; - IFC4-PSD:ifdguid "5dde5180d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Span" ; - IFC4-PSD:nameAlias "PorteeLibre"@fr-FR ; - IFC4-PSD:nameAlias "Spannweite"@de-DE ; - IFC4-PSD:nameAlias "全長"@ja-JP ; - IFC4-PSD:nameAlias "跨度"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_646cc900d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Slope angle - relative to horizontal (0.0 degrees). -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence.""" ; - IFC4-PSD:definitionAlias "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; - IFC4-PSD:definitionAlias "German-description-3"@de-DE ; - IFC4-PSD:definitionAlias "傾斜角度。水平を0度とする。"@ja-JP ; - IFC4-PSD:definitionAlias """相对于水平(0.0度)方向的坡度角。 -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"""@zh-CN ; - IFC4-PSD:ifdguid "646cc900d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Slope" ; - IFC4-PSD:nameAlias "Inclinaison"@fr-FR ; - IFC4-PSD:nameAlias "Neigungswinkel"@de-DE ; - IFC4-PSD:nameAlias "傾斜"@ja-JP ; - IFC4-PSD:nameAlias "坡度"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_69317d00d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Rotation against the longitudinal axis - relative to the global Z direction for all members that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.) -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. -Note: new property in IFC4.""" ; - IFC4-PSD:definitionAlias "German-description-4"@de-DE ; - IFC4-PSD:definitionAlias "Rotation autour de l'axe longitudinal - relativement à l'axe Z pour toutes les membrures qui ne sont pas verticales relativement au repère absolu (la direction du profil est celle de l'axe Z si la valeur de la propriété est 0). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Note : nouvelle propriété de la version IFC2x4."@fr-FR ; - IFC4-PSD:definitionAlias "オブジェクトの長軸に対する回転。"@ja-JP ; - IFC4-PSD:definitionAlias """相对于纵轴的旋转角。对全局坐标系中的非垂直构件,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。) -该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。 -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:ifdguid "69317d00d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Roll" ; - IFC4-PSD:nameAlias "Kippwinkel"@de-DE ; - IFC4-PSD:nameAlias "RotationAutourAxeLongitudinal"@fr-FR ; - IFC4-PSD:nameAlias "回転"@ja-JP ; - IFC4-PSD:nameAlias "转角"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_6e8ec780d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; - IFC4-PSD:ifdguid "6e8ec780d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_7484a880d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -Here the total thermal transmittance coefficient through the member within the direction of the thermal flow (including all materials). -Note: new property in IFC4.""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la membrure dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示该构件在传热方向上的整体导热系数(包括所有材料)。 -注:IFC2x4新添属性"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここではメンバーオブジェクトを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "7484a880d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_7a7a8980d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "7a7a8980d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_80706a80d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for this object. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "80706a80d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:Span a rdf:Property ; + rdfs:seeAlso :p5dde5180d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Span . + +:p7a7a8980d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , ""@en , "表示该对象是否需要承重。"@zh-CN ; + IFC4-PSD:ifdguid "7a7a8980d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "是否承重"@zh-CN , "Porteur"@fr-FR , "耐力部材"@ja-JP , "Tragendes Bauteil"@de-DE , "Load Bearing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7484a880d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the member within the direction of the thermal flow (including all materials).\nNote: new property in IFC4." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the member within the direction of the thermal flow (including all materials).\nNote: new property in IFC4." ; + IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la membrure dans la direction du flux thermique (tous matériaux inclus). Nouvelle propriété de la version 2x4."@fr-FR , "材料的导热系数(U值)。\n表示该构件在传热方向上的整体导热系数(包括所有材料)。\n注:IFC2x4新添属性"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Balkens (in Richtung des Wärmeflusses), angegeben ohne den inneren und äußeren Wärmeübergangswiderstand."@de-DE , "熱貫流率U値。ここではメンバーオブジェクトを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7484a880d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "导热系数"@zh-CN , "熱貫流率"@ja-JP , "Thermal Transmittance"@en , "U-Wert"@de-DE , "TransmissionThermique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p499a5480d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p499a5480d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , ""@en ; + IFC4-PSD:ifdguid "499a5480d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p7484a880d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p80706a80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias ""@en , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "80706a80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Fire Rating"@en , "ResistanceAuFeu"@fr-FR , "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE , "耐火等級"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p69317d00d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Rotation against the longitudinal axis - relative to the global Z direction for all members that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.)\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence.\nNote: new property in IFC4." ; + rdfs:label "Roll" ; + IFC4-PSD:definition "Rotation against the longitudinal axis - relative to the global Z direction for all members that are non-vertical in regard to the global coordinate system (Profile direction equals global Z is Roll = 0.)\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence.\nNote: new property in IFC4." ; + IFC4-PSD:definitionAlias "German-description-4"@de-DE , "相对于纵轴的旋转角。对全局坐标系中的非垂直构件,该属性为相对于Z轴的角度。(若轮廓方向在Z轴上,则转角为0。)\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。\n注:IFC2x4新添属性"@zh-CN , "Rotation autour de l'axe longitudinal - relativement à l'axe Z pour toutes les membrures qui ne sont pas verticales relativement au repère absolu (la direction du profil est celle de l'axe Z si la valeur de la propriété est 0). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Note : nouvelle propriété de la version IFC2x4."@fr-FR , ""@en , "オブジェクトの長軸に対する回転。"@ja-JP ; + IFC4-PSD:ifdguid "69317d00d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Roll" ; + IFC4-PSD:nameAlias "Kippwinkel"@de-DE , "转角"@zh-CN , "RotationAutourAxeLongitudinal"@fr-FR , "回転"@ja-JP , "Roll"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Slope a rdf:Property ; + rdfs:seeAlso :p646cc900d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Slope . + +:p4f903580d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; + IFC4-PSD:ifdguid "4f903580d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Status"@de-DE , "状態"@ja-JP , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p646cc900d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Slope angle - relative to horizontal (0.0 degrees).\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "Slope" ; + IFC4-PSD:definition "Slope angle - relative to horizontal (0.0 degrees).\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "German-description-3"@de-DE , "傾斜角度。水平を0度とする。"@ja-JP , "相对于水平(0.0度)方向的坡度角。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"@zh-CN , ""@en , "Angle d'inclinaison avec l'horizontale (0 degrés). Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; + IFC4-PSD:ifdguid "646cc900d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Slope" ; + IFC4-PSD:nameAlias "傾斜"@ja-JP , "Neigungswinkel"@de-DE , "Inclinaison"@fr-FR , "Slope"@en , "坡度"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p4f903580d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p6e8ec780d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , ""@en , "表示该图元是否设计为外部构件。若是,则该图元为外部图元,朝向建筑物的外部。"@zh-CN ; + IFC4-PSD:ifdguid "6e8ec780d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "外部区分"@ja-JP , "EstExterieur"@fr-FR , "是否外部构件"@zh-CN , "Is External"@en , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_MemberCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcMember." ; + rdfs:label "Pset_MemberCommon" ; + IFC4-PSD:applicableClass IFC4:IfcMember ; + IFC4-PSD:applicableTypeValue "IfcMember" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcMember." ; + IFC4-PSD:definitionAlias "IfcMemberオブジェクトに関する共通プロパティセット定義。"@ja-JP , ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcMember"@fr-FR , "所有IfcMember实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MemberCommon" ; + IFC4-PSD:propertyDef :p5dde5180d1f111e1800000215ad4efdf , :p499a5480d1f111e1800000215ad4efdf , :p7484a880d1f111e1800000215ad4efdf , :p80706a80d1f111e1800000215ad4efdf , :p69317d00d1f111e1800000215ad4efdf , :p6e8ec780d1f111e1800000215ad4efdf , :p7a7a8980d1f111e1800000215ad4efdf , :p646cc900d1f111e1800000215ad4efdf , :p4f903580d1f111e1800000215ad4efdf . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p6e8ec780d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:Roll a rdf:Property ; + rdfs:seeAlso :p69317d00d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Roll . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p80706a80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p5dde5180d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear span for this object.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "Span" ; + IFC4-PSD:definition "Clear span for this object.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Portée libre. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "该对象的净跨度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。对CAD等几何编辑程序,该属性应为只写类型。"@zh-CN , "German-description-2"@de-DE , ""@en , "このオブジェクトの全長。"@ja-JP ; + IFC4-PSD:ifdguid "5dde5180d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Span" ; + IFC4-PSD:nameAlias "全長"@ja-JP , "PorteeLibre"@fr-FR , "跨度"@zh-CN , "Span"@en , "Spannweite"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p7a7a8980d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . diff --git a/converter/src/main/resources/pset/Pset_MotorConnectionTypeCommon.ttl b/converter/src/main/resources/pset/Pset_MotorConnectionTypeCommon.ttl new file mode 100644 index 00000000..71f21870 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_MotorConnectionTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p8c5c2c80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8c5c2c80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照"@ja-JP , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_MotorConnectionTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for motor connections. HISTORY: Added in IFC4." ; + rdfs:label "Pset_MotorConnectionTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcMotorConnection ; + IFC4-PSD:applicableTypeValue "IfcMotorConnection" ; + IFC4-PSD:definition "Common properties for motor connections. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "モーター接続の共通プロパティ。\nIFC4にて追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_MotorConnectionTypeCommon" ; + IFC4-PSD:propertyDef :p92eaa400d1f111e1800000215ad4efdf , :p8c5c2c80d1f111e1800000215ad4efdf . + +:p92eaa400d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "92eaa400d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p8c5c2c80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p92eaa400d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_OpeningElementCommon.ttl b/converter/src/main/resources/pset/Pset_OpeningElementCommon.ttl index a6325b13..cb3721a5 100644 --- a/converter/src/main/resources/pset/Pset_OpeningElementCommon.ttl +++ b/converter/src/main/resources/pset/Pset_OpeningElementCommon.ttl @@ -1,120 +1,110 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_OpeningElementCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . +:FireExit a rdf:Property ; + rdfs:seeAlso :pc0cfe880d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:pc0cfe880d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." ; + IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX)."@fr-FR , ""@en , "このオブジェクト(開口)が火災の場合に出口として使われるように設計されているかどうかを示すブーリアン値。(TRUE)はい、(FALSE)いいえ。\nここに、空間(例えば廊下)は、例えば火災避難目的のために出口空間として使われるよう設計されているかどうか。"@ja-JP ; + IFC4-PSD:ifdguid "c0cfe880d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "Sortie de secours"@fr-FR , "Fire Exit"@en , "非常口区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pbada0780d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of the purpose for that opening, e.g. 'ventilation', 'access', etc." ; + rdfs:label "Purpose" ; + IFC4-PSD:definition "Indication of the purpose for that opening, e.g. 'ventilation', 'access', etc." ; + IFC4-PSD:definitionAlias "Indication du motif de l'ouverture (ventilation, accès, etc.)."@fr-FR , ""@en , "開口の目的を示す文字列。例:\"ventilation\"(換気)、\"access\"(通行)など。"@ja-JP ; + IFC4-PSD:ifdguid "bada0780d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Purpose" ; + IFC4-PSD:nameAlias "目的"@ja-JP , "Motif"@fr-FR , "Purpose"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pad248200d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "ad248200d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@de-DE , "Status"@en , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Purpose a rdf:Property ; + rdfs:seeAlso :pbada0780d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Purpose . + +:Status a rdf:Property ; + rdfs:seeAlso :pad248200d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa72ea100d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pc7f6f680d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the opening is considered to be protected under fire safety considerations. If (TRUE) it counts as a protected opening under the applicable building code, (FALSE) otherwise." ; + rdfs:label "ProtectedOpening" ; + IFC4-PSD:definition "Indication whether the opening is considered to be protected under fire safety considerations. If (TRUE) it counts as a protected opening under the applicable building code, (FALSE) otherwise." ; + IFC4-PSD:definitionAlias ""@en , "開港が安全性を考慮した保護機能があるかどうかを示すブーリアン値。適用される建築基準などにより保護されている場合(TRUE)、そうではない場合(FALSE)となる。"@ja-JP , "Indique si l'ouverture fait l'objet d'une protection incendie. Si (VRAI) elle est considérée comme une ouverture avec protection conformément à la règlementation applicable, (FAUX) sinon."@fr-FR ; + IFC4-PSD:ifdguid "c7f6f680d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "ProtectedOpening" ; + IFC4-PSD:nameAlias "Protected Opening"@en , "保護"@ja-JP , "Ouverture avec protection incendie"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:ProtectedOpening a rdf:Property ; + rdfs:seeAlso :pc7f6f680d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProtectedOpening . + +:pa72ea100d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; + IFC4-PSD:definitionAlias "프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , ""@en , "Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; + IFC4-PSD:ifdguid "a72ea100d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Referenz ID"@de-DE , "Reference"@en , "Reference"@fr-FR , "참조ID"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. :Pset_OpeningElementCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcOpeningElement" ; - IFC4-PSD:definition "Properties common to the definition of all instances of IfcOpeningElement." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les occurrences de la classe IfcOpeningElement"@fr-FR ; - IFC4-PSD:definitionAlias "IfcOpeningElementに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_OpeningElementCommon" ; - IFC4-PSD:propertyDef :_a72ea100d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ad248200d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_bada0780d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c0cfe880d1f111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c7f6f680d1f111e1800000215ad4efdf ; -. -:_a72ea100d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; - IFC4-PSD:definitionAlias "Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "a72ea100d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "Referenz ID"@de-DE ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "참조ID"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ad248200d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "ad248200d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_bada0780d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication of the purpose for that opening, e.g. 'ventilation', 'access', etc." ; - IFC4-PSD:definitionAlias "Indication du motif de l'ouverture (ventilation, accès, etc.)."@fr-FR ; - IFC4-PSD:definitionAlias "開口の目的を示す文字列。例:\"ventilation\"(換気)、\"access\"(通行)など。"@ja-JP ; - IFC4-PSD:ifdguid "bada0780d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "Purpose" ; - IFC4-PSD:nameAlias "Motif"@fr-FR ; - IFC4-PSD:nameAlias "目的"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_c0cfe880d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). -Here whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes.""" ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias """このオブジェクト(開口)が火災の場合に出口として使われるように設計されているかどうかを示すブーリアン値。(TRUE)はい、(FALSE)いいえ。 -ここに、空間(例えば廊下)は、例えば火災避難目的のために出口空間として使われるよう設計されているかどうか。"""@ja-JP ; - IFC4-PSD:ifdguid "c0cfe880d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Sortie de secours"@fr-FR ; - IFC4-PSD:nameAlias "非常口区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_c7f6f680d1f111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the opening is considered to be protected under fire safety considerations. If (TRUE) it counts as a protected opening under the applicable building code, (FALSE) otherwise." ; - IFC4-PSD:definitionAlias "Indique si l'ouverture fait l'objet d'une protection incendie. Si (VRAI) elle est considérée comme une ouverture avec protection conformément à la règlementation applicable, (FAUX) sinon."@fr-FR ; - IFC4-PSD:definitionAlias "開港が安全性を考慮した保護機能があるかどうかを示すブーリアン値。適用される建築基準などにより保護されている場合(TRUE)、そうではない場合(FALSE)となる。"@ja-JP ; - IFC4-PSD:ifdguid "c7f6f680d1f111e1800000215ad4efdf" ; - IFC4-PSD:name "ProtectedOpening" ; - IFC4-PSD:nameAlias "Ouverture avec protection incendie"@fr-FR ; - IFC4-PSD:nameAlias "保護"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all instances of IfcOpeningElement." ; + rdfs:label "Pset_OpeningElementCommon" ; + IFC4-PSD:applicableClass IFC4:IfcOpeningElement ; + IFC4-PSD:applicableTypeValue "IfcOpeningElement" ; + IFC4-PSD:definition "Properties common to the definition of all instances of IfcOpeningElement." ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , "IfcOpeningElementに関する共通プロパティセット定義。"@ja-JP , ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les occurrences de la classe IfcOpeningElement"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_OpeningElementCommon" ; + IFC4-PSD:propertyDef :pc0cfe880d1f111e1800000215ad4efdf , :pad248200d1f111e1800000215ad4efdf , :pa72ea100d1f111e1800000215ad4efdf , :pc7f6f680d1f111e1800000215ad4efdf , :pbada0780d1f111e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_OutletTypeCommon.ttl b/converter/src/main/resources/pset/Pset_OutletTypeCommon.ttl new file mode 100644 index 00000000..a7fd0f24 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_OutletTypeCommon.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pd34a2200d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다"@ko-KR , ""@en , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "d34a2200d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조"@ko-KR , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:IsPluggableOutlet a rdf:Property ; + rdfs:seeAlso :pe826b580d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsPluggableOutlet . + +:Reference a rdf:Property ; + rdfs:seeAlso :pd34a2200d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_OutletTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for different outlet types." ; + rdfs:label "Pset_OutletTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcOutlet ; + IFC4-PSD:applicableTypeValue "IfcOutlet" ; + IFC4-PSD:definition "Common properties for different outlet types." ; + IFC4-PSD:definitionAlias ""@en , "異なる差込口タイプの共通プロパティ。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_OutletTypeCommon" ; + IFC4-PSD:propertyDef :pd34a2200d1f111e1800000215ad4efdf , :pd9400300d1f111e1800000215ad4efdf , :pe826b580d1f111e1800000215ad4efdf , :pf9dc44b033ee47e8adeafbbbd20abdd8 . + +:pe826b580d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the outlet accepts a loose plug connection (= TRUE) or whether it is directly connected (= FALSE) or whether the form of connection has not yet been determined (= UNKNOWN)." ; + rdfs:label "IsPluggableOutlet" ; + IFC4-PSD:definition "Indication of whether the outlet accepts a loose plug connection (= TRUE) or whether it is directly connected (= FALSE) or whether the form of connection has not yet been determined (= UNKNOWN)." ; + IFC4-PSD:definitionAlias "슬롯이 느슨한 플러그를 인정하거나 그것에 직접 연결되는지 여부, 연결 형식이 아직 결정되지 않았는지 설명한다"@ko-KR , ""@en , "差込口が緩いプラグ接続を認めるか、それが直接接続されるかどうか、あるいは接続の形式がまだ決定されていないかを指示する。"@ja-JP ; + IFC4-PSD:ifdguid "e826b580d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "IsPluggableOutlet" ; + IFC4-PSD:nameAlias "Is Pluggable Outlet"@en , "プラグ接続可否"@ja-JP , "플러그 여부"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLogical + ] . + +:pf9dc44b033ee47e8adeafbbbd20abdd8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of sockets that may be connected. In case of inconsistency, sockets defined on ports take precedence." ; + rdfs:label "NumberOfSockets" ; + IFC4-PSD:definition "The number of sockets that may be connected. In case of inconsistency, sockets defined on ports take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f9dc44b033ee47e8adeafbbbd20abdd8" ; + IFC4-PSD:name "NumberOfSockets" ; + IFC4-PSD:nameAlias "Number Of Sockets"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:NumberOfSockets a rdf:Property ; + rdfs:seeAlso :pf9dc44b033ee47e8adeafbbbd20abdd8 ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSockets . + +:Status a rdf:Property ; + rdfs:seeAlso :pd9400300d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pd9400300d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d9400300d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_OutsideDesignCriteria.ttl b/converter/src/main/resources/pset/Pset_OutsideDesignCriteria.ttl new file mode 100644 index 00000000..ef281ca0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_OutsideDesignCriteria.ttl @@ -0,0 +1,215 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HeatingWetBulb a rdf:Property ; + rdfs:seeAlso :pf8d72b80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingWetBulb . + +:HeatingDryBulb a rdf:Property ; + rdfs:seeAlso :pf2e14a80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingDryBulb . + +:pf8d72b80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Outside wet bulb temperature for heating design." ; + rdfs:label "HeatingWetBulb" ; + IFC4-PSD:definition "Outside wet bulb temperature for heating design." ; + IFC4-PSD:definitionAlias "暖房用設計用外気湿球温度。"@ja-JP , ""@en , "난방 설계 외기 습구온도"@ko-KR ; + IFC4-PSD:ifdguid "f8d72b80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingWetBulb" ; + IFC4-PSD:nameAlias "Heating Wet Bulb"@en , "暖房用設計外気湿球温度"@ja-JP , "난방 설계 외기 습구온도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:CoolingWetBulb a rdf:Property ; + rdfs:seeAlso :p08ef0b00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingWetBulb . + +:p186e5400d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The date for which the weather data was gathered." ; + rdfs:label "WeatherDataDate" ; + IFC4-PSD:definition "The date for which the weather data was gathered." ; + IFC4-PSD:definitionAlias "気象台所在地の気象データ。"@ja-JP , "기상대 지역의 기상 데이터입니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "186e5400d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "WeatherDataDate" ; + IFC4-PSD:nameAlias "Weather Data Date"@en , "気象データ"@ja-JP , "기상데이터"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:p13110980d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The site weather data station description or reference to the data source from which weather data was obtained for use in calculations." ; + rdfs:label "WeatherDataStation" ; + IFC4-PSD:definition "The site weather data station description or reference to the data source from which weather data was obtained for use in calculations." ; + IFC4-PSD:definitionAlias "공조 부하 계산시 사용하는 기상 데이터 기상대 위치."@ko-KR , ""@en , "空調負荷計算時使用する気象データの気象台所在地。"@ja-JP ; + IFC4-PSD:ifdguid "13110980d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "WeatherDataStation" ; + IFC4-PSD:nameAlias "기상대 위치"@ko-KR , "Weather Data Station"@en , "気象台所在地"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p0e4c5580d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The month, day and time that has been selected for the cooling design calculations." ; + rdfs:label "CoolingDesignDay" ; + IFC4-PSD:definition "The month, day and time that has been selected for the cooling design calculations." ; + IFC4-PSD:definitionAlias "冷房設計用気象データの日時(月、日、時刻)。"@ja-JP , "냉방 설계 기상 데이터의 시간 (월, 일, 시간)."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "0e4c5580d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingDesignDay" ; + IFC4-PSD:nameAlias "냉방설계 기준일"@ko-KR , "冷房設計基準日"@ja-JP , "Cooling Design Day"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:HeatingDesignDay a rdf:Property ; + rdfs:seeAlso :pfecd0c80d1f111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingDesignDay . + +:p08ef0b00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Outside wet bulb temperature for cooling design." ; + rdfs:label "CoolingWetBulb" ; + IFC4-PSD:definition "Outside wet bulb temperature for cooling design." ; + IFC4-PSD:definitionAlias "냉방용 설계외기 습구온도"@ko-KR , "冷房用設計用外気湿球温度。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "08ef0b00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingWetBulb" ; + IFC4-PSD:nameAlias "냉방용 설계외기 습구온도"@ko-KR , "Cooling Wet Bulb"@en , "冷房用設計外気湿球温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:CoolingDesignDay a rdf:Property ; + rdfs:seeAlso :p0e4c5580d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingDesignDay . + +:pfecd0c80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The month, day and time that has been selected for the heating design calculations." ; + rdfs:label "HeatingDesignDay" ; + IFC4-PSD:definition "The month, day and time that has been selected for the heating design calculations." ; + IFC4-PSD:definitionAlias "난방 설계 기상 데이터의 날짜"@ko-KR , ""@en , "暖房設計用気象データの日付。"@ja-JP ; + IFC4-PSD:ifdguid "fecd0c80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingDesignDay" ; + IFC4-PSD:nameAlias "난방 설계 기준일"@ko-KR , "Heating Design Day"@en , "暖房設計基準日"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:WeatherDataDate a rdf:Property ; + rdfs:seeAlso :p186e5400d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WeatherDataDate . + +:WeatherDataStation a rdf:Property ; + rdfs:seeAlso :p13110980d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WeatherDataStation . + +:BuildingThermalExposure + a rdf:Property ; + rdfs:seeAlso :p1c9a7180d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BuildingThermalExposure . + +:pf2e14a80d1f111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Outside dry bulb temperature for heating design." ; + rdfs:label "HeatingDryBulb" ; + IFC4-PSD:definition "Outside dry bulb temperature for heating design." ; + IFC4-PSD:definitionAlias "暖房用設計用外気乾球温度。"@ja-JP , ""@en , "난방 설계 외기 건구 온도"@ko-KR ; + IFC4-PSD:ifdguid "f2e14a80d1f111e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingDryBulb" ; + IFC4-PSD:nameAlias "난방 설계 외기 건구 온도"@ko-KR , "暖房用設計外気乾球温度"@ja-JP , "Heating Dry Bulb"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p1c9a7180d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thermal exposure expected by the building based on surrounding site conditions." ; + rdfs:label "BuildingThermalExposure" ; + IFC4-PSD:definition "The thermal exposure expected by the building based on surrounding site conditions." ; + IFC4-PSD:definitionAlias "주위 환경​​에서 건물의 열 방사 강도."@ko-KR , ""@en , "周囲環境から建物への熱放射強度。"@ja-JP ; + IFC4-PSD:ifdguid "1c9a7180d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BuildingThermalExposure" ; + IFC4-PSD:nameAlias "周囲環境からの熱放射強度"@ja-JP , "Building Thermal Exposure"@en , "주위환경에서 열의 방사강도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LIGHT" , "MEDIUM" , "HEAVY" , "NOTKNOWN" , "UNSET" + ] . + +:p2d4ae780d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The design wind velocity coming from the direction specified by the PrevailingWindDirection attribute." ; + rdfs:label "PrevailingWindVelocity" ; + IFC4-PSD:definition "The design wind velocity coming from the direction specified by the PrevailingWindDirection attribute." ; + IFC4-PSD:definitionAlias ""@en , "PrevailingWindDirection 속성에 지정된 풍향 온 탁월한 바람 바람."@ko-KR , "PrevailingWindDirection 属性に示された風向から来た卓越風の風速。"@ja-JP ; + IFC4-PSD:ifdguid "2d4ae780d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "PrevailingWindVelocity" ; + IFC4-PSD:nameAlias "Prevailing Wind Velocity"@en , "卓越風の風速"@ja-JP , "탁월한 바람의 풍속"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CoolingDryBulb a rdf:Property ; + rdfs:seeAlso :p0391c080d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingDryBulb . + +:p27ed9d00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The prevailing wind angle direction measured from True North (0 degrees) in a clockwise direction." ; + rdfs:label "PrevailingWindDirection" ; + IFC4-PSD:definition "The prevailing wind angle direction measured from True North (0 degrees) in a clockwise direction." ; + IFC4-PSD:definitionAlias ""@en , "卓越風の風向、真北は0°、時計回り。"@ja-JP , "탁월한 바람의 풍향, 북쪽은 0 ° 시계 방향."@ko-KR ; + IFC4-PSD:ifdguid "27ed9d00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "PrevailingWindDirection" ; + IFC4-PSD:nameAlias "Prevailing Wind Direction"@en , "卓越風の風向"@ja-JP , "탁월한 방람의 풍향"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Pset_OutsideDesignCriteria + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Outside air conditions used as the basis for calculating thermal loads at peak conditions, as well as the weather data location from which these conditions were obtained. HISTORY: New property set in IFC Release 1.0." ; + rdfs:label "Pset_OutsideDesignCriteria" ; + IFC4-PSD:applicableClass IFC4:IfcBuilding ; + IFC4-PSD:applicableTypeValue "IfcBuilding" ; + IFC4-PSD:definition "Outside air conditions used as the basis for calculating thermal loads at peak conditions, as well as the weather data location from which these conditions were obtained. HISTORY: New property set in IFC Release 1.0." ; + IFC4-PSD:definitionAlias "ピーク時熱負荷を計算するために使用する所在地の外気条件。履歴:IFC1.0に定義された新属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_OutsideDesignCriteria" ; + IFC4-PSD:propertyDef :p13110980d1f211e1800000215ad4efdf , :pfecd0c80d1f111e1800000215ad4efdf , :p0e4c5580d1f211e1800000215ad4efdf , :p1c9a7180d1f211e1800000215ad4efdf , :p08ef0b00d1f211e1800000215ad4efdf , :pf8d72b80d1f111e1800000215ad4efdf , :pf2e14a80d1f111e1800000215ad4efdf , :p186e5400d1f211e1800000215ad4efdf , :p2d4ae780d1f211e1800000215ad4efdf , :p0391c080d1f211e1800000215ad4efdf , :p27ed9d00d1f211e1800000215ad4efdf . + +:PrevailingWindVelocity + a rdf:Property ; + rdfs:seeAlso :p2d4ae780d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrevailingWindVelocity . + +:PrevailingWindDirection + a rdf:Property ; + rdfs:seeAlso :p27ed9d00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrevailingWindDirection . + +:p0391c080d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Outside dry bulb temperature for cooling design." ; + rdfs:label "CoolingDryBulb" ; + IFC4-PSD:definition "Outside dry bulb temperature for cooling design." ; + IFC4-PSD:definitionAlias "냉방용 설계 외기건구 온도"@ko-KR , ""@en , "冷房用設計用外気乾球温度。"@ja-JP ; + IFC4-PSD:ifdguid "0391c080d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingDryBulb" ; + IFC4-PSD:nameAlias "냉방용 설계 외기건구 온도"@ko-KR , "Cooling Dry Bulb"@en , "冷房用設計外気乾球温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PackingInstructions.ttl b/converter/src/main/resources/pset/Pset_PackingInstructions.ttl new file mode 100644 index 00000000..3e8311b9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PackingInstructions.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p510e2d80d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special instructions for packing." ; + rdfs:label "SpecialInstructions" ; + IFC4-PSD:definition "Special instructions for packing." ; + IFC4-PSD:definitionAlias "荷造りに関する特記事項。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "510e2d80d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "SpecialInstructions" ; + IFC4-PSD:nameAlias "特記事項"@ja-JP , "Special Instructions"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:WrappingMaterial a rdf:Property ; + rdfs:seeAlso :p4784c580d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WrappingMaterial . + +:p3b990380d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of care that may be required when handling the artefact during a move where:\n\nFragile: artefact may be broken during a move through careless handling.\nHandleWithCare: artefact may be damaged during a move through careless handling." ; + rdfs:label "PackingCareType" ; + IFC4-PSD:definition "Identifies the predefined types of care that may be required when handling the artefact during a move where:\n\nFragile: artefact may be broken during a move through careless handling.\nHandleWithCare: artefact may be damaged during a move through careless handling." ; + IFC4-PSD:definitionAlias "引越しの最中の品物の取り扱いに要求される、あらかじめ定義されている注意タイプの識別子:\n\nFragile: 注意深い取り扱いをしないと壊れる品物。\nHandleWithCare: 注意深い取り扱いでしないと損害を受ける品物。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3b990380d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "PackingCareType" ; + IFC4-PSD:nameAlias "Packing Care Type"@en , "荷造り注意タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FRAGILE" , "HANDLEWITHCARE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p4784c580d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special requirements for material used to wrap an artefact." ; + rdfs:label "WrappingMaterial" ; + IFC4-PSD:definition "Special requirements for material used to wrap an artefact." ; + IFC4-PSD:definitionAlias "品物の包装に使用される材料に関する特記事項。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4784c580d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "WrappingMaterial" ; + IFC4-PSD:nameAlias "包装材料"@ja-JP , "Wrapping Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:p4eabd380d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special requirements for material used to contain an artefact." ; + rdfs:label "ContainerMaterial" ; + IFC4-PSD:definition "Special requirements for material used to contain an artefact." ; + IFC4-PSD:definitionAlias "品物の収容するのに使用される材料に関する特記事項。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4eabd380d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "ContainerMaterial" ; + IFC4-PSD:nameAlias "コンテナー材料"@ja-JP , "Container Material"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:SpecialInstructions a rdf:Property ; + rdfs:seeAlso :p510e2d80d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecialInstructions . + +:Pset_PackingInstructions + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Packing instructions are specific instructions relating to the packing that is required for an artifact in the event of a move (or transport)." ; + rdfs:label "Pset_PackingInstructions" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTask/MOVE" ; + IFC4-PSD:definition "Packing instructions are specific instructions relating to the packing that is required for an artifact in the event of a move (or transport)." ; + IFC4-PSD:definitionAlias ""@en , "引越しの際の品物(IfcElement)に対して要求される荷造り指示に関するプロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PackingInstructions" ; + IFC4-PSD:propertyDef :p4784c580d1f211e1800000215ad4efdf , :p4eabd380d1f211e1800000215ad4efdf , :p3b990380d1f211e1800000215ad4efdf , :p510e2d80d1f211e1800000215ad4efdf . + +:ContainerMaterial a rdf:Property ; + rdfs:seeAlso :p4eabd380d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContainerMaterial . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PackingCareType a rdf:Property ; + rdfs:seeAlso :p3b990380d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PackingCareType . diff --git a/converter/src/main/resources/pset/Pset_Permit.ttl b/converter/src/main/resources/pset/Pset_Permit.ttl new file mode 100644 index 00000000..fb4b6313 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_Permit.ttl @@ -0,0 +1,92 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p6e42fc00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Any additional special requirements that need to be included in the permit to work.\n\nNOTE - Additional permit requirements may be imposed according to the nature of the facility at which the work is carried out. For instance, in clean areas, special clothing may be required whilst in corrective institutions, it may be necessary to check in and check out tools that will be used for work as a safety precaution." ; + rdfs:label "SpecialRequirements" ; + IFC4-PSD:definition "Any additional special requirements that need to be included in the permit to work.\n\nNOTE - Additional permit requirements may be imposed according to the nature of the facility at which the work is carried out. For instance, in clean areas, special clothing may be required whilst in corrective institutions, it may be necessary to check in and check out tools that will be used for work as a safety precaution." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6e42fc00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "SpecialRequirements" ; + IFC4-PSD:nameAlias "Special Requirements"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:EndDate a rdf:Property ; + rdfs:seeAlso :p697e4800d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EndDate . + +:SpecialRequirements a rdf:Property ; + rdfs:seeAlso :p6e42fc00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecialRequirements . + +:EscortRequirement a rdf:Property ; + rdfs:seeAlso :p5d928600d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EscortRequirement . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5d928600d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether or not an escort is required to accompany persons carrying out a work order at or to/from the place of work (= TRUE) or not (= FALSE).\n\nNOTE - There are many instances where escorting is required, particularly in a facility that has a high security rating. Escorting may require that persons are escorted to and from the place of work. Alternatively, it may involve the escort remaining at the place of work at all times." ; + rdfs:label "EscortRequirement" ; + IFC4-PSD:definition "Indicates whether or not an escort is required to accompany persons carrying out a work order at or to/from the place of work (= TRUE) or not (= FALSE).\n\nNOTE - There are many instances where escorting is required, particularly in a facility that has a high security rating. Escorting may require that persons are escorted to and from the place of work. Alternatively, it may involve the escort remaining at the place of work at all times." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5d928600d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "EscortRequirement" ; + IFC4-PSD:nameAlias "Escort Requirement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:StartDate a rdf:Property ; + rdfs:seeAlso :p63886700d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StartDate . + +:p63886700d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date and time from which the permit becomes valid." ; + rdfs:label "StartDate" ; + IFC4-PSD:definition "Date and time from which the permit becomes valid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "63886700d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "StartDate" ; + IFC4-PSD:nameAlias "Start Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:p697e4800d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date and time at which the permit ceases to be valid." ; + rdfs:label "EndDate" ; + IFC4-PSD:definition "Date and time at which the permit ceases to be valid." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "697e4800d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "EndDate" ; + IFC4-PSD:nameAlias "End Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:Pset_Permit a IFC4-PSD:PropertySetDef ; + rdfs:comment "A permit is a document that allows permission to gain access to an area or carry out work in a situation where security or other access restrictions apply.\nHISTORY: IFC4 EndDate added. PermitType, PermitDuration, StartTime and EndTime are deleted." ; + rdfs:label "Pset_Permit" ; + IFC4-PSD:applicableClass IFC4:IfcPermit ; + IFC4-PSD:applicableTypeValue "IfcPermit" ; + IFC4-PSD:definition "A permit is a document that allows permission to gain access to an area or carry out work in a situation where security or other access restrictions apply.\nHISTORY: IFC4 EndDate added. PermitType, PermitDuration, StartTime and EndTime are deleted." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_Permit" ; + IFC4-PSD:propertyDef :p6e42fc00d1f211e1800000215ad4efdf , :p697e4800d1f211e1800000215ad4efdf , :p5d928600d1f211e1800000215ad4efdf , :p63886700d1f211e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_PileCommon.ttl b/converter/src/main/resources/pset/Pset_PileCommon.ttl index 0f303cdc..96f2c72b 100644 --- a/converter/src/main/resources/pset/Pset_PileCommon.ttl +++ b/converter/src/main/resources/pset/Pset_PileCommon.ttl @@ -1,84 +1,75 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD/Pset_PileCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p663726ee008e4db49b6f7b26952a1fe9 ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . - - rdf:type owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" ; -. -:Pset_PileCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcPile" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcPile." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "生成されたすべてのIfcPileの定義に共通するプロパティ。"@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "IFC4" ; - ] ; - IFC4-PSD:name "Pset_PileCommon" ; - IFC4-PSD:propertyDef :_40a25a6462f8480a9c49ccb5cd0aa752 ; - IFC4-PSD:propertyDef :_663726ee008e4db49b6f7b26952a1fe9 ; - IFC4-PSD:propertyDef :_7d29ae80d1f211e1800000215ad4efdf ; -. -:_40a25a6462f8480a9c49ccb5cd0aa752 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "40a25a6462f8480a9c49ccb5cd0aa752" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@en ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_663726ee008e4db49b6f7b26952a1fe9 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "" ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de ; - IFC4-PSD:definitionAlias "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)."@en ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja ; - IFC4-PSD:ifdguid "663726ee008e4db49b6f7b26952a1fe9" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Load Bearing"@en ; - IFC4-PSD:nameAlias "Porteur"@fr ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de ; - IFC4-PSD:nameAlias "耐力部材"@ja ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_7d29ae80d1f211e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; - IFC4-PSD:definitionAlias ""@en ; - IFC4-PSD:definitionAlias "当プロジェクトにおけるこの指定型式のためのリファレンスID。(たとえは、'A-1'型)"@ja-JP ; - IFC4-PSD:ifdguid "7d29ae80d1f211e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Reference"@en ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +:p663726ee008e4db49b6f7b26952a1fe9 + a IFC4-PSD:PropertyDef ; + rdfs:comment "" ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "" ; + IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de , "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)."@en , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr ; + IFC4-PSD:ifdguid "663726ee008e4db49b6f7b26952a1fe9" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "Load Bearing"@en , "Tragendes Bauteil"@de , "Porteur"@fr , "耐力部材"@ja ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p7d29ae80d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p7d29ae80d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "当プロジェクトにおけるこの指定型式のためのリファレンスID。(たとえは、'A-1'型)"@ja-JP ; + IFC4-PSD:ifdguid "7d29ae80d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p40a25a6462f8480a9c49ccb5cd0aa752 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "40a25a6462f8480a9c49ccb5cd0aa752" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p40a25a6462f8480a9c49ccb5cd0aa752 ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_PileCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcPile." ; + rdfs:label "Pset_PileCommon" ; + IFC4-PSD:applicableClass IFC4:IfcPile ; + IFC4-PSD:applicableTypeValue "IfcPile" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcPile." ; + IFC4-PSD:definitionAlias ""@en , "生成されたすべてのIfcPileの定義に共通するプロパティ。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PileCommon" ; + IFC4-PSD:propertyDef :p40a25a6462f8480a9c49ccb5cd0aa752 , :p663726ee008e4db49b6f7b26952a1fe9 , :p7d29ae80d1f211e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_PipeConnectionFlanged.ttl b/converter/src/main/resources/pset/Pset_PipeConnectionFlanged.ttl new file mode 100644 index 00000000..ff4c2c3f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeConnectionFlanged.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FlangeTable a rdf:Property ; + rdfs:seeAlso :p8c106100d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeTable . + +:BoreSize a rdf:Property ; + rdfs:seeAlso :p9a5e7d00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BoreSize . + +:FlangeDiameter a rdf:Property ; + rdfs:seeAlso :pa21e2180d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeDiameter . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NumberOfBoltholes a rdf:Property ; + rdfs:seeAlso :pb104d400d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfBoltholes . + +:BoltSize a rdf:Property ; + rdfs:seeAlso :pb6621e80d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BoltSize . + +:p8c106100d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designation of the standard table to which the flange conforms." ; + rdfs:label "FlangeTable" ; + IFC4-PSD:definition "Designation of the standard table to which the flange conforms." ; + IFC4-PSD:definitionAlias "フランジ形状の名称基準"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8c106100d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeTable" ; + IFC4-PSD:nameAlias "Flange Table"@en , "フランジ基準"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pbc57ff80d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diameter of the circle along which the boltholes are placed." ; + rdfs:label "BoltholePitch" ; + IFC4-PSD:definition "Diameter of the circle along which the boltholes are placed." ; + IFC4-PSD:definitionAlias "ボルト穴がある円の直径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bc57ff80d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BoltholePitch" ; + IFC4-PSD:nameAlias "ボルト穴ピッチ"@ja-JP , "Bolthole Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:BoltholePitch a rdf:Property ; + rdfs:seeAlso :pbc57ff80d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BoltholePitch . + +:FlangeStandard a rdf:Property ; + rdfs:seeAlso :p93d00580d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeStandard . + +:pa9ddc600d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the material from which the pipe bend is constructed." ; + rdfs:label "FlangeThickness" ; + IFC4-PSD:definition "Thickness of the material from which the pipe bend is constructed." ; + IFC4-PSD:definitionAlias ""@en , "パイプをつなぐ材料の厚み"@ja-JP ; + IFC4-PSD:ifdguid "a9ddc600d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeThickness" ; + IFC4-PSD:nameAlias "Flange Thickness"@en , "フランジの厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p9a5e7d00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal bore of the pipe flange." ; + rdfs:label "BoreSize" ; + IFC4-PSD:definition "The nominal bore of the pipe flange." ; + IFC4-PSD:definitionAlias "フランジの呼び径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9a5e7d00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BoreSize" ; + IFC4-PSD:nameAlias "Bore Size"@en , "フランジの内径のサイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_PipeConnectionFlanged + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This property set is used to define the specifics of a flanged pipe connection used between occurrences of pipe segments and fittings." ; + rdfs:label "Pset_PipeConnectionFlanged" ; + IFC4-PSD:applicableClass IFC4:IfcPipeSegment ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment" ; + IFC4-PSD:definition "This property set is used to define the specifics of a flanged pipe connection used between occurrences of pipe segments and fittings." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeConnectionFlanged" ; + IFC4-PSD:propertyDef :pbc57ff80d1f211e1800000215ad4efdf , :pb6621e80d1f211e1800000215ad4efdf , :pa9ddc600d1f211e1800000215ad4efdf , :p93d00580d1f211e1800000215ad4efdf , :pa21e2180d1f211e1800000215ad4efdf , :p9a5e7d00d1f211e1800000215ad4efdf , :p8c106100d1f211e1800000215ad4efdf , :pb104d400d1f211e1800000215ad4efdf . + +:FlangeThickness a rdf:Property ; + rdfs:seeAlso :pa9ddc600d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeThickness . + +:pb6621e80d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the bolts securing the flange." ; + rdfs:label "BoltSize" ; + IFC4-PSD:definition "Size of the bolts securing the flange." ; + IFC4-PSD:definitionAlias ""@en , "フランジを締めるボルトの大きさ"@ja-JP ; + IFC4-PSD:ifdguid "b6621e80d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BoltSize" ; + IFC4-PSD:nameAlias "ボルトの大きさ"@ja-JP , "Bolt Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p93d00580d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Designation of the standard describing the flange table." ; + rdfs:label "FlangeStandard" ; + IFC4-PSD:definition "Designation of the standard describing the flange table." ; + IFC4-PSD:definitionAlias ""@en , "フランジ規格を記述している基準"@ja-JP ; + IFC4-PSD:ifdguid "93d00580d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeStandard" ; + IFC4-PSD:nameAlias "フランジ規格"@ja-JP , "Flange Standard"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pb104d400d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of boltholes in the flange." ; + rdfs:label "NumberOfBoltholes" ; + IFC4-PSD:definition "Number of boltholes in the flange." ; + IFC4-PSD:definitionAlias ""@en , "フランジにあるボルト穴の数"@ja-JP ; + IFC4-PSD:ifdguid "b104d400d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfBoltholes" ; + IFC4-PSD:nameAlias "ボルト穴の数"@ja-JP , "Number Of Boltholes"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pa21e2180d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall diameter of the flange." ; + rdfs:label "FlangeDiameter" ; + IFC4-PSD:definition "Overall diameter of the flange." ; + IFC4-PSD:definitionAlias ""@en , "フランジの全直径"@ja-JP ; + IFC4-PSD:ifdguid "a21e2180d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeDiameter" ; + IFC4-PSD:nameAlias "フランジの直径"@ja-JP , "Flange Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PipeFittingOccurrence.ttl b/converter/src/main/resources/pset/Pset_PipeFittingOccurrence.ttl new file mode 100644 index 00000000..5f91a75c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeFittingOccurrence.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_PipeFittingOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment." ; + rdfs:label "Pset_PipeFittingOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcPipeFitting ; + IFC4-PSD:applicableTypeValue "IfcPipeFitting" ; + IFC4-PSD:definition "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeFittingOccurrence" ; + IFC4-PSD:propertyDef :pc974ee80d1f211e1800000215ad4efdf , :pd0036600d1f211e1800000215ad4efdf . + +:Color a rdf:Property ; + rdfs:seeAlso :pd0036600d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Color . + +:pd0036600d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the pipe segment.\n\nNote: This is typically used only for plastic pipe segments. However, it may be used for any pipe segments with a painted surface which is not otherwise specified as a covering." ; + rdfs:label "Color" ; + IFC4-PSD:definition "The color of the pipe segment.\n\nNote: This is typically used only for plastic pipe segments. However, it may be used for any pipe segments with a painted surface which is not otherwise specified as a covering." ; + IFC4-PSD:definitionAlias "配管部の内部粗度係数 記:プラスチック配管にのみ使われる。保護のためではない塗装された表面を持つ配管にも使われる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d0036600d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:nameAlias "色"@ja-JP , "Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InteriorRoughnessCoefficient + a rdf:Property ; + rdfs:seeAlso :pc974ee80d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorRoughnessCoefficient . + +:pc974ee80d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The interior roughness coefficient of the pipe segment." ; + rdfs:label "InteriorRoughnessCoefficient" ; + IFC4-PSD:definition "The interior roughness coefficient of the pipe segment." ; + IFC4-PSD:definitionAlias "配管部の内部粗度係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c974ee80d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorRoughnessCoefficient" ; + IFC4-PSD:nameAlias "内部粗度係数"@ja-JP , "Interior Roughness Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PipeFittingPHistory.ttl b/converter/src/main/resources/pset/Pset_PipeFittingPHistory.ttl new file mode 100644 index 00000000..c5f2df28 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeFittingPHistory.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pde518200d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + rdfs:label "LossCoefficient" ; + IFC4-PSD:definition "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section." ; + IFC4-PSD:definitionAlias ""@en , "無次元数的な損失係数で、ある断面において、動圧に対する全圧損失の割合を表す流れ抵抗を計算するのに使われる。"@ja-JP ; + IFC4-PSD:ifdguid "de518200d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "LossCoefficient" ; + IFC4-PSD:nameAlias "損失係数"@ja-JP , "Loss Coefficient"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LossCoefficient a rdf:Property ; + rdfs:seeAlso :pde518200d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LossCoefficient . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe14c7280d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Leakage flowrate versus pressure difference." ; + rdfs:label "FlowrateLeakage" ; + IFC4-PSD:definition "Leakage flowrate versus pressure difference." ; + IFC4-PSD:definitionAlias "漏洩量と圧力差の関係"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e14c7280d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "FlowrateLeakage" ; + IFC4-PSD:nameAlias "Flowrate Leakage"@en , "漏洩流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FlowrateLeakage a rdf:Property ; + rdfs:seeAlso :pe14c7280d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowrateLeakage . + +:Pset_PipeFittingPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting performance history common attributes." ; + rdfs:label "Pset_PipeFittingPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcPipeFitting ; + IFC4-PSD:applicableTypeValue "IfcPipeFitting" ; + IFC4-PSD:definition "Pipe fitting performance history common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeFittingPHistory" ; + IFC4-PSD:propertyDef :pe14c7280d1f211e1800000215ad4efdf , :pde518200d1f211e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_PipeFittingTypeBend.ttl b/converter/src/main/resources/pset/Pset_PipeFittingTypeBend.ttl new file mode 100644 index 00000000..255e6290 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeFittingTypeBend.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:BendAngle a rdf:Property ; + rdfs:seeAlso :ped383480d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BendAngle . + +:ped383480d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The change of direction of flow." ; + rdfs:label "BendAngle" ; + IFC4-PSD:definition "The change of direction of flow." ; + IFC4-PSD:definitionAlias "流れの方向を変える"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ed383480d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BendAngle" ; + IFC4-PSD:nameAlias "Bend Angle"@en , "曲がり角度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositivePlaneAngleMeasure + ] . + +:BendRadius a rdf:Property ; + rdfs:seeAlso :pf2957f00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BendRadius . + +:pf2957f00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The radius of bending if circular arc or zero if sharp bend." ; + rdfs:label "BendRadius" ; + IFC4-PSD:definition "The radius of bending if circular arc or zero if sharp bend." ; + IFC4-PSD:definitionAlias ""@en , "円弧の曲率半径?"@ja-JP ; + IFC4-PSD:ifdguid "f2957f00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "BendRadius" ; + IFC4-PSD:nameAlias "Bend Radius"@en , "曲率半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_PipeFittingTypeBend + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting type attributes for bend shapes." ; + rdfs:label "Pset_PipeFittingTypeBend" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcPipeFitting/BEND" ; + IFC4-PSD:definition "Pipe fitting type attributes for bend shapes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeFittingTypeBend" ; + IFC4-PSD:propertyDef :ped383480d1f211e1800000215ad4efdf , :pf2957f00d1f211e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_PipeFittingTypeCommon.ttl b/converter/src/main/resources/pset/Pset_PipeFittingTypeCommon.ttl new file mode 100644 index 00000000..617e010c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeFittingTypeCommon.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p16f15b80d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The test or rated pressure classification of the fitting." ; + rdfs:label "PressureClass" ; + IFC4-PSD:definition "The test or rated pressure classification of the fitting." ; + IFC4-PSD:definitionAlias "継ぎ手接合部の圧力等級?"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "16f15b80d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "PressureClass" ; + IFC4-PSD:nameAlias "Pressure Class"@en , "圧力分類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:Pset_PipeFittingTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting type common attributes." ; + rdfs:label "Pset_PipeFittingTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcPipeFitting ; + IFC4-PSD:applicableTypeValue "IfcPipeFitting" ; + IFC4-PSD:definition "Pipe fitting type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeFittingTypeCommon" ; + IFC4-PSD:propertyDef :p05a84f00d1f311e1800000215ad4efdf , :p25d80e00d1f311e1800000215ad4efdf , :pffb26e00d1f211e1800000215ad4efdf , :p16f15b80d1f311e1800000215ad4efdf , :p1c4ea600d1f311e1800000215ad4efdf , :p2d97b280d1f311e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p05a84f00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p1c4ea600d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + rdfs:label "PressureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + IFC4-PSD:definitionAlias "許容できる最大/最小管内圧力(周囲圧力に比較して)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1c4ea600d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRange" ; + IFC4-PSD:nameAlias "Pressure Range"@en , "圧力範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p2d97b280d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A factor that determines the pressure loss due to friction through the fitting." ; + rdfs:label "FittingLossFactor" ; + IFC4-PSD:definition "A factor that determines the pressure loss due to friction through the fitting." ; + IFC4-PSD:definitionAlias "接合部を通過する際の摩擦による圧力損失を決める係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2d97b280d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "FittingLossFactor" ; + IFC4-PSD:nameAlias "継ぎ手接合部損失係数"@ja-JP , "Fitting Loss Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p25d80e00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum temperature." ; + IFC4-PSD:definitionAlias ""@en , "許容できる最大/最小温度"@ja-JP ; + IFC4-PSD:ifdguid "25d80e00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "Temperature Range"@en , "温度範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:PressureClass a rdf:Property ; + rdfs:seeAlso :p16f15b80d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureClass . + +:PressureRange a rdf:Property ; + rdfs:seeAlso :p1c4ea600d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRange . + +:Reference a rdf:Property ; + rdfs:seeAlso :pffb26e00d1f211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:FittingLossFactor a rdf:Property ; + rdfs:seeAlso :p2d97b280d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FittingLossFactor . + +:pffb26e00d1f211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ffb26e00d1f211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :p25d80e00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + +:p05a84f00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "05a84f00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_PipeFittingTypeJunction.ttl b/converter/src/main/resources/pset/Pset_PipeFittingTypeJunction.ttl new file mode 100644 index 00000000..a82b202e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeFittingTypeJunction.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p57e97000d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The radius of bending for the right junction where 0 indicates sharp bend." ; + rdfs:label "JunctionRightRadius" ; + IFC4-PSD:definition "The radius of bending for the right junction where 0 indicates sharp bend." ; + IFC4-PSD:definitionAlias ""@en , "右継ぎ手の曲がりの半径(ゼロは鋭い曲がりを意味する)"@ja-JP ; + IFC4-PSD:ifdguid "57e97000d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "JunctionRightRadius" ; + IFC4-PSD:nameAlias "Junction Right Radius"@en , "右継ぎ手半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p4607cd00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The change of direction of flow for the left junction." ; + rdfs:label "JunctionLeftAngle" ; + IFC4-PSD:definition "The change of direction of flow for the left junction." ; + IFC4-PSD:definitionAlias ""@en , "左継ぎ手の流れの方向の変化"@ja-JP ; + IFC4-PSD:ifdguid "4607cd00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "JunctionLeftAngle" ; + IFC4-PSD:nameAlias "左継ぎ手角度"@ja-JP , "Junction Left Angle"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositivePlaneAngleMeasure + ] . + +:p39837480d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of junction. TEE=3 ports, CROSS = 4 ports." ; + rdfs:label "JunctionType" ; + IFC4-PSD:definition "The type of junction. TEE=3 ports, CROSS = 4 ports." ; + IFC4-PSD:definitionAlias "接合のタイプ (T継ぎ手は3本 十字継ぎ手は4本)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "39837480d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "JunctionType" ; + IFC4-PSD:nameAlias "継ぎ手タイプ"@ja-JP , "Junction Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "TEE" , "CROSS" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:JunctionType a rdf:Property ; + rdfs:seeAlso :p39837480d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:JunctionType . + +:JunctionLeftAngle a rdf:Property ; + rdfs:seeAlso :p4607cd00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:JunctionLeftAngle . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5324bc00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The change of direction of flow for the right junction where 0 indicates straight segment." ; + rdfs:label "JunctionRightAngle" ; + IFC4-PSD:definition "The change of direction of flow for the right junction where 0 indicates straight segment." ; + IFC4-PSD:definitionAlias ""@en , "右継ぎ手の流れの方向の変化"@ja-JP ; + IFC4-PSD:ifdguid "5324bc00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "JunctionRightAngle" ; + IFC4-PSD:nameAlias "Junction Right Angle"@en , "右継ぎ手角度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositivePlaneAngleMeasure + ] . + +:Pset_PipeFittingTypeJunction + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting type attributes for junction shapes." ; + rdfs:label "Pset_PipeFittingTypeJunction" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcPipeFitting/JUNCTION" ; + IFC4-PSD:definition "Pipe fitting type attributes for junction shapes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeFittingTypeJunction" ; + IFC4-PSD:propertyDef :p5324bc00d1f311e1800000215ad4efdf , :p4607cd00d1f311e1800000215ad4efdf , :p57e97000d1f311e1800000215ad4efdf , :p4acc8100d1f311e1800000215ad4efdf , :p39837480d1f311e1800000215ad4efdf . + +:p4acc8100d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The radius of bending for the left junction." ; + rdfs:label "JunctionLeftRadius" ; + IFC4-PSD:definition "The radius of bending for the left junction." ; + IFC4-PSD:definitionAlias "左継ぎ手の曲がりの半径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4acc8100d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "JunctionLeftRadius" ; + IFC4-PSD:nameAlias "Junction Left Radius"@en , "左継ぎ手半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:JunctionRightRadius a rdf:Property ; + rdfs:seeAlso :p57e97000d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:JunctionRightRadius . + +:JunctionLeftRadius a rdf:Property ; + rdfs:seeAlso :p4acc8100d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:JunctionLeftRadius . + +:JunctionRightAngle a rdf:Property ; + rdfs:seeAlso :p5324bc00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:JunctionRightAngle . diff --git a/converter/src/main/resources/pset/Pset_PipeSegmentOccurrence.ttl b/converter/src/main/resources/pset/Pset_PipeSegmentOccurrence.ttl new file mode 100644 index 00000000..d97c3460 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeSegmentOccurrence.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p73547b00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The gradient of the pipe segment." ; + rdfs:label "Gradient" ; + IFC4-PSD:definition "The gradient of the pipe segment." ; + IFC4-PSD:definitionAlias "配管部の勾配"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "73547b00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Gradient" ; + IFC4-PSD:nameAlias "Gradient"@en , "勾配"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Gradient a rdf:Property ; + rdfs:seeAlso :p73547b00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Gradient . + +:Pset_PipeSegmentOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment." ; + rdfs:label "Pset_PipeSegmentOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcPipeSegment ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment" ; + IFC4-PSD:definition "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeSegmentOccurrence" ; + IFC4-PSD:propertyDef :p659ef580d1f311e1800000215ad4efdf , :p794a5c00d1f311e1800000215ad4efdf , :p6c2d6d00d1f311e1800000215ad4efdf , :p73547b00d1f311e1800000215ad4efdf . + +:InteriorRoughnessCoefficient + a rdf:Property ; + rdfs:seeAlso :p659ef580d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InteriorRoughnessCoefficient . + +:p794a5c00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The invert elevation relative to the datum established for the project." ; + rdfs:label "InvertElevation" ; + IFC4-PSD:definition "The invert elevation relative to the datum established for the project." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "794a5c00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "InvertElevation" ; + IFC4-PSD:nameAlias "Invert Elevation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:InvertElevation a rdf:Property ; + rdfs:seeAlso :p794a5c00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InvertElevation . + +:p6c2d6d00d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the pipe segment.\n\nNote: This is typically used only for plastic pipe segments. However, it may be used for any pipe segments with a painted surface which is not otherwise specified as a covering." ; + rdfs:label "Color" ; + IFC4-PSD:definition "The color of the pipe segment.\n\nNote: This is typically used only for plastic pipe segments. However, it may be used for any pipe segments with a painted surface which is not otherwise specified as a covering." ; + IFC4-PSD:definitionAlias ""@en , "配管部の内部粗度係数 記:この語はプラスチック配管にのみ使われる。しかしながら、保護のためではない塗装された表面を持つ配管にも使われる。"@ja-JP ; + IFC4-PSD:ifdguid "6c2d6d00d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:nameAlias "色"@ja-JP , "Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Color a rdf:Property ; + rdfs:seeAlso :p6c2d6d00d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Color . + +:p659ef580d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The interior roughness coefficient of the pipe segment." ; + rdfs:label "InteriorRoughnessCoefficient" ; + IFC4-PSD:definition "The interior roughness coefficient of the pipe segment." ; + IFC4-PSD:definitionAlias "配管部の内部粗度係数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "659ef580d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "InteriorRoughnessCoefficient" ; + IFC4-PSD:nameAlias "Interior Roughness Coefficient"@en , "内部粗度係数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PipeSegmentPHistory.ttl b/converter/src/main/resources/pset/Pset_PipeSegmentPHistory.ttl new file mode 100644 index 00000000..7f1924ed --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeSegmentPHistory.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p87987800d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric leakage flow rate." ; + rdfs:label "FluidFlowLeakage" ; + IFC4-PSD:definition "Volumetric leakage flow rate." ; + IFC4-PSD:definitionAlias ""@en , "漏洩量"@ja-JP ; + IFC4-PSD:ifdguid "87987800d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "FluidFlowLeakage" ; + IFC4-PSD:nameAlias "Fluid Flow Leakage"@en , "流体漏洩量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_PipeSegmentPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe segment performance history common attributes." ; + rdfs:label "Pset_PipeSegmentPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcPipeSegment ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment" ; + IFC4-PSD:definition "Pipe segment performance history common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeSegmentPHistory" ; + IFC4-PSD:propertyDef :p87987800d1f311e1800000215ad4efdf , :p849d8780d1f311e1800000215ad4efdf . + +:p849d8780d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Leakage per unit length curve versus working pressure." ; + rdfs:label "LeakageCurve" ; + IFC4-PSD:definition "Leakage per unit length curve versus working pressure." ; + IFC4-PSD:definitionAlias "配管圧力に対する単位あたり流出量曲線"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "849d8780d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "LeakageCurve" ; + IFC4-PSD:nameAlias "Leakage Curve"@en , "漏洩曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:LeakageCurve a rdf:Property ; + rdfs:seeAlso :p849d8780d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeakageCurve . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FluidFlowLeakage a rdf:Property ; + rdfs:seeAlso :p87987800d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FluidFlowLeakage . diff --git a/converter/src/main/resources/pset/Pset_PipeSegmentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_PipeSegmentTypeCommon.ttl new file mode 100644 index 00000000..d2203b1a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeSegmentTypeCommon.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :p9121e000d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:WorkingPressure a rdf:Property ; + rdfs:seeAlso :pa72fa080d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkingPressure . + +:NominalDiameter a rdf:Property ; + rdfs:seeAlso :pc0385180d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDiameter . + +:Pset_PipeSegmentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe segment type common attributes." ; + rdfs:label "Pset_PipeSegmentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcPipeSegment ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment" ; + IFC4-PSD:definition "Pipe segment type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeSegmentTypeCommon" ; + IFC4-PSD:propertyDef :pcf1f0400d1f311e1800000215ad4efdf , :pa72fa080d1f311e1800000215ad4efdf , :pc7f7f600d1f311e1800000215ad4efdf , :p9121e000d1f311e1800000215ad4efdf , :p97b05780d1f311e1800000215ad4efdf , :pb7e01680d1f311e1800000215ad4efdf , :pc0385180d1f311e1800000215ad4efdf , :padbe1800d1f311e1800000215ad4efdf . + +:p9121e000d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "9121e000d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pcf1f0400d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual outer diameter of the pipe." ; + rdfs:label "OuterDiameter" ; + IFC4-PSD:definition "The actual outer diameter of the pipe." ; + IFC4-PSD:definitionAlias ""@en , "配管の実外径(リストの複数の数字の解釈については呼び径参照)"@ja-JP ; + IFC4-PSD:ifdguid "cf1f0400d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "OuterDiameter" ; + IFC4-PSD:nameAlias "外径"@ja-JP , "Outer Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p97b05780d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p97b05780d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "97b05780d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pc0385180d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal diameter of the pipe segment." ; + rdfs:label "NominalDiameter" ; + IFC4-PSD:definition "The nominal diameter of the pipe segment." ; + IFC4-PSD:definitionAlias ""@en , "配管部の呼び径、リストに一つの数字しかないとき、この呼び径が全ての管端に当てはまる。一つ以上の数字があるとき、呼び径はリストの表示に対応する管端にあてはまる。"@ja-JP ; + IFC4-PSD:ifdguid "c0385180d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDiameter" ; + IFC4-PSD:nameAlias "呼び径"@ja-JP , "Nominal Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pc7f7f600d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual inner diameter of the pipe." ; + rdfs:label "InnerDiameter" ; + IFC4-PSD:definition "The actual inner diameter of the pipe." ; + IFC4-PSD:definitionAlias ""@en , "配管の実内径(リストの複数の数字の解釈については呼び径参照)"@ja-JP ; + IFC4-PSD:ifdguid "c7f7f600d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "InnerDiameter" ; + IFC4-PSD:nameAlias "Inner Diameter"@en , "内径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :pb7e01680d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:PressureRange a rdf:Property ; + rdfs:seeAlso :padbe1800d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRange . + +:OuterDiameter a rdf:Property ; + rdfs:seeAlso :pcf1f0400d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OuterDiameter . + +:padbe1800d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + rdfs:label "PressureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum working pressure (relative to ambient pressure)." ; + IFC4-PSD:definitionAlias "許容最大/最小管内圧力(周囲圧力に比較して)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "adbe1800d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRange" ; + IFC4-PSD:nameAlias "Pressure Range"@en , "圧力範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pb7e01680d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable maximum and minimum temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable maximum and minimum temperature." ; + IFC4-PSD:definitionAlias "許容最大/最小温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b7e01680d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "Temperature Range"@en , "温度範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:InnerDiameter a rdf:Property ; + rdfs:seeAlso :pc7f7f600d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InnerDiameter . + +:pa72fa080d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Working pressure." ; + rdfs:label "WorkingPressure" ; + IFC4-PSD:definition "Working pressure." ; + IFC4-PSD:definitionAlias "動作圧"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a72fa080d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "WorkingPressure" ; + IFC4-PSD:nameAlias "Working Pressure"@en , "動作圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PipeSegmentTypeCulvert.ttl b/converter/src/main/resources/pset/Pset_PipeSegmentTypeCulvert.ttl new file mode 100644 index 00000000..25886a93 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeSegmentTypeCulvert.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pdba35c80d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The internal width of the culvert." ; + rdfs:label "InternalWidth" ; + IFC4-PSD:definition "The internal width of the culvert." ; + IFC4-PSD:definitionAlias ""@en , "暗渠管の内幅"@ja-JP ; + IFC4-PSD:ifdguid "dba35c80d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "InternalWidth" ; + IFC4-PSD:nameAlias "Internal Width"@en , "内幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_PipeSegmentTypeCulvert + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Covered channel or large pipe that forms a watercourse below ground level, usually under a road or railway (BS6100)." ; + rdfs:label "Pset_PipeSegmentTypeCulvert" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment/CULVERT" ; + IFC4-PSD:definition "Covered channel or large pipe that forms a watercourse below ground level, usually under a road or railway (BS6100)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeSegmentTypeCulvert" ; + IFC4-PSD:propertyDef :pdba35c80d1f311e1800000215ad4efdf , :pe2ca6a80d1f311e1800000215ad4efdf . + +:pe2ca6a80d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The clear depth of the culvert." ; + rdfs:label "ClearDepth" ; + IFC4-PSD:definition "The clear depth of the culvert." ; + IFC4-PSD:definitionAlias "暗渠管の許容(安全)深さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e2ca6a80d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "ClearDepth" ; + IFC4-PSD:nameAlias "Clear Depth"@en , "許容深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:ClearDepth a rdf:Property ; + rdfs:seeAlso :pe2ca6a80d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearDepth . + +:InternalWidth a rdf:Property ; + rdfs:seeAlso :pdba35c80d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InternalWidth . diff --git a/converter/src/main/resources/pset/Pset_PipeSegmentTypeGutter.ttl b/converter/src/main/resources/pset/Pset_PipeSegmentTypeGutter.ttl new file mode 100644 index 00000000..58a80628 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PipeSegmentTypeGutter.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pf4137700d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual flow capacity for the gutter. Value of 0.00 means this value has not been set." ; + rdfs:label "FlowRating" ; + IFC4-PSD:definition "Actual flow capacity for the gutter. Value of 0.00 means this value has not been set." ; + IFC4-PSD:definitionAlias "実際の排水流量  0.00値はこの値がセットされていないことを意味する "@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f4137700d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "FlowRating" ; + IFC4-PSD:nameAlias "流量"@ja-JP , "Flow Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:FlowRating a rdf:Property ; + rdfs:seeAlso :pf4137700d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowRating . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_PipeSegmentTypeGutter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Gutter segment type common attributes." ; + rdfs:label "Pset_PipeSegmentTypeGutter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcPipeSegment/GUTTER" ; + IFC4-PSD:definition "Gutter segment type common attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PipeSegmentTypeGutter" ; + IFC4-PSD:propertyDef :peeb62c80d1f311e1800000215ad4efdf , :pf4137700d1f311e1800000215ad4efdf . + +:peeb62c80d1f311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Angle of the gutter to allow for drainage." ; + rdfs:label "Slope" ; + IFC4-PSD:definition "Angle of the gutter to allow for drainage." ; + IFC4-PSD:definitionAlias "排水に必要な溝の角度(傾斜)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "eeb62c80d1f311e1800000215ad4efdf" ; + IFC4-PSD:name "Slope" ; + IFC4-PSD:nameAlias "勾配"@ja-JP , "Slope"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Slope a rdf:Property ; + rdfs:seeAlso :peeb62c80d1f311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Slope . diff --git a/converter/src/main/resources/pset/Pset_PlateCommon.ttl b/converter/src/main/resources/pset/Pset_PlateCommon.ttl index e92f939d..ea5659e4 100644 --- a/converter/src/main/resources/pset/Pset_PlateCommon.ttl +++ b/converter/src/main/resources/pset/Pset_PlateCommon.ttl @@ -1,175 +1,144 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_PlateCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_PlateCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcPlate" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcPlate." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcPlate"@fr-FR ; - IFC4-PSD:definitionAlias "IfcPlaceオブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "Property Set Definition in Chinese"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_PlateCommon" ; - IFC4-PSD:propertyDef :_02fa2980d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_08f00a80d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_186f5380d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1e653480d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_24f3ac00d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2c1aba00d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_31780480d1f411e1800000215ad4efdf ; -. -:_02fa2980d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:definitionAlias "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP ; - IFC4-PSD:ifdguid "02fa2980d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_08f00a80d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "08f00a80d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_186f5380d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "この要素が外部に用いられるか(TRUE)、否か(FALSE)を示す。(TRUE)の場合、これは外部要素で、建物の外部に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "186f5380d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1e653480d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "オブジェクトが荷重を保持するか(TRUE)、保持しないか(FALSE)を示す。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "1e653480d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_24f3ac00d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "このオブジェクトの遮音等級。各国の建築基準に従って決められる。このオブジェクトの音響透過を指数であらわす。(実際の吸音値を示すかわりに)"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:ifdguid "24f3ac00d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2c1aba00d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for this object. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "当該オブジェクトの耐火等級。国で定めた耐火安全等級分類による。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "2c1aba00d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_31780480d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -It applies to the total door construction.""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) qui s'applique à l'ensemble de la plaque."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Platte (für alle Schichten)."""@de-DE ; - IFC4-PSD:definitionAlias "材料の熱貫流率(U値)。すべての扉部材に適応される。"@ja-JP ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -适用于门的整体结构。"""@zh-CN ; - IFC4-PSD:ifdguid "31780480d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p1e653480d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "オブジェクトが荷重を保持するか(TRUE)、保持しないか(FALSE)を示す。"@ja-JP , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , ""@en , "表示该对象是否需要承重。"@zh-CN , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "1e653480d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE , "Load Bearing"@en , "耐力部材"@ja-JP , "是否承重"@zh-CN , "Porteur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p08f00a80d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :p24f3ac00d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:p02fa2980d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , ""@en , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "認識された分類体系で参照する分類がない場合にこのプロジェクト固有の参照記号(例:タイプ'A-1')が与えられる。"@ja-JP ; + IFC4-PSD:ifdguid "02fa2980d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p31780480d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + IFC4-PSD:definitionAlias "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Platte (für alle Schichten)."@de-DE , ""@en , "材料的导热系数(U值)。\n适用于门的整体结构。"@zh-CN , "材料の熱貫流率(U値)。すべての扉部材に適応される。"@ja-JP , "Coefficient de transmission thermique (U) qui s'applique à l'ensemble de la plaque."@fr-FR ; + IFC4-PSD:ifdguid "31780480d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "U-Wert"@de-DE , "熱貫流率"@ja-JP , "TransmissionThermique"@fr-FR , "导热系数"@zh-CN , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:p2c1aba00d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "当該オブジェクトの耐火等級。国で定めた耐火安全等級分類による。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "2c1aba00d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Fire Rating"@en , "防火等级"@zh-CN , "ResistanceAuFeu"@fr-FR , "耐火等級"@ja-JP , "Feuerwiderstandsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p31780480d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p2c1aba00d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p24f3ac00d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "このオブジェクトの遮音等級。各国の建築基準に従って決められる。このオブジェクトの音響透過を指数であらわす。(実際の吸音値を示すかわりに)"@ja-JP , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , ""@en ; + IFC4-PSD:ifdguid "24f3ac00d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "遮音等級"@ja-JP , "Acoustic Rating"@en , "IsolationAcoustique"@fr-FR , "隔音等级"@zh-CN , "Schallschutzklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p02fa2980d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p1e653480d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:p08f00a80d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "08f00a80d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "状態"@ja-JP , "Status"@en , "Status"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p186f5380d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p186f5380d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias ""@en , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "この要素が外部に用いられるか(TRUE)、否か(FALSE)を示す。(TRUE)の場合、これは外部要素で、建物の外部に面している。"@ja-JP , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "186f5380d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Außenbauteil"@de-DE , "EstExterieur"@fr-FR , "是否外部构件"@zh-CN , "外部区分"@ja-JP , "Is External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_PlateCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcPlate." ; + rdfs:label "Pset_PlateCommon" ; + IFC4-PSD:applicableClass IFC4:IfcPlate ; + IFC4-PSD:applicableTypeValue "IfcPlate" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcPlate." ; + IFC4-PSD:definitionAlias "IfcPlaceオブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcPlate"@fr-FR , "Property Set Definition in Chinese"@zh-CN , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PlateCommon" ; + IFC4-PSD:propertyDef :p24f3ac00d1f411e1800000215ad4efdf , :p31780480d1f411e1800000215ad4efdf , :p2c1aba00d1f411e1800000215ad4efdf , :p186f5380d1f411e1800000215ad4efdf , :p08f00a80d1f411e1800000215ad4efdf , :p02fa2980d1f411e1800000215ad4efdf , :p1e653480d1f411e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_PrecastConcreteElementFabrication.ttl b/converter/src/main/resources/pset/Pset_PrecastConcreteElementFabrication.ttl new file mode 100644 index 00000000..40083d44 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PrecastConcreteElementFabrication.ttl @@ -0,0 +1,146 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SerialNumber a rdf:Property ; + rdfs:seeAlso :p48b6f200d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SerialNumber . + +:TypeDesignator a rdf:Property ; + rdfs:seeAlso :p3d63c680d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TypeDesignator . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p608e7600d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type ‘1’ and specific shape ‘A’)." ; + rdfs:label "PieceMark" ; + IFC4-PSD:definition "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type ‘1’ and specific shape ‘A’)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "608e7600d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "PieceMark" ; + IFC4-PSD:nameAlias "Piece Mark"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ProductionLotId a rdf:Property ; + rdfs:seeAlso :p4359a780d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProductionLotId . + +:PieceMark a rdf:Property ; + rdfs:seeAlso :p608e7600d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PieceMark . + +:p671ced80d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines a unique location within a structure, the ‘slot’ into which the piece was installed. Where pieces share the same piece mark, they can be interchanged. The value is only known after erection." ; + rdfs:label "AsBuiltLocationNumber" ; + IFC4-PSD:definition "Defines a unique location within a structure, the ‘slot’ into which the piece was installed. Where pieces share the same piece mark, they can be interchanged. The value is only known after erection." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "671ced80d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "AsBuiltLocationNumber" ; + IFC4-PSD:nameAlias "As Built Location Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:AsBuiltLocationNumber + a rdf:Property ; + rdfs:seeAlso :p671ced80d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AsBuiltLocationNumber . + +:p4359a780d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The manufacturer's production lot identifier." ; + rdfs:label "ProductionLotId" ; + IFC4-PSD:definition "The manufacturer's production lot identifier." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4359a780d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ProductionLotId" ; + IFC4-PSD:nameAlias "Production Lot Id"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p48b6f200d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The manufacturer's serial number for the precast concrete element." ; + rdfs:label "SerialNumber" ; + IFC4-PSD:definition "The manufacturer's serial number for the precast concrete element." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "48b6f200d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "SerialNumber" ; + IFC4-PSD:nameAlias "Serial Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_PrecastConcreteElementFabrication + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Production and manufacturing related properties common to different types of precast concrete elements. The Pset applies to manufactured pieces. It can be used by a number of subtypes of IfcBuildingElement. If the precast concrete ele" ; + rdfs:label "Pset_PrecastConcreteElementFabrication" ; + IFC4-PSD:applicableClass IFC4:IfcRampFlight , IFC4:IfcMember , IFC4:IfcRoof , IFC4:IfcPile , IFC4:IfcRamp , IFC4:IfcChimney , IFC4:IfcSlab , IFC4:IfcCivilElement , IFC4:IfcStairFlight , IFC4:IfcPlate , IFC4:IfcBeam , IFC4:IfcBuildingElementProxy , IFC4:IfcWall , IFC4:IfcStair , IFC4:IfcColumn , IFC4:IfcFooting ; + IFC4-PSD:applicableTypeValue "IfcBeam,IfcBuildingElementProxy,IfcChimney,IfcColumn,IfcFooting,IfcMember,IfcPile,IfcPlate,IfcRamp,IfcRampFlight,IfcRoof,IfcSlab,IfcStair,IfcStairFlight,IfcWall,IfcCivilElement" ; + IFC4-PSD:definition "Production and manufacturing related properties common to different types of precast concrete elements. The Pset applies to manufactured pieces. It can be used by a number of subtypes of IfcBuildingElement. If the precast concrete ele" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PrecastConcreteElementFabrication" ; + IFC4-PSD:propertyDef :p6dab6500d1f411e1800000215ad4efdf , :p3d63c680d1f411e1800000215ad4efdf , :p48b6f200d1f411e1800000215ad4efdf , :p4359a780d1f411e1800000215ad4efdf , :p671ced80d1f411e1800000215ad4efdf , :p608e7600d1f411e1800000215ad4efdf , :p72701900d1f411e1800000215ad4efdf . + +:p6dab6500d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Production date (stripped from form)." ; + rdfs:label "ActualProductionDate" ; + IFC4-PSD:definition "Production date (stripped from form)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6dab6500d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ActualProductionDate" ; + IFC4-PSD:nameAlias "Actual Production Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:ActualErectionDate a rdf:Property ; + rdfs:seeAlso :p72701900d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActualErectionDate . + +:p72701900d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date erected." ; + rdfs:label "ActualErectionDate" ; + IFC4-PSD:definition "Date erected." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "72701900d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ActualErectionDate" ; + IFC4-PSD:nameAlias "Actual Erection Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDateTime + ] . + +:p3d63c680d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc." ; + rdfs:label "TypeDesignator" ; + IFC4-PSD:definition "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3d63c680d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "TypeDesignator" ; + IFC4-PSD:nameAlias "Type Designator"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ActualProductionDate + a rdf:Property ; + rdfs:seeAlso :p6dab6500d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ActualProductionDate . diff --git a/converter/src/main/resources/pset/Pset_PrecastConcreteElementGeneral.ttl b/converter/src/main/resources/pset/Pset_PrecastConcreteElementGeneral.ttl index b882bdec..afff701a 100644 --- a/converter/src/main/resources/pset/Pset_PrecastConcreteElementGeneral.ttl +++ b/converter/src/main/resources/pset/Pset_PrecastConcreteElementGeneral.ttl @@ -1,274 +1,370 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_PrecastConcreteElementGeneral -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:BatterAtEnd a rdf:Property ; + rdfs:seeAlso :p00e49a80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BatterAtEnd . + +:SupportDuringTransportDocReference + a rdf:Property ; + rdfs:seeAlso :ped393400d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupportDuringTransportDocReference . + +:ManufacturingToleranceClass + a rdf:Property ; + rdfs:seeAlso :pb4995a80d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ManufacturingToleranceClass . + +:PieceMark a rdf:Property ; + rdfs:seeAlso :p122da700d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PieceMark . + +:SupportDuringTransportDescription + a rdf:Property ; + rdfs:seeAlso :pe7435300d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupportDuringTransportDescription . + :Pset_PrecastConcreteElementGeneral - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcBuildingElement ; - IFC4-PSD:applicableTypeValue "IfcBuildingElement" ; - IFC4-PSD:definition "Definition from IAI: Production and manufacturing related properties common to different types of precast concrete elements. The Pset can be used by a number of subtypes of IfcBuildingElement. If the precast concrete element is a sandwich wall panel each structural layer or shell represented by an IfcBuildingElementPart may be attached to a separate Pset of this type, if needed. Some of the properties apply only for specific types of precast concrete elements." ; - IFC4-PSD:definitionAlias "生産(設計)と製造(メーカー)でタイプの異なるプレキャストコンクリート要素(部材)に、共通の属性(プロパティ)を関連付けた。Psetは多くのIfcBuildingElementのサブタイプとして使用できる。もしプレキャストコンクリート要素が壁板であるとしたら、IfcBuildingElementPartで表される各々の構造的な層かシェルは、このタイプの別々のPsetで結び付くかもしれない。幾つかの属性が、特定なタイプのプレキャストコンクリート要素のためだけに適用される。"@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_PrecastConcreteElementGeneral" ; - IFC4-PSD:propertyDef :_00e49a80d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_06da7b80d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0c37c600d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_122da700d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_18238800d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_94699b80d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_aba88900d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b4995a80d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_bb27d200d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c1b64980d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c975ee00d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cf6bcf00d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d5fa4680d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_dbf02780d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e14d7200d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e7435300d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ed393400d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f0342480d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f6c29c00d1f411e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_fb875000d1f411e1800000215ad4efdf ; -. -:_00e49a80d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The angle, in radians, by which the formwork at the ending face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; - IFC4-PSD:ifdguid "00e49a80d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "BatterAtEnd" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_06da7b80d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The angle, in radians, through which the end face of a precast piece is rotated with respect to its starting face, along its longitudinal axis, as a result of non-aligned supports. This measure is also termed the ‘warping’ angle." ; - IFC4-PSD:ifdguid "06da7b80d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "Twisting" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_0c37c600d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The ratio of the distance by which a precast piece is shortened after release from its form (due to compression induced by prestressing) to its original (nominal) length." ; - IFC4-PSD:ifdguid "0c37c600d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "Shortening" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcRatioMeasure ; - ] ; -. -:_122da700d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type ‘1’ and specific shape ‘A’)." ; - IFC4-PSD:ifdguid "122da700d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "PieceMark" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_18238800d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Defines a unique location within a structure, the ‘slot’ for which the piece was designed." ; - IFC4-PSD:ifdguid "18238800d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "DesignLocationNumber" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_94699b80d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc." ; - IFC4-PSD:definitionAlias "プレキャストコンクリート要素の特定子(部位)を記述する。内容はローカルな(各国の)標準(規格)に依存する。例えばフィンランドでは、柱はP、梁はKのように通常、頭文字1文字で表す。"@ja-JP ; - IFC4-PSD:ifdguid "94699b80d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "TypeDesignator" ; - IFC4-PSD:nameAlias "特定子の記述"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_aba88900d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The chamfer in the corners of the precast element. The chamfer is presumed to be equal in both directions." ; - IFC4-PSD:definitionAlias "プレキャストコンクリート要素の面取り。面取りは両方向で等しいものとする。"@ja-JP ; - IFC4-PSD:ifdguid "aba88900d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "CornerChamfer" ; - IFC4-PSD:nameAlias "面取り"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_b4995a80d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Classification designation of the manufacturing tolerances according to local standards." ; - IFC4-PSD:definitionAlias "ローカルな標準によるメーカーの認可分類。"@ja-JP ; - IFC4-PSD:ifdguid "b4995a80d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "ManufacturingToleranceClass" ; - IFC4-PSD:nameAlias "メーカーの認可分類"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_bb27d200d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The minimum required compressive strength of the concrete at form stripping time." ; - IFC4-PSD:definitionAlias "脱型時におけるコンクリートの最小必要圧縮強度。"@ja-JP ; - IFC4-PSD:ifdguid "bb27d200d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "FormStrippingStrength" ; - IFC4-PSD:nameAlias "脱型強度"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPressureMeasure ; - ] ; -. -:_c1b64980d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The minimum required compressive strength of the concrete when the concrete element is lifted." ; - IFC4-PSD:definitionAlias "コンクリート要素が吊り上げられる時のコンクリートの最小必要圧縮強度。"@ja-JP ; - IFC4-PSD:ifdguid "c1b64980d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "LiftingStrength" ; - IFC4-PSD:nameAlias "吊り上げ強度"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPressureMeasure ; - ] ; -. -:_c975ee00d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The minimum required compressive strength of the concrete when the tendon stress is released. This property applies to prestressed concrete elements only." ; - IFC4-PSD:definitionAlias "緊張力が解放される時のコンクリートの最小必要圧縮強度。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP ; - IFC4-PSD:ifdguid "c975ee00d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "ReleaseStrength" ; - IFC4-PSD:nameAlias "リリース強度"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPressureMeasure ; - ] ; -. -:_cf6bcf00d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The minimum allowable support length." ; - IFC4-PSD:definitionAlias "最小許容支持長さ。"@ja-JP ; - IFC4-PSD:ifdguid "cf6bcf00d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "MinimumAllowableSupportLength" ; - IFC4-PSD:nameAlias "最小許容支持長さ"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_d5fa4680d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The initial stress of the tendon. This property applies to prestressed concrete elements only." ; - IFC4-PSD:definitionAlias "緊張材の初期応力。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP ; - IFC4-PSD:ifdguid "d5fa4680d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "InitialTension" ; - IFC4-PSD:nameAlias "初引張力"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPressureMeasure ; - ] ; -. -:_dbf02780d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The maximum allowable relaxation of the tendon (usually expressed as %/1000 h).This property applies to prestressed concrete elements only." ; - IFC4-PSD:definitionAlias "緊張材の最大許容リラクセーション(応力弛緩、-係数)。通常、1000時間あたりの割合(%)。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP ; - IFC4-PSD:ifdguid "dbf02780d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "TendonRelaxation" ; - IFC4-PSD:nameAlias "緊張材のリラクセーション"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure ; - ] ; -. -:_e14d7200d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The minimum required compressive strength of the concrete required for transportation." ; - IFC4-PSD:definitionAlias "輸送に必要なコンクリートの最小必要圧縮強度。"@ja-JP ; - IFC4-PSD:ifdguid "e14d7200d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "TransportationStrength" ; - IFC4-PSD:nameAlias "輸送強度"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPressureMeasure ; - ] ; -. -:_e7435300d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Textual description of how the concrete element is supported during transportation." ; - IFC4-PSD:definitionAlias "プレキャストコンクリート要素が輸送中における支持方法について書かれたテキスト文書。"@ja-JP ; - IFC4-PSD:ifdguid "e7435300d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "SupportDuringTransportDescription" ; - IFC4-PSD:nameAlias "輸送中の支持に関する記述"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcText ; - ] ; -. -:_ed393400d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference to an external document defining how the concrete element is supported during transportation." ; - IFC4-PSD:definitionAlias "プレキャストコンクリート要素が輸送中における支持方法について書かれた外部ドキュメントの参照。"@ja-JP ; - IFC4-PSD:ifdguid "ed393400d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "SupportDuringTransportDocReference" ; - IFC4-PSD:nameAlias "輸送中の支持に関する参考文献"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyReferenceValue ; - ] ; -. -:_f0342480d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "A descriptive label for how the hollow core ends are treated: they may be left open, closed with a plug, or sealed with cast concrete. Values would be, for example: 'Unplugged', 'Plugged', 'SealedWithConcrete'. This property applies to hollow core slabs only." ; - IFC4-PSD:definitionAlias "(定着部の?)くぼみをどのように扱うのかについて書かれたラベル:開けたままにするか、プラグで塞ぐ、または後詰めコンクリートで塞ぐ。例えば、「塞がない」、「塞ぐ」、「コンクリートで塞ぐ」と書かれるだろう。この属性はスラブに開けられたくぼみにも適用される。"@ja-JP ; - IFC4-PSD:ifdguid "f0342480d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "HollowCorePlugging" ; - IFC4-PSD:nameAlias "くぼみの充填"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_f6c29c00d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The camber deflection, measured from the midpoint of a cambered face of a piece to the midpoint of the chord joining the ends of the same face, as shown in the figure below, divided by the original (nominal) straight length of the face of the piece." ; - IFC4-PSD:ifdguid "f6c29c00d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "CamberAtMidspan" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcRatioMeasure ; - ] ; -. -:_fb875000d1f411e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The angle, in radians, by which the formwork at the starting face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; - IFC4-PSD:ifdguid "fb875000d1f411e1800000215ad4efdf" ; - IFC4-PSD:name "BatterAtStart" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Production and manufacturing related properties common to different types of precast concrete elements. The Pset can be used by a number of subtypes of IfcBuildingElement. If the precast concrete element is a sandwich wall panel each structural layer or shell represented by an IfcBuildingElementPart may be attached to a separate Pset of this type, if needed. Some of the properties apply only for specific types of precast concrete elements." ; + rdfs:label "Pset_PrecastConcreteElementGeneral" ; + IFC4-PSD:applicableClass IFC4:IfcPlate , IFC4:IfcRampFlight , IFC4:IfcSlab , IFC4:IfcFooting , IFC4:IfcBeam , IFC4:IfcStair , IFC4:IfcMember , IFC4:IfcPile , IFC4:IfcCivilElement , IFC4:IfcBuildingElementProxy , IFC4:IfcWall , IFC4:IfcStairFlight , IFC4:IfcRoof , IFC4:IfcChimney , IFC4:IfcRamp , IFC4:IfcColumn ; + IFC4-PSD:applicableTypeValue "IfcBeam,IfcBuildingElementProxy,IfcChimney,IfcColumn,IfcFooting,IfcMember,IfcPile,IfcPlate,IfcRamp,IfcRampFlight,IfcRoof,IfcSlab,IfcStair,IfcStairFlight,IfcWall,IfcCivilElement" ; + IFC4-PSD:definition "Production and manufacturing related properties common to different types of precast concrete elements. The Pset can be used by a number of subtypes of IfcBuildingElement. If the precast concrete element is a sandwich wall panel each structural layer or shell represented by an IfcBuildingElementPart may be attached to a separate Pset of this type, if needed. Some of the properties apply only for specific types of precast concrete elements." ; + IFC4-PSD:definitionAlias ""@en , "生産(設計)と製造(メーカー)でタイプの異なるプレキャストコンクリート要素(部材)に、共通の属性(プロパティ)を関連付けた。Psetは多くのIfcBuildingElementのサブタイプとして使用できる。もしプレキャストコンクリート要素が壁板であるとしたら、IfcBuildingElementPartで表される各々の構造的な層かシェルは、このタイプの別々のPsetで結び付くかもしれない。幾つかの属性が、特定なタイプのプレキャストコンクリート要素のためだけに適用される。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PrecastConcreteElementGeneral" ; + IFC4-PSD:propertyDef :pf0342480d1f411e1800000215ad4efdf , :pf6c29c00d1f411e1800000215ad4efdf , :p122da700d1f511e1800000215ad4efdf , :ped393400d1f411e1800000215ad4efdf , :p94699b80d1f411e1800000215ad4efdf , :pc1b64980d1f411e1800000215ad4efdf , :pcf6bcf00d1f411e1800000215ad4efdf , :p18238800d1f511e1800000215ad4efdf , :p06da7b80d1f511e1800000215ad4efdf , :pbb27d200d1f411e1800000215ad4efdf , :pb4995a80d1f411e1800000215ad4efdf , :pe7435300d1f411e1800000215ad4efdf , :p00e49a80d1f511e1800000215ad4efdf , :pc975ee00d1f411e1800000215ad4efdf , :paba88900d1f411e1800000215ad4efdf , :pe14d7200d1f411e1800000215ad4efdf , :p0c37c600d1f511e1800000215ad4efdf , :pfb875000d1f411e1800000215ad4efdf , :pdbf02780d1f411e1800000215ad4efdf , :pd5fa4680d1f411e1800000215ad4efdf . + +:TypeDesignator a rdf:Property ; + rdfs:seeAlso :p94699b80d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TypeDesignator . + +:pf0342480d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for how the hollow core ends are treated: they may be left open, closed with a plug, or sealed with cast concrete. Values would be, for example: 'Unplugged', 'Plugged', 'SealedWithConcrete'. This property applies to hollow core slabs only." ; + rdfs:label "HollowCorePlugging" ; + IFC4-PSD:definition "A descriptive label for how the hollow core ends are treated: they may be left open, closed with a plug, or sealed with cast concrete. Values would be, for example: 'Unplugged', 'Plugged', 'SealedWithConcrete'. This property applies to hollow core slabs only." ; + IFC4-PSD:definitionAlias "(定着部の?)くぼみをどのように扱うのかについて書かれたラベル:開けたままにするか、プラグで塞ぐ、または後詰めコンクリートで塞ぐ。例えば、「塞がない」、「塞ぐ」、「コンクリートで塞ぐ」と書かれるだろう。この属性はスラブに開けられたくぼみにも適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f0342480d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "HollowCorePlugging" ; + IFC4-PSD:nameAlias "くぼみの充填"@ja-JP , "Hollow Core Plugging"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FormStrippingStrength + a rdf:Property ; + rdfs:seeAlso :pbb27d200d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FormStrippingStrength . + +:pcf6bcf00d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum allowable support length." ; + rdfs:label "MinimumAllowableSupportLength" ; + IFC4-PSD:definition "The minimum allowable support length." ; + IFC4-PSD:definitionAlias ""@en , "最小許容支持長さ。"@ja-JP ; + IFC4-PSD:ifdguid "cf6bcf00d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumAllowableSupportLength" ; + IFC4-PSD:nameAlias "Minimum Allowable Support Length"@en , "最小許容支持長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Twisting a rdf:Property ; + rdfs:seeAlso :p06da7b80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Twisting . + +:HollowCorePlugging a rdf:Property ; + rdfs:seeAlso :pf0342480d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HollowCorePlugging . + +:ped393400d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference to an external document defining how the concrete element is supported during transportation." ; + rdfs:label "SupportDuringTransportDocReference" ; + IFC4-PSD:definition "Reference to an external document defining how the concrete element is supported during transportation." ; + IFC4-PSD:definitionAlias ""@en , "プレキャストコンクリート要素が輸送中における支持方法について書かれた外部ドキュメントの参照。"@ja-JP ; + IFC4-PSD:ifdguid "ed393400d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "SupportDuringTransportDocReference" ; + IFC4-PSD:nameAlias "輸送中の支持に関する参考文献"@ja-JP , "Support During Transport Doc Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ] . + +:p18238800d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines a unique location within a structure, the ‘slot’ for which the piece was designed." ; + rdfs:label "DesignLocationNumber" ; + IFC4-PSD:definition "Defines a unique location within a structure, the ‘slot’ for which the piece was designed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "18238800d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "DesignLocationNumber" ; + IFC4-PSD:nameAlias "Design Location Number"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pd5fa4680d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The initial stress of the tendon. This property applies to prestressed concrete elements only." ; + rdfs:label "InitialTension" ; + IFC4-PSD:definition "The initial stress of the tendon. This property applies to prestressed concrete elements only." ; + IFC4-PSD:definitionAlias "緊張材の初期応力。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d5fa4680d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "InitialTension" ; + IFC4-PSD:nameAlias "初引張力"@ja-JP , "Initial Tension"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:DesignLocationNumber + a rdf:Property ; + rdfs:seeAlso :p18238800d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DesignLocationNumber . + +:p0c37c600d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio of the distance by which a precast piece is shortened after release from its form (due to compression induced by prestressing) to its original (nominal) length." ; + rdfs:label "Shortening" ; + IFC4-PSD:definition "The ratio of the distance by which a precast piece is shortened after release from its form (due to compression induced by prestressing) to its original (nominal) length." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0c37c600d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "Shortening" ; + IFC4-PSD:nameAlias "Shortening"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:pdbf02780d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum allowable relaxation of the tendon (usually expressed as %/1000 h).This property applies to prestressed concrete elements only." ; + rdfs:label "TendonRelaxation" ; + IFC4-PSD:definition "The maximum allowable relaxation of the tendon (usually expressed as %/1000 h).This property applies to prestressed concrete elements only." ; + IFC4-PSD:definitionAlias ""@en , "緊張材の最大許容リラクセーション(応力弛緩、-係数)。通常、1000時間あたりの割合(%)。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP ; + IFC4-PSD:ifdguid "dbf02780d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "TendonRelaxation" ; + IFC4-PSD:nameAlias "Tendon Relaxation"@en , "緊張材のリラクセーション"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p94699b80d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc." ; + rdfs:label "TypeDesignator" ; + IFC4-PSD:definition "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc." ; + IFC4-PSD:definitionAlias ""@en , "プレキャストコンクリート要素の特定子(部位)を記述する。内容はローカルな(各国の)標準(規格)に依存する。例えばフィンランドでは、柱はP、梁はKのように通常、頭文字1文字で表す。"@ja-JP ; + IFC4-PSD:ifdguid "94699b80d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "TypeDesignator" ; + IFC4-PSD:nameAlias "特定子の記述"@ja-JP , "Type Designator"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:TendonRelaxation a rdf:Property ; + rdfs:seeAlso :pdbf02780d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TendonRelaxation . + +:LiftingStrength a rdf:Property ; + rdfs:seeAlso :pc1b64980d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LiftingStrength . + +:pe14d7200d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum required compressive strength of the concrete required for transportation." ; + rdfs:label "TransportationStrength" ; + IFC4-PSD:definition "The minimum required compressive strength of the concrete required for transportation." ; + IFC4-PSD:definitionAlias "輸送に必要なコンクリートの最小必要圧縮強度。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e14d7200d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "TransportationStrength" ; + IFC4-PSD:nameAlias "Transportation Strength"@en , "輸送強度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ReleaseStrength a rdf:Property ; + rdfs:seeAlso :pc975ee00d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseStrength . + +:Shortening a rdf:Property ; + rdfs:seeAlso :p0c37c600d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Shortening . + +:CornerChamfer a rdf:Property ; + rdfs:seeAlso :paba88900d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CornerChamfer . + +:p06da7b80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle, in radians, through which the end face of a precast piece is rotated with respect to its starting face, along its longitudinal axis, as a result of non-aligned supports. This measure is also termed the ‘warping’ angle." ; + rdfs:label "Twisting" ; + IFC4-PSD:definition "The angle, in radians, through which the end face of a precast piece is rotated with respect to its starting face, along its longitudinal axis, as a result of non-aligned supports. This measure is also termed the ‘warping’ angle." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "06da7b80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "Twisting" ; + IFC4-PSD:nameAlias "Twisting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:paba88900d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The chamfer in the corners of the precast element. The chamfer is presumed to be equal in both directions." ; + rdfs:label "CornerChamfer" ; + IFC4-PSD:definition "The chamfer in the corners of the precast element. The chamfer is presumed to be equal in both directions." ; + IFC4-PSD:definitionAlias ""@en , "プレキャストコンクリート要素の面取り。面取りは両方向で等しいものとする。"@ja-JP ; + IFC4-PSD:ifdguid "aba88900d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "CornerChamfer" ; + IFC4-PSD:nameAlias "面取り"@ja-JP , "Corner Chamfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pc975ee00d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum required compressive strength of the concrete when the tendon stress is released. This property applies to prestressed concrete elements only." ; + rdfs:label "ReleaseStrength" ; + IFC4-PSD:definition "The minimum required compressive strength of the concrete when the tendon stress is released. This property applies to prestressed concrete elements only." ; + IFC4-PSD:definitionAlias "緊張力が解放される時のコンクリートの最小必要圧縮強度。この属性はプレストレストコンクリート要素のみに適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c975ee00d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseStrength" ; + IFC4-PSD:nameAlias "Release Strength"@en , "リリース強度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:TransportationStrength + a rdf:Property ; + rdfs:seeAlso :pe14d7200d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TransportationStrength . + +:pe7435300d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Textual description of how the concrete element is supported during transportation." ; + rdfs:label "SupportDuringTransportDescription" ; + IFC4-PSD:definition "Textual description of how the concrete element is supported during transportation." ; + IFC4-PSD:definitionAlias ""@en , "プレキャストコンクリート要素が輸送中における支持方法について書かれたテキスト文書。"@ja-JP ; + IFC4-PSD:ifdguid "e7435300d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "SupportDuringTransportDescription" ; + IFC4-PSD:nameAlias "Support During Transport Description"@en , "輸送中の支持に関する記述"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:pc1b64980d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum required compressive strength of the concrete when the concrete element is lifted." ; + rdfs:label "LiftingStrength" ; + IFC4-PSD:definition "The minimum required compressive strength of the concrete when the concrete element is lifted." ; + IFC4-PSD:definitionAlias ""@en , "コンクリート要素が吊り上げられる時のコンクリートの最小必要圧縮強度。"@ja-JP ; + IFC4-PSD:ifdguid "c1b64980d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "LiftingStrength" ; + IFC4-PSD:nameAlias "Lifting Strength"@en , "吊り上げ強度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:CamberAtMidspan a rdf:Property ; + rdfs:seeAlso :pf6c29c00d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CamberAtMidspan . + +:pf6c29c00d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The camber deflection, measured from the midpoint of a cambered face of a piece to the midpoint of the chord joining the ends of the same face, as shown in the figure below, divided by the original (nominal) straight length of the face of the piece." ; + rdfs:label "CamberAtMidspan" ; + IFC4-PSD:definition "The camber deflection, measured from the midpoint of a cambered face of a piece to the midpoint of the chord joining the ends of the same face, as shown in the figure below, divided by the original (nominal) straight length of the face of the piece." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f6c29c00d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "CamberAtMidspan" ; + IFC4-PSD:nameAlias "Camber At Midspan"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:InitialTension a rdf:Property ; + rdfs:seeAlso :pd5fa4680d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InitialTension . + +:MinimumAllowableSupportLength + a rdf:Property ; + rdfs:seeAlso :pcf6bcf00d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumAllowableSupportLength . + +:p122da700d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type ‘1’ and specific shape ‘A’)." ; + rdfs:label "PieceMark" ; + IFC4-PSD:definition "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type ‘1’ and specific shape ‘A’)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "122da700d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "PieceMark" ; + IFC4-PSD:nameAlias "Piece Mark"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb4995a80d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Classification designation of the manufacturing tolerances according to local standards." ; + rdfs:label "ManufacturingToleranceClass" ; + IFC4-PSD:definition "Classification designation of the manufacturing tolerances according to local standards." ; + IFC4-PSD:definitionAlias "ローカルな標準によるメーカーの認可分類。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b4995a80d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "ManufacturingToleranceClass" ; + IFC4-PSD:nameAlias "Manufacturing Tolerance Class"@en , "メーカーの認可分類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pbb27d200d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum required compressive strength of the concrete at form stripping time." ; + rdfs:label "FormStrippingStrength" ; + IFC4-PSD:definition "The minimum required compressive strength of the concrete at form stripping time." ; + IFC4-PSD:definitionAlias ""@en , "脱型時におけるコンクリートの最小必要圧縮強度。"@ja-JP ; + IFC4-PSD:ifdguid "bb27d200d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "FormStrippingStrength" ; + IFC4-PSD:nameAlias "Form Stripping Strength"@en , "脱型強度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:BatterAtStart a rdf:Property ; + rdfs:seeAlso :pfb875000d1f411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BatterAtStart . + +:pfb875000d1f411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle, in radians, by which the formwork at the starting face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; + rdfs:label "BatterAtStart" ; + IFC4-PSD:definition "The angle, in radians, by which the formwork at the starting face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fb875000d1f411e1800000215ad4efdf" ; + IFC4-PSD:name "BatterAtStart" ; + IFC4-PSD:nameAlias "Batter At Start"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:p00e49a80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle, in radians, by which the formwork at the ending face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; + rdfs:label "BatterAtEnd" ; + IFC4-PSD:definition "The angle, in radians, by which the formwork at the ending face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "00e49a80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "BatterAtEnd" ; + IFC4-PSD:nameAlias "Batter At End"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_PrecastSlab.ttl b/converter/src/main/resources/pset/Pset_PrecastSlab.ttl index b8022f79..7642b308 100644 --- a/converter/src/main/resources/pset/Pset_PrecastSlab.ttl +++ b/converter/src/main/resources/pset/Pset_PrecastSlab.ttl @@ -1,116 +1,164 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_PrecastSlab -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_PrecastSlab - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcSlab ; - IFC4-PSD:applicableTypeValue "IfcSlab" ; - IFC4-PSD:definition "Definition from IAI: Layout and component information defining how prestressed slab components are laid out in a precast slab assembly. The values are global defaults for the slab as a whole, but can be overridden by local placements of the individual com" ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_PrecastSlab" ; - IFC4-PSD:propertyDef :_2ffb0c00d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_36898380d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3c7f6480d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_430ddc00d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4a34ea00d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4ef99e00d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5456e880d1f511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_5b7df680d1f511e1800000215ad4efdf ; -. -:_2ffb0c00d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Type designator for the precast concrete slab, expressing mainly the component type. Possible values are “Hollow-core”, “Double-tee”, “Flat plank”, etc." ; - IFC4-PSD:ifdguid "2ffb0c00d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "TypeDesignator" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_36898380d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Defines if a topping is applied and what kind. Values are “Full topping”, “Perimeter Wash”, “None”" ; - IFC4-PSD:ifdguid "36898380d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "ToppingType" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_3c7f6480d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The distance from the left (‘West’) edge of the slab (in the direction of span of the components) to the axis of the first component." ; - IFC4-PSD:ifdguid "3c7f6480d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "EdgeDistanceToFirstAxis" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_430ddc00d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The distance between the axes of the components, measured along the ‘South’ edge of the slab." ; - IFC4-PSD:ifdguid "430ddc00d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "DistanceBetweenComponentAxes" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_4a34ea00d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The angle of rotation of the axis of the first component relative to the ‘West’ edge of the slab." ; - IFC4-PSD:ifdguid "4a34ea00d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "AngleToFirstAxis" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_4ef99e00d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The angle between the axes of each pair of components." ; - IFC4-PSD:ifdguid "4ef99e00d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "AngleBetweenComponentAxes" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure ; - ] ; -. -:_5456e880d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The nominal overall thickness of the slab." ; - IFC4-PSD:ifdguid "5456e880d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "NominalThickness" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. -:_5b7df680d1f511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "The nominal thickness of the topping." ; - IFC4-PSD:ifdguid "5b7df680d1f511e1800000215ad4efdf" ; - IFC4-PSD:name "NominalToppingThickness" ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p5456e880d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal overall thickness of the slab." ; + rdfs:label "NominalThickness" ; + IFC4-PSD:definition "The nominal overall thickness of the slab." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5456e880d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalThickness" ; + IFC4-PSD:nameAlias "Nominal Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:EdgeDistanceToFirstAxis + a rdf:Property ; + rdfs:seeAlso :p3c7f6480d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeDistanceToFirstAxis . + +:Pset_PrecastSlab a IFC4-PSD:PropertySetDef ; + rdfs:comment "Layout and component information defining how prestressed slab components are laid out in a precast slab assembly. The values are global defaults for the slab as a whole, but can be overridden by local placements of the individual com" ; + rdfs:label "Pset_PrecastSlab" ; + IFC4-PSD:applicableClass IFC4:IfcSlab ; + IFC4-PSD:applicableTypeValue "IfcSlab" ; + IFC4-PSD:definition "Layout and component information defining how prestressed slab components are laid out in a precast slab assembly. The values are global defaults for the slab as a whole, but can be overridden by local placements of the individual com" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PrecastSlab" ; + IFC4-PSD:propertyDef :p2ffb0c00d1f511e1800000215ad4efdf , :p3c7f6480d1f511e1800000215ad4efdf , :p5b7df680d1f511e1800000215ad4efdf , :p5456e880d1f511e1800000215ad4efdf , :p4a34ea00d1f511e1800000215ad4efdf , :p36898380d1f511e1800000215ad4efdf , :p430ddc00d1f511e1800000215ad4efdf , :p4ef99e00d1f511e1800000215ad4efdf . + +:p4a34ea00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle of rotation of the axis of the first component relative to the ‘West’ edge of the slab." ; + rdfs:label "AngleToFirstAxis" ; + IFC4-PSD:definition "The angle of rotation of the axis of the first component relative to the ‘West’ edge of the slab." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4a34ea00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "AngleToFirstAxis" ; + IFC4-PSD:nameAlias "Angle To First Axis"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:NominalThickness a rdf:Property ; + rdfs:seeAlso :p5456e880d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalThickness . + +:AngleToFirstAxis a rdf:Property ; + rdfs:seeAlso :p4a34ea00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AngleToFirstAxis . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:DistanceBetweenComponentAxes + a rdf:Property ; + rdfs:seeAlso :p430ddc00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DistanceBetweenComponentAxes . + +:p36898380d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines if a topping is applied and what kind. Values are “Full topping”, “Perimeter Wash”, “None”" ; + rdfs:label "ToppingType" ; + IFC4-PSD:definition "Defines if a topping is applied and what kind. Values are “Full topping”, “Perimeter Wash”, “None”" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "36898380d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "ToppingType" ; + IFC4-PSD:nameAlias "Topping Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p430ddc00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The distance between the axes of the components, measured along the ‘South’ edge of the slab." ; + rdfs:label "DistanceBetweenComponentAxes" ; + IFC4-PSD:definition "The distance between the axes of the components, measured along the ‘South’ edge of the slab." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "430ddc00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "DistanceBetweenComponentAxes" ; + IFC4-PSD:nameAlias "Distance Between Component Axes"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:TypeDesignator a rdf:Property ; + rdfs:seeAlso :p2ffb0c00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TypeDesignator . + +:ToppingType a rdf:Property ; + rdfs:seeAlso :p36898380d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ToppingType . + +:p4ef99e00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle between the axes of each pair of components." ; + rdfs:label "AngleBetweenComponentAxes" ; + IFC4-PSD:definition "The angle between the axes of each pair of components." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4ef99e00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "AngleBetweenComponentAxes" ; + IFC4-PSD:nameAlias "Angle Between Component Axes"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:NominalToppingThickness + a rdf:Property ; + rdfs:seeAlso :p5b7df680d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalToppingThickness . + +:AngleBetweenComponentAxes + a rdf:Property ; + rdfs:seeAlso :p4ef99e00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AngleBetweenComponentAxes . + +:p2ffb0c00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Type designator for the precast concrete slab, expressing mainly the component type. Possible values are “Hollow-core”, “Double-tee”, “Flat plank”, etc." ; + rdfs:label "TypeDesignator" ; + IFC4-PSD:definition "Type designator for the precast concrete slab, expressing mainly the component type. Possible values are “Hollow-core”, “Double-tee”, “Flat plank”, etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2ffb0c00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "TypeDesignator" ; + IFC4-PSD:nameAlias "Type Designator"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p3c7f6480d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The distance from the left (‘West’) edge of the slab (in the direction of span of the components) to the axis of the first component." ; + rdfs:label "EdgeDistanceToFirstAxis" ; + IFC4-PSD:definition "The distance from the left (‘West’) edge of the slab (in the direction of span of the components) to the axis of the first component." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3c7f6480d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeDistanceToFirstAxis" ; + IFC4-PSD:nameAlias "Edge Distance To First Axis"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p5b7df680d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal thickness of the topping." ; + rdfs:label "NominalToppingThickness" ; + IFC4-PSD:definition "The nominal thickness of the topping." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5b7df680d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalToppingThickness" ; + IFC4-PSD:nameAlias "Nominal Topping Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ProfileArbitraryDoubleT.ttl b/converter/src/main/resources/pset/Pset_ProfileArbitraryDoubleT.ttl new file mode 100644 index 00000000..95e6d118 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProfileArbitraryDoubleT.ttl @@ -0,0 +1,280 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:OverallWidth a rdf:Property ; + rdfs:seeAlso :p69337c00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallWidth . + +:OverallDepth a rdf:Property ; + rdfs:seeAlso :p7e100f80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallDepth . + +:FlangeTopFillet a rdf:Property ; + rdfs:seeAlso :p9e3fce80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeTopFillet . + +:LeftFlangeWidth a rdf:Property ; + rdfs:seeAlso :p705a8a00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LeftFlangeWidth . + +:p69337c00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall width of the profile." ; + rdfs:label "OverallWidth" ; + IFC4-PSD:definition "Overall width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "69337c00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "OverallWidth" ; + IFC4-PSD:nameAlias "Overall Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pb6175280d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem top chamfer of the profile." ; + rdfs:label "StemTopChamfer" ; + IFC4-PSD:definition "Stem top chamfer of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b6175280d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemTopChamfer" ; + IFC4-PSD:nameAlias "Stem Top Chamfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:p77819800d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Right flange width of the profile." ; + rdfs:label "RightFlangeWidth" ; + IFC4-PSD:definition "Right flange width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "77819800d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "RightFlangeWidth" ; + IFC4-PSD:nameAlias "Right Flange Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:RightFlangeWidth a rdf:Property ; + rdfs:seeAlso :p77819800d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RightFlangeWidth . + +:p849e8700d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flange depth of the profile." ; + rdfs:label "FlangeDepth" ; + IFC4-PSD:definition "Flange depth of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "849e8700d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeDepth" ; + IFC4-PSD:nameAlias "Flange Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p98e28400d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flange base fillet of the profile." ; + rdfs:label "FlangeBaseFillet" ; + IFC4-PSD:definition "Flange base fillet of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "98e28400d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeBaseFillet" ; + IFC4-PSD:nameAlias "Flange Base Fillet"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:p7e100f80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall depth of the profile." ; + rdfs:label "OverallDepth" ; + IFC4-PSD:definition "Overall depth of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7e100f80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "OverallDepth" ; + IFC4-PSD:nameAlias "Overall Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p9e3fce80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flange top fillet of the profile." ; + rdfs:label "FlangeTopFillet" ; + IFC4-PSD:definition "Flange top fillet of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9e3fce80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeTopFillet" ; + IFC4-PSD:nameAlias "Flange Top Fillet"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:StemBaseFillet a rdf:Property ; + rdfs:seeAlso :pbc0d3380d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemBaseFillet . + +:pa39d1900d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem base width of the profile." ; + rdfs:label "StemBaseWidth" ; + IFC4-PSD:definition "Stem base width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a39d1900d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemBaseWidth" ; + IFC4-PSD:nameAlias "Stem Base Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8cf6c200d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flange draft of the profile." ; + rdfs:label "FlangeDraft" ; + IFC4-PSD:definition "Flange draft of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8cf6c200d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeDraft" ; + IFC4-PSD:nameAlias "Flange Draft"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:FlangeDraft a rdf:Property ; + rdfs:seeAlso :p8cf6c200d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeDraft . + +:StemBaseWidth a rdf:Property ; + rdfs:seeAlso :pa39d1900d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemBaseWidth . + +:pb0ba0800d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem base chamfer of the profile." ; + rdfs:label "StemBaseChamfer" ; + IFC4-PSD:definition "Stem base chamfer of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b0ba0800d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemBaseChamfer" ; + IFC4-PSD:nameAlias "Stem Base Chamfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:p92540c80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flange chamfer of the profile." ; + rdfs:label "FlangeChamfer" ; + IFC4-PSD:definition "Flange chamfer of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "92540c80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "FlangeChamfer" ; + IFC4-PSD:nameAlias "Flange Chamfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:paa2b9080d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem top width of the profile." ; + rdfs:label "StemTopWidth" ; + IFC4-PSD:definition "Stem top width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "aa2b9080d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemTopWidth" ; + IFC4-PSD:nameAlias "Stem Top Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:StemTopChamfer a rdf:Property ; + rdfs:seeAlso :pb6175280d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemTopChamfer . + +:Pset_ProfileArbitraryDoubleT + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of geometric properties of double-T section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDef when profile designation alone does not fulfill the information requirements." ; + rdfs:label "Pset_ProfileArbitraryDoubleT" ; + IFC4-PSD:applicableClass IFC4:IfcArbitraryClosedProfileDef ; + IFC4-PSD:applicableTypeValue "IfcArbitraryClosedProfileDef" ; + IFC4-PSD:definition "This is a collection of geometric properties of double-T section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDef when profile designation alone does not fulfill the information requirements." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProfileArbitraryDoubleT" ; + IFC4-PSD:propertyDef :pc0d1e780d1f511e1800000215ad4efdf , :paa2b9080d1f511e1800000215ad4efdf , :pb6175280d1f511e1800000215ad4efdf , :pbc0d3380d1f511e1800000215ad4efdf , :p849e8700d1f511e1800000215ad4efdf , :pb0ba0800d1f511e1800000215ad4efdf , :pa39d1900d1f511e1800000215ad4efdf , :p9e3fce80d1f511e1800000215ad4efdf , :p8cf6c200d1f511e1800000215ad4efdf , :p7e100f80d1f511e1800000215ad4efdf , :p705a8a00d1f511e1800000215ad4efdf , :p92540c80d1f511e1800000215ad4efdf , :p98e28400d1f511e1800000215ad4efdf , :p77819800d1f511e1800000215ad4efdf , :p69337c00d1f511e1800000215ad4efdf . + +:pc0d1e780d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem top fillet of the profile." ; + rdfs:label "StemTopFillet" ; + IFC4-PSD:definition "Stem top fillet of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c0d1e780d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemTopFillet" ; + IFC4-PSD:nameAlias "Stem Top Fillet"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:FlangeChamfer a rdf:Property ; + rdfs:seeAlso :p92540c80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeChamfer . + +:p705a8a00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Left flange width of the profile." ; + rdfs:label "LeftFlangeWidth" ; + IFC4-PSD:definition "Left flange width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "705a8a00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "LeftFlangeWidth" ; + IFC4-PSD:nameAlias "Left Flange Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:StemBaseChamfer a rdf:Property ; + rdfs:seeAlso :pb0ba0800d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemBaseChamfer . + +:pbc0d3380d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Stem base fillet of the profile." ; + rdfs:label "StemBaseFillet" ; + IFC4-PSD:definition "Stem base fillet of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bc0d3380d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "StemBaseFillet" ; + IFC4-PSD:nameAlias "Stem Base Fillet"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:StemTopWidth a rdf:Property ; + rdfs:seeAlso :paa2b9080d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemTopWidth . + +:StemTopFillet a rdf:Property ; + rdfs:seeAlso :pc0d1e780d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StemTopFillet . + +:FlangeDepth a rdf:Property ; + rdfs:seeAlso :p849e8700d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeDepth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FlangeBaseFillet a rdf:Property ; + rdfs:seeAlso :p98e28400d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlangeBaseFillet . diff --git a/converter/src/main/resources/pset/Pset_ProfileArbitraryHollowCore.ttl b/converter/src/main/resources/pset/Pset_ProfileArbitraryHollowCore.ttl new file mode 100644 index 00000000..727dd801 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProfileArbitraryHollowCore.ttl @@ -0,0 +1,418 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p363db800d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core base height of the profile." ; + rdfs:label "CenterCoreBaseHeight" ; + IFC4-PSD:definition "Center core base height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "363db800d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreBaseHeight" ; + IFC4-PSD:nameAlias "Center Core Base Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pda732f00d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Edge draft of the profile." ; + rdfs:label "EdgeDraft" ; + IFC4-PSD:definition "Edge draft of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "da732f00d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "EdgeDraft" ; + IFC4-PSD:nameAlias "Edge Draft"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:p4bb2e200d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core base width of the profile." ; + rdfs:label "CenterCoreBaseWidth" ; + IFC4-PSD:definition "Center core base width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4bb2e200d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreBaseWidth" ; + IFC4-PSD:nameAlias "Center Core Base Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:KeyDepth a rdf:Property ; + rdfs:seeAlso :pee1e9580d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:KeyDepth . + +:CenterCoreBaseWidth a rdf:Property ; + rdfs:seeAlso :p4bb2e200d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreBaseWidth . + +:pdf37e300d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Draft base offset of the profile." ; + rdfs:label "DraftBaseOffset" ; + IFC4-PSD:definition "Draft base offset of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "df37e300d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "DraftBaseOffset" ; + IFC4-PSD:nameAlias "Draft Base Offset"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:CenterCoreBaseHeight + a rdf:Property ; + rdfs:seeAlso :p363db800d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreBaseHeight . + +:DraftSideOffset a rdf:Property ; + rdfs:seeAlso :pe3fc9700d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DraftSideOffset . + +:pe3fc9700d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Draft side offset of the profile." ; + rdfs:label "DraftSideOffset" ; + IFC4-PSD:definition "Draft side offset of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e3fc9700d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "DraftSideOffset" ; + IFC4-PSD:nameAlias "Draft Side Offset"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:DraftBaseOffset a rdf:Property ; + rdfs:seeAlso :pdf37e300d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DraftBaseOffset . + +:p3d64c600d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core middle height of the profile." ; + rdfs:label "CenterCoreMiddleHeight" ; + IFC4-PSD:definition "Center core middle height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3d64c600d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreMiddleHeight" ; + IFC4-PSD:nameAlias "Center Core Middle Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p5a999480d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of cores." ; + rdfs:label "NumberOfCores" ; + IFC4-PSD:definition "Number of cores." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5a999480d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfCores" ; + IFC4-PSD:nameAlias "Number Of Cores"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:p1908e980d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core top height of the profile." ; + rdfs:label "CoreTopHeight" ; + IFC4-PSD:definition "Core top height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1908e980d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreTopHeight" ; + IFC4-PSD:nameAlias "Core Top Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p042c5600d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core spacing of the profile." ; + rdfs:label "CoreSpacing" ; + IFC4-PSD:definition "Core spacing of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "042c5600d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreSpacing" ; + IFC4-PSD:nameAlias "Core Spacing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pee1e9580d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Key depth of the profile." ; + rdfs:label "KeyDepth" ; + IFC4-PSD:definition "Key depth of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ee1e9580d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "KeyDepth" ; + IFC4-PSD:nameAlias "Key Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:pccbda980d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall width of the profile." ; + rdfs:label "OverallWidth" ; + IFC4-PSD:definition "Overall width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ccbda980d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "OverallWidth" ; + IFC4-PSD:nameAlias "Overall Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CenterCoreSpacing a rdf:Property ; + rdfs:seeAlso :p2de57d00d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreSpacing . + +:p0b536400d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core base height of the profile." ; + rdfs:label "CoreBaseHeight" ; + IFC4-PSD:definition "Core base height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0b536400d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreBaseHeight" ; + IFC4-PSD:nameAlias "Core Base Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CoreTopWidth a rdf:Property ; + rdfs:seeAlso :p26be6f00d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreTopWidth . + +:p53728680d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core top width of the profile." ; + rdfs:label "CenterCoreTopWidth" ; + IFC4-PSD:definition "Center core top width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "53728680d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreTopWidth" ; + IFC4-PSD:nameAlias "Center Core Top Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p11e1db80d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core middle height of the profile." ; + rdfs:label "CoreMiddleHeight" ; + IFC4-PSD:definition "Core middle height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "11e1db80d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreMiddleHeight" ; + IFC4-PSD:nameAlias "Core Middle Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pd34c2100d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall depth of the profile." ; + rdfs:label "OverallDepth" ; + IFC4-PSD:definition "Overall depth of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d34c2100d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "OverallDepth" ; + IFC4-PSD:nameAlias "Overall Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:BaseChamfer a rdf:Property ; + rdfs:seeAlso :pe959e180d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseChamfer . + +:p26be6f00d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core top width of the profile." ; + rdfs:label "CoreTopWidth" ; + IFC4-PSD:definition "Core top width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "26be6f00d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreTopWidth" ; + IFC4-PSD:nameAlias "Core Top Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p202ff780d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Core base width of the profile." ; + rdfs:label "CoreBaseWidth" ; + IFC4-PSD:definition "Core base width of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "202ff780d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CoreBaseWidth" ; + IFC4-PSD:nameAlias "Core Base Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pe959e180d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Base chamfer of the profile." ; + rdfs:label "BaseChamfer" ; + IFC4-PSD:definition "Base chamfer of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e959e180d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "BaseChamfer" ; + IFC4-PSD:nameAlias "Base Chamfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:CenterCoreTopWidth a rdf:Property ; + rdfs:seeAlso :p53728680d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreTopWidth . + +:p448bd400d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core top height of the profile." ; + rdfs:label "CenterCoreTopHeight" ; + IFC4-PSD:definition "Center core top height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "448bd400d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreTopHeight" ; + IFC4-PSD:nameAlias "Center Core Top Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:EdgeDraft a rdf:Property ; + rdfs:seeAlso :pda732f00d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EdgeDraft . + +:Pset_ProfileArbitraryHollowCore + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of geometric properties of hollow core section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDefWithVoids when profile designation alone does not fulfill the information requirements. \n\nIn all cases, the cores are symmetrically distributed on either side of the plank center line, irrespective of whether the number of cores is odd or even. For planks with a center core with different geometry to that of the other cores, provide the property CenterCoreSpacing. When the number of cores is even, no Center Core properties shall be asserted.\n\nKey chamfers and draft chamfer are all 45 degree chamfers.\n\nThe CoreTopRadius and CoreBaseRadius parameters can be derived and are therefore not listed in the property set. They are shown to define that the curves are arcs. The parameters for the center core are the same as above, but with the prefix \"Center\"." ; + rdfs:label "Pset_ProfileArbitraryHollowCore" ; + IFC4-PSD:applicableClass IFC4:IfcArbitraryProfileDefWithVoids ; + IFC4-PSD:applicableTypeValue "IfcArbitraryProfileDefWithVoids" ; + IFC4-PSD:definition "This is a collection of geometric properties of hollow core section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDefWithVoids when profile designation alone does not fulfill the information requirements. \n\nIn all cases, the cores are symmetrically distributed on either side of the plank center line, irrespective of whether the number of cores is odd or even. For planks with a center core with different geometry to that of the other cores, provide the property CenterCoreSpacing. When the number of cores is even, no Center Core properties shall be asserted.\n\nKey chamfers and draft chamfer are all 45 degree chamfers.\n\nThe CoreTopRadius and CoreBaseRadius parameters can be derived and are therefore not listed in the property set. They are shown to define that the curves are arcs. The parameters for the center core are the same as above, but with the prefix \"Center\"." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProfileArbitraryHollowCore" ; + IFC4-PSD:propertyDef :pdf37e300d1f511e1800000215ad4efdf , :p11e1db80d1f611e1800000215ad4efdf , :p0b536400d1f611e1800000215ad4efdf , :pe3fc9700d1f511e1800000215ad4efdf , :p5a999480d1f611e1800000215ad4efdf , :p1908e980d1f611e1800000215ad4efdf , :pf2e34980d1f511e1800000215ad4efdf , :p53728680d1f611e1800000215ad4efdf , :pf7a7fd80d1f511e1800000215ad4efdf , :p26be6f00d1f611e1800000215ad4efdf , :p363db800d1f611e1800000215ad4efdf , :pe959e180d1f511e1800000215ad4efdf , :p3d64c600d1f611e1800000215ad4efdf , :pd34c2100d1f511e1800000215ad4efdf , :p4bb2e200d1f611e1800000215ad4efdf , :pda732f00d1f511e1800000215ad4efdf , :p202ff780d1f611e1800000215ad4efdf , :pccbda980d1f511e1800000215ad4efdf , :p042c5600d1f611e1800000215ad4efdf , :p2de57d00d1f611e1800000215ad4efdf , :p448bd400d1f611e1800000215ad4efdf , :pfc6cb180d1f511e1800000215ad4efdf , :pee1e9580d1f511e1800000215ad4efdf . + +:KeyOffset a rdf:Property ; + rdfs:seeAlso :pf7a7fd80d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:KeyOffset . + +:pf7a7fd80d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Key offset of the profile." ; + rdfs:label "KeyOffset" ; + IFC4-PSD:definition "Key offset of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f7a7fd80d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "KeyOffset" ; + IFC4-PSD:nameAlias "Key Offset"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:CoreSpacing a rdf:Property ; + rdfs:seeAlso :p042c5600d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreSpacing . + +:p2de57d00d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Center core spacing of the profile." ; + rdfs:label "CenterCoreSpacing" ; + IFC4-PSD:definition "Center core spacing of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2de57d00d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CenterCoreSpacing" ; + IFC4-PSD:nameAlias "Center Core Spacing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pf2e34980d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Key height of the profile." ; + rdfs:label "KeyHeight" ; + IFC4-PSD:definition "Key height of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f2e34980d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "KeyHeight" ; + IFC4-PSD:nameAlias "Key Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:pfc6cb180d1f511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Bottom cover of the profile." ; + rdfs:label "BottomCover" ; + IFC4-PSD:definition "Bottom cover of the profile." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fc6cb180d1f511e1800000215ad4efdf" ; + IFC4-PSD:name "BottomCover" ; + IFC4-PSD:nameAlias "Bottom Cover"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoreTopHeight a rdf:Property ; + rdfs:seeAlso :p1908e980d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreTopHeight . + +:CenterCoreMiddleHeight + a rdf:Property ; + rdfs:seeAlso :p3d64c600d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreMiddleHeight . + +:CoreBaseHeight a rdf:Property ; + rdfs:seeAlso :p0b536400d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreBaseHeight . + +:CoreMiddleHeight a rdf:Property ; + rdfs:seeAlso :p11e1db80d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreMiddleHeight . + +:KeyHeight a rdf:Property ; + rdfs:seeAlso :pf2e34980d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:KeyHeight . + +:CoreBaseWidth a rdf:Property ; + rdfs:seeAlso :p202ff780d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoreBaseWidth . + +:CenterCoreTopHeight a rdf:Property ; + rdfs:seeAlso :p448bd400d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CenterCoreTopHeight . + +:BottomCover a rdf:Property ; + rdfs:seeAlso :pfc6cb180d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BottomCover . + +:OverallWidth a rdf:Property ; + rdfs:seeAlso :pccbda980d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallWidth . + +:NumberOfCores a rdf:Property ; + rdfs:seeAlso :p5a999480d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfCores . + +:OverallDepth a rdf:Property ; + rdfs:seeAlso :pd34c2100d1f511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallDepth . diff --git a/converter/src/main/resources/pset/Pset_ProfileMechanical.ttl b/converter/src/main/resources/pset/Pset_ProfileMechanical.ttl new file mode 100644 index 00000000..db94c8cf --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProfileMechanical.ttl @@ -0,0 +1,459 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:CrossSectionArea a rdf:Property ; + rdfs:seeAlso :p6ab17400d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CrossSectionArea . + +:MaximumSectionModulusZ + a rdf:Property ; + rdfs:seeAlso :pf3301480d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumSectionModulusZ . + +:MomentOfInertiaY a rdf:Property ; + rdfs:seeAlso :pa5b3a780d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MomentOfInertiaY . + +:TorsionalSectionModulus + a rdf:Property ; + rdfs:seeAlso :p0216c700d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TorsionalSectionModulus . + +:Pset_ProfileMechanical + a IFC4-PSD:PropertySetDef ; + rdfs:comment "This is a collection of mechanical properties that are applicable to virtually all profile classes. Most of these properties are especially used in structural analysis." ; + rdfs:label "Pset_ProfileMechanical" ; + IFC4-PSD:applicableClass IFC4:IfcProfileDef ; + IFC4-PSD:applicableTypeValue "IfcProfileDef" ; + IFC4-PSD:definition "This is a collection of mechanical properties that are applicable to virtually all profile classes. Most of these properties are especially used in structural analysis." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProfileMechanical" ; + IFC4-PSD:propertyDef :p8a489c80d1f611e1800000215ad4efdf , :pd7c50980d1f611e1800000215ad4efdf , :pf9be8c00d1f611e1800000215ad4efdf , :p25417680d1f711e1800000215ad4efdf , :pad734c00d1f611e1800000215ad4efdf , :p14910080d1f711e1800000215ad4efdf , :pd0056500d1f611e1800000215ad4efdf , :p92084100d1f611e1800000215ad4efdf , :p0ba02f00d1f711e1800000215ad4efdf , :p0216c700d1f711e1800000215ad4efdf , :pa5b3a780d1f611e1800000215ad4efdf , :p9fbdc680d1f611e1800000215ad4efdf , :p769d3600d1f611e1800000215ad4efdf , :p6ab17400d1f611e1800000215ad4efdf , :p65ecc000d1f611e1800000215ad4efdf , :peb707000d1f611e1800000215ad4efdf , :pc5e36680d1f611e1800000215ad4efdf , :pf3301480d1f611e1800000215ad4efdf , :p80bf3480d1f611e1800000215ad4efdf , :p992f4f00d1f611e1800000215ad4efdf , :pbd8b2b80d1f611e1800000215ad4efdf , :p700ebe80d1f611e1800000215ad4efdf , :pe14e7180d1f611e1800000215ad4efdf , :pb532f080d1f611e1800000215ad4efdf , :p1d81d200d1f711e1800000215ad4efdf . + +:WarpingConstant a rdf:Property ; + rdfs:seeAlso :pc5e36680d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarpingConstant . + +:p0216c700d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Torsional resistance (about xs). For example measured in mm³." ; + rdfs:label "TorsionalSectionModulus" ; + IFC4-PSD:definition "Torsional resistance (about xs). For example measured in mm³." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0216c700d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "TorsionalSectionModulus" ; + IFC4-PSD:nameAlias "Torsional Section Modulus"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSectionModulusMeasure + ] . + +:PlasticShapeFactorY a rdf:Property ; + rdfs:seeAlso :p1d81d200d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlasticShapeFactorY . + +:MassPerLength a rdf:Property ; + rdfs:seeAlso :p65ecc000d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MassPerLength . + +:p9fbdc680d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location of the profile's shear centre, measured along ys." ; + rdfs:label "ShearCentreY" ; + IFC4-PSD:definition "Location of the profile's shear centre, measured along ys." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9fbdc680d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "ShearCentreY" ; + IFC4-PSD:nameAlias "Shear Centre Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:ShearCentreZ a rdf:Property ; + rdfs:seeAlso :p992f4f00d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearCentreZ . + +:pe14e7180d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Bending resistance about the ys axis at the point with maximum zs ordinate. For example measured in mm³." ; + rdfs:label "MaximumSectionModulusY" ; + IFC4-PSD:definition "Bending resistance about the ys axis at the point with maximum zs ordinate. For example measured in mm³." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e14e7180d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumSectionModulusY" ; + IFC4-PSD:nameAlias "Maximum Section Modulus Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSectionModulusMeasure + ] . + +:TorsionalConstantX a rdf:Property ; + rdfs:seeAlso :pbd8b2b80d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TorsionalConstantX . + +:pbd8b2b80d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Torsional constant about xs. For example measured in mm4." ; + rdfs:label "TorsionalConstantX" ; + IFC4-PSD:definition "Torsional constant about xs. For example measured in mm4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bd8b2b80d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "TorsionalConstantX" ; + IFC4-PSD:nameAlias "Torsional Constant X"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMomentOfInertiaMeasure + ] . + +:MaximumSectionModulusY + a rdf:Property ; + rdfs:seeAlso :pe14e7180d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumSectionModulusY . + +:ShearCentreY a rdf:Property ; + rdfs:seeAlso :p9fbdc680d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearCentreY . + +:p0ba02f00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Area of the profile for calculating the shear stress due to shear force parallel to the section analysis axis zs. For example measured in mm². If given, the shear area zs shall be non-negative." ; + rdfs:label "ShearAreaZ" ; + IFC4-PSD:definition "Area of the profile for calculating the shear stress due to shear force parallel to the section analysis axis zs. For example measured in mm². If given, the shear area zs shall be non-negative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0ba02f00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ShearAreaZ" ; + IFC4-PSD:nameAlias "Shear Area Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:ShearAreaZ a rdf:Property ; + rdfs:seeAlso :p0ba02f00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearAreaZ . + +:peb707000d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Bending resistance about the ys axis at the point with minimum zs ordinate. For example measured in mm³." ; + rdfs:label "MinimumSectionModulusY" ; + IFC4-PSD:definition "Bending resistance about the ys axis at the point with minimum zs ordinate. For example measured in mm³." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "eb707000d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumSectionModulusY" ; + IFC4-PSD:nameAlias "Minimum Section Modulus Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSectionModulusMeasure + ] . + +:MaximumPlateThickness + a rdf:Property ; + rdfs:seeAlso :p80bf3480d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumPlateThickness . + +:MinimumSectionModulusZ + a rdf:Property ; + rdfs:seeAlso :pf9be8c00d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumSectionModulusZ . + +:p80bf3480d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This value may be needed for stress analysis and to handle buckling problems. It can also be derived from the given profile geometry or classification and therefore it is only an optional feature allowing for an explicit description. For example measured in mm." ; + rdfs:label "MaximumPlateThickness" ; + IFC4-PSD:definition "This value may be needed for stress analysis and to handle buckling problems. It can also be derived from the given profile geometry or classification and therefore it is only an optional feature allowing for an explicit description. For example measured in mm." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "80bf3480d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumPlateThickness" ; + IFC4-PSD:nameAlias "Maximum Plate Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pa5b3a780d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Moment of inertia about ys (second moment of area, about ys). For example measured in mm4." ; + rdfs:label "MomentOfInertiaY" ; + IFC4-PSD:definition "Moment of inertia about ys (second moment of area, about ys). For example measured in mm4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a5b3a780d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MomentOfInertiaY" ; + IFC4-PSD:nameAlias "Moment Of Inertia Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMomentOfInertiaMeasure + ] . + +:p14910080d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Area of the profile for calculating the shear stress due to shear force parallel to the section analysis axis ys. For example measured in mm². If given, the shear area ys shall be non-negative." ; + rdfs:label "ShearAreaY" ; + IFC4-PSD:definition "Area of the profile for calculating the shear stress due to shear force parallel to the section analysis axis ys. For example measured in mm². If given, the shear area ys shall be non-negative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "14910080d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ShearAreaY" ; + IFC4-PSD:nameAlias "Shear Area Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:CentreOfGravityInY a rdf:Property ; + rdfs:seeAlso :p92084100d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CentreOfGravityInY . + +:MinimumPlateThickness + a rdf:Property ; + rdfs:seeAlso :p769d3600d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumPlateThickness . + +:p8a489c80d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location of the profile's centre of gravity (geometric centroid), measured along xp." ; + rdfs:label "CentreOfGravityInX" ; + IFC4-PSD:definition "Location of the profile's centre of gravity (geometric centroid), measured along xp." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8a489c80d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CentreOfGravityInX" ; + IFC4-PSD:nameAlias "Centre Of Gravity In X"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p65ecc000d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mass per length, i.e. mass of a beam with a unit length of extrusion. For example measured in kg/m." ; + rdfs:label "MassPerLength" ; + IFC4-PSD:definition "Mass per length, i.e. mass of a beam with a unit length of extrusion. For example measured in kg/m." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "65ecc000d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MassPerLength" ; + IFC4-PSD:nameAlias "Mass Per Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassPerLengthMeasure + ] . + +:p25417680d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of plastic versus elastic bending moment capacity about the section analysis axis zs. A dimensionless value." ; + rdfs:label "PlasticShapeFactorZ" ; + IFC4-PSD:definition "Ratio of plastic versus elastic bending moment capacity about the section analysis axis zs. A dimensionless value." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "25417680d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "PlasticShapeFactorZ" ; + IFC4-PSD:nameAlias "Plastic Shape Factor Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p700ebe80d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Perimeter of the profile for calculating the surface area. For example measured in mm." ; + rdfs:label "Perimeter" ; + IFC4-PSD:definition "Perimeter of the profile for calculating the surface area. For example measured in mm." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "700ebe80d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "Perimeter" ; + IFC4-PSD:nameAlias "Perimeter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ShearAreaY a rdf:Property ; + rdfs:seeAlso :p14910080d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearAreaY . + +:pc5e36680d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Warping constant of the profile for torsional action. For example measured in mm6." ; + rdfs:label "WarpingConstant" ; + IFC4-PSD:definition "Warping constant of the profile for torsional action. For example measured in mm6." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c5e36680d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "WarpingConstant" ; + IFC4-PSD:nameAlias "Warping Constant"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcWarpingConstantMeasure + ] . + +:MinimumSectionModulusY + a rdf:Property ; + rdfs:seeAlso :peb707000d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumSectionModulusY . + +:CentreOfGravityInX a rdf:Property ; + rdfs:seeAlso :p8a489c80d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CentreOfGravityInX . + +:p992f4f00d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location of the profile's shear centre, measured along zs." ; + rdfs:label "ShearCentreZ" ; + IFC4-PSD:definition "Location of the profile's shear centre, measured along zs." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "992f4f00d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "ShearCentreZ" ; + IFC4-PSD:nameAlias "Shear Centre Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ShearDeformationAreaZ + a rdf:Property ; + rdfs:seeAlso :pd0056500d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearDeformationAreaZ . + +:Perimeter a rdf:Property ; + rdfs:seeAlso :p700ebe80d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Perimeter . + +:p769d3600d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "This value may be needed for stress analysis and to handle buckling problems. It can also be derived from the given profile geometry or classification and therefore it is only an optional feature allowing for an explicit description. For example measured in mm." ; + rdfs:label "MinimumPlateThickness" ; + IFC4-PSD:definition "This value may be needed for stress analysis and to handle buckling problems. It can also be derived from the given profile geometry or classification and therefore it is only an optional feature allowing for an explicit description. For example measured in mm." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "769d3600d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumPlateThickness" ; + IFC4-PSD:nameAlias "Minimum Plate Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pad734c00d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Moment of inertia about zs (second moment of area, about zs). For example measured in mm4" ; + rdfs:label "MomentOfInertiaZ" ; + IFC4-PSD:definition "Moment of inertia about zs (second moment of area, about zs). For example measured in mm4" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ad734c00d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MomentOfInertiaZ" ; + IFC4-PSD:nameAlias "Moment Of Inertia Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMomentOfInertiaMeasure + ] . + +:pd7c50980d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Area of the profile for calculating the shear deformation due to a shear force parallel to ys. For example measured in mm². If given, the shear deformation area ys shall be non-negative." ; + rdfs:label "ShearDeformationAreaY" ; + IFC4-PSD:definition "Area of the profile for calculating the shear deformation due to a shear force parallel to ys. For example measured in mm². If given, the shear deformation area ys shall be non-negative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d7c50980d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "ShearDeformationAreaY" ; + IFC4-PSD:nameAlias "Shear Deformation Area Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p92084100d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Location of the profile's centre of gravity (geometric centroid), measured along yp." ; + rdfs:label "CentreOfGravityInY" ; + IFC4-PSD:definition "Location of the profile's centre of gravity (geometric centroid), measured along yp." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "92084100d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CentreOfGravityInY" ; + IFC4-PSD:nameAlias "Centre Of Gravity In Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p1d81d200d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of plastic versus elastic bending moment capacity about the section analysis axis ys. A dimensionless value." ; + rdfs:label "PlasticShapeFactorY" ; + IFC4-PSD:definition "Ratio of plastic versus elastic bending moment capacity about the section analysis axis ys. A dimensionless value." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1d81d200d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "PlasticShapeFactorY" ; + IFC4-PSD:nameAlias "Plastic Shape Factor Y"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p6ab17400d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Area of the profile. For example measured in mm2. If given, the value of the cross section area shall be greater than zero." ; + rdfs:label "CrossSectionArea" ; + IFC4-PSD:definition "Area of the profile. For example measured in mm2. If given, the value of the cross section area shall be greater than zero." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6ab17400d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "CrossSectionArea" ; + IFC4-PSD:nameAlias "Cross Section Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pf3301480d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Bending resistance about the zs axis at the point with maximum ys ordinate. For example measured in mm³." ; + rdfs:label "MaximumSectionModulusZ" ; + IFC4-PSD:definition "Bending resistance about the zs axis at the point with maximum ys ordinate. For example measured in mm³." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f3301480d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumSectionModulusZ" ; + IFC4-PSD:nameAlias "Maximum Section Modulus Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSectionModulusMeasure + ] . + +:MomentOfInertiaZ a rdf:Property ; + rdfs:seeAlso :pad734c00d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MomentOfInertiaZ . + +:ShearDeformationAreaY + a rdf:Property ; + rdfs:seeAlso :pd7c50980d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShearDeformationAreaY . + +:PlasticShapeFactorZ a rdf:Property ; + rdfs:seeAlso :p25417680d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlasticShapeFactorZ . + +:MomentOfInertiaYZ a rdf:Property ; + rdfs:seeAlso :pb532f080d1f611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MomentOfInertiaYZ . + +:pd0056500d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Area of the profile for calculating the shear deformation due to a shear force parallel to zs. For example measured in mm². If given, the shear deformation area zs shall be non-negative." ; + rdfs:label "ShearDeformationAreaZ" ; + IFC4-PSD:definition "Area of the profile for calculating the shear deformation due to a shear force parallel to zs. For example measured in mm². If given, the shear deformation area zs shall be non-negative." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d0056500d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "ShearDeformationAreaZ" ; + IFC4-PSD:nameAlias "Shear Deformation Area Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pb532f080d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Moment of inertia about ys and zs (product moment of area). For example measured in mm4." ; + rdfs:label "MomentOfInertiaYZ" ; + IFC4-PSD:definition "Moment of inertia about ys and zs (product moment of area). For example measured in mm4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b532f080d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MomentOfInertiaYZ" ; + IFC4-PSD:nameAlias "Moment Of Inertia YZ"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMomentOfInertiaMeasure + ] . + +:pf9be8c00d1f611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Bending resistance about the zs axis at the point with minimum ys ordinate. For example measured in mm³." ; + rdfs:label "MinimumSectionModulusZ" ; + IFC4-PSD:definition "Bending resistance about the zs axis at the point with minimum ys ordinate. For example measured in mm³." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f9be8c00d1f611e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumSectionModulusZ" ; + IFC4-PSD:nameAlias "Minimum Section Modulus Z"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcSectionModulusMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ProjectOrderChangeOrder.ttl b/converter/src/main/resources/pset/Pset_ProjectOrderChangeOrder.ttl new file mode 100644 index 00000000..b8c02abe --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProjectOrderChangeOrder.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ProjectOrderChangeOrder + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A change order is an instruction to make a change to a product or work being undertake. Note that the change order status is defined in the same way as a work order status since a change order implies a work requirement." ; + rdfs:label "Pset_ProjectOrderChangeOrder" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProjectOrder/CHANGEORDER" ; + IFC4-PSD:definition "A change order is an instruction to make a change to a product or work being undertake. Note that the change order status is defined in the same way as a work order status since a change order implies a work requirement." ; + IFC4-PSD:definitionAlias "変更指示は、製品または引き受けている作業に変化を生じさせる指示。変更指示状態は、作業指示状態と同様な手段で定義される。変更指示は作業要求を必要とするからである。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProjectOrderChangeOrder" ; + IFC4-PSD:propertyDef :p38ecdd00d1f711e1800000215ad4efdf , :p42764500d1f711e1800000215ad4efdf . + +:p38ecdd00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A description of the problem for why a change is needed." ; + rdfs:label "ReasonForChange" ; + IFC4-PSD:definition "A description of the problem for why a change is needed." ; + IFC4-PSD:definitionAlias ""@en , "変更が必要となる問題の記述。"@ja-JP ; + IFC4-PSD:ifdguid "38ecdd00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ReasonForChange" ; + IFC4-PSD:nameAlias "Reason For Change"@en , "変更理由"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ReasonForChange a rdf:Property ; + rdfs:seeAlso :p38ecdd00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReasonForChange . + +:p42764500d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The budget source requested." ; + rdfs:label "BudgetSource" ; + IFC4-PSD:definition "The budget source requested." ; + IFC4-PSD:definitionAlias ""@en , "要求された予算の出所・源。"@ja-JP ; + IFC4-PSD:ifdguid "42764500d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "BudgetSource" ; + IFC4-PSD:nameAlias "Budget Source"@en , "予算源"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:BudgetSource a rdf:Property ; + rdfs:seeAlso :p42764500d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BudgetSource . diff --git a/converter/src/main/resources/pset/Pset_ProjectOrderMaintenanceWorkOrder.ttl b/converter/src/main/resources/pset/Pset_ProjectOrderMaintenanceWorkOrder.ttl new file mode 100644 index 00000000..c0b597ba --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProjectOrderMaintenanceWorkOrder.ttl @@ -0,0 +1,162 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p781b2e00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of maintenance that can be done from which the type that generates the maintenance work order may be set where:\n\nConditionBased: generated as a result of the condition of an asset or artefact being less than a determined value.\nCorrective: generated as a result of an immediate and urgent need for maintenance action.\nPlannedCorrective: generated as a result of immediate corrective action being needed but with sufficient time available for the work order to be included in maintenance planning.\nScheduled: generated as a result of a fixed, periodic maintenance requirement." ; + rdfs:label "MaintenaceType" ; + IFC4-PSD:definition "Identifies the predefined types of maintenance that can be done from which the type that generates the maintenance work order may be set where:\n\nConditionBased: generated as a result of the condition of an asset or artefact being less than a determined value.\nCorrective: generated as a result of an immediate and urgent need for maintenance action.\nPlannedCorrective: generated as a result of immediate corrective action being needed but with sufficient time available for the work order to be included in maintenance planning.\nScheduled: generated as a result of a fixed, periodic maintenance requirement." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "781b2e00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "MaintenaceType" ; + IFC4-PSD:nameAlias "Maintenace Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONDITIONBASED" , "CORRECTIVE" , "PLANNEDCORRECTIVE" , "SCHEDULED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p65085e00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The contractual type of the work." ; + rdfs:label "ContractualType" ; + IFC4-PSD:definition "The contractual type of the work." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "65085e00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ContractualType" ; + IFC4-PSD:nameAlias "Contractual Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p53bf5180d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A textual description of the products that require the work." ; + rdfs:label "ProductDescription" ; + IFC4-PSD:definition "A textual description of the products that require the work." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "53bf5180d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ProductDescription" ; + IFC4-PSD:nameAlias "Product Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:FaultPriorityType a rdf:Property ; + rdfs:seeAlso :p93863900d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaultPriorityType . + +:pbfa1ba00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The period of time between expected instantiations of a work order that may have been predefined." ; + rdfs:label "ScheduledFrequency" ; + IFC4-PSD:definition "The period of time between expected instantiations of a work order that may have been predefined." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bfa1ba00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ScheduledFrequency" ; + IFC4-PSD:nameAlias "Scheduled Frequency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:WorkTypeRequested a rdf:Property ; + rdfs:seeAlso :p5c178c80d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkTypeRequested . + +:p5c178c80d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Work type requested in circumstances where there are categorizations of types of work task. It could be used to identify a remedial task, minor work task, electrical task etc." ; + rdfs:label "WorkTypeRequested" ; + IFC4-PSD:definition "Work type requested in circumstances where there are categorizations of types of work task. It could be used to identify a remedial task, minor work task, electrical task etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5c178c80d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "WorkTypeRequested" ; + IFC4-PSD:nameAlias "Work Type Requested"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ProductDescription a rdf:Property ; + rdfs:seeAlso :p53bf5180d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProductDescription . + +:LocationPriorityType + a rdf:Property ; + rdfs:seeAlso :pa8fb6300d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LocationPriorityType . + +:Pset_ProjectOrderMaintenanceWorkOrder + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A MaintenanceWorkOrder is a detailed description of maintenance work that is to be performed. Note that the Scheduled Frequency property of the maintenance work order is used when the order is required as an instance of a scheduled work order." ; + rdfs:label "Pset_ProjectOrderMaintenanceWorkOrder" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProjectOrder/MAINTENANCEWORKORDER" ; + IFC4-PSD:definition "A MaintenanceWorkOrder is a detailed description of maintenance work that is to be performed. Note that the Scheduled Frequency property of the maintenance work order is used when the order is required as an instance of a scheduled work order." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProjectOrderMaintenanceWorkOrder" ; + IFC4-PSD:propertyDef :p53bf5180d1f711e1800000215ad4efdf , :p6e91c600d1f711e1800000215ad4efdf , :p93863900d1f711e1800000215ad4efdf , :pa8fb6300d1f711e1800000215ad4efdf , :p5c178c80d1f711e1800000215ad4efdf , :p781b2e00d1f711e1800000215ad4efdf , :p65085e00d1f711e1800000215ad4efdf , :pbfa1ba00d1f711e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p6e91c600d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Comments if the job is not accomplished." ; + rdfs:label "IfNotAccomplished" ; + IFC4-PSD:definition "Comments if the job is not accomplished." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6e91c600d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "IfNotAccomplished" ; + IFC4-PSD:nameAlias "If Not Accomplished"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ScheduledFrequency a rdf:Property ; + rdfs:seeAlso :pbfa1ba00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ScheduledFrequency . + +:ContractualType a rdf:Property ; + rdfs:seeAlso :p65085e00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContractualType . + +:pa8fb6300d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of priority that can be assigned from which the type may be set where:\n\nHigh: action is required urgently.\nMedium: action can occur within a reasonable period of time.\nLow: action can occur when convenient." ; + rdfs:label "LocationPriorityType" ; + IFC4-PSD:definition "Identifies the predefined types of priority that can be assigned from which the type may be set where:\n\nHigh: action is required urgently.\nMedium: action can occur within a reasonable period of time.\nLow: action can occur when convenient." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a8fb6300d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "LocationPriorityType" ; + IFC4-PSD:nameAlias "Location Priority Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HIGH" , "MEDIUM" , "LOW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IfNotAccomplished a rdf:Property ; + rdfs:seeAlso :p6e91c600d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IfNotAccomplished . + +:MaintenaceType a rdf:Property ; + rdfs:seeAlso :p781b2e00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaintenaceType . + +:p93863900d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of priority that can be assigned from which the type may be set where:\n\nHigh: action is required urgently.\nMedium: action can occur within a reasonable period of time.\nLow: action can occur when convenient." ; + rdfs:label "FaultPriorityType" ; + IFC4-PSD:definition "Identifies the predefined types of priority that can be assigned from which the type may be set where:\n\nHigh: action is required urgently.\nMedium: action can occur within a reasonable period of time.\nLow: action can occur when convenient." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "93863900d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "FaultPriorityType" ; + IFC4-PSD:nameAlias "Fault Priority Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HIGH" , "MEDIUM" , "LOW" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_ProjectOrderMoveOrder.ttl b/converter/src/main/resources/pset/Pset_ProjectOrderMoveOrder.ttl new file mode 100644 index 00000000..287444af --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProjectOrderMoveOrder.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ProjectOrderMoveOrder + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines the requirements for move orders. Note that the move order status is defined in the same way as a work order status since a move order implies a work requirement." ; + rdfs:label "Pset_ProjectOrderMoveOrder" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProjectOrder/MOVEORDER" ; + IFC4-PSD:definition "Defines the requirements for move orders. Note that the move order status is defined in the same way as a work order status since a move order implies a work requirement." ; + IFC4-PSD:definitionAlias ""@en , "移動・引っ越しへの必要条件を定義する。注:移動指示は、作業の必要条件を含むので、移動命令状態は、作業指示状態と同様な手段で定義される。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProjectOrderMoveOrder" ; + IFC4-PSD:propertyDef :pcfb99980d1f711e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SpecialInstructions a rdf:Property ; + rdfs:seeAlso :pcfb99980d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpecialInstructions . + +:pcfb99980d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Special instructions that affect the move." ; + rdfs:label "SpecialInstructions" ; + IFC4-PSD:definition "Special instructions that affect the move." ; + IFC4-PSD:definitionAlias "移動・引っ越しに影響する特別な指示。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cfb99980d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "SpecialInstructions" ; + IFC4-PSD:nameAlias "Special Instructions"@en , "特別指示"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . diff --git a/converter/src/main/resources/pset/Pset_ProjectOrderPurchaseOrder.ttl b/converter/src/main/resources/pset/Pset_ProjectOrderPurchaseOrder.ttl new file mode 100644 index 00000000..12d9c9f1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProjectOrderPurchaseOrder.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ProjectOrderPurchaseOrder + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines the requirements for purchase orders in a project." ; + rdfs:label "Pset_ProjectOrderPurchaseOrder" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProjectOrder/PURCHASEORDER" ; + IFC4-PSD:definition "Defines the requirements for purchase orders in a project." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProjectOrderPurchaseOrder" ; + IFC4-PSD:propertyDef :pe3650000d1f711e1800000215ad4efdf , :pebbd3b00d1f711e1800000215ad4efdf . + +:ShipMethod a rdf:Property ; + rdfs:seeAlso :pebbd3b00d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShipMethod . + +:pebbd3b00d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Method of shipping that will be used for goods or services." ; + rdfs:label "ShipMethod" ; + IFC4-PSD:definition "Method of shipping that will be used for goods or services." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ebbd3b00d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ShipMethod" ; + IFC4-PSD:nameAlias "Ship Method"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe3650000d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether contents of the purchase order are delivered 'Free on Board' (= True) or not (= False). FOB is a shipping term which indicates that the supplier pays the shipping costs (and usually also the insurance costs) from the point of manufacture to a specified destination, at which point the buyer takes responsibility." ; + rdfs:label "IsFOB" ; + IFC4-PSD:definition "Indication of whether contents of the purchase order are delivered 'Free on Board' (= True) or not (= False). FOB is a shipping term which indicates that the supplier pays the shipping costs (and usually also the insurance costs) from the point of manufacture to a specified destination, at which point the buyer takes responsibility." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e3650000d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "IsFOB" ; + IFC4-PSD:nameAlias "Is FOB"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:IsFOB a rdf:Property ; + rdfs:seeAlso :pe3650000d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsFOB . diff --git a/converter/src/main/resources/pset/Pset_ProjectOrderWorkOrder.ttl b/converter/src/main/resources/pset/Pset_ProjectOrderWorkOrder.ttl new file mode 100644 index 00000000..29f47a0f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProjectOrderWorkOrder.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p18715280d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Comments if the job is not accomplished." ; + rdfs:label "IfNotAccomplished" ; + IFC4-PSD:definition "Comments if the job is not accomplished." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "18715280d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "IfNotAccomplished" ; + IFC4-PSD:nameAlias "If Not Accomplished"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ContractualType a rdf:Property ; + rdfs:seeAlso :p0f808100d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContractualType . + +:Pset_ProjectOrderWorkOrder + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Defines the requirements for purchase orders in a project." ; + rdfs:label "Pset_ProjectOrderWorkOrder" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProjectOrder/WORKORDER" ; + IFC4-PSD:definition "Defines the requirements for purchase orders in a project." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProjectOrderWorkOrder" ; + IFC4-PSD:propertyDef :p07284600d1f811e1800000215ad4efdf , :pfe377480d1f711e1800000215ad4efdf , :p18715280d1f811e1800000215ad4efdf , :p0f808100d1f811e1800000215ad4efdf . + +:pfe377480d1f711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A textual description of the products that require the work." ; + rdfs:label "ProductDescription" ; + IFC4-PSD:definition "A textual description of the products that require the work." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fe377480d1f711e1800000215ad4efdf" ; + IFC4-PSD:name "ProductDescription" ; + IFC4-PSD:nameAlias "Product Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p07284600d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Work type requested in circumstances where there are categorizations of types of work task. It could be used to identify a remedial task, minor work task, electrical task etc." ; + rdfs:label "WorkTypeRequested" ; + IFC4-PSD:definition "Work type requested in circumstances where there are categorizations of types of work task. It could be used to identify a remedial task, minor work task, electrical task etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "07284600d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "WorkTypeRequested" ; + IFC4-PSD:nameAlias "Work Type Requested"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:WorkTypeRequested a rdf:Property ; + rdfs:seeAlso :p07284600d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkTypeRequested . + +:IfNotAccomplished a rdf:Property ; + rdfs:seeAlso :p18715280d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IfNotAccomplished . + +:ProductDescription a rdf:Property ; + rdfs:seeAlso :pfe377480d1f711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ProductDescription . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0f808100d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The contractual type of the work." ; + rdfs:label "ContractualType" ; + IFC4-PSD:definition "The contractual type of the work." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0f808100d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "ContractualType" ; + IFC4-PSD:nameAlias "Contractual Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . diff --git a/converter/src/main/resources/pset/Pset_PropertyAgreement.ttl b/converter/src/main/resources/pset/Pset_PropertyAgreement.ttl new file mode 100644 index 00000000..09c9ab13 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PropertyAgreement.ttl @@ -0,0 +1,231 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TerminationDate a rdf:Property ; + rdfs:seeAlso :p7736cc00d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TerminationDate . + +:Restrictions a rdf:Property ; + rdfs:seeAlso :p9a617b80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Restrictions . + +:Identifier a rdf:Property ; + rdfs:seeAlso :p46569700d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Identifier . + +:Version a rdf:Property ; + rdfs:seeAlso :p50789580d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Version . + +:Duration a rdf:Property ; + rdfs:seeAlso :p80279d80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Duration . + +:p87e74200d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A statement of the options available in the agreement." ; + rdfs:label "Options" ; + IFC4-PSD:definition "A statement of the options available in the agreement." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "87e74200d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "Options" ; + IFC4-PSD:nameAlias "Options"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p46569700d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The identifier assigned to the agreement for the purposes of tracking." ; + rdfs:label "Identifier" ; + IFC4-PSD:definition "The identifier assigned to the agreement for the purposes of tracking." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "46569700d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "Identifier" ; + IFC4-PSD:nameAlias "Identifier"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p80279d80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The period of time for the lease." ; + rdfs:label "Duration" ; + IFC4-PSD:definition "The period of time for the lease." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "80279d80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "Duration" ; + IFC4-PSD:nameAlias "Duration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:p7736cc00d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date on which the agreement terminates." ; + rdfs:label "TerminationDate" ; + IFC4-PSD:definition "Date on which the agreement terminates." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7736cc00d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "TerminationDate" ; + IFC4-PSD:nameAlias "Termination Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_PropertyAgreement + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A property agreement is an agreement that enables the occupation of a property for a period of time.\n\nThe objective is to capture the information within an agreement that is relevant to a facilities manager. Design and construction information associated with the property is not considered. A property agreement may be applied to an instance of IfcSpatialStructureElement including to compositions defined through the IfcSpatialStructureElement.Element.CompositionEnum.\n\nNote that the associated actors are captured by the IfcOccupant class." ; + rdfs:label "Pset_PropertyAgreement" ; + IFC4-PSD:applicableClass IFC4:IfcSpatialStructureElement ; + IFC4-PSD:applicableTypeValue "IfcSpatialStructureElement" ; + IFC4-PSD:definition "A property agreement is an agreement that enables the occupation of a property for a period of time.\n\nThe objective is to capture the information within an agreement that is relevant to a facilities manager. Design and construction information associated with the property is not considered. A property agreement may be applied to an instance of IfcSpatialStructureElement including to compositions defined through the IfcSpatialStructureElement.Element.CompositionEnum.\n\nNote that the associated actors are captured by the IfcOccupant class." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PropertyAgreement" ; + IFC4-PSD:propertyDef :p80279d80d1f811e1800000215ad4efdf , :p6e45fa80d1f811e1800000215ad4efdf , :p638b6580d1f811e1800000215ad4efdf , :p46569700d1f811e1800000215ad4efdf , :p50789580d1f811e1800000215ad4efdf , :p2c1cb900d1f811e1800000215ad4efdf , :p90d81380d1f811e1800000215ad4efdf , :p87e74200d1f811e1800000215ad4efdf , :p9a617b80d1f811e1800000215ad4efdf , :p5b332a80d1f811e1800000215ad4efdf , :p7736cc00d1f811e1800000215ad4efdf , :pa0575c80d1f811e1800000215ad4efdf . + +:p2c1cb900d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of property agreement from which the type required may be set." ; + rdfs:label "AgreementType" ; + IFC4-PSD:definition "Identifies the predefined types of property agreement from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2c1cb900d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "AgreementType" ; + IFC4-PSD:nameAlias "Agreement Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ASSIGNMENT" , "LEASE" , "TENANT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ConditionTermination + a rdf:Property ; + rdfs:seeAlso :pa0575c80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConditionTermination . + +:pa0575c80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Condition of property required on termination of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key." ; + rdfs:label "ConditionTermination" ; + IFC4-PSD:definition "Condition of property required on termination of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a0575c80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "ConditionTermination" ; + IFC4-PSD:nameAlias "Condition Termination"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:VersionDate a rdf:Property ; + rdfs:seeAlso :p5b332a80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VersionDate . + +:AgreementType a rdf:Property ; + rdfs:seeAlso :p2c1cb900d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AgreementType . + +:Options a rdf:Property ; + rdfs:seeAlso :p87e74200d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Options . + +:p90d81380d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Condition of property provided on commencement of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key." ; + rdfs:label "ConditionCommencement" ; + IFC4-PSD:definition "Condition of property provided on commencement of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "90d81380d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "ConditionCommencement" ; + IFC4-PSD:nameAlias "Condition Commencement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p9a617b80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Restrictions that may be placed by a competent authority." ; + rdfs:label "Restrictions" ; + IFC4-PSD:definition "Restrictions that may be placed by a competent authority." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9a617b80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "Restrictions" ; + IFC4-PSD:nameAlias "Restrictions"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:p50789580d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The version number of the agreement that is identified." ; + rdfs:label "Version" ; + IFC4-PSD:definition "The version number of the agreement that is identified." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "50789580d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "Version" ; + IFC4-PSD:nameAlias "Version"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p6e45fa80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Date on which the agreement commences." ; + rdfs:label "CommencementDate" ; + IFC4-PSD:definition "Date on which the agreement commences." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6e45fa80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "CommencementDate" ; + IFC4-PSD:nameAlias "Commencement Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + +:PropertyName a rdf:Property ; + rdfs:seeAlso :p638b6580d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PropertyName . + +:CommencementDate a rdf:Property ; + rdfs:seeAlso :p6e45fa80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CommencementDate . + +:ConditionCommencement + a rdf:Property ; + rdfs:seeAlso :p90d81380d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConditionCommencement . + +:p638b6580d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Addressing details of the property as stated within the agreement." ; + rdfs:label "PropertyName" ; + IFC4-PSD:definition "Addressing details of the property as stated within the agreement." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "638b6580d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "PropertyName" ; + IFC4-PSD:nameAlias "Property Name"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p5b332a80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The date on which the version of the agreement became applicable." ; + rdfs:label "VersionDate" ; + IFC4-PSD:definition "The date on which the version of the agreement became applicable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5b332a80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "VersionDate" ; + IFC4-PSD:nameAlias "Version Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TCurve.ttl new file mode 100644 index 00000000..ec1531f3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TCurve.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pd98fcc80d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A curve that establishes the let through energy of a breaker unit when a particular prospective current is applied. Note that the breaker unit curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:\n\n(1) Defining value: ProspectiveCurrent: A list of minimum 2 and maximum 16 numbers providing the currents in [A] for points in the current/I2t log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: LetThroughEnergy: A list of minimum 2 and maximum 16 numbers providing the let-through energy, I2t, in [A2s] for points in the current/I2t log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + rdfs:label "BreakerUnitCurve" ; + IFC4-PSD:definition "A curve that establishes the let through energy of a breaker unit when a particular prospective current is applied. Note that the breaker unit curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:\n\n(1) Defining value: ProspectiveCurrent: A list of minimum 2 and maximum 16 numbers providing the currents in [A] for points in the current/I2t log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: LetThroughEnergy: A list of minimum 2 and maximum 16 numbers providing the let-through energy, I2t, in [A2s] for points in the current/I2t log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + IFC4-PSD:definitionAlias "적용된 전류 통과 차단기의 에너지를 나타낸 곡선 (1) 정의 값 : ProspectiveCurrent (고유 전류) : 전류 / I2t에 표시된 최소 2에서 최대 8 개의 목록에서 전류 [A]를 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다. (2) 정의 값 : LetThroughEnergy : 전류 / I2t에 표시된 최소 2에서 최대 8 개의 목록에서 통과 에너지 전류 [A2s을 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다."@ko-KR , ""@en , "適用された電流と通過する遮断機のエネルギーを示した曲線\n (1)定義値:ProspectiveCurrent(固有電流):\n 電流/I2tで示される最小2から最大8のリストで電流[A]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。\n\n\n (2)定義値:LetThroughEnergy:\n 電流/I2tで示される最小2から最大8のリストで通過エネルギー電流[[A2s]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。"@ja-JP ; + IFC4-PSD:ifdguid "d98fcc80d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "BreakerUnitCurve" ; + IFC4-PSD:nameAlias "차단기 곡선"@ko-KR , "Breaker Unit Curve"@en , "遮断機曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcElectricCurrentMeasure + ] . + +:BreakerUnitCurve a rdf:Property ; + rdfs:seeAlso :pd98fcc80d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BreakerUnitCurve . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :pb6651d00d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:NominalCurrent a rdf:Property ; + rdfs:seeAlso :pd09efb00d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrent . + +:pb6651d00d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels of the protective device for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels of the protective device for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias "保護装置が作動する電圧レベルを選択。\n[U230,U400,U525,U690,U1000,その他,不明,無]"@ja-JP , ""@en , "보호 장치가 작동 전압 레벨을 선택합니다. [U230, U400, U525, U690, U1000, 기타 알 수 없음, 무"@ko-KR ; + IFC4-PSD:ifdguid "b6651d00d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "電圧レベル"@ja-JP , "전압 레벨"@ko-KR , "Voltage Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U1000" , "NOTKNOWN" , "U690" , "OTHER" , "U400" , "U230" , "U525" , "U440" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd09efb00d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + rdfs:label "NominalCurrent" ; + IFC4-PSD:definition "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + IFC4-PSD:definitionAlias "정격 전류 [A]를 적어도 1 개의 값을 설정해야한다. 동일한 차단기부와 연결된 정격전류는세트 내의 임의의 값은 초과할 수 없다."@ko-KR , "定格電流[A]を少なくても1つ値をセットしなければならない。\n セット内の任意の値の値を超えてはならない。\n 定格電流は、同じブレーカ部に関連付けられている。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d09efb00d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrent" ; + IFC4-PSD:nameAlias "定格電流"@ja-JP , "정격전류"@ko-KR , "Nominal Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:Pset_ProtectiveDeviceBreakerUnitI2TCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing a curve for let-through energy of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics" ; + rdfs:label "Pset_ProtectiveDeviceBreakerUnitI2TCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "A coherent set of attributes representing a curve for let-through energy of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics" ; + IFC4-PSD:definitionAlias ""@en , "保護装置の通電エネルギーの曲線を表す一連のプロパティセット。\n注記-保護装置は、根本的な特性に関連付けられた提供されたプロパティの情報は、 異なる実態に関連しているかもしれません。                 "@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceBreakerUnitI2TCurve" ; + IFC4-PSD:propertyDef :pd98fcc80d1f811e1800000215ad4efdf , :pb6651d00d1f811e1800000215ad4efdf , :pd09efb00d1f811e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve.ttl new file mode 100644 index 00000000..b0731d18 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:BreakerUnitFuseBreakingingCurve + a rdf:Property ; + rdfs:seeAlso :p2673a300d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BreakerUnitFuseBreakingingCurve . + +:p2673a300d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A curve that establishes the let through breaking energy of a breaker unit when a particular prospective breaking current is applied. Note that the breaker unit fuse breaking curve is defined within a Cartesian coordinate system and this fact must be:\n\n(1) Defining value: ProspectiveCurrentBreaking: A list of minimum 2 and maximum 8 numbers providing the currents in [A] for points in the\ncurrent/breaking energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: LetThroughBreakingEnergy: A list of minimum 2 and maximum 8 numbers providing the breaking energy whereby the fuse has provided a break, I2t, in [A2s] for points in the current/breakting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive." ; + rdfs:label "BreakerUnitFuseBreakingingCurve" ; + IFC4-PSD:definition "A curve that establishes the let through breaking energy of a breaker unit when a particular prospective breaking current is applied. Note that the breaker unit fuse breaking curve is defined within a Cartesian coordinate system and this fact must be:\n\n(1) Defining value: ProspectiveCurrentBreaking: A list of minimum 2 and maximum 8 numbers providing the currents in [A] for points in the\ncurrent/breaking energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: LetThroughBreakingEnergy: A list of minimum 2 and maximum 8 numbers providing the breaking energy whereby the fuse has provided a break, I2t, in [A2s] for points in the current/breakting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive." ; + IFC4-PSD:definitionAlias "예상치 못한 전류가 흐를 때 차단기의 퓨즈를 녹이는 데 필요한 에너지를 나타내는 곡선. 예상외의 전류가 흘렀을 때에 차단기의 퓨즈를 녹이는 데 필요한 에너지를 나타내는 곡선. (1) 정의 값 : 융해 전류 : 전류 / 융해 에너지에 표시된 최소 2에서 최대 8 개의 목록에서 전류 [A]를 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다. (2) 정의 값 : 융해 에너지 :/ 전류 / 융해 에너지의 위치 [A2s에서 나타나는 2 ~ 16 예상되는 퓨즈가 용해 시작 전류 [A2s을 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다."@ko-KR , ""@en , "想定外の電流が流れた時に遮断機のフューズを溶かすために必要なエネルギーを表す曲線。\n 想定外の電流が流れた時に遮断機のフューズを溶かすために必要なエネルギーを表す曲線。\n\n (1)定義値:融解電流:電流/ 融解エネルギーで示される最小2から最大8のリストで電流[A]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。\n (2)定義値:融解エネルギー:/電流/融解エネルギーの位置[A2s]で示される2~16の想定されるフューズが溶解始める電流[A2s]を定義します。カーブが連続する2つの点を結ぶ直線として描かれています。"@ja-JP ; + IFC4-PSD:ifdguid "2673a300d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "BreakerUnitFuseBreakingingCurve" ; + IFC4-PSD:nameAlias "Breaker Unit Fuse Breakinging Curve"@en , "퓨즈 차단기 융해 곡선"@ko-KR , "フューズ遮断機融解曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcElectricCurrentMeasure + ] . + +:Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing curves for melting- and breaking-energy of a fuse. Note - A fuse may be associated with different instances of this property set providing information related to different basic characteristics." ; + rdfs:label "Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "A coherent set of attributes representing curves for melting- and breaking-energy of a fuse. Note - A fuse may be associated with different instances of this property set providing information related to different basic characteristics." ; + IFC4-PSD:definitionAlias "フューズの融解-遮断エネルギー曲線を表す一連のプロパティセット。\n注記-フューズは、根本的な特性に関連付けられた提供されたプロパティの情報は、 異なる実態に関連しているかもしれません。                 "@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve" ; + IFC4-PSD:propertyDef :pf75d3180d1f811e1800000215ad4efdf , :p152a9680d1f911e1800000215ad4efdf , :p2673a300d1f911e1800000215ad4efdf . + +:pf75d3180d1f811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels of the fuse for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels of the fuse for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias ""@en , "전압 레벨을 선택합니다."@ko-KR , "電圧レベルを選択。"@ja-JP ; + IFC4-PSD:ifdguid "f75d3180d1f811e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "Voltage Level"@en , "전압레벨"@ko-KR , "電圧レベル"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U230" , "OTHER" , "U400" , "NOTKNOWN" , "U1000" , "UNSET" , "U690" , "U525" , "U440" + ] . + +:p152a9680d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A curve that establishes the energy required to melt the fuse of a breaker unit when a particular prospective melting current is applied. Note that the breaker unit fuse melting curve is defined within a Cartesian coordinate system and this fact must be:\n\n(1) Defining value: ProspectiveCurrentMelting :A list of minimum 2 and maximum 8 numbers providing the currents in [A] for points in the\ncurrent/melting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: MeltingEnergy: A list of minimum 2 and maximum 8 numbers providing the energy whereby the fuse is starting to melt, I2t, in [A2s] for points in the current/melting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + rdfs:label "BreakerUnitFuseMeltingCurve" ; + IFC4-PSD:definition "A curve that establishes the energy required to melt the fuse of a breaker unit when a particular prospective melting current is applied. Note that the breaker unit fuse melting curve is defined within a Cartesian coordinate system and this fact must be:\n\n(1) Defining value: ProspectiveCurrentMelting :A list of minimum 2 and maximum 8 numbers providing the currents in [A] for points in the\ncurrent/melting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: MeltingEnergy: A list of minimum 2 and maximum 8 numbers providing the energy whereby the fuse is starting to melt, I2t, in [A2s] for points in the current/melting_energy log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + IFC4-PSD:definitionAlias "想定外の電流が流れた時に遮断機のフューズを溶かすために必要なエネルギーを表す曲線。\n 想定外の電流が流れた時に遮断機のフューズを溶かすために必要なエネルギーを表す曲線。\n\n (1)定義値:融解電流:電流/ 融解エネルギーで示される最小2から最大8のリストで電流[A]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。\n (2)定義値:融解エネルギー:/電流/融解エネルギーの位置[A2s]で示される2~16の想定されるフューズが溶解始める電流[A2s]を定義します。カーブが連続する2つの点を結ぶ直線として描かれています。"@ja-JP , "예상치 못한 전류가 흐를 때 차단기의 퓨즈를 녹이는 데 필요한 에너지를 나타내는 곡선. 예상외의 전류가 흘렀을 때에 차단기의 퓨즈를 녹이는 데 필요한 에너지를 나타내는 곡선. (1) 정의 값 : 융해 전류 : 전류 / 융해 에너지에 표시된 최소 2에서 최대 8 개의 목록에서 전류 [A]를 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다. (2) 정의 값 : 융해 에너지 :/ 전류 / 융해 에너지의 위치 [A2s에서 나타나는 2 ~ 16 예상되는 퓨즈가 용해 시작 전류 [A2s을 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "152a9680d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "BreakerUnitFuseMeltingCurve" ; + IFC4-PSD:nameAlias "フューズ遮断機融解曲線"@ja-JP , "Breaker Unit Fuse Melting Curve"@en , "퓨즈 차단기 융해 곡선"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcReal ; + IFC4-PSD:definingValue IFC4:IfcElectricCurrentMeasure + ] . + +:BreakerUnitFuseMeltingCurve + a rdf:Property ; + rdfs:seeAlso :p152a9680d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BreakerUnitFuseMeltingCurve . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :pf75d3180d1f811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitIPICurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitIPICurve.ttl new file mode 100644 index 00000000..2e58f839 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitIPICurve.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p68044e00d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A curve that establishes the let through peak current of a breaker unit when a particular prospective current is applied. Note that the breaker unit IPI curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:\n\n(1) Defining value: A list of minimum 2 and maximum 16 numbers providing the currents in [A] for points in the I/Î log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: A list of minimum 2 and maximum 16 numbers providing the let-through peak currents, Î, in [A] for points in the I/Î log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + rdfs:label "BreakerUnitIPICurve" ; + IFC4-PSD:definition "A curve that establishes the let through peak current of a breaker unit when a particular prospective current is applied. Note that the breaker unit IPI curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:\n\n(1) Defining value: A list of minimum 2 and maximum 16 numbers providing the currents in [A] for points in the I/Î log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value: A list of minimum 2 and maximum 16 numbers providing the let-through peak currents, Î, in [A] for points in the I/Î log/log coordinate space. The curve is drawn as a straight line between two consecutive points." ; + IFC4-PSD:definitionAlias "適用された電流と通過する遮断機のエネルギーを示した曲線\n (1)定義値:ProspectiveCurrent(固有電流):\n 電流/I2tで示される最小2から最大8のリストで電流[A]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。\n\n\n (2)定義値:LetThroughEnergy:\n 電流/I2tで示される最小2から最大8のリストで通過エネルギー電流[[A2s]を定義します。\n カーブが連続する2つの点を結ぶ直線として描かれています。"@ja-JP , "적용된 전류 통과 차단기의 에너지를 나타낸 곡선 (1) 정의 값 : ProspectiveCurrent (고유 전류) : 전류 / I2t에 표시된 최소 2에서 최대 8 개의 목록에서 전류 [A]를 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다. (2) 정의 값 : LetThroughEnergy : 전류 / I2t에 표시된 최소 2에서 최대 8 개의 목록에서 통과 에너지 전류 [A2s을 정의합니다. 커브가 연속되는 두 개의 점을 연결하는 직선으로 그려져 있습니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "68044e00d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "BreakerUnitIPICurve" ; + IFC4-PSD:nameAlias "Breaker Unit IPICurve"@en , "차단기 곡선"@ko-KR , "遮断機曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcElectricCurrentMeasure ; + IFC4-PSD:definingValue IFC4:IfcElectricCurrentMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p3d19fa00d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage level of the protective device for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage level of the protective device for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias "전압 레벨을 선택합니다."@ko-KR , "電圧レベルを選択。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3d19fa00d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "Voltage Level"@en , "전압 레벨"@ko-KR , "電圧レベル"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U1000" , "UNSET" , "OTHER" , "U525" , "U690" , "U400" , "U230" , "NOTKNOWN" , "U440" + ] . + +:p5fac1300d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + rdfs:label "NominalCurrent" ; + IFC4-PSD:definition "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + IFC4-PSD:definitionAlias "定格電流[A]を少なくても1つ値をセットしなければならない。\n セット内の任意の値の値を超えてはならない。\n 定格電流は、同じブレーカ部に関連付けられている。"@ja-JP , ""@en , "정격 전류 [A]를 적어도 1 개의 값을 설정해야한다. 동일한 차단기부와 연결된 정격전류는세트 내의 임의의 값은 초과할 수 없다."@ko-KR ; + IFC4-PSD:ifdguid "5fac1300d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrent" ; + IFC4-PSD:nameAlias "定格電流"@ja-JP , "Nominal Current"@en , "정격전류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:NominalCurrent a rdf:Property ; + rdfs:seeAlso :p5fac1300d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrent . + +:Pset_ProtectiveDeviceBreakerUnitIPICurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing curves for let-through currents of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics." ; + rdfs:label "Pset_ProtectiveDeviceBreakerUnitIPICurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "A coherent set of attributes representing curves for let-through currents of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics." ; + IFC4-PSD:definitionAlias ""@en , "プロパティセット定義文\n保護装置の通電エネルギーの曲線を表す一連のプロパティセット \n注記-保護装置は、根本的な特性に関連付けられた提供されたプロパティの情報は、 異なる実態に関連しているかもしれません。                 "@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceBreakerUnitIPICurve" ; + IFC4-PSD:propertyDef :p3d19fa00d1f911e1800000215ad4efdf , :p5fac1300d1f911e1800000215ad4efdf , :p68044e00d1f911e1800000215ad4efdf . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :p3d19fa00d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:BreakerUnitIPICurve a rdf:Property ; + rdfs:seeAlso :p68044e00d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BreakerUnitIPICurve . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMCB.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMCB.ttl new file mode 100644 index 00000000..0236934f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMCB.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pd2b58980d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The service breaking capacity in [A] for an MCB tested in accordance with the IEC 60898 series." ; + rdfs:label "ICS60898" ; + IFC4-PSD:definition "The service breaking capacity in [A] for an MCB tested in accordance with the IEC 60898 series." ; + IFC4-PSD:definitionAlias "IEC의 60898 시리즈를 기반으로 시험한 MCB 차단 사용 용량 [A]로 설정."@ko-KR , ""@en , "IECの60898シリーズに基づいてテストされたMCBの遮断使用容量を[A]で設定。"@ja-JP ; + IFC4-PSD:ifdguid "d2b58980d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "ICS60898" ; + IFC4-PSD:nameAlias "ICS60898"@en , "ICS60898"@ja-JP , "ICS60898"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :p8ec28480d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:ICN60898 a rdf:Property ; + rdfs:seeAlso :pc9c4b800d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICN60898 . + +:ICS60947 a rdf:Property ; + rdfs:seeAlso :pc0d3e680d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICS60947 . + +:pae59ad00d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + rdfs:label "NominalCurrents" ; + IFC4-PSD:definition "A set of nominal currents in [A] for which the data of this instance is valid. At least one value shall be provided. Any value in the set shall not exceed the value of the \nUltimateRatedCurrent associated with the same breaker unit." ; + IFC4-PSD:definitionAlias "定格電流[A]を少なくても1つ値をセットしなければならない。\n セット内の任意の値の値を超えてはならない。\n 定格電流は、同じブレーカ部に関連付けられている。"@ja-JP , "정격 전류 [A]를 적어도 2 개의 값을 설정해야한다. 동일한 차단기부와 연결된 정격전류는세트 내의 임의의 값은 초과할 수 없다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "ae59ad00d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrents" ; + IFC4-PSD:nameAlias "정격 전류"@ko-KR , "定格電流"@ja-JP , "Nominal Currents"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pc9c4b800d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal breaking capacity in [A] for an MCB tested in accordance with the IEC 60898 series." ; + rdfs:label "ICN60898" ; + IFC4-PSD:definition "The nominal breaking capacity in [A] for an MCB tested in accordance with the IEC 60898 series." ; + IFC4-PSD:definitionAlias "IEC의 60898 시리즈를 기반으로 시험한 MCB의 정격 차단 용량 [A]로 설정."@ko-KR , ""@en , "IECの60898シリーズに基づいてテストされたMCBの定格遮断容量を[A]で設定。"@ja-JP ; + IFC4-PSD:ifdguid "c9c4b800d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "ICN60898" ; + IFC4-PSD:nameAlias "ICN60898"@ja-JP , "ICN60898"@ko-KR , "ICN60898"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:Pset_ProtectiveDeviceBreakerUnitTypeMCB + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing the breaking capacities of an MCB. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics." ; + rdfs:label "Pset_ProtectiveDeviceBreakerUnitTypeMCB" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/CIRCUITBREAKER" ; + IFC4-PSD:definition "A coherent set of attributes representing the breaking capacities of an MCB. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceBreakerUnitTypeMCB" ; + IFC4-PSD:propertyDef :pae59ad00d1f911e1800000215ad4efdf , :pd2b58980d1f911e1800000215ad4efdf , :pb6b1e800d1f911e1800000215ad4efdf , :pc9c4b800d1f911e1800000215ad4efdf , :pc0d3e680d1f911e1800000215ad4efdf , :p84a08600d1f911e1800000215ad4efdf , :p8ec28480d1f911e1800000215ad4efdf . + +:pb6b1e800d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ultimate breaking capacity in [A] for an MCB tested in accordance with the IEC 60947 series." ; + rdfs:label "ICU60947" ; + IFC4-PSD:definition "The ultimate breaking capacity in [A] for an MCB tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias "IEC의 60948 시리즈를 기반으로 시험한 MCB의 정격 한계 단락 차단 용량 [A]로 설정."@ko-KR , ""@en , "IECの60947シリーズに基づいてテストされたMCBの定格限界短絡遮断容量を[A]で設定。"@ja-JP ; + IFC4-PSD:ifdguid "b6b1e800d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "ICU60947" ; + IFC4-PSD:nameAlias "ICU60947"@en , "定格限界短絡遮断容量"@ja-JP , "정격 한계 단락 차단 용량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:PowerLoss a rdf:Property ; + rdfs:seeAlso :p84a08600d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerLoss . + +:NominalCurrents a rdf:Property ; + rdfs:seeAlso :pae59ad00d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrents . + +:ICS60898 a rdf:Property ; + rdfs:seeAlso :pd2b58980d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICS60898 . + +:ICU60947 a rdf:Property ; + rdfs:seeAlso :pb6b1e800d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICU60947 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc0d3e680d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The service breaking capacity in [A] for an MCB tested in accordance with the IEC 60947 series." ; + rdfs:label "ICS60947" ; + IFC4-PSD:definition "The service breaking capacity in [A] for an MCB tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias "IECの60947シリーズに基づいてテストされたMCBの定格使用短絡遮断容量を[A]で設定。"@ja-JP , ""@en , "IEC의 60947 시리즈를 기반으로 시험한 MCB의 정격 사용 단락 차단 용량 [A]로 설정."@ko-KR ; + IFC4-PSD:ifdguid "c0d3e680d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "ICS60947" ; + IFC4-PSD:nameAlias "定格使用短絡遮断容量"@ja-JP , "ICS60947"@en , "정격 사용 단락 차단 용량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p84a08600d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The power loss in [W] per pole of the MCB when the nominal current is flowing through the MCB." ; + rdfs:label "PowerLoss" ; + IFC4-PSD:definition "The power loss in [W] per pole of the MCB when the nominal current is flowing through the MCB." ; + IFC4-PSD:definitionAlias "定格電流がMCBに流れている時のMCBの極当たりの電力損失[W]。"@ja-JP , ""@en , "정격 전류가 MCB 흐르고있을 때의 MCB 극 당 전력 손실 [W]."@ko-KR ; + IFC4-PSD:ifdguid "84a08600d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "PowerLoss" ; + IFC4-PSD:nameAlias "Power Loss"@en , "전력 손실"@ko-KR , "電力損失"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p8ec28480d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias "전압레벨을 선택합니다."@ko-KR , "電圧レベルを選択。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8ec28480d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "전압 레벨"@ko-KR , "電圧レベル"@ja-JP , "Voltage Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U400" , "U1000" , "U440" , "UNSET" , "U230" , "NOTKNOWN" , "U690" , "U525" , "OTHER" + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection.ttl new file mode 100644 index 00000000..81b775e5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1a3c1580d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICM60947" ; + IFC4-PSD:definition "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias "IEC의 60947 시리즈를 기반으로 테스트 배선 차단기 또는 모터 보호 장치를위한 만드는 능력 [A]. \""@ko-KR , ""@en , "IECの60947シリーズに基づいてテストした配線遮断機またはモータ保護装置のためので作る能力[A]。"@ja-JP ; + IFC4-PSD:ifdguid "1a3c1580d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ICM60947" ; + IFC4-PSD:nameAlias "ICM60947"@en , "ICM60947"@ja-JP , "ICM60947"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:PerformanceClasses a rdf:Property ; + rdfs:seeAlso :pe365ff80d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PerformanceClasses . + +:p14decb00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thermal withstand current in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series. The value shall be related to 1 s." ; + rdfs:label "ICW60947" ; + IFC4-PSD:definition "The thermal withstand current in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series. The value shall be related to 1 s." ; + IFC4-PSD:definitionAlias "IEC60947 시리즈를 기반으로 테스트 배선 차단기 또는 모터 보호 장치를위한 전류 [A]에 견디는 온도 값은 1s 주어진다."@ko-KR , ""@en , "IEC60947シリーズに基づいてテストした配線遮断機またはモータ保護装置のための電流[A]に耐える温度。\n 値は、1sで与えられる。"@ja-JP ; + IFC4-PSD:ifdguid "14decb00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ICW60947" ; + IFC4-PSD:nameAlias "ICW60947"@en , "ICW60947"@ja-JP , "ICW60947"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:ICS60947 a rdf:Property ; + rdfs:seeAlso :p0f818080d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICS60947 . + +:ICW60947 a rdf:Property ; + rdfs:seeAlso :p14decb00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICW60947 . + +:pecef6780d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias "電圧レベルを選択。"@ja-JP , "전압 레벨을 선택합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "ecef6780d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "전압레벨"@ko-KR , "電圧レベル"@ja-JP , "Voltage Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U400" , "UNSET" , "U1000" , "U690" , "OTHER" , "NOTKNOWN" , "U525" , "U440" , "U230" + ] . + +:p0f818080d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The service breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICS60947" ; + IFC4-PSD:definition "The service breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias "IECの60947シリーズに基づいてテスト配線用遮断機またはモータ保護装置のための遮断容量サービスを[A]で設定。"@ja-JP , ""@en , "IEC의 60947 시리즈를 기반으로 테스트 배선용 차단기 또는 모터 보호 장치를위한 차단 용량 서비스를 [A]로 설정."@ko-KR ; + IFC4-PSD:ifdguid "0f818080d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ICS60947" ; + IFC4-PSD:nameAlias "ICS60947"@ja-JP , "ICS60947"@ko-KR , "ICS60947"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :pecef6780d1f911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing different capacities of a a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this Pset." ; + rdfs:label "Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "A coherent set of attributes representing different capacities of a a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this Pset." ; + IFC4-PSD:definitionAlias ""@en , "AAのモータ保護装置の異なる容量を表す属性の一貫したセットは、IEC60947に基づいて定義されています。\n 注-保護装置は、このプロセッサセットの別のインスタンスに関連付けられている可能性があります。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection" ; + IFC4-PSD:propertyDef :pe365ff80d1f911e1800000215ad4efdf , :pecef6780d1f911e1800000215ad4efdf , :p14decb00d1fa11e1800000215ad4efdf , :p0f818080d1fa11e1800000215ad4efdf , :p098b9f80d1fa11e1800000215ad4efdf , :p1a3c1580d1fa11e1800000215ad4efdf . + +:pe365ff80d1f911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of designations of performance classes for the breaker unit for which the data of this instance is valid. A breaker unit being a motor protection device may be\nconstructed for different levels of breaking capacities. A maximum of 7 different\nperformance classes may be provided. Examples of performance classes that may be specified include B, C, N, S, H, L, V." ; + rdfs:label "PerformanceClasses" ; + IFC4-PSD:definition "A set of designations of performance classes for the breaker unit for which the data of this instance is valid. A breaker unit being a motor protection device may be\nconstructed for different levels of breaking capacities. A maximum of 7 different\nperformance classes may be provided. Examples of performance classes that may be specified include B, C, N, S, H, L, V." ; + IFC4-PSD:definitionAlias "모터 보호하는 개폐 장치는 능력이 다른 최대 7 종류가있다. 이름의 예로는, B, C, N, S, H, L, V가 포함된다."@ko-KR , ""@en , "モータ保護を行う開閉装置は、能力が違う最大7種類がある。名称の例として、B, C, N, S, H, L, Vが含まれる。"@ja-JP ; + IFC4-PSD:ifdguid "e365ff80d1f911e1800000215ad4efdf" ; + IFC4-PSD:name "PerformanceClasses" ; + IFC4-PSD:nameAlias "능력클래스"@ko-KR , "Performance Classes"@en , "能力クラス"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ICM60947 a rdf:Property ; + rdfs:seeAlso :p1a3c1580d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICM60947 . + +:ICU60947 a rdf:Property ; + rdfs:seeAlso :p098b9f80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICU60947 . + +:p098b9f80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ultimate breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICU60947" ; + IFC4-PSD:definition "The ultimate breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias ""@en , "IEC의 60947 시리즈를 기반으로 테스트 배선용 차단기 또는 모터 보호 장치를위한 차단 용량 [A]로 설정."@ko-KR , "IECの60947シリーズに基づいてテスト配線用遮断機またはモータ保護装置のための遮断容量を[A]で設定。"@ja-JP ; + IFC4-PSD:ifdguid "098b9f80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ICU60947" ; + IFC4-PSD:nameAlias "ICU60947"@en , "ICU60947"@ja-JP , "ICU60947"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceOccurrence.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceOccurrence.ttl new file mode 100644 index 00000000..759041bb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceOccurrence.ttl @@ -0,0 +1,272 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pab1a66c09b664bc39faba566d40fc3f6 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Applying short time i2t function. A flag indicating that the I2t short time function of the device is used. The value should be set to TRUE only if the I2t function  is explicitly selected for the device." ; + rdfs:label "ShortTimei2tFunction" ; + IFC4-PSD:definition "Applying short time i2t function. A flag indicating that the I2t short time function of the device is used. The value should be set to TRUE only if the I2t function  is explicitly selected for the device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ab1a66c09b664bc39faba566d40fc3f6" ; + IFC4-PSD:name "ShortTimei2tFunction" ; + IFC4-PSD:nameAlias "Short Timei2t Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p74cb82eed6ff4aae9f88fe5222059167 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Short time tripping time. The set value of the short time tripping time if adjustable." ; + rdfs:label "ShortTimeTrippingTime" ; + IFC4-PSD:definition "Short time tripping time. The set value of the short time tripping time if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "74cb82eed6ff4aae9f88fe5222059167" ; + IFC4-PSD:name "ShortTimeTrippingTime" ; + IFC4-PSD:nameAlias "Short Time Tripping Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:ShortTimeCurrentSetValue + a rdf:Property ; + rdfs:seeAlso :p70aaff9161f949eeb5bc5517d4044d3e ; + rdfs:subPropertyOf IFC4-PSD:ShortTimeCurrentSetValue . + +:GroundFaulti2tFunction + a rdf:Property ; + rdfs:seeAlso :p011510087b3e484aa631627e3ef99db0 ; + rdfs:subPropertyOf IFC4-PSD:GroundFaulti2tFunction . + +:ShortTimei2tFunction + a rdf:Property ; + rdfs:seeAlso :pab1a66c09b664bc39faba566d40fc3f6 ; + rdfs:subPropertyOf IFC4-PSD:ShortTimei2tFunction . + +:p011510087b3e484aa631627e3ef99db0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Applying ground fault i2t function. A flag indicating that the I2t ground fault function of the device is used. The value should be set to TRUE only if the I2t function is explicitly selected for the device." ; + rdfs:label "GroundFaulti2tFunction" ; + IFC4-PSD:definition "Applying ground fault i2t function. A flag indicating that the I2t ground fault function of the device is used. The value should be set to TRUE only if the I2t function is explicitly selected for the device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "011510087b3e484aa631627e3ef99db0" ; + IFC4-PSD:name "GroundFaulti2tFunction" ; + IFC4-PSD:nameAlias "Ground Faulti2t Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p4bc3d7215dac42f8ad3e069dc2559ee2 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Long time current set value. The set value of the long time tripping current if adjustable." ; + rdfs:label "LongTimeCurrentSetValue" ; + IFC4-PSD:definition "Long time current set value. The set value of the long time tripping current if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4bc3d7215dac42f8ad3e069dc2559ee2" ; + IFC4-PSD:name "LongTimeCurrentSetValue" ; + IFC4-PSD:nameAlias "Long Time Current Set Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pf9250bdd70df4cbfaf6ad72d26170202 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Applying long time function\nA flag indicating that the long time function (i.e. the thermal tripping) of the device is used. The value should be set to TRUE for all devices except those that allows the Long time function of the device not to be used." ; + rdfs:label "LongTimeFunction" ; + IFC4-PSD:definition "Applying long time function\nA flag indicating that the long time function (i.e. the thermal tripping) of the device is used. The value should be set to TRUE for all devices except those that allows the Long time function of the device not to be used." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f9250bdd70df4cbfaf6ad72d26170202" ; + IFC4-PSD:name "LongTimeFunction" ; + IFC4-PSD:nameAlias "Long Time Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p976a795614174914adcd03a1ce7bdf3e + a IFC4-PSD:PropertyDef ; + rdfs:comment "Instantaneous tripping time. The set value of the instantaneous tripping time if adjustable." ; + rdfs:label "InstantaneousTrippingTime" ; + IFC4-PSD:definition "Instantaneous tripping time. The set value of the instantaneous tripping time if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "976a795614174914adcd03a1ce7bdf3e" ; + IFC4-PSD:name "InstantaneousTrippingTime" ; + IFC4-PSD:nameAlias "Instantaneous Tripping Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:InstantaneousTrippingTime + a rdf:Property ; + rdfs:seeAlso :p976a795614174914adcd03a1ce7bdf3e ; + rdfs:subPropertyOf IFC4-PSD:InstantaneousTrippingTime . + +:LongTimeDelay a rdf:Property ; + rdfs:seeAlso :pf0250a29337f4364acb3be5daa02add0 ; + rdfs:subPropertyOf IFC4-PSD:LongTimeDelay . + +:LongTimeCurrentSetValue + a rdf:Property ; + rdfs:seeAlso :p4bc3d7215dac42f8ad3e069dc2559ee2 ; + rdfs:subPropertyOf IFC4-PSD:LongTimeCurrentSetValue . + +:ShortTimeTrippingTime + a rdf:Property ; + rdfs:seeAlso :p74cb82eed6ff4aae9f88fe5222059167 ; + rdfs:subPropertyOf IFC4-PSD:ShortTimeTrippingTime . + +:pf0250a29337f4364acb3be5daa02add0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Long time delay. The set value of the long time time-delay if adjustable." ; + rdfs:label "LongTimeDelay" ; + IFC4-PSD:definition "Long time delay. The set value of the long time time-delay if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f0250a29337f4364acb3be5daa02add0" ; + IFC4-PSD:name "LongTimeDelay" ; + IFC4-PSD:nameAlias "Long Time Delay"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:InstantaneousCurrentSetValue + a rdf:Property ; + rdfs:seeAlso :p3be6cdde984242b0a0d64478bc12607e ; + rdfs:subPropertyOf IFC4-PSD:InstantaneousCurrentSetValue . + +:GroundFaultFunction a rdf:Property ; + rdfs:seeAlso :p8a30c27174694aa78319e83f13deaf14 ; + rdfs:subPropertyOf IFC4-PSD:GroundFaultFunction . + +:pf0e1b9943900433a8bb2e462694b55d1 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ground fault current set value. The set value of the ground tripping current if adjustable." ; + rdfs:label "GroundFaultCurrentSetValue" ; + IFC4-PSD:definition "Ground fault current set value. The set value of the ground tripping current if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f0e1b9943900433a8bb2e462694b55d1" ; + IFC4-PSD:name "GroundFaultCurrentSetValue" ; + IFC4-PSD:nameAlias "Ground Fault Current Set Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p337c40a498c54e4baa54a444cf4790ea + a IFC4-PSD:PropertyDef ; + rdfs:comment "Applying short time function A flag indicating that the short time function of the device is used. The value should be set to FALSE for devices not having a short time function, or if the short time function is not selected to be used." ; + rdfs:label "ShortTimeFunction" ; + IFC4-PSD:definition "Applying short time function A flag indicating that the short time function of the device is used. The value should be set to FALSE for devices not having a short time function, or if the short time function is not selected to be used." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "337c40a498c54e4baa54a444cf4790ea" ; + IFC4-PSD:name "ShortTimeFunction" ; + IFC4-PSD:nameAlias "Short Time Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:GroundFaultTrippingTime + a rdf:Property ; + rdfs:seeAlso :p5a52482a0258465fa47cc512a46703f1 ; + rdfs:subPropertyOf IFC4-PSD:GroundFaultTrippingTime . + +:p3be6cdde984242b0a0d64478bc12607e + a IFC4-PSD:PropertyDef ; + rdfs:comment "Instantaneous current set value. The set value of the instantaneous tripping current if adjustable." ; + rdfs:label "InstantaneousCurrentSetValue" ; + IFC4-PSD:definition "Instantaneous current set value. The set value of the instantaneous tripping current if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3be6cdde984242b0a0d64478bc12607e" ; + IFC4-PSD:name "InstantaneousCurrentSetValue" ; + IFC4-PSD:nameAlias "Instantaneous Current Set Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p5a52482a0258465fa47cc512a46703f1 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ground fault tripping time. The set value of the ground fault tripping current if adjustable." ; + rdfs:label "GroundFaultTrippingTime" ; + IFC4-PSD:definition "Ground fault tripping time. The set value of the ground fault tripping current if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5a52482a0258465fa47cc512a46703f1" ; + IFC4-PSD:name "GroundFaultTrippingTime" ; + IFC4-PSD:nameAlias "Ground Fault Tripping Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p70aaff9161f949eeb5bc5517d4044d3e + a IFC4-PSD:PropertyDef ; + rdfs:comment "Short time current set value. The set value of the long time tripping current if adjustable." ; + rdfs:label "ShortTimeCurrentSetValue" ; + IFC4-PSD:definition "Short time current set value. The set value of the long time tripping current if adjustable." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "70aaff9161f949eeb5bc5517d4044d3e" ; + IFC4-PSD:name "ShortTimeCurrentSetValue" ; + IFC4-PSD:nameAlias "Short Time Current Set Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pa4234ac09e044d25883b1529e5898574 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pole usage." ; + rdfs:label "PoleUsage" ; + IFC4-PSD:definition "Pole usage." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a4234ac09e044d25883b1529e5898574" ; + IFC4-PSD:name "PoleUsage" ; + IFC4-PSD:nameAlias "Pole Usage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "1P" , "UNSET" , "2P" , "OTHER" , "1PN" , "3P" , "4P" , "NOTKNOWN" , "3PN" + ] . + +:PoleUsage a rdf:Property ; + rdfs:seeAlso :pa4234ac09e044d25883b1529e5898574 ; + rdfs:subPropertyOf IFC4-PSD:PoleUsage . + +:Pset_ProtectiveDeviceOccurrence + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that are applied to an occurrence of a protective device." ; + rdfs:label "Pset_ProtectiveDeviceOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "Properties that are applied to an occurrence of a protective device." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceOccurrence" ; + IFC4-PSD:propertyDef :p3be6cdde984242b0a0d64478bc12607e , :pf0250a29337f4364acb3be5daa02add0 , :p976a795614174914adcd03a1ce7bdf3e , :p5a52482a0258465fa47cc512a46703f1 , :p8a30c27174694aa78319e83f13deaf14 , :pa4234ac09e044d25883b1529e5898574 , :p4bc3d7215dac42f8ad3e069dc2559ee2 , :pf9250bdd70df4cbfaf6ad72d26170202 , :p337c40a498c54e4baa54a444cf4790ea , :pf0e1b9943900433a8bb2e462694b55d1 , :p70aaff9161f949eeb5bc5517d4044d3e , :pab1a66c09b664bc39faba566d40fc3f6 , :p74cb82eed6ff4aae9f88fe5222059167 , :p011510087b3e484aa631627e3ef99db0 . + +:LongTimeFunction a rdf:Property ; + rdfs:seeAlso :pf9250bdd70df4cbfaf6ad72d26170202 ; + rdfs:subPropertyOf IFC4-PSD:LongTimeFunction . + +:ShortTimeFunction a rdf:Property ; + rdfs:seeAlso :p337c40a498c54e4baa54a444cf4790ea ; + rdfs:subPropertyOf IFC4-PSD:ShortTimeFunction . + +:p8a30c27174694aa78319e83f13deaf14 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Applying ground fault function. A flag indicating that the ground fault function of the device is used. The value should be set to FALSE for devices not having a ground fault function, or if the ground fault function is not selected to be used." ; + rdfs:label "GroundFaultFunction" ; + IFC4-PSD:definition "Applying ground fault function. A flag indicating that the ground fault function of the device is used. The value should be set to FALSE for devices not having a ground fault function, or if the ground fault function is not selected to be used." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8a30c27174694aa78319e83f13deaf14" ; + IFC4-PSD:name "GroundFaultFunction" ; + IFC4-PSD:nameAlias "Ground Fault Function"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:GroundFaultCurrentSetValue + a rdf:Property ; + rdfs:seeAlso :pf0e1b9943900433a8bb2e462694b55d1 ; + rdfs:subPropertyOf IFC4-PSD:GroundFaultCurrentSetValue . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingCurve.ttl new file mode 100644 index 00000000..451223d5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingCurve.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p245e1400d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of tripping curve that is represented by the property set." ; + rdfs:label "TrippingCurveType" ; + IFC4-PSD:definition "The type of tripping curve that is represented by the property set." ; + IFC4-PSD:definitionAlias "동작 특성 곡선의 유형을 지정합니다."@ko-KR , "動作特性曲線のタイプを指定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "245e1400d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TrippingCurveType" ; + IFC4-PSD:nameAlias "動作特性曲線のタイプ"@ja-JP , "동작 특성 곡선의 유형"@ko-KR , "Tripping Curve Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UPPER" , "LOWER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_ProtectiveDeviceTrippingCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tripping curves are applied to thermal, thermal magnetic or MCB_RCD tripping units (i.e. tripping units having type property sets for thermal, thermal magnetic or MCB_RCD tripping defined). They are not applied to electronic tripping units." ; + rdfs:label "Pset_ProtectiveDeviceTrippingCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "Tripping curves are applied to thermal, thermal magnetic or MCB_RCD tripping units (i.e. tripping units having type property sets for thermal, thermal magnetic or MCB_RCD tripping defined). They are not applied to electronic tripping units." ; + IFC4-PSD:definitionAlias "プロパティセット定義文\n熱、熱磁気またはMCB_RCDトリップ装置のトリップ曲線\n(例えば、トリッピング装置は、熱,熱電磁,MCB_RCDのトリッピング定義されたプロパティセットタイプを持っている)\nこれらは、電子トリッピング装置に適用されない。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingCurve" ; + IFC4-PSD:propertyDef :p245e1400d1fa11e1800000215ad4efdf , :p3049d600d1fa11e1800000215ad4efdf . + +:p3049d600d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A curve that establishes the release time of a tripping unit when a particular prospective current is applied. Note that the tripping curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set: \n\n(1) Defining value is the Prospective Current which is a list of minimum 2 and maximum 16 numbers providing the currents in [x In] for points in the current/time log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value is a list of minimum 2 and maximum 16 numbers providing the release_time in [s] for points in the current/time log/log coordinate space. The curve is drawn as a straight line between two consecutive points. Note that a defined interpolation." ; + rdfs:label "TrippingCurve" ; + IFC4-PSD:definition "A curve that establishes the release time of a tripping unit when a particular prospective current is applied. Note that the tripping curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set: \n\n(1) Defining value is the Prospective Current which is a list of minimum 2 and maximum 16 numbers providing the currents in [x In] for points in the current/time log/log coordinate space. The curve is drawn as a straight line between two consecutive points.\n(2) Defined value is a list of minimum 2 and maximum 16 numbers providing the release_time in [s] for points in the current/time log/log coordinate space. The curve is drawn as a straight line between two consecutive points. Note that a defined interpolation." ; + IFC4-PSD:definitionAlias ""@en , "(1) 전류 / 시간 위치 [x In에서 나타나는 2 ~ 16 예상되는 전류 값을 정의한다. (2) 정의된 값은 전류 / 시간 위치 [s]로 표시되는 2 ~ 16 예상되는 방전 시간."@ko-KR , "(1)電流/時間の位置[x In]で示される2~16の想定される電流値を定義する。\n(2)定義された値は、電流/時間の位置[s]で示される2~16の想定される放電時間。"@ja-JP ; + IFC4-PSD:ifdguid "3049d600d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TrippingCurve" ; + IFC4-PSD:nameAlias "Tripping Curve"@en , "동작 특성 곡선"@ko-KR , "動作特性曲線"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcTimeMeasure ; + IFC4-PSD:definingValue IFC4:IfcElectricCurrentMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:TrippingCurveType a rdf:Property ; + rdfs:seeAlso :p245e1400d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrippingCurveType . + +:TrippingCurve a rdf:Property ; + rdfs:seeAlso :p3049d600d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrippingCurve . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionGCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionGCurve.ttl new file mode 100644 index 00000000..4b5b7ca9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionGCurve.ttl @@ -0,0 +1,320 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ProtectiveDeviceTrippingFunctionGCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the ground fault protection (G-curve) of an electronic protection device" ; + rdfs:label "Pset_ProtectiveDeviceTrippingFunctionGCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the ground fault protection (G-curve) of an electronic protection device" ; + IFC4-PSD:definitionAlias "トリッピング関数は、電子トリッピング装置に適用される。\n(例えば、トリッピング装置は、電子トリッピング定義されたプロパティセットタイプを持っている)\nこれらは、熱,熱電磁,RCDトリッピング装置に適用されない。\nこのプロパティセットは、電子保護装置(G-curve)の地絡保護を表す。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingFunctionGCurve" ; + IFC4-PSD:propertyDef :p51122b80d1fa11e1800000215ad4efdf , :p96cef400d1fa11e1800000215ad4efdf , :p6d15cd00d1fa11e1800000215ad4efdf , :p8ae33200d1fa11e1800000215ad4efdf , :p84ed5100d1fa11e1800000215ad4efdf , :p5bccc080d1fa11e1800000215ad4efdf , :p9171a980d1fa11e1800000215ad4efdf , :p671fec00d1fa11e1800000215ad4efdf , :p57080c80d1fa11e1800000215ad4efdf , :p73a44480d1fa11e1800000215ad4efdf , :pa2221f80d1fa11e1800000215ad4efdf , :p7a32bc00d1fa11e1800000215ad4efdf , :p9c2c3e80d1fa11e1800000215ad4efdf , :p61c2a180d1fa11e1800000215ad4efdf , :p4a83b400d1fa11e1800000215ad4efdf , :p80289d00d1fa11e1800000215ad4efdf , :p42c40f80d1fa11e1800000215ad4efdf . + +:p80289d00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "TimeToleranceLimit1" ; + IFC4-PSD:definition "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias "허용 시간 1를 제한하는 전류 제한. 값이 0이면 제한이 없다"@ko-KR , ""@en , "許容時間1を制限する電流制限値。\n値が0の場合は、制限はない。"@ja-JP ; + IFC4-PSD:ifdguid "80289d00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeToleranceLimit1" ; + IFC4-PSD:nameAlias "Time Tolerance Limit1"@en , "許容限界時間1"@ja-JP , "허용 한계시간1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:CurrentTolerance1 a rdf:Property ; + rdfs:seeAlso :p61c2a180d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance1 . + +:p51122b80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication if the ground fault protection may be adjusted according to an external current coil or not." ; + rdfs:label "ExternalAdjusted" ; + IFC4-PSD:definition "An indication if the ground fault protection may be adjusted according to an external current coil or not." ; + IFC4-PSD:definitionAlias "外部調整が可能かどうか。"@ja-JP , ""@en , "외부 조정이 가능합니까?"@ko-KR ; + IFC4-PSD:ifdguid "51122b80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ExternalAdjusted" ; + IFC4-PSD:nameAlias "External Adjusted"@en , "외부조정"@ko-KR , "外部調整"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p5bccc080d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + rdfs:label "ReleaseTime" ; + IFC4-PSD:definition "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + IFC4-PSD:definitionAlias ""@en , "関連する部分の初期トリップのための[s]が放出時間。\n このトリップ時間は、リリースの電流よりも低い電流の場合、指定された動作時間よりも長くなります。\n 値が平均値として与えられる。"@ja-JP , "관련 부분의 초기 여행을위한 [s]가 방출 시간. 이 트립 시간은 릴리스 전류보다 낮은 전류의 경우 지정된 동작 시간보다 길어집니다. 값을 평균으로 주어진다."@ko-KR ; + IFC4-PSD:ifdguid "5bccc080d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTime" ; + IFC4-PSD:nameAlias "放出時間"@ja-JP , "방출 시간"@ko-KR , "Release Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p61c2a180d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%]." ; + rdfs:label "CurrentTolerance1" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias "時間/特性曲線の許容範囲を[%]で指定。"@ja-JP , ""@en , "시간 / 특성 곡선의 허용 범위를 [%]로 지정합니다."@ko-KR ; + IFC4-PSD:ifdguid "61c2a180d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance1" ; + IFC4-PSD:nameAlias "許容電流1"@ja-JP , "허용 전류1"@ko-KR , "Current Tolerance1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ReleaseCurrentI2tEnd + a rdf:Property ; + rdfs:seeAlso :p9c2c3e80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrentI2tEnd . + +:ReleaseTimeI2tEnd a rdf:Property ; + rdfs:seeAlso :pa2221f80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTimeI2tEnd . + +:p7a32bc00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of time/current-curve in [%]." ; + rdfs:label "TimeTolerance1" ; + IFC4-PSD:definition "The tolerance for the time of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias ""@en , "[%]で時間/特性曲線の許容時間を設定"@ja-JP , "[%] 시간 / 특성 곡선의 허용 시간을 설정"@ko-KR ; + IFC4-PSD:ifdguid "7a32bc00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance1" ; + IFC4-PSD:nameAlias "허용 시간1"@ko-KR , "許容時間1"@ja-JP , "Time Tolerance1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:IsSelectable a rdf:Property ; + rdfs:seeAlso :p42c40f80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSelectable . + +:CurrentToleranceLimit1 + a rdf:Property ; + rdfs:seeAlso :p671fec00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentToleranceLimit1 . + +:IsTimeTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :p8ae33200d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsTimeTolerancePositiveOnly . + +:TimeToleranceLimit1 a rdf:Property ; + rdfs:seeAlso :p80289d00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeToleranceLimit1 . + +:pa2221f80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the end point of the I2 tripping curve of the G-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart." ; + rdfs:label "ReleaseTimeI2tEnd" ; + IFC4-PSD:definition "The release time in [s] for the end point of the I2 tripping curve of the G-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart." ; + IFC4-PSD:definitionAlias ""@en , "G 함수 I2의 특성 곡선의 끝점에서 s를 방류 시간. I2t 종료 방류 전류 시간이 I2t 시작 방류 시간보다 낮게해야한다"@ko-KR , "G関数のI2の特性曲線のエンドポイントの[s]を放流時間。 \n I2tの終了放流電流時間がI2tの開始放流時間よりも低くしなければならない。"@ja-JP ; + IFC4-PSD:ifdguid "a2221f80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTimeI2tEnd" ; + IFC4-PSD:nameAlias "Release Time I2t End"@en , "I2t 종료 방류 시간"@ko-KR , "I2tの終了放流時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:ReleaseTime a rdf:Property ; + rdfs:seeAlso :p5bccc080d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTime . + +:TimeTolerance2 a rdf:Property ; + rdfs:seeAlso :p84ed5100d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance2 . + +:p671fec00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "CurrentToleranceLimit1" ; + IFC4-PSD:definition "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias ""@en , "許容電流1を制限する時間制限。\n値が0の場合は、制限はない。"@ja-JP , "허용 전류 1 제한 시간 제한. 값이 0이면 제한이 없다."@ko-KR ; + IFC4-PSD:ifdguid "671fec00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentToleranceLimit1" ; + IFC4-PSD:nameAlias "허용전류한계1"@ko-KR , "許容電流限界1"@ja-JP , "Current Tolerance Limit1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p73a44480d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias ""@en , "허용 전류 한계 값 1 만 여부 위의 경우, 전류 허용 값은 플러스 / 마이너스 값."@ko-KR , "許容電流限界1の値のみかどうか\n 上記でない場合、電流許容値はプラス/マイナスした値。"@ja-JP ; + IFC4-PSD:ifdguid "73a44480d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "電流許容値"@ja-JP , "Is Current Tolerance Positive Only"@en , "전류 허용 값"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:NominalCurrentAdjusted + a rdf:Property ; + rdfs:seeAlso :p4a83b400d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrentAdjusted . + +:ReleaseCurrentI2tStart + a rdf:Property ; + rdfs:seeAlso :p9171a980d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrentI2tStart . + +:p9171a980d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the start point of the I2t tripping curve of the G-function, if any." ; + rdfs:label "ReleaseCurrentI2tStart" ; + IFC4-PSD:definition "The release current in [x In] for the start point of the I2t tripping curve of the G-function, if any." ; + IFC4-PSD:definitionAlias ""@en , "G関数の特性曲線I2tの始点[x In]が開始放流電流。"@ja-JP , "G 함수 특성 곡선 I2t의 시작점 [x In]가 시작 방류 전류."@ko-KR ; + IFC4-PSD:ifdguid "9171a980d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrentI2tStart" ; + IFC4-PSD:nameAlias "I2t 시작 방류 전류"@ko-KR , "Release Current I2t Start"@en , "I2tの開始放流電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:ReleaseTimeI2tStart a rdf:Property ; + rdfs:seeAlso :p96cef400d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTimeI2tStart . + +:ExternalAdjusted a rdf:Property ; + rdfs:seeAlso :p51122b80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExternalAdjusted . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p6d15cd00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + rdfs:label "CurrentTolerance2" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + IFC4-PSD:definitionAlias ""@en , "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1 시간에 유효합니다."@ko-KR , "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の時間で有効です。"@ja-JP ; + IFC4-PSD:ifdguid "6d15cd00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance2" ; + IFC4-PSD:nameAlias "허용전류 2"@ko-KR , "許容電流2"@ja-JP , "Current Tolerance2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p57080c80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the initial tripping of the S-function." ; + rdfs:label "ReleaseCurrent" ; + IFC4-PSD:definition "The release current in [x In] for the initial tripping of the S-function." ; + IFC4-PSD:definitionAlias "방출 전류는 S-function의 초기 특성."@ko-KR , "放出する電流は、S-functionの初期特性。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "57080c80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrent" ; + IFC4-PSD:nameAlias "방출전류"@ko-KR , "放出電流"@ja-JP , "Release Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:TimeTolerance1 a rdf:Property ; + rdfs:seeAlso :p7a32bc00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance1 . + +:IsCurrentTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :p73a44480d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsCurrentTolerancePositiveOnly . + +:ReleaseCurrent a rdf:Property ; + rdfs:seeAlso :p57080c80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrent . + +:p96cef400d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the start point of the I2t tripping curve of the G-function, if any." ; + rdfs:label "ReleaseTimeI2tStart" ; + IFC4-PSD:definition "The release time in [s] for the start point of the I2t tripping curve of the G-function, if any." ; + IFC4-PSD:definitionAlias ""@en , "G関数の特性曲線I2tの始点[s]が開始放流時間。"@ja-JP , "G 함수 특성 곡선 I2t의 시작점 [s]가 시작 방류 시간."@ko-KR ; + IFC4-PSD:ifdguid "96cef400d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTimeI2tStart" ; + IFC4-PSD:nameAlias "I2t 시작 방류 시간"@ko-KR , "I2tの開始放流時間"@ja-JP , "Release Time I2t Start"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p4a83b400d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + rdfs:label "NominalCurrentAdjusted" ; + IFC4-PSD:definition "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + IFC4-PSD:definitionAlias ""@en , "전류 작동 시간의 여부"@ko-KR , "電流によって、動作時間が短かかったり長かったりするかどうか。"@ja-JP ; + IFC4-PSD:ifdguid "4a83b400d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrentAdjusted" ; + IFC4-PSD:nameAlias "Nominal Current Adjusted"@en , "정격전류조정"@ko-KR , "定格調整電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p84ed5100d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + rdfs:label "TimeTolerance2" ; + IFC4-PSD:definition "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + IFC4-PSD:definitionAlias "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の電流で有効です。"@ja-JP , ""@en , "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1의 전류로 사용할 수 있습니다."@ko-KR ; + IFC4-PSD:ifdguid "84ed5100d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance2" ; + IFC4-PSD:nameAlias "許容時間2"@ja-JP , "Time Tolerance2"@en , "허용시간 2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p42c40f80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the S-function can be switched off or not." ; + rdfs:label "IsSelectable" ; + IFC4-PSD:definition "Indication whether the S-function can be switched off or not." ; + IFC4-PSD:definitionAlias "装置の “ON-OFF”状態を電気的表示が切り替え可能かどうか。"@ja-JP , ""@en , "장치\"ON-OFF \"상태를 전기적으로 표시가 교체 가능합니까?"@ko-KR ; + IFC4-PSD:ifdguid "42c40f80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsSelectable" ; + IFC4-PSD:nameAlias "切り替え"@ja-JP , "Is Selectable"@en , "전환"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:CurrentTolerance2 a rdf:Property ; + rdfs:seeAlso :p6d15cd00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance2 . + +:p9c2c3e80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the end point of the I2t tripping curve of the G-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart." ; + rdfs:label "ReleaseCurrentI2tEnd" ; + IFC4-PSD:definition "The release current in [x In] for the end point of the I2t tripping curve of the G-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart." ; + IFC4-PSD:definitionAlias ""@en , "G関数のI2の特性曲線のエンドポイントの[s]を放流電流。 \n I2tの終了放流電流がI2tの開始放流電流よりも低くしなければならない。"@ja-JP , "G 함수 I2의 특성 곡선의 끝점에서 s를 방류 전류. I2t 종료 방류 전류가 I2t 시작 방류 전류보다 낮게해야한다. \""@ko-KR ; + IFC4-PSD:ifdguid "9c2c3e80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrentI2tEnd" ; + IFC4-PSD:nameAlias "I2tの終了放流電流"@ja-JP , "I2t 종료 방류 전류"@ko-KR , "Release Current I2t End"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p8ae33200d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias ""@en , "許容時間1の値のみかどうか\n 上記でない場合、時間許容値は、プラス/マイナスした値。"@ja-JP , "허용 시간 1 값만 여부 위의 경우 시간 허용치는 플러스 / 마이너스 값."@ko-KR ; + IFC4-PSD:ifdguid "8ae33200d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "Is Time Tolerance Positive Only"@en , "時間許容値"@ja-JP , "시간 허용치"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionICurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionICurve.ttl new file mode 100644 index 00000000..61d77dc5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionICurve.ttl @@ -0,0 +1,268 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:IsSelectable a rdf:Property ; + rdfs:seeAlso :pac441e00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSelectable . + +:CurrentTolerance2 a rdf:Property ; + rdfs:seeAlso :pd990cc00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance2 . + +:pd990cc00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + rdfs:label "CurrentTolerance2" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + IFC4-PSD:definitionAlias "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1 시간에 유효합니다."@ko-KR , "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の時間で有効です。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d990cc00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance2" ; + IFC4-PSD:nameAlias "허용전류 2"@ko-KR , "許容電流2"@ja-JP , "Current Tolerance2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pc7af2900d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%]." ; + rdfs:label "CurrentTolerance1" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias ""@en , "시간 / 특성 곡선의 허용 범위를 [%]로 지정합니다."@ko-KR , "時間/特性曲線の許容範囲を[%]で指定。"@ja-JP ; + IFC4-PSD:ifdguid "c7af2900d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance1" ; + IFC4-PSD:nameAlias "Current Tolerance1"@en , "허용 전류1"@ko-KR , "許容電流1"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ReleaseTime a rdf:Property ; + rdfs:seeAlso :pc251de80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTime . + +:IsOffWhenSFunctionOn + a rdf:Property ; + rdfs:seeAlso :pa3d271ad1c7d474392e5ceb1ef243667 ; + rdfs:subPropertyOf IFC4-PSD:IsOffWhenSFunctionOn . + +:CurrentTolerance1 a rdf:Property ; + rdfs:seeAlso :pc7af2900d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance1 . + +:pbc5bfd80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the initial tripping of the S-function." ; + rdfs:label "ReleaseCurrent" ; + IFC4-PSD:definition "The release current in [x In] for the initial tripping of the S-function." ; + IFC4-PSD:definitionAlias "방출 전류는 S-function의 초기 특성."@ko-KR , "放出する電流は、S-functionの初期特性。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bc5bfd80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrent" ; + IFC4-PSD:nameAlias "放出電流"@ja-JP , "방출전류"@ko-KR , "Release Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pf9c08b00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias "許容時間1の値のみかどうか\n 上記でない場合、時間許容値は、プラス/マイナスした値。"@ja-JP , "허용 시간 1 값만 여부 위의 경우 시간 허용치는 플러스 / 마이너스 값."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f9c08b00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "Is Time Tolerance Positive Only"@en , "時間許容値"@ja-JP , "시간 허용치"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pc251de80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + rdfs:label "ReleaseTime" ; + IFC4-PSD:definition "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + IFC4-PSD:definitionAlias "관련 부분의 초기 여행을위한 [s]가 방출 시간. 이 트립 시간은 릴리스 전류보다 낮은 전류의 경우 지정된 동작 시간보다 길어집니다. 값을 평균으로 주어진다. \""@ko-KR , "関連する部分の初期トリップのための[s]が放出時間。\n このトリップ時間は、リリースの電流よりも低い電流の場合、指定された動作時間よりも長くなります。\n 値が平均値として与えられる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c251de80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTime" ; + IFC4-PSD:nameAlias "방출 시간"@ko-KR , "放出時間"@ja-JP , "Release Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:MaxAdjustmentX_ICS a rdf:Property ; + rdfs:seeAlso :pffb66c00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaxAdjustmentX_ICS . + +:NominalCurrentAdjusted + a rdf:Property ; + rdfs:seeAlso :pb239ff00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrentAdjusted . + +:pe8777e80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of time/current-curve in [%]." ; + rdfs:label "TimeTolerance1" ; + IFC4-PSD:definition "The tolerance for the time of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias ""@en , "[%]で時間/特性曲線の許容時間を設定。"@ja-JP , "[%] 시간 / 특성 곡선의 허용 시간을 설정"@ko-KR ; + IFC4-PSD:ifdguid "e8777e80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance1" ; + IFC4-PSD:nameAlias "許容時間1"@ja-JP , "허용 시간1"@ko-KR , "Time Tolerance1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:TimeToleranceLimit1 a rdf:Property ; + rdfs:seeAlso :pee6d5f80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeToleranceLimit1 . + +:Pset_ProtectiveDeviceTrippingFunctionICurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the instantaneous time protection (I-curve) of an electronic protection device." ; + rdfs:label "Pset_ProtectiveDeviceTrippingFunctionICurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the instantaneous time protection (I-curve) of an electronic protection device." ; + IFC4-PSD:definitionAlias ""@en , "トリッピング関数は、電子トリッピング装置に適用される。\n(例えば、トリッピング装置は、電子トリッピング定義されたプロパティセットタイプを持っている)\nこれらは、熱,熱電磁,RCDトリッピング装置に適用されない。\nこのプロパティセットは、電子保護装置の瞬時短絡保護(I-curve)を表す。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingFunctionICurve" ; + IFC4-PSD:propertyDef :pe2819d80d1fa11e1800000215ad4efdf , :pac441e00d1fa11e1800000215ad4efdf , :pd0076400d1fa11e1800000215ad4efdf , :pe8777e80d1fa11e1800000215ad4efdf , :pc7af2900d1fa11e1800000215ad4efdf , :pb239ff00d1fa11e1800000215ad4efdf , :pf3321380d1fa11e1800000215ad4efdf , :pbc5bfd80d1fa11e1800000215ad4efdf , :pc251de80d1fa11e1800000215ad4efdf , :pee6d5f80d1fa11e1800000215ad4efdf , :pffb66c00d1fa11e1800000215ad4efdf , :pa3d271ad1c7d474392e5ceb1ef243667 , :pd990cc00d1fa11e1800000215ad4efdf , :pf9c08b00d1fa11e1800000215ad4efdf . + +:CurrentToleranceLimit1 + a rdf:Property ; + rdfs:seeAlso :pd0076400d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentToleranceLimit1 . + +:pf3321380d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + rdfs:label "TimeTolerance2" ; + IFC4-PSD:definition "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + IFC4-PSD:definitionAlias "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の電流で有効です。"@ja-JP , ""@en , "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1의 전류로 사용할 수 있습니다."@ko-KR ; + IFC4-PSD:ifdguid "f3321380d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance2" ; + IFC4-PSD:nameAlias "허용시간 2"@ko-KR , "Time Tolerance2"@en , "許容時間2"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pb239ff00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + rdfs:label "NominalCurrentAdjusted" ; + IFC4-PSD:definition "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + IFC4-PSD:definitionAlias "電流によって、動作時間が短かかったり長かったりするかどうか。"@ja-JP , "전류 작동 시간 길이 여부"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "b239ff00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrentAdjusted" ; + IFC4-PSD:nameAlias "定格調整電流"@ja-JP , "정격전류조정"@ko-KR , "Nominal Current Adjusted"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:TimeTolerance2 a rdf:Property ; + rdfs:seeAlso :pf3321380d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance2 . + +:IsTimeTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :pf9c08b00d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsTimeTolerancePositiveOnly . + +:pd0076400d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "CurrentToleranceLimit1" ; + IFC4-PSD:definition "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias "허용 전류 1 제한 시간 제한. 값이 0이면 제한이 없다."@ko-KR , ""@en , "許容電流1を制限する時間制限。\n値が0の場合は、制限はない。"@ja-JP ; + IFC4-PSD:ifdguid "d0076400d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentToleranceLimit1" ; + IFC4-PSD:nameAlias "허용전류한계1"@ko-KR , "許容電流限界1"@ja-JP , "Current Tolerance Limit1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:pe2819d80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias "許容電流限界1の値のみかどうか\n 上記でない場合、電流許容値はプラス/マイナスした値。"@ja-JP , ""@en , "허용 전류 한계 값 1 만 여부 위의 경우, 전류 허용 값은 플러스 / 마이너스 값."@ko-KR ; + IFC4-PSD:ifdguid "e2819d80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "電流許容値"@ja-JP , "전류 허용 값"@ko-KR , "Is Current Tolerance Positive Only"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pac441e00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the S-function can be switched off or not." ; + rdfs:label "IsSelectable" ; + IFC4-PSD:definition "Indication whether the S-function can be switched off or not." ; + IFC4-PSD:definitionAlias "装置の “ON-OFF”状態を電気的表示が切り替え可能かどうか。"@ja-JP , ""@en , "장치의 \"ON-OFF\"상태를 전기적으로 표시가 교체 가능합니까?"@ko-KR ; + IFC4-PSD:ifdguid "ac441e00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "IsSelectable" ; + IFC4-PSD:nameAlias "전환"@ko-KR , "Is Selectable"@en , "切り替え"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:TimeTolerance1 a rdf:Property ; + rdfs:seeAlso :pe8777e80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance1 . + +:ReleaseCurrent a rdf:Property ; + rdfs:seeAlso :pbc5bfd80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrent . + +:IsCurrentTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :pe2819d80d1fa11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsCurrentTolerancePositiveOnly . + +:pffb66c00d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Provides the maximum setting value for the available current adjustment in relation to the\nIcs breaking capacity of the protection device of which the actual tripping unit is a part of. The value is not asserted unless the instantaneous time protection is." ; + rdfs:label "MaxAdjustmentX_ICS" ; + IFC4-PSD:definition "Provides the maximum setting value for the available current adjustment in relation to the\nIcs breaking capacity of the protection device of which the actual tripping unit is a part of. The value is not asserted unless the instantaneous time protection is." ; + IFC4-PSD:definitionAlias "실제 트립 장치의 일부인 보호자 Ics 차단 용량과 관련하여 사용 가능한 전류의 최대 조정 값"@ko-KR , "実際のトリップ装置の一部である保護装置のIcs 遮断容量に関連して利用可能な電流の最大調整値。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ffb66c00d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "MaxAdjustmentX_ICS" ; + IFC4-PSD:nameAlias "最大調整X_ICS"@ja-JP , "최대 조정 X_ICS"@ko-KR , "Max Adjustment X_ ICS"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pee6d5f80d1fa11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "TimeToleranceLimit1" ; + IFC4-PSD:definition "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias "허용 시간 1를 제한하는 전류 제한. 값이 0이면 제한이 없다"@ko-KR , ""@en , "許容時間1を制限する電流制限値。\n値が0の場合は、制限はない。"@ja-JP ; + IFC4-PSD:ifdguid "ee6d5f80d1fa11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeToleranceLimit1" ; + IFC4-PSD:nameAlias "허용 한계시간1"@ko-KR , "許容限界時間1"@ja-JP , "Time Tolerance Limit1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pa3d271ad1c7d474392e5ceb1ef243667 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the I-function is automatically switched off when the S-function is switched on." ; + rdfs:label "IsOffWhenSFunctionOn" ; + IFC4-PSD:definition "Indication whether the I-function is automatically switched off when the S-function is switched on." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a3d271ad1c7d474392e5ceb1ef243667" ; + IFC4-PSD:name "IsOffWhenSFunctionOn" ; + IFC4-PSD:nameAlias "Is Off When SFunction On"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionLCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionLCurve.ttl new file mode 100644 index 00000000..d1366bc8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionLCurve.ttl @@ -0,0 +1,178 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:LowerTime2 a rdf:Property ; + rdfs:seeAlso :p39877280d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerTime2 . + +:LowerTime1 a rdf:Property ; + rdfs:seeAlso :p34c2be80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerTime1 . + +:p16f55980d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current in [x In], indicating the upper current limit of the upper time/current curve of the I2t part of the L-function." ; + rdfs:label "UpperCurrent2" ; + IFC4-PSD:definition "The current in [x In], indicating the upper current limit of the upper time/current curve of the I2t part of the L-function." ; + IFC4-PSD:definitionAlias ""@en , "[x In]の電流,電流をトリップするL関数のI2t部分は、上限時間/特性曲線よりも大きい電流を示す。"@ja-JP , "[x In] 전류 전류를 여행하는 L 함수 I2t 부분은 제한 시간 / 특성 곡선보다 큰 전류를 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "16f55980d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "UpperCurrent2" ; + IFC4-PSD:nameAlias "上電流2"@ja-JP , "Upper Current2"@en , "상전류2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:UpperTime2 a rdf:Property ; + rdfs:seeAlso :p21afee80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpperTime2 . + +:p34c2be80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time in [s], indicating that tripping times of the lower time/current curve lower than LowerTime1 is determined by the I2t part of the L-function." ; + rdfs:label "LowerTime1" ; + IFC4-PSD:definition "The time in [s], indicating that tripping times of the lower time/current curve lower than LowerTime1 is determined by the I2t part of the L-function." ; + IFC4-PSD:definitionAlias "[s] 시간 아래 시간보다 낮은 특성 곡선의 트립 시간은 L-함수의 I2t 부분에 의해 결정된다."@ko-KR , "[s]の時間,下時間より低い特性曲線のトリップ時間は、L-関数ののI2t部分によって決定される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "34c2be80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerTime1" ; + IFC4-PSD:nameAlias "Lower Time1"@en , "하 시간 1"@ko-KR , "下時間1"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:UpperTime1 a rdf:Property ; + rdfs:seeAlso :p1c52a400d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpperTime1 . + +:p11980f00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current in [x In], indicating that for currents larger than UpperCurrent1 the I2t part of the L-function will trip the current." ; + rdfs:label "UpperCurrent1" ; + IFC4-PSD:definition "The current in [x In], indicating that for currents larger than UpperCurrent1 the I2t part of the L-function will trip the current." ; + IFC4-PSD:definitionAlias ""@en , "x In] 전류 전류를 여행하는 L 함수 I2t 부분은 최대 전류 1보다 큰 전류를 보여준다."@ko-KR , "[x In]の電流,電流をトリップするL関数のI2t部分は、上限電流1よりも大きい電流を示す。"@ja-JP ; + IFC4-PSD:ifdguid "11980f00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "UpperCurrent1" ; + IFC4-PSD:nameAlias "上電流1"@ja-JP , "Upper Current1"@en , "상전류1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p2eccdd80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current in [x In], indicating the upper current limit of the lower time/current curve of the I2t part of the L-function." ; + rdfs:label "LowerCurrent2" ; + IFC4-PSD:definition "The current in [x In], indicating the upper current limit of the lower time/current curve of the I2t part of the L-function." ; + IFC4-PSD:definitionAlias "[x In]の電流,電流をトリップするL関数のI2t部分は、特性曲線よりも小さい電流を示す。"@ja-JP , ""@en , "x In] 전류 전류를 여행하는 L 함수 I2t 부분은 곡선보다 작은 전류를 보여준다."@ko-KR ; + IFC4-PSD:ifdguid "2eccdd80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerCurrent2" ; + IFC4-PSD:nameAlias "下電流2"@ja-JP , "하전류 2"@ko-KR , "Lower Current2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:IsSelectable a rdf:Property ; + rdfs:seeAlso :p0a710100d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSelectable . + +:UpperCurrent2 a rdf:Property ; + rdfs:seeAlso :p16f55980d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpperCurrent2 . + +:p0a710100d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the L-function can be switched off or not." ; + rdfs:label "IsSelectable" ; + IFC4-PSD:definition "Indication whether the L-function can be switched off or not." ; + IFC4-PSD:definitionAlias "장치의 \"ON-OFF\"상태를 전기적으로 표시가 교체 가능합니까?"@ko-KR , "装置の “ON-OFF”状態を電気的表示が切り替え可能かどうか。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0a710100d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "IsSelectable" ; + IFC4-PSD:nameAlias "Is Selectable"@en , "切り替え"@ja-JP , "전환"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_ProtectiveDeviceTrippingFunctionLCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the long time protection (L-curve) of an electronic protection device" ; + rdfs:label "Pset_ProtectiveDeviceTrippingFunctionLCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the long time protection (L-curve) of an electronic protection device" ; + IFC4-PSD:definitionAlias "トリッピング関数は、電子トリッピング装置に適用される。\n(例えば、トリッピング装置は、電子トリッピング定義されたプロパティセットタイプを持っている)\nこれらは、熱,熱電磁,RCDトリッピング装置に適用されない。\nこのプロパティセットは、電子保護装置の遅延短絡保護(L-curve)を表す。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingFunctionLCurve" ; + IFC4-PSD:propertyDef :p34c2be80d1fb11e1800000215ad4efdf , :p2eccdd80d1fb11e1800000215ad4efdf , :p0a710100d1fb11e1800000215ad4efdf , :p27a5cf80d1fb11e1800000215ad4efdf , :p39877280d1fb11e1800000215ad4efdf , :p11980f00d1fb11e1800000215ad4efdf , :p1c52a400d1fb11e1800000215ad4efdf , :p16f55980d1fb11e1800000215ad4efdf , :p21afee80d1fb11e1800000215ad4efdf . + +:LowerCurrent2 a rdf:Property ; + rdfs:seeAlso :p2eccdd80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerCurrent2 . + +:UpperCurrent1 a rdf:Property ; + rdfs:seeAlso :p11980f00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpperCurrent1 . + +:p39877280d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time in [s], indicating the tripping times of the upper time/current curve at the LowerCurrent2." ; + rdfs:label "LowerTime2" ; + IFC4-PSD:definition "The time in [s], indicating the tripping times of the upper time/current curve at the LowerCurrent2." ; + IFC4-PSD:definitionAlias "[s] 시간, 아래 전류 2보다 하부의 특성 곡선의 트립 시간을 보여준다."@ko-KR , "[s]の時間,下電流2より下部の特性曲線のトリップ時間を示す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "39877280d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerTime2" ; + IFC4-PSD:nameAlias "하 시간 2"@ko-KR , "Lower Time2"@en , "下時間2"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p21afee80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time in [s], indicating the tripping times of the upper time/current curve at the UpperCurrent2." ; + rdfs:label "UpperTime2" ; + IFC4-PSD:definition "The time in [s], indicating the tripping times of the upper time/current curve at the UpperCurrent2." ; + IFC4-PSD:definitionAlias "[s]の時間,上電流2より上部の特性曲線のトリップ時間を示す"@ja-JP , "[s]의 시간에 전류 2보다 상단의 특성 곡선의 트립 시간을 나타냄"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "21afee80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "UpperTime2" ; + IFC4-PSD:nameAlias "상시간2"@ko-KR , "上時間2"@ja-JP , "Upper Time2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:LowerCurrent1 a rdf:Property ; + rdfs:seeAlso :p27a5cf80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LowerCurrent1 . + +:p1c52a400d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time in [s], indicating that tripping times of the upper time/current curve lower than UpperTime1 is determined by the I2t part of the L-function." ; + rdfs:label "UpperTime1" ; + IFC4-PSD:definition "The time in [s], indicating that tripping times of the upper time/current curve lower than UpperTime1 is determined by the I2t part of the L-function." ; + IFC4-PSD:definitionAlias "[s]의 시간에 시간 더 낮은 위 시간 / 특성 곡선의 트립 시간은 L-함수의 I2t 부분에 의해 결정된다"@ko-KR , "[s]の時間,上時間より低い上部の時間/特性曲線のトリップ時間は、L-関数ののI2t部分によって決定される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1c52a400d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "UpperTime1" ; + IFC4-PSD:nameAlias "Upper Time1"@en , "上時間1"@ja-JP , "상시간1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p27a5cf80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current in [x In], indicating that for currents smaller than LowerCurrent1 the I2t part of the L-function will not trip the current," ; + rdfs:label "LowerCurrent1" ; + IFC4-PSD:definition "The current in [x In], indicating that for currents smaller than LowerCurrent1 the I2t part of the L-function will not trip the current," ; + IFC4-PSD:definitionAlias ""@en , "[x In] 전류 전류를 여행하는 L 함수 I2t 부분은 아래 전류 1보다 작은 전류를 보여준다."@ko-KR , "[x In]の電流,電流をトリップするL関数のI2t部分は、下電流1よりも小さい電流を示す。"@ja-JP ; + IFC4-PSD:ifdguid "27a5cf80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "LowerCurrent1" ; + IFC4-PSD:nameAlias "하전류 1"@ko-KR , "Lower Current1"@en , "下電流1"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionSCurve.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionSCurve.ttl new file mode 100644 index 00000000..783cf467 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingFunctionSCurve.ttl @@ -0,0 +1,321 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p85d2b280d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias "許容時間1の値のみかどうか。\n 上記でない場合、時間許容値は、プラス/マイナスした値。"@ja-JP , ""@en , "허용 시간 1 값만 여부 위의 경우 시간 허용치는 플러스 / 마이너스 값."@ko-KR ; + IFC4-PSD:ifdguid "85d2b280d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "IsTimeTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "시간 허용치"@ko-KR , "Is Time Tolerance Positive Only"@en , "時間許容値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:CurrentTolerance1 a rdf:Property ; + rdfs:seeAlso :p5a4fc800d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance1 . + +:p92efa180d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the start point of the I2t tripping curve of the S-function, if any" ; + rdfs:label "ReleaseTimeI2tStart" ; + IFC4-PSD:definition "The release time in [s] for the start point of the I2t tripping curve of the S-function, if any" ; + IFC4-PSD:definitionAlias "S関数の特性曲線I2tの始点[s]が開始放流時間。"@ja-JP , "S함수 특성 곡선 I2t의 시작점 [s]가 시작 방류 시간."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "92efa180d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTimeI2tStart" ; + IFC4-PSD:nameAlias "I2t 시작 방류 시간"@ko-KR , "Release Time I2t Start"@en , "I2tの開始放流時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:IsOffWhenLfunctionOn + a rdf:Property ; + rdfs:seeAlso :p8521329d79b146beb0fd056df538df7f ; + rdfs:subPropertyOf IFC4-PSD:IsOffWhenLfunctionOn . + +:p4f953300d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the initial tripping of the S-function." ; + rdfs:label "ReleaseCurrent" ; + IFC4-PSD:definition "The release current in [x In] for the initial tripping of the S-function." ; + IFC4-PSD:definitionAlias "放出する電流は、S-functionの初期特性。"@ja-JP , "방출 전류는 S-function의 초기 특성."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "4f953300d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrent" ; + IFC4-PSD:nameAlias "放出電流"@ja-JP , "Release Current"@en , "방출전류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:IsCurrentTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :p6d629800d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsCurrentTolerancePositiveOnly . + +:ReleaseTimeI2tEnd a rdf:Property ; + rdfs:seeAlso :p9e42cd00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTimeI2tEnd . + +:IsTimeTolerancePositiveOnly + a rdf:Property ; + rdfs:seeAlso :p85d2b280d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsTimeTolerancePositiveOnly . + +:p8c612a00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the start point of the I2t tripping curve of the S-function, if any." ; + rdfs:label "ReleaseCurrentI2tStart" ; + IFC4-PSD:definition "The release current in [x In] for the start point of the I2t tripping curve of the S-function, if any." ; + IFC4-PSD:definitionAlias ""@en , "S関数の特性曲線I2tの始点[x In]が開始放流電流。"@ja-JP , "S 함수 특성 곡선 I2t의 시작점 [x In]가 시작 방류 전류."@ko-KR ; + IFC4-PSD:ifdguid "8c612a00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrentI2tStart" ; + IFC4-PSD:nameAlias "Release Current I2t Start"@en , "I2tの開始放流電流"@ja-JP , "I2t 시작 방류 전류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p4310da80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the S-function can be switched off or not." ; + rdfs:label "IsSelectable" ; + IFC4-PSD:definition "Indication whether the S-function can be switched off or not." ; + IFC4-PSD:definitionAlias "装置の “ON-OFF”状態を電気的表示が切り替え可能かどうか。"@ja-JP , ""@en , "장치\"ON-OFF \"상태를 전기적으로 표시가 교체 가능합니까?"@ko-KR ; + IFC4-PSD:ifdguid "4310da80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "IsSelectable" ; + IFC4-PSD:nameAlias "전환"@ko-KR , "Is Selectable"@en , "切り替え"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p5fad1280d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "CurrentToleranceLimit1" ; + IFC4-PSD:definition "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias "허용 전류 1 제한 시간 제한. 값이 0이면 제한이 없다."@ko-KR , ""@en , "許容電流1を制限する時間制限。\n値が0の場合は、制限はない。"@ja-JP ; + IFC4-PSD:ifdguid "5fad1280d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentToleranceLimit1" ; + IFC4-PSD:nameAlias "Current Tolerance Limit1"@en , "허용전류한계1"@ko-KR , "許容電流限界1"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p79e6f080d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + rdfs:label "TimeToleranceLimit1" ; + IFC4-PSD:definition "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve." ; + IFC4-PSD:definitionAlias ""@en , "허용 시간 1를 제한하는 전류 제한. 값이 0이면 제한이 없다"@ko-KR , "許容時間1を制限する電流制限値。\n値が0の場合は、制限はない。"@ja-JP ; + IFC4-PSD:ifdguid "79e6f080d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeToleranceLimit1" ; + IFC4-PSD:nameAlias "Time Tolerance Limit1"@en , "許容限界時間1"@ja-JP , "허용 한계시간1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p97b45580d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release current in [x In] for the end point of the I2t tripping curve of the S-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart." ; + rdfs:label "ReleaseCurrentI2tEnd" ; + IFC4-PSD:definition "The release current in [x In] for the end point of the I2t tripping curve of the S-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart." ; + IFC4-PSD:definitionAlias "S함수 I2의 특성 곡선의 끝점에서 s를 방류 전류. I2t 종료 방류 전류가 I2t 시작 방류 전류보다 낮게해야한다. \""@ko-KR , ""@en , "S関数のI2の特性曲線のエンドポイントの[s]を放流電流。 \n I2tの終了放流電流がI2tの開始放流電流よりも低くしなければならない。"@ja-JP ; + IFC4-PSD:ifdguid "97b45580d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseCurrentI2tEnd" ; + IFC4-PSD:nameAlias "Release Current I2t End"@en , "I2t 종료 방류 전류"@ko-KR , "I2tの終了放流電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p66d42080d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + rdfs:label "CurrentTolerance2" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1." ; + IFC4-PSD:definitionAlias "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の時間で有効です。"@ja-JP , "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1 시간에 유효합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "66d42080d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance2" ; + IFC4-PSD:nameAlias "許容電流2"@ja-JP , "허용전류 2"@ko-KR , "Current Tolerance2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p5a4fc800d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the current of time/current-curve in [%]." ; + rdfs:label "CurrentTolerance1" ; + IFC4-PSD:definition "The tolerance for the current of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias "時間/特性曲線の許容範囲を[%]で指定。"@ja-JP , "시간 / 특성 곡선의 허용 범위를 [%]로 지정합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "5a4fc800d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentTolerance1" ; + IFC4-PSD:nameAlias "Current Tolerance1"@en , "허용 전류1"@ko-KR , "許容電流1"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p54f27d80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + rdfs:label "ReleaseTime" ; + IFC4-PSD:definition "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value." ; + IFC4-PSD:definitionAlias "関連する部分の初期トリップのための[s]が放出時間。\n このトリップ時間は、リリースの電流よりも低い電流の場合、指定された動作時間よりも長くなります。\n 値が平均値として与えられる。"@ja-JP , ""@en , "관련 부분의 초기 여행을위한 [s]가 방출 시간. 이 트립 시간은 릴리스 전류보다 낮은 전류의 경우 지정된 동작 시간보다 길어집니다. 값을 평균으로 주어진다."@ko-KR ; + IFC4-PSD:ifdguid "54f27d80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTime" ; + IFC4-PSD:nameAlias "放出時間"@ja-JP , "방출 시간"@ko-KR , "Release Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:Pset_ProtectiveDeviceTrippingFunctionSCurve + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the short time protection (S-curve) of an electronic protection device." ; + rdfs:label "Pset_ProtectiveDeviceTrippingFunctionSCurve" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units.\nThis property set represent the short time protection (S-curve) of an electronic protection device." ; + IFC4-PSD:definitionAlias "トリッピング関数は、電子トリッピング装置に適用される。\n(例えば、トリッピング装置は、電子トリッピング定義されたプロパティセットタイプを持っている)\nこれらは、熱,熱電磁,RCDトリッピング装置に適用されない。\nこのプロパティセットは、電子保護装置の短絡保護(S-curve)を表す。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingFunctionSCurve" ; + IFC4-PSD:propertyDef :p4310da80d1fb11e1800000215ad4efdf , :p7489a600d1fb11e1800000215ad4efdf , :p5a4fc800d1fb11e1800000215ad4efdf , :p92efa180d1fb11e1800000215ad4efdf , :p79e6f080d1fb11e1800000215ad4efdf , :p85d2b280d1fb11e1800000215ad4efdf , :p54f27d80d1fb11e1800000215ad4efdf , :p6d629800d1fb11e1800000215ad4efdf , :p8521329d79b146beb0fd056df538df7f , :p5fad1280d1fb11e1800000215ad4efdf , :p4f953300d1fb11e1800000215ad4efdf , :p9e42cd00d1fb11e1800000215ad4efdf , :p66d42080d1fb11e1800000215ad4efdf , :p97b45580d1fb11e1800000215ad4efdf , :p7fdcd180d1fb11e1800000215ad4efdf , :p4906bb80d1fb11e1800000215ad4efdf , :p8c612a00d1fb11e1800000215ad4efdf . + +:TimeTolerance2 a rdf:Property ; + rdfs:seeAlso :p7fdcd180d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance2 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CurrentToleranceLimit1 + a rdf:Property ; + rdfs:seeAlso :p5fad1280d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentToleranceLimit1 . + +:IsSelectable a rdf:Property ; + rdfs:seeAlso :p4310da80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSelectable . + +:TimeTolerance1 a rdf:Property ; + rdfs:seeAlso :p7489a600d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeTolerance1 . + +:ReleaseCurrent a rdf:Property ; + rdfs:seeAlso :p4f953300d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrent . + +:ReleaseTimeI2tStart a rdf:Property ; + rdfs:seeAlso :p92efa180d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTimeI2tStart . + +:p6d629800d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + rdfs:label "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:definition "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance." ; + IFC4-PSD:definitionAlias "許容電流限界1の値のみかどうか\n 上記でない場合、電流許容値はプラス/マイナスした値。"@ja-JP , "허용 전류 한계 값 1 만 여부 위의 경우, 전류 허용 값은 플러스 / 마이너스 값."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "6d629800d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "IsCurrentTolerancePositiveOnly" ; + IFC4-PSD:nameAlias "Is Current Tolerance Positive Only"@en , "전류 허용 값"@ko-KR , "電流許容値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:NominalCurrentAdjusted + a rdf:Property ; + rdfs:seeAlso :p4906bb80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrentAdjusted . + +:ReleaseCurrentI2tStart + a rdf:Property ; + rdfs:seeAlso :p8c612a00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrentI2tStart . + +:p8521329d79b146beb0fd056df538df7f + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the S-function is automatically switched off when the I-function is switched on." ; + rdfs:label "IsOffWhenLfunctionOn" ; + IFC4-PSD:definition "Indication whether the S-function is automatically switched off when the I-function is switched on." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8521329d79b146beb0fd056df538df7f" ; + IFC4-PSD:name "IsOffWhenLfunctionOn" ; + IFC4-PSD:nameAlias "Is Off When Lfunction On"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7489a600d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of time/current-curve in [%]." ; + rdfs:label "TimeTolerance1" ; + IFC4-PSD:definition "The tolerance for the time of time/current-curve in [%]." ; + IFC4-PSD:definitionAlias "[%] 시간 / 특성 곡선의 허용 시간을 설정"@ko-KR , "[%]で時間/特性曲線の許容時間を設定"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7489a600d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance1" ; + IFC4-PSD:nameAlias "허용 시간1"@ko-KR , "許容時間1"@ja-JP , "Time Tolerance1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ReleaseTime a rdf:Property ; + rdfs:seeAlso :p54f27d80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseTime . + +:TimeToleranceLimit1 a rdf:Property ; + rdfs:seeAlso :p79e6f080d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeToleranceLimit1 . + +:ReleaseCurrentI2tEnd + a rdf:Property ; + rdfs:seeAlso :p97b45580d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReleaseCurrentI2tEnd . + +:CurrentTolerance2 a rdf:Property ; + rdfs:seeAlso :p66d42080d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentTolerance2 . + +:p9e42cd00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The release time in [s] for the end point of the I2 tripping curve of the S-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart." ; + rdfs:label "ReleaseTimeI2tEnd" ; + IFC4-PSD:definition "The release time in [s] for the end point of the I2 tripping curve of the S-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart." ; + IFC4-PSD:definitionAlias "S함수 I2의 특성 곡선의 끝점에서 s를 방류 시간. I2t 종료 방류 전류 시간이 I2t 시작 방류 시간보다 낮게해야한다"@ko-KR , "S関数のI2の特性曲線のエンドポイントの[s]を放流時間。 \n I2tの終了放流電流時間がI2tの開始放流時間よりも低くしなければならない。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9e42cd00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "ReleaseTimeI2tEnd" ; + IFC4-PSD:nameAlias "I2t 종료 방류 시간"@ko-KR , "Release Time I2t End"@en , "I2tの終了放流時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p7fdcd180d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + rdfs:label "TimeTolerance2" ; + IFC4-PSD:definition "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1." ; + IFC4-PSD:definitionAlias "[%]로 지정된 시간 / 특성 곡선의 허용 범위는 상기의 허용 전류 한계 1의 전류로 사용할 수 있습니다."@ko-KR , "[%]で指定された時間/特性曲線の許容範囲は、上記の許容電流限界1の電流で有効です。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7fdcd180d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "TimeTolerance2" ; + IFC4-PSD:nameAlias "Time Tolerance2"@en , "許容時間2"@ja-JP , "허용시간 2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p4906bb80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + rdfs:label "NominalCurrentAdjusted" ; + IFC4-PSD:definition "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not." ; + IFC4-PSD:definitionAlias "電流によって、動作時間が短かかったり長かったりするかどうか。"@ja-JP , "전류 작동 시간의 여부"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "4906bb80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrentAdjusted" ; + IFC4-PSD:nameAlias "정격전류조정"@ko-KR , "Nominal Current Adjusted"@en , "定格調整電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment.ttl new file mode 100644 index 00000000..bdcd172c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment.ttl @@ -0,0 +1,112 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pb87cab00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Step value of current adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + rdfs:label "AdjustmentRangeStepValue" ; + IFC4-PSD:definition "Step value of current adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + IFC4-PSD:definitionAlias ""@en , "時間調整の範囲をステップ値を設定。一覧表ではもっていない事を注意。"@ja-JP , "시간 조정 범위를 단계 값을 설정합니다. 목록은 갖고 있지 않은 것을주의."@ko-KR ; + IFC4-PSD:ifdguid "b87cab00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentRangeStepValue" ; + IFC4-PSD:nameAlias "조정범위 단계값"@ko-KR , "調整範囲のステップ値"@ja-JP , "Adjustment Range Step Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:AdjustmentDesignation + a rdf:Property ; + rdfs:seeAlso :pc4686d00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentDesignation . + +:Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of current adjustment values that may be applied to an electronic or thermal tripping unit type." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "A set of current adjustment values that may be applied to an electronic or thermal tripping unit type." ; + IFC4-PSD:definitionAlias "電磁式または熱動式のトリップ装置の電流調整値。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment" ; + IFC4-PSD:propertyDef :pbe728c00d1fb11e1800000215ad4efdf , :pa864cb80d1fb11e1800000215ad4efdf , :pb0bd0680d1fb11e1800000215ad4efdf , :pc4686d00d1fb11e1800000215ad4efdf , :pb87cab00d1fb11e1800000215ad4efdf . + +:pbe728c00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of current adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE." ; + rdfs:label "AdjustmentValues" ; + IFC4-PSD:definition "A list of current adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE." ; + IFC4-PSD:definitionAlias "時間調整値を1から16で設定。範囲では、ない事を注意。"@ja-JP , ""@en , "시간 조정 값을 1에서 16로 설정. 범위는없는 것을주의."@ko-KR ; + IFC4-PSD:ifdguid "be728c00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentValues" ; + IFC4-PSD:nameAlias "조정 값"@ko-KR , "調整値"@ja-JP , "Adjustment Values"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:AdjustmentValueType a rdf:Property ; + rdfs:seeAlso :pa864cb80d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentValueType . + +:AdjustmentRange a rdf:Property ; + rdfs:seeAlso :pb0bd0680d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentRange . + +:pa864cb80d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of adjustment value that is applied through the property set. This determines the properties that should be asserted (see below)." ; + rdfs:label "AdjustmentValueType" ; + IFC4-PSD:definition "The type of adjustment value that is applied through the property set. This determines the properties that should be asserted (see below)." ; + IFC4-PSD:definitionAlias "조정 값 유형을 설정합니다."@ko-KR , "調整値のタイプを設定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a864cb80d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentValueType" ; + IFC4-PSD:nameAlias "調整値の型"@ja-JP , "Adjustment Value Type"@en , "조정 형식"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RANGE" , "LIST" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pc4686d00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The desgnation on the device for the adjustment." ; + rdfs:label "AdjustmentDesignation" ; + IFC4-PSD:definition "The desgnation on the device for the adjustment." ; + IFC4-PSD:definitionAlias ""@en , "조정하는 장치를 지정합니다."@ko-KR , "調整する装置の指定。"@ja-JP ; + IFC4-PSD:ifdguid "c4686d00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentDesignation" ; + IFC4-PSD:nameAlias "調整の指定"@ja-JP , "Adjustment Designation"@en , "조정지정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pb0bd0680d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Upper and lower current adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + rdfs:label "AdjustmentRange" ; + IFC4-PSD:definition "Upper and lower current adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + IFC4-PSD:definitionAlias "시간 조정 범위의 상한 치와 하한 치를 설정합니다. 목록은 갖고 있지 않은 것을주의."@ko-KR , "時間調整の範囲の上限値と下限値を設定。一覧表ではもっていない事を注意。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b0bd0680d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentRange" ; + IFC4-PSD:nameAlias "조정 범위"@ko-KR , "Adjustment Range"@en , "調整範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:AdjustmentValues a rdf:Property ; + rdfs:seeAlso :pbe728c00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentValues . + +:AdjustmentRangeStepValue + a rdf:Property ; + rdfs:seeAlso :pb87cab00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentRangeStepValue . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTimeAdjustment.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTimeAdjustment.ttl new file mode 100644 index 00000000..e04561b0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTimeAdjustment.ttl @@ -0,0 +1,146 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pf083ee00d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The tripping current in [x In] at which the time delay is specified. A value for this property should only be asserted for time delay of L-function, and for I2t of the S and G function." ; + rdfs:label "CurrentForTimeDelay" ; + IFC4-PSD:definition "The tripping current in [x In] at which the time delay is specified. A value for this property should only be asserted for time delay of L-function, and for I2t of the S and G function." ; + IFC4-PSD:definitionAlias "시간 연장 [x]의 트립 전류는 L 함수의 지연 시간 및 S와 G 함수 I2t를 지정합니다."@ko-KR , ""@en , "時延[x]ののトリップ電流は、L関数の遅延時間、およびSとG関数のI2tを指定。"@ja-JP ; + IFC4-PSD:ifdguid "f083ee00d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "CurrentForTimeDelay" ; + IFC4-PSD:nameAlias "Current For Time Delay"@en , "시간연장 전류"@ko-KR , "時延電流"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:Pset_ProtectiveDeviceTrippingUnitTimeAdjustment + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of time adjustment values that may be applied to an electronic or thermal tripping unit type." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTimeAdjustment" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "A set of time adjustment values that may be applied to an electronic or thermal tripping unit type." ; + IFC4-PSD:definitionAlias "電磁式または熱動式トリップユニット型に適用することができる時間調整(時延)のセット。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTimeAdjustment" ; + IFC4-PSD:propertyDef :pd813d380d1fb11e1800000215ad4efdf , :pf548a200d1fb11e1800000215ad4efdf , :pe9f57680d1fb11e1800000215ad4efdf , :pe530c280d1fb11e1800000215ad4efdf , :pcfbb9880d1fb11e1800000215ad4efdf , :pdfd37800d1fb11e1800000215ad4efdf , :pf083ee00d1fb11e1800000215ad4efdf . + +:AdjustmentValues a rdf:Property ; + rdfs:seeAlso :pe530c280d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentValues . + +:pf548a200d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The applicability of the time adjustment related to the tripping function." ; + rdfs:label "I2TApplicability" ; + IFC4-PSD:definition "The applicability of the time adjustment related to the tripping function." ; + IFC4-PSD:definitionAlias ""@en , "트립 기능 시간 연장을 요구할 때 적용하는 함수입니다."@ko-KR , "トリップ機能の時延を求める時に適用する関数。"@ja-JP ; + IFC4-PSD:ifdguid "f548a200d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "I2TApplicability" ; + IFC4-PSD:nameAlias "I2Tの適用"@ja-JP , "I2 TApplicability"@en , "12 T적용"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RANGE" , "LIST" + ] . + +:pcfbb9880d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The type of adjustment value that is applied through the property set. This determines the properties that should be asserted (see below)." ; + rdfs:label "AdjustmentValueType" ; + IFC4-PSD:definition "The type of adjustment value that is applied through the property set. This determines the properties that should be asserted (see below)." ; + IFC4-PSD:definitionAlias "조정 값 유형을 설정합니다."@ko-KR , "調整値のタイプを設定。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cfbb9880d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentValueType" ; + IFC4-PSD:nameAlias "조정 형식"@ko-KR , "調整値の型"@ja-JP , "Adjustment Value Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RANGE" , "LIST" + ] . + +:CurrentForTimeDelay a rdf:Property ; + rdfs:seeAlso :pf083ee00d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurrentForTimeDelay . + +:AdjustmentRangeStepValue + a rdf:Property ; + rdfs:seeAlso :pdfd37800d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentRangeStepValue . + +:AdjustmentDesignation + a rdf:Property ; + rdfs:seeAlso :pe9f57680d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentDesignation . + +:pe530c280d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of time adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE." ; + rdfs:label "AdjustmentValues" ; + IFC4-PSD:definition "A list of time adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE." ; + IFC4-PSD:definitionAlias "시간 조정 값을 1에서 16로 설정. 범위는없는 것을주의."@ko-KR , ""@en , "時間調整値を1から16で設定。範囲では、ない事を注意。"@ja-JP ; + IFC4-PSD:ifdguid "e530c280d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentValues" ; + IFC4-PSD:nameAlias "Adjustment Values"@en , "조정 값"@ko-KR , "調整値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AdjustmentValueType a rdf:Property ; + rdfs:seeAlso :pcfbb9880d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentValueType . + +:pdfd37800d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Step value of time adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + rdfs:label "AdjustmentRangeStepValue" ; + IFC4-PSD:definition "Step value of time adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + IFC4-PSD:definitionAlias "時間調整の範囲をステップ値を設定。一覧表ではもっていない事を注意。"@ja-JP , "시간 조정 범위를 단계 값을 설정합니다. 목록은 갖고 있지 않은 것을주의."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "dfd37800d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentRangeStepValue" ; + IFC4-PSD:nameAlias "조정범위 단계값"@ko-KR , "Adjustment Range Step Value"@en , "調整範囲のステップ値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:I2TApplicability a rdf:Property ; + rdfs:seeAlso :pf548a200d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I2TApplicability . + +:AdjustmentRange a rdf:Property ; + rdfs:seeAlso :pd813d380d1fb11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AdjustmentRange . + +:pd813d380d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Upper and lower time adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + rdfs:label "AdjustmentRange" ; + IFC4-PSD:definition "Upper and lower time adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST." ; + IFC4-PSD:definitionAlias ""@en , "시간 조정 범위의 상한 치와 하한 치를 설정합니다. 목록은 갖고 있지 않은 것을주의."@ko-KR , "時間調整の範囲の上限値と下限値を設定。一覧表ではもっていない事を注意。"@ja-JP ; + IFC4-PSD:ifdguid "d813d380d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentRange" ; + IFC4-PSD:nameAlias "Adjustment Range"@en , "조정 범위"@ko-KR , "調整範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:pe9f57680d1fb11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The desgnation on the device for the adjustment." ; + rdfs:label "AdjustmentDesignation" ; + IFC4-PSD:definition "The desgnation on the device for the adjustment." ; + IFC4-PSD:definitionAlias ""@en , "조정하는 장치를 지정합니다."@ko-KR , "調整する装置の指定。"@ja-JP ; + IFC4-PSD:ifdguid "e9f57680d1fb11e1800000215ad4efdf" ; + IFC4-PSD:name "AdjustmentDesignation" ; + IFC4-PSD:nameAlias "Adjustment Designation"@en , "調整の指定"@ja-JP , "조정지정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeCommon.ttl new file mode 100644 index 00000000..bd2f5da6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeCommon.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Standard a rdf:Property ; + rdfs:seeAlso :p1f01c900d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Standard . + +:p0e515300d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0e515300d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p1f01c900d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The designation of the standard applicable for the definition of the characteristics of the\ntripping_unit." ; + rdfs:label "Standard" ; + IFC4-PSD:definition "The designation of the standard applicable for the definition of the characteristics of the\ntripping_unit." ; + IFC4-PSD:definitionAlias ""@en , "토릿삔구 장치의 특성 정의에 대한 표준 적용 지정."@ko-KR , "トリッピング装置の特性定義のための標準的な適用の指定。"@ja-JP ; + IFC4-PSD:ifdguid "1f01c900d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "Standard" ; + IFC4-PSD:nameAlias "Standard"@en , "特性定義"@ja-JP , "특성 정의"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p393ba700d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum terminal size capacity of the device." ; + rdfs:label "LimitingTerminalSize" ; + IFC4-PSD:definition "The maximum terminal size capacity of the device." ; + IFC4-PSD:definitionAlias ""@en , "装置に接続される最大サイズ。"@ja-JP , "장치에 연결되는 최대 크기입니다."@ko-KR ; + IFC4-PSD:ifdguid "393ba700d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "LimitingTerminalSize" ; + IFC4-PSD:nameAlias "接続限界値"@ja-JP , "Limiting Terminal Size"@en , "연결 한계"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p32149900d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the protection_ unit is out-dated or not. If not out-dated, the device is still for sale." ; + rdfs:label "OldDevice" ; + IFC4-PSD:definition "Indication whether the protection_ unit is out-dated or not. If not out-dated, the device is still for sale." ; + IFC4-PSD:definitionAlias "기준에 적합하여 판매하는지에 대한 여부"@ko-KR , ""@en , "基準に適合されていて販売されているかどうか。"@ja-JP ; + IFC4-PSD:ifdguid "32149900d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "OldDevice" ; + IFC4-PSD:nameAlias "販売中止装置"@ja-JP , "Old Device"@en , "판매중지 장치"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:UseInDiscrimination a rdf:Property ; + rdfs:seeAlso :p25904080d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UseInDiscrimination . + +:LimitingTerminalSize + a rdf:Property ; + rdfs:seeAlso :p393ba700d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LimitingTerminalSize . + +:OldDevice a rdf:Property ; + rdfs:seeAlso :p32149900d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OldDevice . + +:Pset_ProtectiveDeviceTrippingUnitTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common information concerning tripping units that area associated with protective devices" ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDeviceTrippingUnit ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit" ; + IFC4-PSD:definition "Common information concerning tripping units that area associated with protective devices" ; + IFC4-PSD:definitionAlias "保護装置に関連付けられているトリップ機能に関する共通情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTypeCommon" ; + IFC4-PSD:propertyDef :p1f01c900d1fc11e1800000215ad4efdf , :p393ba700d1fc11e1800000215ad4efdf , :p0e515300d1fc11e1800000215ad4efdf , :p32149900d1fc11e1800000215ad4efdf , :p2c1eb800d1fc11e1800000215ad4efdf , :p25904080d1fc11e1800000215ad4efdf , :p085b7200d1fc11e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p085b7200d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :p0e515300d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:AtexVerified a rdf:Property ; + rdfs:seeAlso :p2c1eb800d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AtexVerified . + +:p2c1eb800d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the tripping_unit is verified to be applied in EX-environment or not." ; + rdfs:label "AtexVerified" ; + IFC4-PSD:definition "An indication whether the tripping_unit is verified to be applied in EX-environment or not." ; + IFC4-PSD:definitionAlias "트립 장치가 EX-환경에 적용되는지 여부"@ko-KR , ""@en , "トリップ装置がEX-環境で適用されるかどうか。"@ja-JP ; + IFC4-PSD:ifdguid "2c1eb800d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "AtexVerified" ; + IFC4-PSD:nameAlias "EX -환경 인증"@ko-KR , "Atex Verified"@en , "アテックス認証"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p25904080d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the time/current tripping information can be applied in a discrimination\nanalysis or not." ; + rdfs:label "UseInDiscrimination" ; + IFC4-PSD:definition "An indication whether the time/current tripping information can be applied in a discrimination\nanalysis or not." ; + IFC4-PSD:definitionAlias "트립 정보를 시간 또는 전류가 어디에서 결정하는가?"@ko-KR , "トリップ情報を時間か電流かどちらで判断するか。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "25904080d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "UseInDiscrimination" ; + IFC4-PSD:nameAlias "使用方法"@ja-JP , "Use In Discrimination"@en , "사용방법"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p085b7200d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "해당 프로젝트에 정의된 형식의 참조 ID (예 : A-1) 승인된 분류에 존재하지 않을 때 사용된다."@ko-KR , "当該プロジェクトで定義する形式の参照ID(例:A-1)、承認された分類に存在しないときに使用される。"@ja-JP ; + IFC4-PSD:ifdguid "085b7200d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "참조"@ko-KR , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic.ttl new file mode 100644 index 00000000..f4e15b08 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic.ttl @@ -0,0 +1,196 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p799b2500d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The upper electromagnetic testing current limit in [x In], indicating that for currents larger than I5, the tripping time shall be shorter than or equal to the associated tripping time, T5, i.e. the device shall trip instantaneous." ; + rdfs:label "I5" ; + IFC4-PSD:definition "The upper electromagnetic testing current limit in [x In], indicating that for currents larger than I5, the tripping time shall be shorter than or equal to the associated tripping time, T5, i.e. the device shall trip instantaneous." ; + IFC4-PSD:definitionAlias "電磁の高試験電流限界値を [x In], 電流は I4 よりも低い値を示す。トリップ時間は関連する T5 と瞬時に遮断する定格使用電流の時間よりも長い。"@ja-JP , ""@en , "전자의 높은 시험 전류 한계를 [x In] 전류는 I4보다 낮은 값을 나타낸다. 트립 시간은 관련 T5 즉석에서 차단하는 정격 사용 전류의 시간보다 길다."@ko-KR ; + IFC4-PSD:ifdguid "799b2500d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I5" ; + IFC4-PSD:nameAlias "I5"@ja-JP , "I5"@ko-KR , "I5"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Information on tripping units that are electrically or magnetically tripped." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit/ELECTROMAGNETIC" ; + IFC4-PSD:definition "Information on tripping units that are electrically or magnetically tripped." ; + IFC4-PSD:definitionAlias ""@en , "電気と磁気により遮断するトリップ装置の情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic" ; + IFC4-PSD:propertyDef :p84ee5080d1fc11e1800000215ad4efdf , :p80299c80d1fc11e1800000215ad4efdf , :p6ee09000d1fc11e1800000215ad4efdf , :p5b352980d1fc11e1800000215ad4efdf , :p68521880d1fc11e1800000215ad4efdf , :p60927400d1fc11e1800000215ad4efdf , :p799b2500d1fc11e1800000215ad4efdf , :p45bfff80d1fc11e1800000215ad4efdf , :p553f4880d1fc11e1800000215ad4efdf , :p73a54400d1fc11e1800000215ad4efdf . + +:p68521880d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ambient temperature at which the thermal current/time-curve associated with this protection device is defined." ; + rdfs:label "DefinedTemperature" ; + IFC4-PSD:definition "The ambient temperature at which the thermal current/time-curve associated with this protection device is defined." ; + IFC4-PSD:definitionAlias "この保護装置が定める温度・電流/時間-カーブに関連する周囲温度。"@ja-JP , ""@en , "이 보호 장치가 정한 온도 · 전류 / 시간 - 곡선과 관련된 주위 온도."@ko-KR ; + IFC4-PSD:ifdguid "68521880d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "DefinedTemperature" ; + IFC4-PSD:nameAlias "Defined Temperature"@en , "설정 온도"@ko-KR , "設定温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:I4 a rdf:Property ; + rdfs:seeAlso :p73a54400d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I4 . + +:p84ee5080d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." ; + rdfs:label "CurveDesignation" ; + IFC4-PSD:definition "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." ; + IFC4-PSD:definitionAlias "제조 업체가 제공하는 지정된 토릿삔구 곡선. MCB 위해, 지정은 IEC 60898을 준수해야한다."@ko-KR , ""@en , "メーカーが提供する指定のトリッピングカーブ。MCBのために、指定はIEC 60898に準拠しなければならない。"@ja-JP ; + IFC4-PSD:ifdguid "84ee5080d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "CurveDesignation" ; + IFC4-PSD:nameAlias "곡성 지정"@ko-KR , "曲線指定"@ja-JP , "Curve Designation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p60927400d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) testing time in [s] associated with the testing currents I1 and I2." ; + rdfs:label "T2" ; + IFC4-PSD:definition "The (thermal) testing time in [s] associated with the testing currents I1 and I2." ; + IFC4-PSD:definitionAlias "熱動式の試験時間を [s] , 関連する試験電流を I1 と I2 とする。"@ja-JP , "열 동식 시험 시간 [s] 관련 시험 전류를 I1과 I2로한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "60927400d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "T2" ; + IFC4-PSD:nameAlias "T2"@ko-KR , "T2"@en , "T2"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:p80299c80d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The electromagnetic testing time in [s] associated with the testing currents I4 and I5, i.e. electromagnetic tripping time" ; + rdfs:label "T5" ; + IFC4-PSD:definition "The electromagnetic testing time in [s] associated with the testing currents I4 and I5, i.e. electromagnetic tripping time" ; + IFC4-PSD:definitionAlias ""@en , "전자 시험 시간 [s] 관련 시험 전류를 I4하면 I5한다."@ko-KR , "電磁の試験時間を [s] , 関連する試験電流を I4 と I5 とする。"@ja-JP ; + IFC4-PSD:ifdguid "80299c80d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "T5" ; + IFC4-PSD:nameAlias "T5"@en , "T5"@ja-JP , "T5"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:TemperatureFactor a rdf:Property ; + rdfs:seeAlso :p6ee09000d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureFactor . + +:p45bfff80d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of electric magnetic tripping unit from which that required may be selected. These cover overload, none special, short circuit, motor protection and bi-metal tripping." ; + rdfs:label "ElectroMagneticTrippingUnitType" ; + IFC4-PSD:definition "A list of the available types of electric magnetic tripping unit from which that required may be selected. These cover overload, none special, short circuit, motor protection and bi-metal tripping." ; + IFC4-PSD:definitionAlias "전자 트립 장치 유형을 선택합니다. (과전류 · 배선 모터 바이메탈 기타)"@ko-KR , ""@en , "電磁トリップ装置タイプを選択する。(過電流・配線用・モーター・バイメタル・その他)"@ja-JP ; + IFC4-PSD:ifdguid "45bfff80d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectroMagneticTrippingUnitType" ; + IFC4-PSD:nameAlias "電磁トリップ装置タイプ"@ja-JP , "전자 트립장치 유형"@ko-KR , "Electro Magnetic Tripping Unit Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OL" , "TMP_STD" , "TMP_SC" , "TMP_MP" , "TMP_BM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:T2 a rdf:Property ; + rdfs:seeAlso :p60927400d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:T2 . + +:I2 a rdf:Property ; + rdfs:seeAlso :p5b352980d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I2 . + +:ElectroMagneticTrippingUnitType + a rdf:Property ; + rdfs:seeAlso :p45bfff80d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectroMagneticTrippingUnitType . + +:p553f4880d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) lower testing current limit in [x In], indicating that for currents lower than I1, the tripping time shall be longer than the associated tripping time, T2." ; + rdfs:label "I1" ; + IFC4-PSD:definition "The (thermal) lower testing current limit in [x In], indicating that for currents lower than I1, the tripping time shall be longer than the associated tripping time, T2." ; + IFC4-PSD:definitionAlias "熱動式の低試験電流限界値を [x In]、電流は I1 よりも低い値を示す。トリップ時間は関連する T2 の時間よりも長い。"@ja-JP , "열 동식 낮은 시험 전류 한계를 [x In] 전류는 I1보다 낮은 값을 나타낸다. 트립 시간은 관련 T2 시간보다 길다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "553f4880d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I1" ; + IFC4-PSD:nameAlias "I1"@ja-JP , "I1"@ko-KR , "I1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:CurveDesignation a rdf:Property ; + rdfs:seeAlso :p84ee5080d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurveDesignation . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:I1 a rdf:Property ; + rdfs:seeAlso :p553f4880d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I1 . + +:p5b352980d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) upper testing current limit in [x In], indicating that for currents larger than I2, the tripping time shall be shorter than the associated tripping time, T2." ; + rdfs:label "I2" ; + IFC4-PSD:definition "The (thermal) upper testing current limit in [x In], indicating that for currents larger than I2, the tripping time shall be shorter than the associated tripping time, T2." ; + IFC4-PSD:definitionAlias ""@en , "열 동식 높은 시험 전류 한계를 [x In], 전류 I2보다 높은 값을 나타낸다. 트립 시간은 관련 T2 시간보다 짧다."@ko-KR , "熱動式の高試験電流限界値を [x In], 電流は I2 よりも高い値を示す。トリップ時間は関連する T2 の時間よりも短い。"@ja-JP ; + IFC4-PSD:ifdguid "5b352980d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I2" ; + IFC4-PSD:nameAlias "I2"@en , "I2"@ja-JP , "I2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p6ee09000d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The correction factor (typically measured as %/deg K) for adjusting the thermal current/time to an ambient temperature different from the value given by the defined temperature." ; + rdfs:label "TemperatureFactor" ; + IFC4-PSD:definition "The correction factor (typically measured as %/deg K) for adjusting the thermal current/time to an ambient temperature different from the value given by the defined temperature." ; + IFC4-PSD:definitionAlias "熱の電流/時間を、定義済みの温度によって与えられる値と異なる場合に周囲温度に合わせるための補正係数(%/deg K で計測する)。"@ja-JP , ""@en , "열 전류 / 시간 미리 정의된 온도에 의해 주어진 값과 다른 경우 주위 온도에 맞추기위한 보정 계수 (% / deg K로 측정한다)."@ko-KR ; + IFC4-PSD:ifdguid "6ee09000d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureFactor" ; + IFC4-PSD:nameAlias "温度係数"@ja-JP , "온도 계수"@ko-KR , "Temperature Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:T5 a rdf:Property ; + rdfs:seeAlso :p80299c80d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:T5 . + +:p73a54400d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The lower electromagnetic testing current limit in [x In], indicating that for currents lower than I4, the tripping time shall be longer than the associated tripping time, T5, i.e. the device shall not trip instantaneous." ; + rdfs:label "I4" ; + IFC4-PSD:definition "The lower electromagnetic testing current limit in [x In], indicating that for currents lower than I4, the tripping time shall be longer than the associated tripping time, T5, i.e. the device shall not trip instantaneous." ; + IFC4-PSD:definitionAlias "電磁の低試験電流限界値を [x In], 電流は I4 よりも低い値を示す。トリップ時間は関連する T5 と瞬時に遮断する定格使用電流の時間よりも長い。"@ja-JP , "전자 낮은 시험 전류 한계를 [x In] 전류는 I4보다 낮은 값을 나타낸다. 트립 시간은 관련 T5 즉석에서 차단하는 정격 사용 전류의 시간보다 길다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "73a54400d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I4" ; + IFC4-PSD:nameAlias "I4"@en , "I4"@ja-JP , "I4"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:DefinedTemperature a rdf:Property ; + rdfs:seeAlso :p68521880d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DefinedTemperature . + +:I5 a rdf:Property ; + rdfs:seeAlso :p799b2500d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I5 . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectronic.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectronic.ttl new file mode 100644 index 00000000..171cbf67 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeElectronic.ttl @@ -0,0 +1,128 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:N_Protection_50 a rdf:Property ; + rdfs:seeAlso :pb0713b00d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:N_Protection_50 . + +:Pset_ProtectiveDeviceTrippingUnitTypeElectronic + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Information on tripping units that are electronically tripped." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTypeElectronic" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit/ELECTRONIC" ; + IFC4-PSD:definition "Information on tripping units that are electronically tripped." ; + IFC4-PSD:definitionAlias "電気で遮断するトリップ装置の情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTypeElectronic" ; + IFC4-PSD:propertyDef :pa94a2d00d1fc11e1800000215ad4efdf , :pb0713b00d1fc11e1800000215ad4efdf , :pa2231f00d1fc11e1800000215ad4efdf , :pb8c97600d1fc11e1800000215ad4efdf , :p92a3d600d1fc11e1800000215ad4efdf , :pbebf5700d1fc11e1800000215ad4efdf . + +:p92a3d600d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of electronic tripping unit from which that required may be selected." ; + rdfs:label "ElectronicTrippingUnitType" ; + IFC4-PSD:definition "A list of the available types of electronic tripping unit from which that required may be selected." ; + IFC4-PSD:definitionAlias "電磁式の装置タイプをリストから選択。"@ja-JP , "전자식 장치 유형을 목록에서 선택합니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "92a3d600d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "ElectronicTrippingUnitType" ; + IFC4-PSD:nameAlias "Electronic Tripping Unit Type"@en , "전자식 장치 유형"@ko-KR , "電磁式の装置タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "EP_BM" , "EP_MP" , "EP_SC" , "EP_STD" , "EP_TIMEDELAYED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:N_Protection a rdf:Property ; + rdfs:seeAlso :pa94a2d00d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:N_Protection . + +:pa94a2d00d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the electronic tripping unit has separate protection for the N conductor, or not." ; + rdfs:label "N_Protection" ; + IFC4-PSD:definition "An indication whether the electronic tripping unit has separate protection for the N conductor, or not." ; + IFC4-PSD:definitionAlias "電磁式トリップ装置がN個の導体を保護するか否かの設定。"@ja-JP , "전자식 트립 장치가 N 개의 도체를 보호 여부 설정."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a94a2d00d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "N_Protection" ; + IFC4-PSD:nameAlias "N_Protection"@ko-KR , "N_Protection"@ja-JP , "N_ Protection"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:N_Protection_Select a rdf:Property ; + rdfs:seeAlso :pbebf5700d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:N_Protection_Select . + +:pb0713b00d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the electronic tripping unit is tripping if the current in the N conductor is more than 50% of that of the phase conductors. The property is only asserted if the property N_Protection is asserted." ; + rdfs:label "N_Protection_50" ; + IFC4-PSD:definition "An indication whether the electronic tripping unit is tripping if the current in the N conductor is more than 50% of that of the phase conductors. The property is only asserted if the property N_Protection is asserted." ; + IFC4-PSD:definitionAlias "전자식 트립 장치가 N 도체의 50 % 이상으로 보호 여부 설정."@ko-KR , ""@en , "電磁式トリップ装置がN導体の50%以上で保護するか否かの設定。"@ja-JP ; + IFC4-PSD:ifdguid "b0713b00d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "N_Protection_50" ; + IFC4-PSD:nameAlias "N_Protection_50"@ja-JP , "N_Protection_50"@ko-KR , "N_ Protection_50"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pb8c97600d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the electronic tripping unit is tripping if the current in the N conductor is more than 100% of that of the phase conductors. The property is only asserted if the property N_Protection is asserted." ; + rdfs:label "N_Protection_100" ; + IFC4-PSD:definition "An indication whether the electronic tripping unit is tripping if the current in the N conductor is more than 100% of that of the phase conductors. The property is only asserted if the property N_Protection is asserted." ; + IFC4-PSD:definitionAlias ""@en , "전자식 트립 장치가 N 도체의 100 % 이상으로 보호 여부 설정."@ko-KR , "電磁式トリップ装置がN導体の100%以上で保護するか否かの設定。"@ja-JP ; + IFC4-PSD:ifdguid "b8c97600d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "N_Protection_100" ; + IFC4-PSD:nameAlias "N_Protection_100"@ja-JP , "N_Protection_100"@ko-KR , "N_ Protection_100"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:N_Protection_100 a rdf:Property ; + rdfs:seeAlso :pb8c97600d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:N_Protection_100 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa2231f00d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of values providing information on available modules (chips) for setting the nominal current of the protective device. If\nthe set is empty, no nominal current modules are available for the tripping unit." ; + rdfs:label "NominalCurrents" ; + IFC4-PSD:definition "A set of values providing information on available modules (chips) for setting the nominal current of the protective device. If\nthe set is empty, no nominal current modules are available for the tripping unit." ; + IFC4-PSD:definitionAlias ""@en , "トリップ装置が対応する定格電流。"@ja-JP , "트립 장치가 지원하는 정격 전류."@ko-KR ; + IFC4-PSD:ifdguid "a2231f00d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCurrents" ; + IFC4-PSD:nameAlias "定格電流"@ja-JP , "정격전류"@ko-KR , "Nominal Currents"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pbebf5700d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication whether the use of the N_Protection can be selected by the user or not. If both the properties N_Protection_50 and N_Protection_100 are asserted, the value of N_Protection_Select property is set to TRUE. The property is only asserted if the property N_Protection is asserted." ; + rdfs:label "N_Protection_Select" ; + IFC4-PSD:definition "An indication whether the use of the N_Protection can be selected by the user or not. If both the properties N_Protection_50 and N_Protection_100 are asserted, the value of N_Protection_Select property is set to TRUE. The property is only asserted if the property N_Protection is asserted." ; + IFC4-PSD:definitionAlias ""@en , "どのN_Protectionを使うかユーザが設定できるかどうかを指定する。\nN_Protection_50とN_Protection_100の両方が有効な場合は、TRUEにします。"@ja-JP , "어떤 N_Protection를 사용하거나 사용자가 설정할 수 있는지 여부를 지정합니다. N_Protection_50하면 N_Protection_100를 모두 사용할 경우에는 TRUE합니다."@ko-KR ; + IFC4-PSD:ifdguid "bebf5700d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "N_Protection_Select" ; + IFC4-PSD:nameAlias "N_Protectionの選択"@ja-JP , "N_ Protection_ Select"@en , "N_Protection 선택"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:ElectronicTrippingUnitType + a rdf:Property ; + rdfs:seeAlso :p92a3d600d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ElectronicTrippingUnitType . + +:NominalCurrents a rdf:Property ; + rdfs:seeAlso :pa2231f00d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCurrents . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent.ttl new file mode 100644 index 00000000..5205d048 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pcb43af80d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The value of tripping or residual current for which the device has the possibility to be equipped. The values are given in mA." ; + rdfs:label "TrippingUnitReleaseCurrent" ; + IFC4-PSD:definition "The value of tripping or residual current for which the device has the possibility to be equipped. The values are given in mA." ; + IFC4-PSD:definitionAlias ""@en , "漏電ブレーカの感度電流値(mA)。"@ja-JP , "누전 차단기의 감도 전류 (mA)."@ko-KR ; + IFC4-PSD:ifdguid "cb43af80d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "TrippingUnitReleaseCurrent" ; + IFC4-PSD:nameAlias "Tripping Unit Release Current"@en , "定格感度電流"@ja-JP , "정격 감도 전류"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "300" , "NOTKNOWN" , "10" , "OTHER" , "1000" , "100" , "UNSET" , "500" , "30" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:TrippingUnitReleaseCurrent + a rdf:Property ; + rdfs:seeAlso :pcb43af80d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrippingUnitReleaseCurrent . + +:Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Information on tripping units that are activated by residual current." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit/RESIDUALCURRENT" ; + IFC4-PSD:definition "Information on tripping units that are activated by residual current." ; + IFC4-PSD:definitionAlias ""@en , "漏電電流で遮断するトリップ装置の情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent" ; + IFC4-PSD:propertyDef :pcb43af80d1fc11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeThermal.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeThermal.ttl new file mode 100644 index 00000000..53ca5163 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTrippingUnitTypeThermal.ttl @@ -0,0 +1,145 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TemperatureFactor a rdf:Property ; + rdfs:seeAlso :p0940d380d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureFactor . + +:pf29a7c80d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) lower testing current limit in [x In], indicating that for currents lower than I1, the tripping time shall be longer than the associated tripping time, T2." ; + rdfs:label "I1" ; + IFC4-PSD:definition "The (thermal) lower testing current limit in [x In], indicating that for currents lower than I1, the tripping time shall be longer than the associated tripping time, T2." ; + IFC4-PSD:definitionAlias "열 낮은 시험 전류 한계를 [x In] 전류는 I1보다 낮은 값을 나타낸다. 트립 시간은 관련 T2 시간보다 길다."@ko-KR , "サーマルの低試験電流限界値を [x In]、電流は I1 よりも低い値を示す。トリップ時間は関連する T2 の時間よりも長い。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f29a7c80d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I1" ; + IFC4-PSD:nameAlias "I1"@en , "I1"@ja-JP , "I1"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:ThermalTrippingUnitType + a rdf:Property ; + rdfs:seeAlso :pe3b3ca00d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTrippingUnitType . + +:pe3b3ca00d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of thermal tripping unit from which that required may be selected." ; + rdfs:label "ThermalTrippingUnitType" ; + IFC4-PSD:definition "A list of the available types of thermal tripping unit from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択を必要とするときのためのサーマルトリップ装置の選択リスト。"@ja-JP , "선택을 필요로하는 경우를위한 열 트립 장치 선택 목록."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e3b3ca00d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTrippingUnitType" ; + IFC4-PSD:nameAlias "サーマルトリップ装置タイプ"@ja-JP , "Thermal Tripping Unit Type"@en , "열 트립 장치 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NH_FUSE" , "DIAZED" , "MINIZED" , "NEOZED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pf8905d80d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) upper testing current limit in [x In], indicating that for currents larger than I2, the tripping time shall be shorter than the associated tripping time, T2." ; + rdfs:label "I2" ; + IFC4-PSD:definition "The (thermal) upper testing current limit in [x In], indicating that for currents larger than I2, the tripping time shall be shorter than the associated tripping time, T2." ; + IFC4-PSD:definitionAlias "サーマルの高試験電流限界値を [x In], 電流は I2 よりも高い値を示す。トリップ時間は関連する T2 の時間よりも短い。"@ja-JP , "열 높은 시험 전류 한계를 [x In], 전류 I2보다 높은 값을 나타낸다. 트립 시간은 관련 T2 시간보다 짧다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f8905d80d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "I2" ; + IFC4-PSD:nameAlias "I2"@en , "I2"@ja-JP , "I2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:Pset_ProtectiveDeviceTrippingUnitTypeThermal + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Information on tripping units that are thermally tripped." ; + rdfs:label "Pset_ProtectiveDeviceTrippingUnitTypeThermal" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDeviceTrippingUnit/THERMAL" ; + IFC4-PSD:definition "Information on tripping units that are thermally tripped." ; + IFC4-PSD:definitionAlias "温度により遮断するトリップ装置の情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTrippingUnitTypeThermal" ; + IFC4-PSD:propertyDef :pfdeda800d1fc11e1800000215ad4efdf , :p034af280d1fd11e1800000215ad4efdf , :pe3b3ca00d1fc11e1800000215ad4efdf , :pf29a7c80d1fc11e1800000215ad4efdf , :p0e058780d1fd11e1800000215ad4efdf , :p0940d380d1fd11e1800000215ad4efdf , :pf8905d80d1fc11e1800000215ad4efdf . + +:DefinedTemperature a rdf:Property ; + rdfs:seeAlso :p034af280d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DefinedTemperature . + +:pfdeda800d1fc11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The (thermal) testing time in [s] associated with the testing currents I1 and I2." ; + rdfs:label "T2" ; + IFC4-PSD:definition "The (thermal) testing time in [s] associated with the testing currents I1 and I2." ; + IFC4-PSD:definitionAlias ""@en , "열 시험 시간 [s] 관련 시험 전류를 I1과 I2로한다."@ko-KR , "サーマルの試験時間を [s] , 関連する試験電流を I1 と I2 とする。"@ja-JP ; + IFC4-PSD:ifdguid "fdeda800d1fc11e1800000215ad4efdf" ; + IFC4-PSD:name "T2" ; + IFC4-PSD:nameAlias "T2"@en , "T2"@ja-JP , "T2"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:T2 a rdf:Property ; + rdfs:seeAlso :pfdeda800d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:T2 . + +:p0e058780d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." ; + rdfs:label "CurveDesignation" ; + IFC4-PSD:definition "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." ; + IFC4-PSD:definitionAlias "メーカーが提供する指定のトリッピングカーブ。MCBのために、指定はIEC 60898に準拠しなければならない。"@ja-JP , "제조 업체가 제공하는 지정된 토릿삔구 곡선. MCB 위해, 지정은 IEC 60898을 준수해야한다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "0e058780d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "CurveDesignation" ; + IFC4-PSD:nameAlias "曲線指定"@ja-JP , "곡선 지정"@ko-KR , "Curve Designation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p034af280d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ambient temperature at which the thermal current/time-curve associated with this protection device is defined." ; + rdfs:label "DefinedTemperature" ; + IFC4-PSD:definition "The ambient temperature at which the thermal current/time-curve associated with this protection device is defined." ; + IFC4-PSD:definitionAlias "이 보호 장치가 정한 온도 · 전류 / 시간 - 곡선과 관련된 주위 온도"@ko-KR , "この保護装置が定める温度・電流/時間-カーブに関連する周囲温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "034af280d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "DefinedTemperature" ; + IFC4-PSD:nameAlias "설정 온도"@ko-KR , "設定温度"@ja-JP , "Defined Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:I2 a rdf:Property ; + rdfs:seeAlso :pf8905d80d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I2 . + +:p0940d380d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The correction factor (typically measured as %/deg K) for adjusting the thermal current/time to an ambient temperature different from the value given by the defined temperature." ; + rdfs:label "TemperatureFactor" ; + IFC4-PSD:definition "The correction factor (typically measured as %/deg K) for adjusting the thermal current/time to an ambient temperature different from the value given by the defined temperature." ; + IFC4-PSD:definitionAlias ""@en , "열 전류 / 시간 미리 정의된 온도에 의해 주어진 값과 다른 경우 주위 온도에 맞추기위한 보정 계수 (% / deg K로 측정한다)."@ko-KR , "熱の電流/時間を、定義済みの温度によって与えられる値と異なる場合に周囲温度に合わせるための補正係数(%/deg K で計測する)。"@ja-JP ; + IFC4-PSD:ifdguid "0940d380d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureFactor" ; + IFC4-PSD:nameAlias "温度係数"@ja-JP , "Temperature Factor"@en , "온도 계수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:I1 a rdf:Property ; + rdfs:seeAlso :pf29a7c80d1fc11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:I1 . + +:CurveDesignation a rdf:Property ; + rdfs:seeAlso :p0e058780d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CurveDesignation . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCircuitBreaker.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCircuitBreaker.ttl new file mode 100644 index 00000000..4ae062c0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCircuitBreaker.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p355c5480d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ultimate breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICU60947" ; + IFC4-PSD:definition "The ultimate breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias ""@en , "IEC의 60947 시리즈를 기반으로 테스트 회로 차단기 및 모터 보호 장치의 단락 차단 용량 [A]."@ko-KR , "IECの60947シリーズに基づいてテストされた回路遮断機及びモータ保護装置の短絡遮断容量[A]。"@ja-JP ; + IFC4-PSD:ifdguid "355c5480d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "ICU60947" ; + IFC4-PSD:nameAlias "定格限界短絡遮断容量"@ja-JP , "정격한계단락 차단 용량"@ko-KR , "ICU60947"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p40af8000d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thermal withstand current in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series. The value shall be related to 1 s." ; + rdfs:label "ICW60947" ; + IFC4-PSD:definition "The thermal withstand current in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series. The value shall be related to 1 s." ; + IFC4-PSD:definitionAlias "IEC60947 시리즈를 기반으로 테스트 배선 차단기 또는 모터 보호 장치를위한 전류 [A]에 견디는 온도 값은 1s 주어진다."@ko-KR , "IEC60947シリーズに基づいてテストした配線遮断機またはモータ保護装置のための電流[A]に耐える温度。\n 値は、1sで与えられる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "40af8000d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "ICW60947" ; + IFC4-PSD:nameAlias "ICW60947"@en , "ICW60947"@ja-JP , "ICW60947"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p3ab99f00d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The service breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICS60947" ; + IFC4-PSD:definition "The service breaking capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias "IECの60947シリーズに基づいてテストされた回路遮断機及びモータ保護装置の使用短絡遮断容量[A]。"@ja-JP , "IEC60947 시리즈를 기반으로 테스트 배선 차단기 또는 모터 보호 장치를위한 전류 [A]에 견디는 온도 값은 1s 주어진다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "3ab99f00d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "ICS60947" ; + IFC4-PSD:nameAlias "ICS60947"@en , "定格使用短絡遮断容量"@ja-JP , "정격사용 단락 차단 용량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:ICS60947 a rdf:Property ; + rdfs:seeAlso :p3ab99f00d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICS60947 . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :p22e21b00d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:ICW60947 a rdf:Property ; + rdfs:seeAlso :p40af8000d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICW60947 . + +:p47d68e00d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + rdfs:label "ICM60947" ; + IFC4-PSD:definition "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." ; + IFC4-PSD:definitionAlias ""@en , "IECの60947シリーズに基づいてテストされた回路遮断機またはモータ保護装置の能力[A]。"@ja-JP , "IEC의 60947 시리즈를 기반으로 테스트 회로 차단 기나 모터 보호 장치의 능력 [A]."@ko-KR ; + IFC4-PSD:ifdguid "47d68e00d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "ICM60947" ; + IFC4-PSD:nameAlias "ICM60947"@en , "ICM60947"@ja-JP , "ICM60947"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:p1bbb0d00d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A set of designations of performance classes for the breaker unit for which the data of this instance is valid. A breaker unit being a circuit breaker may be\nconstructed for different levels of breaking capacities. A maximum of 7 different\nperformance classes may be provided. Examples of performance classes that may be specified include B, C, N, S, H, L, V." ; + rdfs:label "PerformanceClasses" ; + IFC4-PSD:definition "A set of designations of performance classes for the breaker unit for which the data of this instance is valid. A breaker unit being a circuit breaker may be\nconstructed for different levels of breaking capacities. A maximum of 7 different\nperformance classes may be provided. Examples of performance classes that may be specified include B, C, N, S, H, L, V." ; + IFC4-PSD:definitionAlias "モータ保護を行う開閉装置は、能力が違う最大7種類がある。名称の例として、B, C, N, S, H, L, Vが含まれる。"@ja-JP , ""@en , "모터 보호하는 개폐 장치는 능력이 다른 최대 7 종류가있다. 이름의 예로는, B, C, N, S, H, L, V가 포함된다."@ko-KR ; + IFC4-PSD:ifdguid "1bbb0d00d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "PerformanceClasses" ; + IFC4-PSD:nameAlias "能力クラス"@ja-JP , "Performance Classes"@en , "능력 클래스"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p22e21b00d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias ""@en , "전압 레벨을 선택합니다."@ko-KR , "電圧レベルを選択。"@ja-JP ; + IFC4-PSD:ifdguid "22e21b00d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "Voltage Level"@en , "電圧レベル"@ja-JP , "전압레벨"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U1000" , "U690" , "U400" , "U525" , "U230" , "NOTKNOWN" , "OTHER" , "U440" , "UNSET" + ] . + +:PerformanceClasses a rdf:Property ; + rdfs:seeAlso :p1bbb0d00d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PerformanceClasses . + +:ICM60947 a rdf:Property ; + rdfs:seeAlso :p47d68e00d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICM60947 . + +:Pset_ProtectiveDeviceTypeCircuitBreaker + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing different capacities of a circuit breaker or of a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics." ; + rdfs:label "Pset_ProtectiveDeviceTypeCircuitBreaker" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/CIRCUITBREAKER" ; + IFC4-PSD:definition "A coherent set of attributes representing different capacities of a circuit breaker or of a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics." ; + IFC4-PSD:definitionAlias ""@en , "IECの60947に基づいて定義されている回路ブレーカ、またはモータ保護装置の異なる容量を表すプロパティセットの定義。\n注記-保護装置は、根本的な特性に関連付けられた提供されたプロパティの情報は、 異なる実態に関連しているかもしれません。                 "@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeCircuitBreaker" ; + IFC4-PSD:propertyDef :p355c5480d1fd11e1800000215ad4efdf , :p3ab99f00d1fd11e1800000215ad4efdf , :p40af8000d1fd11e1800000215ad4efdf , :p22e21b00d1fd11e1800000215ad4efdf , :p47d68e00d1fd11e1800000215ad4efdf , :p1bbb0d00d1fd11e1800000215ad4efdf . + +:ICU60947 a rdf:Property ; + rdfs:seeAlso :p355c5480d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ICU60947 . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCommon.ttl new file mode 100644 index 00000000..1fffdc1c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :p52912300d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_ProtectiveDeviceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that are applied to a definition of a protective device." ; + rdfs:label "Pset_ProtectiveDeviceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcProtectiveDevice ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice" ; + IFC4-PSD:definition "Properties that are applied to a definition of a protective device." ; + IFC4-PSD:definitionAlias ""@en , "保護装置の事象に該当する属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeCommon" ; + IFC4-PSD:propertyDef :p52912300d1fd11e1800000215ad4efdf , :p58870400d1fd11e1800000215ad4efdf . + +:p58870400d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "58870400d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p52912300d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "이 프로젝트 (예 : 'A-1'유형 등) 지정된 참조 ID. 인정 분류 체계의 분류 참조가없는 경우에 적용된다."@ko-KR , "このプロジェクト (例. 'A-1' タイプなど)で指定された参照ID。認められた分類体系の分類参照が存在しない場合に適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "52912300d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p58870400d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker.ttl new file mode 100644 index 00000000..a5fe30a4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Sensitivity a rdf:Property ; + rdfs:seeAlso :pe6fb8580d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Sensitivity . + +:Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An earth failure device acts to protect people and equipment from the effects of current leakage." ; + rdfs:label "Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/EARTHLEAKAGECIRCUITBREAKER" ; + IFC4-PSD:definition "An earth failure device acts to protect people and equipment from the effects of current leakage." ; + IFC4-PSD:definitionAlias ""@en , "漏電回路遮断機は、人々と器材を漏電電流の影響から保護する動作を行います。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker" ; + IFC4-PSD:propertyDef :pd0552e80d1fd11e1800000215ad4efdf , :pe6fb8580d1fd11e1800000215ad4efdf . + +:pd0552e80d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of circuit breaker from which that required may be selected where:\n\nStandard: Device that operates without a time delay.\nTimeDelayed: Device that operates after a time delay." ; + rdfs:label "EarthFailureDeviceType" ; + IFC4-PSD:definition "A list of the available types of circuit breaker from which that required may be selected where:\n\nStandard: Device that operates without a time delay.\nTimeDelayed: Device that operates after a time delay." ; + IFC4-PSD:definitionAlias "다음 중 선택이 필요한 경우 차단기 유형 목록 : 스탠다드 : 지연없이 동작하는 기기 지연 : 일정 시간이 지난 후에 동작하는 기기 \""@ko-KR , ""@en , "以下の中から選択が必要となる場合の遮断機タイプのリスト:\n\nスタンダード:遅延無しで動作する機器\n遅延:一定時間を経た後で動作する機器"@ja-JP ; + IFC4-PSD:ifdguid "d0552e80d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "EarthFailureDeviceType" ; + IFC4-PSD:nameAlias "누전 회로 차단기의 유형"@ko-KR , "漏電回路遮断機のタイプ"@ja-JP , "Earth Failure Device Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "STANDARD" , "TIMEDELAYED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe6fb8580d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The rated rms value of the vector sum of the instantaneous currents flowing in the main circuits of the device which causes the device to operate under specified conditions. (IEC 61008-1)." ; + rdfs:label "Sensitivity" ; + IFC4-PSD:definition "The rated rms value of the vector sum of the instantaneous currents flowing in the main circuits of the device which causes the device to operate under specified conditions. (IEC 61008-1)." ; + IFC4-PSD:definitionAlias ""@en , "장치의 기본 회로를 흐르는 순간 전류의 합계 벡터 관련 rms 값이 특정 조건이되면 장치가 작동하게된다 (IEC 61008-1)."@ko-KR , "装置のメイン回路を流れる瞬時電流の合計ベクトルの関連する rms 値、特定の条件になると機器が動作するようになる(IEC 61008-1)。"@ja-JP ; + IFC4-PSD:ifdguid "e6fb8580d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "Sensitivity" ; + IFC4-PSD:nameAlias "感度"@ja-JP , "Sensitivity"@en , "감도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:EarthFailureDeviceType + a rdf:Property ; + rdfs:seeAlso :pd0552e80d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EarthFailureDeviceType . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeFuseDisconnector.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeFuseDisconnector.ttl new file mode 100644 index 00000000..1140b97f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeFuseDisconnector.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p45c0ff00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The power loss in [W] of the fuse when the nominal current is flowing through the fuse." ; + rdfs:label "PowerLoss" ; + IFC4-PSD:definition "The power loss in [W] of the fuse when the nominal current is flowing through the fuse." ; + IFC4-PSD:definitionAlias ""@en , "정격 전류가 퓨즈에 흐르는시 전력 손실 [W]."@ko-KR , "定格電流がヒューズに流れる時の電力損失[W]。"@ja-JP ; + IFC4-PSD:ifdguid "45c0ff00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "PowerLoss" ; + IFC4-PSD:nameAlias "電力損失"@ja-JP , "Power Loss"@en , "전력 손실"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p3fcb1e00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The breaking capacity in [A] for fuses in accordance with the IEC 60269 series." ; + rdfs:label "IC60269" ; + IFC4-PSD:definition "The breaking capacity in [A] for fuses in accordance with the IEC 60269 series." ; + IFC4-PSD:definitionAlias "IECの60269シリーズに応じたヒューズの遮断容量[A]。"@ja-JP , ""@en , "IEC의 60269 시리즈에 따라 퓨즈의 차단 용량 [A]."@ko-KR ; + IFC4-PSD:ifdguid "3fcb1e00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "IC60269" ; + IFC4-PSD:nameAlias "IC60269"@en , "IC60269"@ja-JP , "IC60269"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:VoltageLevel a rdf:Property ; + rdfs:seeAlso :p2d50e480d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VoltageLevel . + +:IC60269 a rdf:Property ; + rdfs:seeAlso :p3fcb1e00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IC60269 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf37fde00d1fd11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of fuse disconnector from which that required may be selected where:\n\nEngineProtectionDevice: A fuse whose characteristic is specifically designed for the protection of a motor or generator.\nFuseSwitchDisconnector: A switch disconnector in which a fuse link or a fuse carrier with fuse link forms the moving contact,\nHRC: A standard fuse (High Rupturing Capacity)\nOverloadProtectionDevice: A device that disconnects the supply when the operating conditions in an electrically undamaged circuit causes an overcurrent,\nSemiconductorFuse: A fuse whose characteristic is specifically designed for the protection of sem-conductor devices.\nSwitchDisconnectorFuse: A switch disconnector in which one or more poles have a fuse in series in a composite unit." ; + rdfs:label "FuseDisconnectorType" ; + IFC4-PSD:definition "A list of the available types of fuse disconnector from which that required may be selected where:\n\nEngineProtectionDevice: A fuse whose characteristic is specifically designed for the protection of a motor or generator.\nFuseSwitchDisconnector: A switch disconnector in which a fuse link or a fuse carrier with fuse link forms the moving contact,\nHRC: A standard fuse (High Rupturing Capacity)\nOverloadProtectionDevice: A device that disconnects the supply when the operating conditions in an electrically undamaged circuit causes an overcurrent,\nSemiconductorFuse: A fuse whose characteristic is specifically designed for the protection of sem-conductor devices.\nSwitchDisconnectorFuse: A switch disconnector in which one or more poles have a fuse in series in a composite unit." ; + IFC4-PSD:definitionAlias "자가용 발전 연계 측면 : 모터 및 발전기 보호를 위해 디자인되는 퓨즈. 지락 보호 장치 : 이제 퓨즈 링크 또는 퓨즈 링크 퓨즈 캐리어는 가동 접점을 형성하는 스위치 단로기, HRC : 표준 퓨즈 (높이 연동 파괴 용량) 누전 보호 장치 : 전기 손상 회로의 동작 조건은 과전류가 발생하는 전원을 차단 장치 결상 보호 부착 : 그 특성을 구체적으로 sem이 심 장치 보호를 위해 디자인되는 퓨즈. 복합 퓨즈 보호 장치 : 어떤 한 개 이상의 전극은 복합 유닛에 직렬로 퓨즈를 가지고있는 스위치 단로기."@ko-KR , "自家用発電連携側:モータや発電機の保護のために設計されているヒューズ。\n 地絡保護装置:これでヒューズリンクまたはヒューズリンクヒューズキャリアは、可動接点を形成するスイッチ断路器、\n HRC:標準ヒューズ(高連動破壊容量)\n 漏電保護装置:電気的に破損して回路の動作条件は、過電流が発生する電源を切断装置\n 欠相保護付:その特性を具体的にsemが芯デバイスの保護のために設計されているヒューズ。\n 複合ヒューズ保護装置:その内の1つまたは複数の極は、複合ユニットに直列にヒューズを持っているスイッチ断路器。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f37fde00d1fd11e1800000215ad4efdf" ; + IFC4-PSD:name "FuseDisconnectorType" ; + IFC4-PSD:nameAlias "ヒューズ遮断機のタイプ"@ja-JP , "Fuse Disconnector Type"@en , "퓨즈차단기 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ENGINEPROTECTIONDEVICE" , "FUSEDSWITCH" , "HRC" , "OVERLOADPROTECTIONDEVICE" , "SWITCHDISCONNECTORFUSE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FuseDisconnectorType + a rdf:Property ; + rdfs:seeAlso :pf37fde00d1fd11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FuseDisconnectorType . + +:p2d50e480d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + rdfs:label "VoltageLevel" ; + IFC4-PSD:definition "The voltage levels for which the data of the instance is valid. More than one value may be selected in the enumeration." ; + IFC4-PSD:definitionAlias ""@en , "전압 레벨을 선택합니다."@ko-KR , "電圧レベルを選択。"@ja-JP ; + IFC4-PSD:ifdguid "2d50e480d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "VoltageLevel" ; + IFC4-PSD:nameAlias "電圧レベル"@ja-JP , "Voltage Level"@en , "전압레벨"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "U1000" , "U230" , "UNSET" , "NOTKNOWN" , "U690" , "U440" , "OTHER" , "U400" , "U525" + ] . + +:Pset_ProtectiveDeviceTypeFuseDisconnector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A coherent set of attributes representing the breakeing capacity of a fuse, defined in accordance with IEC 60269. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics." ; + rdfs:label "Pset_ProtectiveDeviceTypeFuseDisconnector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/FUSEDISCONNECTOR" ; + IFC4-PSD:definition "A coherent set of attributes representing the breakeing capacity of a fuse, defined in accordance with IEC 60269. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics." ; + IFC4-PSD:definitionAlias "ヒューズのbreakeing容量を表す属性の一貫したセットは、IEC60269に基づいて定義されています。\n 注-保護デバイスが別の基本的な特性に関連する情報を提供し、このプロセッサセットの別のインスタンスに関連付けられている可能性があります。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeFuseDisconnector" ; + IFC4-PSD:propertyDef :p45c0ff00d1fe11e1800000215ad4efdf , :p2d50e480d1fe11e1800000215ad4efdf , :p3fcb1e00d1fe11e1800000215ad4efdf , :pf37fde00d1fd11e1800000215ad4efdf . + +:PowerLoss a rdf:Property ; + rdfs:seeAlso :p45c0ff00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PowerLoss . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker.ttl new file mode 100644 index 00000000..975c2efe --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p52455780d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." ; + rdfs:label "Sensitivity" ; + IFC4-PSD:definition "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." ; + IFC4-PSD:definitionAlias "通常操作における望ましくない引き込みパスとの電流鎖交 (IEC 151-14-49)。"@ja-JP , "정상 작동의 원치 않는 철회 경로와 전류 사슬 교환 (IEC 151-14-49)."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "52455780d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Sensitivity" ; + IFC4-PSD:nameAlias "感度"@ja-JP , "감도"@ko-KR , "Sensitivity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:Sensitivity a rdf:Property ; + rdfs:seeAlso :p52455780d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Sensitivity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A residual current circuit breaker opens, closes or isolates a circuit and has short circuit and overload protection." ; + rdfs:label "Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/RESIDUALCURRENTCIRCUITBREAKER" ; + IFC4-PSD:definition "A residual current circuit breaker opens, closes or isolates a circuit and has short circuit and overload protection." ; + IFC4-PSD:definitionAlias ""@en , "残留電流遮断回路が 開いているか、 閉じているか、または 回路から独立しているか、また短絡(ショートサーキット)を保有し、過負荷保護継電方式であるか。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker" ; + IFC4-PSD:propertyDef :p52455780d1fe11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentSwitch.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentSwitch.ttl new file mode 100644 index 00000000..810b36ee --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeResidualCurrentSwitch.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5f624680d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." ; + rdfs:label "Sensitivity" ; + IFC4-PSD:definition "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." ; + IFC4-PSD:definitionAlias "정상 작동의 원치 않는 철회 경로와 전류 사슬 교환 (IEC 151-14-49)."@ko-KR , "通常操作における望ましくない引き込みパスとの電流鎖交 (IEC 151-14-49)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5f624680d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Sensitivity" ; + IFC4-PSD:nameAlias "Sensitivity"@en , "감도"@ko-KR , "感度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:Sensitivity a rdf:Property ; + rdfs:seeAlso :p5f624680d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Sensitivity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ProtectiveDeviceTypeResidualCurrentSwitch + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A residual current switch opens, closes or isolates a circuit and has no short circuit or overload protection." ; + rdfs:label "Pset_ProtectiveDeviceTypeResidualCurrentSwitch" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/RESIDUALCURRENTSWITCH" ; + IFC4-PSD:definition "A residual current switch opens, closes or isolates a circuit and has no short circuit or overload protection." ; + IFC4-PSD:definitionAlias "残留電流遮断回路が 開いているか、 閉じているか、または 回路から独立しているか、また短絡(ショートサーキット)を保有し、過負荷保護継電方式であるか。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeResidualCurrentSwitch" ; + IFC4-PSD:propertyDef :p5f624680d1fe11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeVaristor.ttl b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeVaristor.ttl new file mode 100644 index 00000000..f39a86d3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ProtectiveDeviceTypeVaristor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:VaristorType a rdf:Property ; + rdfs:seeAlso :p6b4e0880d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VaristorType . + +:Pset_ProtectiveDeviceTypeVaristor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A high voltage surge protection device." ; + rdfs:label "Pset_ProtectiveDeviceTypeVaristor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcProtectiveDevice/VARISTOR" ; + IFC4-PSD:definition "A high voltage surge protection device." ; + IFC4-PSD:definitionAlias "高圧避雷装置。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ProtectiveDeviceTypeVaristor" ; + IFC4-PSD:propertyDef :p6b4e0880d1fe11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p6b4e0880d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of varistor from which that required may be selected." ; + rdfs:label "VaristorType" ; + IFC4-PSD:definition "A list of the available types of varistor from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択が必要となる、バリスターの一覧リスト。"@ja-JP , "선택된 varistor(소자)의 유용한 유형목록"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "6b4e0880d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "VaristorType" ; + IFC4-PSD:nameAlias "Varistor Type"@en , "보호 종류"@ko-KR , "保護タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "METALOXIDE" , "ZINCOXIDE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_PumpOccurrence.ttl b/converter/src/main/resources/pset/Pset_PumpOccurrence.ttl new file mode 100644 index 00000000..a3a0e845 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PumpOccurrence.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_PumpOccurrence a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pump occurrence attributes attached to an instance of IfcPump." ; + rdfs:label "Pset_PumpOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcPump ; + IFC4-PSD:applicableTypeValue "IfcPump" ; + IFC4-PSD:definition "Pump occurrence attributes attached to an instance of IfcPump." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PumpOccurrence" ; + IFC4-PSD:propertyDef :p8587e680d1fe11e1800000215ad4efdf , :p92a4d580d1fe11e1800000215ad4efdf , :p7dc84200d1fe11e1800000215ad4efdf . + +:DriveConnectionType a rdf:Property ; + rdfs:seeAlso :p92a4d580d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DriveConnectionType . + +:ImpellerDiameter a rdf:Property ; + rdfs:seeAlso :p7dc84200d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ImpellerDiameter . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p8587e680d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines general types of pump bases.\n\nFRAME: Frame. \nBASE: Base. \nNONE: There is no pump base, such as an inline pump. \nOTHER: Other type of pump base." ; + rdfs:label "BaseType" ; + IFC4-PSD:definition "Defines general types of pump bases.\n\nFRAME: Frame. \nBASE: Base. \nNONE: There is no pump base, such as an inline pump. \nOTHER: Other type of pump base." ; + IFC4-PSD:definitionAlias ""@en , "ポンプ基礎の一般的な型を定義する(フレーム、(コンクリ)基礎、なし、その他)"@ja-JP ; + IFC4-PSD:ifdguid "8587e680d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "BaseType" ; + IFC4-PSD:nameAlias "基礎タイプ"@ja-JP , "Base Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FRAME" , "BASE" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p92a4d580d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The way the pump drive mechanism is connected to the pump.\n\nDIRECTDRIVE: Direct drive. \nBELTDRIVE: Belt drive. \nCOUPLING: Coupling. \nOTHER: Other type of drive connection." ; + rdfs:label "DriveConnectionType" ; + IFC4-PSD:definition "The way the pump drive mechanism is connected to the pump.\n\nDIRECTDRIVE: Direct drive. \nBELTDRIVE: Belt drive. \nCOUPLING: Coupling. \nOTHER: Other type of drive connection." ; + IFC4-PSD:definitionAlias "ポンプの動力機械がポンプに接続される方法(直動、ベルト、カップリング、その他)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "92a4d580d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "DriveConnectionType" ; + IFC4-PSD:nameAlias "駆動接続タイプ"@ja-JP , "Drive Connection Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DIRECTDRIVE" , "BELTDRIVE" , "COUPLING" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p7dc84200d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diameter of pump impeller - used to scale performance of geometrically similar pumps." ; + rdfs:label "ImpellerDiameter" ; + IFC4-PSD:definition "Diameter of pump impeller - used to scale performance of geometrically similar pumps." ; + IFC4-PSD:definitionAlias "幾何学的に似たポンプの性能を予測するのに使われる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7dc84200d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "ImpellerDiameter" ; + IFC4-PSD:nameAlias "羽根直径"@ja-JP , "Impeller Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:BaseType a rdf:Property ; + rdfs:seeAlso :p8587e680d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BaseType . diff --git a/converter/src/main/resources/pset/Pset_PumpPHistory.ttl b/converter/src/main/resources/pset/Pset_PumpPHistory.ttl new file mode 100644 index 00000000..065f43c5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PumpPHistory.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pb36d2b00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual operational fluid flowrate." ; + rdfs:label "Flowrate" ; + IFC4-PSD:definition "The actual operational fluid flowrate." ; + IFC4-PSD:definitionAlias "実際の運用流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b36d2b00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Flowrate" ; + IFC4-PSD:nameAlias "流量"@ja-JP , "Flowrate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pb6681b80d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual power consumption of the pump." ; + rdfs:label "Power" ; + IFC4-PSD:definition "The actual power consumption of the pump." ; + IFC4-PSD:definitionAlias "ポンプの実動力消費"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b6681b80d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Power" ; + IFC4-PSD:nameAlias "Power"@en , "動力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Power a rdf:Property ; + rdfs:seeAlso :pb6681b80d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Power . + +:pad774a00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The developed pressure." ; + rdfs:label "PressureRise" ; + IFC4-PSD:definition "The developed pressure." ; + IFC4-PSD:definitionAlias "上がった圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ad774a00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRise" ; + IFC4-PSD:nameAlias "Pressure Rise"@en , "昇圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pa6503c00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pumps operational mechanical efficiency." ; + rdfs:label "MechanicalEfficiency" ; + IFC4-PSD:definition "The pumps operational mechanical efficiency." ; + IFC4-PSD:definitionAlias "ポンプの稼動時の機械効率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a6503c00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "MechanicalEfficiency" ; + IFC4-PSD:nameAlias "機械効率"@ja-JP , "Mechanical Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_PumpPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pump performance history attributes." ; + rdfs:label "Pset_PumpPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcPump ; + IFC4-PSD:applicableTypeValue "IfcPump" ; + IFC4-PSD:definition "Pump performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PumpPHistory" ; + IFC4-PSD:propertyDef :pb6681b80d1fe11e1800000215ad4efdf , :pad774a00d1fe11e1800000215ad4efdf , :pa9e3c300d1fe11e1800000215ad4efdf , :pa6503c00d1fe11e1800000215ad4efdf , :pb0723a80d1fe11e1800000215ad4efdf , :pb36d2b00d1fe11e1800000215ad4efdf . + +:PressureRise a rdf:Property ; + rdfs:seeAlso :pad774a00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRise . + +:RotationSpeed a rdf:Property ; + rdfs:seeAlso :pb0723a80d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RotationSpeed . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa9e3c300d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pump and motor overall operational efficiency." ; + rdfs:label "OverallEfficiency" ; + IFC4-PSD:definition "The pump and motor overall operational efficiency." ; + IFC4-PSD:definitionAlias "ポンプとモーターの運用全効率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a9e3c300d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "OverallEfficiency" ; + IFC4-PSD:nameAlias "全効率"@ja-JP , "Overall Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pb0723a80d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pump rotational speed." ; + rdfs:label "RotationSpeed" ; + IFC4-PSD:definition "Pump rotational speed." ; + IFC4-PSD:definitionAlias ""@en , "ポンプ回転速度"@ja-JP ; + IFC4-PSD:ifdguid "b0723a80d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "RotationSpeed" ; + IFC4-PSD:nameAlias "Rotation Speed"@en , "回転速度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:OverallEfficiency a rdf:Property ; + rdfs:seeAlso :pa9e3c300d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OverallEfficiency . + +:MechanicalEfficiency + a rdf:Property ; + rdfs:seeAlso :pa6503c00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MechanicalEfficiency . + +:Flowrate a rdf:Property ; + rdfs:seeAlso :pb36d2b00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Flowrate . diff --git a/converter/src/main/resources/pset/Pset_PumpTypeCommon.ttl b/converter/src/main/resources/pset/Pset_PumpTypeCommon.ttl new file mode 100644 index 00000000..cf6145af --- /dev/null +++ b/converter/src/main/resources/pset/Pset_PumpTypeCommon.ttl @@ -0,0 +1,162 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Reference a rdf:Property ; + rdfs:seeAlso :pbff18380d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pedd6c800d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable operational range of the fluid temperature." ; + rdfs:label "TemperatureRange" ; + IFC4-PSD:definition "Allowable operational range of the fluid temperature." ; + IFC4-PSD:definitionAlias ""@en , "流体温度の許容範囲"@ja-JP ; + IFC4-PSD:ifdguid "edd6c800d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureRange" ; + IFC4-PSD:nameAlias "Temperature Range"@en , "温度範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:pd4ce1700d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable range of volume of fluid being pumped against the resistance specified." ; + rdfs:label "FlowRateRange" ; + IFC4-PSD:definition "Allowable range of volume of fluid being pumped against the resistance specified." ; + IFC4-PSD:definitionAlias ""@en , "指定された抵抗に対してポンプでくみ上げ可能な流対量の許容範囲"@ja-JP ; + IFC4-PSD:ifdguid "d4ce1700d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "FlowRateRange" ; + IFC4-PSD:nameAlias "流量範囲"@ja-JP , "Flow Rate Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcMassFlowRateMeasure + ] . + +:pbff18380d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bff18380d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_PumpTypeCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of a pump type." ; + rdfs:label "Pset_PumpTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcPump ; + IFC4-PSD:applicableTypeValue "IfcPump" ; + IFC4-PSD:definition "Common attributes of a pump type." ; + IFC4-PSD:definitionAlias "ポンプタイプ共通属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_PumpTypeCommon" ; + IFC4-PSD:propertyDef :pfb8c4d80d1fe11e1800000215ad4efdf , :pc67ffb00d1fe11e1800000215ad4efdf , :pdbf52500d1fe11e1800000215ad4efdf , :pf5966c80d1fe11e1800000215ad4efdf , :pbff18380d1fe11e1800000215ad4efdf , :pedd6c800d1fe11e1800000215ad4efdf , :pd4ce1700d1fe11e1800000215ad4efdf , :pe6afba00d1fe11e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :pc67ffb00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:ConnectionSize a rdf:Property ; + rdfs:seeAlso :pe6afba00d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConnectionSize . + +:pc67ffb00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "c67ffb00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NetPositiveSuctionHead + a rdf:Property ; + rdfs:seeAlso :pf5966c80d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NetPositiveSuctionHead . + +:pf5966c80d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum liquid pressure at the pump inlet to prevent cavitation." ; + rdfs:label "NetPositiveSuctionHead" ; + IFC4-PSD:definition "Minimum liquid pressure at the pump inlet to prevent cavitation." ; + IFC4-PSD:definitionAlias "キャビテーションを防ぐポンプ入口の最小限の流体圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f5966c80d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "NetPositiveSuctionHead" ; + IFC4-PSD:nameAlias "Net Positive Suction Head"@en , "正味吸入側水頭"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe6afba00d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The connection size of the to and from the pump." ; + rdfs:label "ConnectionSize" ; + IFC4-PSD:definition "The connection size of the to and from the pump." ; + IFC4-PSD:definitionAlias ""@en , "ポンプの入出の接続サイズ"@ja-JP ; + IFC4-PSD:ifdguid "e6afba00d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "ConnectionSize" ; + IFC4-PSD:nameAlias "接続サイズ"@ja-JP , "Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pdbf52500d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowable range of frictional resistance against which the fluid is being pumped." ; + rdfs:label "FlowResistanceRange" ; + IFC4-PSD:definition "Allowable range of frictional resistance against which the fluid is being pumped." ; + IFC4-PSD:definitionAlias "流体をポンプでくみ上げる際の摩擦抵抗の許容範囲"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "dbf52500d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "FlowResistanceRange" ; + IFC4-PSD:nameAlias "流体抵抗の範囲"@ja-JP , "Flow Resistance Range"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:NominalRotationSpeed + a rdf:Property ; + rdfs:seeAlso :pfb8c4d80d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalRotationSpeed . + +:FlowResistanceRange a rdf:Property ; + rdfs:seeAlso :pdbf52500d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowResistanceRange . + +:pfb8c4d80d1fe11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pump rotational speed under nominal conditions." ; + rdfs:label "NominalRotationSpeed" ; + IFC4-PSD:definition "Pump rotational speed under nominal conditions." ; + IFC4-PSD:definitionAlias "多目的な状況の下でのポンプの回転速度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fb8c4d80d1fe11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalRotationSpeed" ; + IFC4-PSD:nameAlias "通常の回転速度"@ja-JP , "Nominal Rotation Speed"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRotationalFrequencyMeasure + ] . + +:FlowRateRange a rdf:Property ; + rdfs:seeAlso :pd4ce1700d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowRateRange . + +:TemperatureRange a rdf:Property ; + rdfs:seeAlso :pedd6c800d1fe11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureRange . diff --git a/converter/src/main/resources/pset/Pset_RailingCommon.ttl b/converter/src/main/resources/pset/Pset_RailingCommon.ttl new file mode 100644 index 00000000..0c8ccdcd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_RailingCommon.ttl @@ -0,0 +1,109 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p06df7900d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; + IFC4-PSD:ifdguid "06df7900d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en , "参考号"@zh-CN , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p0d6df080d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p270f3800d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:Height a rdf:Property ; + rdfs:seeAlso :p1959b280d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Height . + +:p270f3800d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; + IFC4-PSD:ifdguid "270f3800d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "EstExterieur"@fr-FR , "是否外部构件"@zh-CN , "Außenbauteil"@de-DE , "外部区分"@ja-JP , "Is External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_RailingCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcRailing." ; + rdfs:label "Pset_RailingCommon" ; + IFC4-PSD:applicableClass IFC4:IfcRailing ; + IFC4-PSD:applicableTypeValue "IfcRailing" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcRailing." ; + IFC4-PSD:definitionAlias "IfcRaling(手すり)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "所有IfcRailing实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcRailing"@fr-FR , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_RailingCommon" ; + IFC4-PSD:propertyDef :p1fe82a00d1ff11e1800000215ad4efdf , :p0d6df080d1ff11e1800000215ad4efdf , :p06df7900d1ff11e1800000215ad4efdf , :p270f3800d1ff11e1800000215ad4efdf , :p1959b280d1ff11e1800000215ad4efdf . + +:p1fe82a00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diameter of the object. It is the diameter of the handrail of the railing.\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence.\nHere the diameter of the hand or guardrail within the railing." ; + rdfs:label "Diameter" ; + IFC4-PSD:definition "Diameter of the object. It is the diameter of the handrail of the railing.\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence.\nHere the diameter of the hand or guardrail within the railing." ; + IFC4-PSD:definitionAlias ""@en , "German-description-3"@de-DE , "Diamètre de la rampe du garde-corps. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "构件的直径。栏杆扶手的直径。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。\n此处为栏杆内侧扶手或护栏的直径。"@zh-CN , "オブジェクトの直径。"@ja-JP ; + IFC4-PSD:ifdguid "1fe82a00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Diameter" ; + IFC4-PSD:nameAlias "Diameter"@en , "Handlaufdurchmesser"@de-DE , "直径"@ja-JP , "直径"@zh-CN , "Diametre"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Diameter a rdf:Property ; + rdfs:seeAlso :p1fe82a00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Diameter . + +:Reference a rdf:Property ; + rdfs:seeAlso :p06df7900d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p1959b280d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Height of the object. It is the upper hight of the railing above the floor or stair.\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "Height" ; + IFC4-PSD:definition "Height of the object. It is the upper hight of the railing above the floor or stair.\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "German-description-2"@de-DE , "构件的高度。该属性为栏杆在地板或楼梯以上部分的高度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN , "Hauteur du garde-corps. C'est la plus grande hauteur du garde-corps relativement au plancher ou à l'escalier. Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en , "オブジェクトの高さ。床または会談から手すりの上部までの高さ。"@ja-JP ; + IFC4-PSD:ifdguid "1959b280d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Height" ; + IFC4-PSD:nameAlias "Hauteur"@fr-FR , "Höhe"@de-DE , "Height"@en , "高さ"@ja-JP , "高度"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0d6df080d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; + IFC4-PSD:ifdguid "0d6df080d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Statut"@fr-FR , "Status"@en , "Status"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_RampCommon.ttl b/converter/src/main/resources/pset/Pset_RampCommon.ttl new file mode 100644 index 00000000..b00aa227 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_RampCommon.ttl @@ -0,0 +1,200 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :p38f0db00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p38f0db00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; + IFC4-PSD:ifdguid "38f0db00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "Status"@de-DE , "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_RampCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcRamp." ; + rdfs:label "Pset_RampCommon" ; + IFC4-PSD:applicableClass IFC4:IfcRamp ; + IFC4-PSD:applicableTypeValue "IfcRamp" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcRamp." ; + IFC4-PSD:definitionAlias "IfcRamp(ランプ)オブジェクトに関する共通プロパティセット定義。"@ja-JP , ""@en , "所有IfcRamp实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcRamp"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_RampCommon" ; + IFC4-PSD:propertyDef :p502fc880d1ff11e1800000215ad4efdf , :p663d8900d1ff11e1800000215ad4efdf , :p33939080d1ff11e1800000215ad4efdf , :pd656025ed2cd424598c8b1b57aa9e3a0 , :p761e9ee4c87544849c2a57a17935596e , :p45753380d1ff11e1800000215ad4efdf , :p4c03ab00d1ff11e1800000215ad4efdf , :p558d1300d1ff11e1800000215ad4efdf , :p5b82f400d1ff11e1800000215ad4efdf , :p60e03e80d1ff11e1800000215ad4efdf , :p38f0db00d1ff11e1800000215ad4efdf . + +:p5b82f400d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit ramp in accordance to the national building code." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit ramp in accordance to the national building code." ; + IFC4-PSD:definitionAlias "German-description-6"@de-DE , "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP , ""@en , "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR , "表示该构件是否设计为火灾时的紧急出口。\n该属性的依据为国家建筑规范。"@zh-CN ; + IFC4-PSD:ifdguid "5b82f400d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "SortieSecours"@fr-FR , "Fire Exit"@en , "非常口区分"@ja-JP , "是否为紧急出口"@zh-CN , "Fluchtweg"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pd656025ed2cd424598c8b1b57aa9e3a0 ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:p4c03ab00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Required sloping angle of the object - relative to horizontal (0.0 degrees).\nRequired maximum slope for the passageway according to the applicable building code or additional requirements." ; + rdfs:label "RequiredSlope" ; + IFC4-PSD:definition "Required sloping angle of the object - relative to horizontal (0.0 degrees).\nRequired maximum slope for the passageway according to the applicable building code or additional requirements." ; + IFC4-PSD:definitionAlias "Inclinaison de la rampe par rapport à l'horizontal (0 degrés). Valeur maximale de l'inclinaison du passage selon le code applicable ou pour respecter des contraintes additionnelles."@fr-FR , "要求される傾斜角度。水平を0度とする。"@ja-JP , "German-description-3"@de-DE , "构件所需的相对于水平(0.0度)方向的坡度角。\n建筑规范或其他规定要求的通道的最大坡度。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "4c03ab00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "RequiredSlope" ; + IFC4-PSD:nameAlias "要求傾斜"@ja-JP , "erforderliche Neigung"@de-DE , "所需坡度"@zh-CN , "Required Slope"@en , "InclinaisonRequise"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:p45753380d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Required headroom clearance for the passageway according to the applicable building code or additional requirements." ; + rdfs:label "RequiredHeadroom" ; + IFC4-PSD:definition "Required headroom clearance for the passageway according to the applicable building code or additional requirements." ; + IFC4-PSD:definitionAlias "建筑规范或其他规定要求的通道净空高度。"@zh-CN , "German-description-2"@de-DE , "Hauteur de passage (échappée) requise selon la réglementation en vigueur ou des spécifications additionnelles."@fr-FR , "要求される頭高余裕。関連する建築基準法を参照。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "45753380d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "RequiredHeadroom" ; + IFC4-PSD:nameAlias "Required Headroom"@en , "erforderliche Durchgangshöhe"@de-DE , "所需净空"@zh-CN , "HauteurPassageRequise"@fr-FR , "要求頭高余裕"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:RequiredSlope a rdf:Property ; + rdfs:seeAlso :p4c03ab00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequiredSlope . + +:Reference a rdf:Property ; + rdfs:seeAlso :p33939080d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p761e9ee4c87544849c2a57a17935596e ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p502fc880d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p663d8900d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + rdfs:label "HasNonSkidSurface" ; + IFC4-PSD:definition "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si le revêtement de surface est anti dérapant (VRAI) ou non (FAUX)"@fr-FR , "スリップ防止のための表面仕上げをしているかどうかのブーリアン値。"@ja-JP , "表示表面处理是否设计为防滑的。"@zh-CN , "German-description-8"@de-DE , ""@en ; + IFC4-PSD:ifdguid "663d8900d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "HasNonSkidSurface" ; + IFC4-PSD:nameAlias "Has Non Skid Surface"@en , "AntiDerapant"@fr-FR , "表面是否防滑"@zh-CN , "Nichtrutschende Oberfläche"@de-DE , "滑り止め表面加工区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p558d1300d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p33939080d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "33939080d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p558d1300d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:ifdguid "558d1300d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR , "耐火等級"@ja-JP , "防火等级"@zh-CN , "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:HandicapAccessible a rdf:Property ; + rdfs:seeAlso :p60e03e80d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HandicapAccessible . + +:p60e03e80d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication that this object is designed to be accessible by the handicapped. \nSet to (TRUE) if this ramp is rated as handicap accessible according the local building codes, otherwise (FALSE)." ; + rdfs:label "HandicapAccessible" ; + IFC4-PSD:definition "Indication that this object is designed to be accessible by the handicapped. \nSet to (TRUE) if this ramp is rated as handicap accessible according the local building codes, otherwise (FALSE)." ; + IFC4-PSD:definitionAlias "表示该构件是否设计为可供残疾人使用的无障碍设施。\n该属性的根据为国家建筑规范。"@zh-CN , "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR , "German-description-7"@de-DE , ""@en , "この空間がハンディキャップ者向けの空間かどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "60e03e80d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "HandicapAccessible" ; + IFC4-PSD:nameAlias "Behindertengerecht"@de-DE , "Handicap Accessible"@en , "AccessibleHandicapes"@fr-FR , "是否为无障碍设施"@zh-CN , "ハンディキャップアクセス可能性"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pd656025ed2cd424598c8b1b57aa9e3a0 + a IFC4-PSD:PropertyDef ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:ifdguid "d656025ed2cd424598c8b1b57aa9e3a0" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:HasNonSkidSurface a rdf:Property ; + rdfs:seeAlso :p663d8900d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasNonSkidSurface . + +:p502fc880d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , ""@en , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; + IFC4-PSD:ifdguid "502fc880d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "EstExterieur"@fr-FR , "Is External"@en , "是否外部构件"@zh-CN , "外部区分"@ja-JP , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FireExit a rdf:Property ; + rdfs:seeAlso :p5b82f400d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:RequiredHeadroom a rdf:Property ; + rdfs:seeAlso :p45753380d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequiredHeadroom . + +:p761e9ee4c87544849c2a57a17935596e + a IFC4-PSD:PropertyDef ; + rdfs:label "LoadBearing" ; + IFC4-PSD:ifdguid "761e9ee4c87544849c2a57a17935596e" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . diff --git a/converter/src/main/resources/pset/Pset_RampFlightCommon.ttl b/converter/src/main/resources/pset/Pset_RampFlightCommon.ttl new file mode 100644 index 00000000..4a415416 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_RampFlightCommon.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Headroom a rdf:Property ; + rdfs:seeAlso :p853c1b00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Headroom . + +:p78b7c280d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "78b7c280d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Statut"@fr-FR , "Status"@de-DE , "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p853c1b00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual headroom clearance for the passageway according to the current design. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "Headroom" ; + IFC4-PSD:definition "Actual headroom clearance for the passageway according to the current design. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "当前设计方案确定的通道实际净空高度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN , "Hauteur de passage (échappée) actuellement projetée. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "German-description-2"@de-DE , "現状の設計に一致した斜路の実際の頭上スペース高\n形状の情報は、内側は使用される形表現および幾何パラメータ学的媒介変数に加えて提供されます。\n幾何パラメータと形状プロパティが矛盾する場合は、付属のプロパティで提供されている、幾何パラメータを優先する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "853c1b00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Headroom" ; + IFC4-PSD:nameAlias "净空"@zh-CN , "Headroom"@en , "HauteurPassage"@fr-FR , "頭上スペース"@ja-JP , "Durchgangshöhe"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_RampFlightCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcRampFlight." ; + rdfs:label "Pset_RampFlightCommon" ; + IFC4-PSD:applicableClass IFC4:IfcRampFlight ; + IFC4-PSD:applicableTypeValue "IfcRampFlight" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcRampFlight." ; + IFC4-PSD:definitionAlias "IfcRampFlight(斜路)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcRampFlight"@fr-FR , "所有IfcRampFlight实例的定义中通用的属性。"@zh-CN , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_RampFlightCommon" ; + IFC4-PSD:propertyDef :p853c1b00d1ff11e1800000215ad4efdf , :p8bca9280d1ff11e1800000215ad4efdf , :p78b7c280d1ff11e1800000215ad4efdf , :p971dbe00d1ff11e1800000215ad4efdf , :p735a7800d1ff11e1800000215ad4efdf , :p92590a00d1ff11e1800000215ad4efdf . + +:p735a7800d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "参照記号でプロジェクトでのタイプとして使用されるもの。"@ja-JP , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; + IFC4-PSD:ifdguid "735a7800d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE , "参考号"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Slope a rdf:Property ; + rdfs:seeAlso :p92590a00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Slope . + +:CounterSlope a rdf:Property ; + rdfs:seeAlso :p971dbe00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CounterSlope . + +:p8bca9280d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual clear width measured as the clear space for accessibility and egress; it is a measured distance betwen the two handrails or the wall and a handrail on a ramp.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "ClearWidth" ; + IFC4-PSD:definition "Actual clear width measured as the clear space for accessibility and egress; it is a measured distance betwen the two handrails or the wall and a handrail on a ramp.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "通道入口和出口实际测量的净宽度,以两侧扶手之间或墙与坡道扶手之间的距离为准。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN , "Largeur du passage. Mesure de la distance entre les deux rampes ou entre le mur et la rampe. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en , "German-description-3"@de-DE , "実際の通路の有効幅\n形情報は、内側は使用される形表現および幾何学的媒介変数に加えて提供されます。幾何学的媒介変数と形特性の間の矛盾の場合では、付属の特性の中で提供されて、幾何学的媒介変数は先行をとります。\""@ja-JP ; + IFC4-PSD:ifdguid "8bca9280d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "ClearWidth" ; + IFC4-PSD:nameAlias "净宽"@zh-CN , "Lichte Breite"@de-DE , "通路有効寸法"@ja-JP , "LargeurPassage"@fr-FR , "Clear Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p92590a00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sloping angle of the object - relative to horizontal (0.0 degrees). \nActual maximum slope for the passageway according to the current design.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "Slope" ; + IFC4-PSD:definition "Sloping angle of the object - relative to horizontal (0.0 degrees). \nActual maximum slope for the passageway according to the current design.\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Angle d'inclinaison relativement à l'horizontale correspondant à la valeur 0 degrés. Valeur maximale de l'inclinaison actuellement projetée. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "オブジェクト傾斜角度(水平が0.0度)\n現在の設計による通路のための実際の最大の傾斜。形情報は、内側は使用される形表現および幾何学的媒介変数に加えて提供されます。幾何学的媒介変数と形特性の間の矛盾の場合では、付属の特性の中で提供されて、幾何学的媒介変数は先行をとります。\""@ja-JP , ""@en , "German-description-4"@de-DE , "构件相对于水平(0.0度)方向的实际坡度角。\n当前设计方案确定的通道的最大坡度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN ; + IFC4-PSD:ifdguid "92590a00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Slope" ; + IFC4-PSD:nameAlias "坡度"@zh-CN , "Pente"@fr-FR , "Neigung"@de-DE , "通路の傾斜角度(水平からの角度)"@ja-JP , "Slope"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p971dbe00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sloping angle of the object, measured perpendicular to the slope - relative to horizontal (0.0 degrees). \nActual maximum slope for the passageway measured perpendicular to the direction of travel according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. \nNote: new property in IFC4." ; + rdfs:label "CounterSlope" ; + IFC4-PSD:definition "Sloping angle of the object, measured perpendicular to the slope - relative to horizontal (0.0 degrees). \nActual maximum slope for the passageway measured perpendicular to the direction of travel according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. \nNote: new property in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "构件的垂线相对于水平(0.0度)方向的坡度角。\n当前设计方案确定的通道行走方向的垂线方向的最大坡度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN , "オブジェクトの傾斜角度(垂直との角度)\n通路のための実際の最大の傾斜は、現在の設計による旅行の方向への垂直を測定しました。形情報は、内側は使用される形表現および幾何学的媒介変数に加えて提供されます。幾何学的媒介変数と形特性の間の矛盾の場合では、付属の特性の中で提供されて、幾何学的媒介変数は先行をとります。\n注:IFC2x4の中の新しいプロパティ"@ja-JP , "Angle d'inclinaison de l'objet, mesuré perpendiculairement à la pente. L'horizontale correspond à la valeur 0 degrés. Valeur maximale de la pente de la rampe actuellement projetée, mesurée perpendiculairement à la direction du passage. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Note : nouvelle propriété de la version IFC2x4."@fr-FR , "German-description-5"@de-DE ; + IFC4-PSD:ifdguid "971dbe00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "CounterSlope" ; + IFC4-PSD:nameAlias "Counter Slope"@en , "反向坡度"@zh-CN , "通路の傾斜角度(垂直との角度)"@ja-JP , "Gegenneigung"@de-DE , "ContrePente"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p735a7800d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:ClearWidth a rdf:Property ; + rdfs:seeAlso :p8bca9280d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearWidth . + +:Status a rdf:Property ; + rdfs:seeAlso :p78b7c280d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarCountOfIndependentFooting.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarCountOfIndependentFooting.ttl new file mode 100644 index 00000000..150d66a9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarCountOfIndependentFooting.ttl @@ -0,0 +1,131 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:paac92480d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with X direction lower bar." ; + rdfs:label "XDirectionLowerBarCount" ; + IFC4-PSD:definition "The number of bars with X direction lower bar." ; + IFC4-PSD:definitionAlias ""@en , "X方向の下端筋本数。"@ja-JP ; + IFC4-PSD:ifdguid "aac92480d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "XDirectionLowerBarCount" ; + IFC4-PSD:nameAlias "X方向下端筋本数"@ja-JP , "XDirection Lower Bar Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pb9174080d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with Y direction upper bar." ; + rdfs:label "YDirectionUpperBarCount" ; + IFC4-PSD:definition "The number of bars with Y direction upper bar." ; + IFC4-PSD:definitionAlias "Y方向の上端筋本数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b9174080d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "YDirectionUpperBarCount" ; + IFC4-PSD:nameAlias "Y方向上端筋本数"@ja-JP , "YDirection Upper Bar Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:YDirectionUpperBarCount + a rdf:Property ; + rdfs:seeAlso :pb9174080d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YDirectionUpperBarCount . + +:YDirectionLowerBarCount + a rdf:Property ; + rdfs:seeAlso :paf8dd880d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YDirectionLowerBarCount . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa4d34380d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_ReinforcementBarCountOfIndependentFooting + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Reinforcement Concrete parameter [ST-2]: The amount number information of reinforcement bar with the independent footing. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively." ; + rdfs:label "Pset_ReinforcementBarCountOfIndependentFooting" ; + IFC4-PSD:applicableClass IFC4:IfcFooting ; + IFC4-PSD:applicableTypeValue "IfcFooting" ; + IFC4-PSD:definition "Reinforcement Concrete parameter [ST-2]: The amount number information of reinforcement bar with the independent footing. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively." ; + IFC4-PSD:definitionAlias ""@en , "鉄筋コンクリートパラメータ[ST-2]:独立基礎の鉄筋本数情報。\nX方向とY方向は建物のローカル座標系に基づいている。X方向とY方向の鉄筋はIfcBuildingStoreyのローカル座標系のX軸、Y軸にそれぞれ平行である。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarCountOfIndependentFooting" ; + IFC4-PSD:propertyDef :paf8dd880d1ff11e1800000215ad4efdf , :pb9174080d1ff11e1800000215ad4efdf , :pa00e8f80d1ff11e1800000215ad4efdf , :paac92480d1ff11e1800000215ad4efdf , :pb4528c80d1ff11e1800000215ad4efdf , :pa4d34380d1ff11e1800000215ad4efdf . + +:Description a rdf:Property ; + rdfs:seeAlso :pa00e8f80d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:pa4d34380d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias ""@en , "一般的な鉄筋タイプの説明ラベル。"@ja-JP ; + IFC4-PSD:ifdguid "a4d34380d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:XDirectionUpperBarCount + a rdf:Property ; + rdfs:seeAlso :pb4528c80d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:XDirectionUpperBarCount . + +:pa00e8f80d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias ""@en , "鉄筋の説明。"@ja-JP ; + IFC4-PSD:ifdguid "a00e8f80d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "説明"@ja-JP , "Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:paf8dd880d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with Y direction lower bar." ; + rdfs:label "YDirectionLowerBarCount" ; + IFC4-PSD:definition "The number of bars with Y direction lower bar." ; + IFC4-PSD:definitionAlias "Y方向の下端筋本数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "af8dd880d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "YDirectionLowerBarCount" ; + IFC4-PSD:nameAlias "Y方向下端筋本数"@ja-JP , "YDirection Lower Bar Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:XDirectionLowerBarCount + a rdf:Property ; + rdfs:seeAlso :paac92480d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:XDirectionLowerBarCount . + +:pb4528c80d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with X direction upper bar." ; + rdfs:label "XDirectionUpperBarCount" ; + IFC4-PSD:definition "The number of bars with X direction upper bar." ; + IFC4-PSD:definitionAlias "X方向の上端筋本数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b4528c80d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "XDirectionUpperBarCount" ; + IFC4-PSD:nameAlias "XDirection Upper Bar Count"@en , "X方向上端筋本数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfBeam.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfBeam.ttl new file mode 100644 index 00000000..e2da99dd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfBeam.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pcb917a00d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias "一般的な鉄筋タイプの説明ラベル。\n(例えば、梁の両端・中央で肋筋や巾止筋の間隔が異なる場合に、\"Start\",\"Center\",\"End\"を記述する)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cb917a00d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SpacingBarPitch a rdf:Property ; + rdfs:seeAlso :pd9df9600d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpacingBarPitch . + +:pd9df9600d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the spacing bar." ; + rdfs:label "SpacingBarPitch" ; + IFC4-PSD:definition "The pitch length of the spacing bar." ; + IFC4-PSD:definitionAlias "巾止筋の間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d9df9600d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "SpacingBarPitch" ; + IFC4-PSD:nameAlias "幅止筋間隔"@ja-JP , "Spacing Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pcb917a00d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Description a rdf:Property ; + rdfs:seeAlso :pc59b9900d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:pc59b9900d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias "鉄筋の説明。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c59b9900d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "Description"@en , "説明"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:StirrupBarPitch a rdf:Property ; + rdfs:seeAlso :pd3511e80d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StirrupBarPitch . + +:Pset_ReinforcementBarPitchOfBeam + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The pitch length information of reinforcement bar with the beam." ; + rdfs:label "Pset_ReinforcementBarPitchOfBeam" ; + IFC4-PSD:applicableClass IFC4:IfcBeam ; + IFC4-PSD:applicableTypeValue "IfcBeam" ; + IFC4-PSD:definition "The pitch length information of reinforcement bar with the beam." ; + IFC4-PSD:definitionAlias ""@en , "梁補強筋の間隔情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarPitchOfBeam" ; + IFC4-PSD:propertyDef :pc59b9900d1ff11e1800000215ad4efdf , :pcb917a00d1ff11e1800000215ad4efdf , :pd9df9600d1ff11e1800000215ad4efdf , :pd3511e80d1ff11e1800000215ad4efdf . + +:pd3511e80d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the stirrup bar." ; + rdfs:label "StirrupBarPitch" ; + IFC4-PSD:definition "The pitch length of the stirrup bar." ; + IFC4-PSD:definitionAlias ""@en , "肋筋の間隔。"@ja-JP ; + IFC4-PSD:ifdguid "d3511e80d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "StirrupBarPitch" ; + IFC4-PSD:nameAlias "肋筋間隔"@ja-JP , "Stirrup Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfColumn.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfColumn.ttl new file mode 100644 index 00000000..4ec13bc0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfColumn.ttl @@ -0,0 +1,166 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:XDirectionTieHoopBarPitch + a rdf:Property ; + rdfs:seeAlso :p085d7100d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:XDirectionTieHoopBarPitch . + +:XDirectionTieHoopCount + a rdf:Property ; + rdfs:seeAlso :p101d1580d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:XDirectionTieHoopCount . + +:YDirectionTieHoopBarPitch + a rdf:Property ; + rdfs:seeAlso :p14e1c980d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YDirectionTieHoopBarPitch . + +:p01366300d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the hoop bar." ; + rdfs:label "HoopBarPitch" ; + IFC4-PSD:definition "The pitch length of the hoop bar." ; + IFC4-PSD:definitionAlias "帯筋の間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "01366300d20011e1800000215ad4efdf" ; + IFC4-PSD:name "HoopBarPitch" ; + IFC4-PSD:nameAlias "帯筋間隔"@ja-JP , "Hoop Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pecf26600d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias "一般的な鉄筋タイプの説明ラベル。\n(例えば、柱の柱頭・柱脚で帯筋や巾止筋の間隔・本数が異なる場合に、\"Top\",\"Bottom\"を記述する)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ecf26600d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pf54aa100d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the type of the reinforcement bar." ; + rdfs:label "ReinforcementBarType" ; + IFC4-PSD:definition "Defines the type of the reinforcement bar." ; + IFC4-PSD:definitionAlias ""@en , "補強筋タイプの定義。"@ja-JP ; + IFC4-PSD:ifdguid "f54aa100d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "ReinforcementBarType" ; + IFC4-PSD:nameAlias "Reinforcement Bar Type"@en , "補強筋タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RING" , "SPIRAL" , "OTHER" , "USERDEFINED" , "NOTDEFINED" + ] . + +:p1ca16e00d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with Y direction tie hoop bars." ; + rdfs:label "YDirectionTieHoopCount" ; + IFC4-PSD:definition "The number of bars with Y direction tie hoop bars." ; + IFC4-PSD:definitionAlias ""@en , "Y方向巾止筋の本数。"@ja-JP ; + IFC4-PSD:ifdguid "1ca16e00d20011e1800000215ad4efdf" ; + IFC4-PSD:name "YDirectionTieHoopCount" ; + IFC4-PSD:nameAlias "Y方向巾止め筋本数"@ja-JP , "YDirection Tie Hoop Count"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:Description a rdf:Property ; + rdfs:seeAlso :pe82db200d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:HoopBarPitch a rdf:Property ; + rdfs:seeAlso :p01366300d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HoopBarPitch . + +:p101d1580d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The number of bars with X direction tie hoop bars." ; + rdfs:label "XDirectionTieHoopCount" ; + IFC4-PSD:definition "The number of bars with X direction tie hoop bars." ; + IFC4-PSD:definitionAlias ""@en , "X方向巾止筋の本数。"@ja-JP ; + IFC4-PSD:ifdguid "101d1580d20011e1800000215ad4efdf" ; + IFC4-PSD:name "XDirectionTieHoopCount" ; + IFC4-PSD:nameAlias "XDirection Tie Hoop Count"@en , "X方向巾止め筋本数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pecf26600d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:YDirectionTieHoopCount + a rdf:Property ; + rdfs:seeAlso :p1ca16e00d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:YDirectionTieHoopCount . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ReinforcementBarType + a rdf:Property ; + rdfs:seeAlso :pf54aa100d1ff11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReinforcementBarType . + +:p085d7100d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The X direction pitch length of the tie hoop." ; + rdfs:label "XDirectionTieHoopBarPitch" ; + IFC4-PSD:definition "The X direction pitch length of the tie hoop." ; + IFC4-PSD:definitionAlias ""@en , "X方向巾止筋の間隔。"@ja-JP ; + IFC4-PSD:ifdguid "085d7100d20011e1800000215ad4efdf" ; + IFC4-PSD:name "XDirectionTieHoopBarPitch" ; + IFC4-PSD:nameAlias "XDirection Tie Hoop Bar Pitch"@en , "X方向巾止め筋間隔"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pe82db200d1ff11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias "鉄筋の説明。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e82db200d1ff11e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "Description"@en , "説明"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:Pset_ReinforcementBarPitchOfColumn + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The pitch length information of reinforcement bar with the column. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively." ; + rdfs:label "Pset_ReinforcementBarPitchOfColumn" ; + IFC4-PSD:applicableClass IFC4:IfcColumn ; + IFC4-PSD:applicableTypeValue "IfcColumn" ; + IFC4-PSD:definition "The pitch length information of reinforcement bar with the column. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively." ; + IFC4-PSD:definitionAlias "柱補強筋の間隔情報。\nX方向とY方向は建物のローカル座標系に基づいている。X方向とY方向の補強筋はIfcBuildingStoreyのローカル座標系のX軸、Y軸にそれぞれ平行である。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarPitchOfColumn" ; + IFC4-PSD:propertyDef :p01366300d20011e1800000215ad4efdf , :p14e1c980d20011e1800000215ad4efdf , :pf54aa100d1ff11e1800000215ad4efdf , :pecf26600d1ff11e1800000215ad4efdf , :pe82db200d1ff11e1800000215ad4efdf , :p1ca16e00d20011e1800000215ad4efdf , :p085d7100d20011e1800000215ad4efdf , :p101d1580d20011e1800000215ad4efdf . + +:p14e1c980d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The Y direction pitch length of the tie hoop." ; + rdfs:label "YDirectionTieHoopBarPitch" ; + IFC4-PSD:definition "The Y direction pitch length of the tie hoop." ; + IFC4-PSD:definitionAlias ""@en , "Y方向巾止筋の間隔。"@ja-JP ; + IFC4-PSD:ifdguid "14e1c980d20011e1800000215ad4efdf" ; + IFC4-PSD:name "YDirectionTieHoopBarPitch" ; + IFC4-PSD:nameAlias "Y方向巾止め筋間隔"@ja-JP , "YDirection Tie Hoop Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfContinuousFooting.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfContinuousFooting.ttl new file mode 100644 index 00000000..0fc2cd34 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfContinuousFooting.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:CrossingUpperBarPitch + a rdf:Property ; + rdfs:seeAlso :p32169800d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CrossingUpperBarPitch . + +:Description a rdf:Property ; + rdfs:seeAlso :p25923f80d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:p39d63c80d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the crossing lower bar." ; + rdfs:label "CrossingLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the crossing lower bar." ; + IFC4-PSD:definitionAlias "交差する下端筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "39d63c80d20011e1800000215ad4efdf" ; + IFC4-PSD:name "CrossingLowerBarPitch" ; + IFC4-PSD:nameAlias "下端筋間隔"@ja-JP , "Crossing Lower Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p25923f80d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias "鉄筋の説明。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "25923f80d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "説明"@ja-JP , "Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p32169800d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the crossing upper bar." ; + rdfs:label "CrossingUpperBarPitch" ; + IFC4-PSD:definition "The pitch length of the crossing upper bar." ; + IFC4-PSD:definitionAlias "交差する上端筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "32169800d20011e1800000215ad4efdf" ; + IFC4-PSD:name "CrossingUpperBarPitch" ; + IFC4-PSD:nameAlias "上端筋間隔"@ja-JP , "Crossing Upper Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CrossingLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :p39d63c80d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CrossingLowerBarPitch . + +:Pset_ReinforcementBarPitchOfContinuousFooting + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Reinforcement Concrete parameter [ST-2]: The pitch length information of reinforcement bar with the continuous footing." ; + rdfs:label "Pset_ReinforcementBarPitchOfContinuousFooting" ; + IFC4-PSD:applicableClass IFC4:IfcFooting ; + IFC4-PSD:applicableTypeValue "IfcFooting" ; + IFC4-PSD:definition "Reinforcement Concrete parameter [ST-2]: The pitch length information of reinforcement bar with the continuous footing." ; + IFC4-PSD:definitionAlias ""@en , "鉄筋コンクリートパラメータ[ST-2]:布基礎の補強筋間隔情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarPitchOfContinuousFooting" ; + IFC4-PSD:propertyDef :p39d63c80d20011e1800000215ad4efdf , :p32169800d20011e1800000215ad4efdf , :p25923f80d20011e1800000215ad4efdf , :p2b882080d20011e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2b882080d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p2b882080d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias "一般的な鉄筋タイプの説明ラベル。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2b882080d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfSlab.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfSlab.ttl new file mode 100644 index 00000000..50b8021b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfSlab.ttl @@ -0,0 +1,275 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ShortInsideCenterLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :pa5200e80d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortInsideCenterLowerBarPitch . + +:p95a0c580d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long inside end lower bar." ; + rdfs:label "LongInsideEndLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the long inside end lower bar." ; + IFC4-PSD:definitionAlias ""@en , "長辺方向・柱間帯・下端端部の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "95a0c580d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongInsideEndLowerBarPitch" ; + IFC4-PSD:nameAlias "Long Inside End Lower Bar Pitch"@en , "長辺・柱列帯・下端端部ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ShortOutsideTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p6e49f880d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortOutsideTopBarPitch . + +:Description a rdf:Property ; + rdfs:seeAlso :p48245880d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:p5d998280d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long inside center top bar." ; + rdfs:label "LongInsideCenterTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the long inside center top bar." ; + IFC4-PSD:definitionAlias ""@en , "長辺方向・柱間帯・上端中央の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "5d998280d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongInsideCenterTopBarPitch" ; + IFC4-PSD:nameAlias "長辺・柱列帯・上端中央ピッチ"@ja-JP , "Long Inside Center Top Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8de12100d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long inside center lower bar." ; + rdfs:label "LongInsideCenterLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the long inside center lower bar." ; + IFC4-PSD:definitionAlias "長辺方向・柱間帯・下端中央の鉄筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8de12100d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongInsideCenterLowerBarPitch" ; + IFC4-PSD:nameAlias "Long Inside Center Lower Bar Pitch"@en , "長辺・柱列帯・下端中央ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LongInsideEndLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :p95a0c580d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongInsideEndLowerBarPitch . + +:p7dc94180d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short inside end top bar." ; + rdfs:label "ShortInsideEndTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the short inside end top bar." ; + IFC4-PSD:definitionAlias "短辺方向・柱間帯・上端端部の鉄筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7dc94180d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortInsideEndTopBarPitch" ; + IFC4-PSD:nameAlias "短辺・柱列帯・上端端部ピッチ"@ja-JP , "Short Inside End Top Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8588e600d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long outside lower bar." ; + rdfs:label "LongOutsideLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the long outside lower bar." ; + IFC4-PSD:definitionAlias ""@en , "長辺方向・柱列帯・下端の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "8588e600d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongOutsideLowerBarPitch" ; + IFC4-PSD:nameAlias "Long Outside Lower Bar Pitch"@en , "長辺・柱列帯・下端ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LongInsideCenterTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p5d998280d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongInsideCenterTopBarPitch . + +:p75710680d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short inside center top bar." ; + rdfs:label "ShortInsideCenterTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the short inside center top bar." ; + IFC4-PSD:definitionAlias ""@en , "短辺方向・柱間帯・上端中央の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "75710680d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortInsideCenterTopBarPitch" ; + IFC4-PSD:nameAlias "短辺・柱列帯・上端中央ピッチ"@ja-JP , "Short Inside Center Top Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ShortInsideCenterTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p75710680d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortInsideCenterTopBarPitch . + +:p65f1bd80d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long inside end top bar." ; + rdfs:label "LongInsideEndTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the long inside end top bar." ; + IFC4-PSD:definitionAlias "長辺方向・柱間帯・上端端部の鉄筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "65f1bd80d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongInsideEndTopBarPitch" ; + IFC4-PSD:nameAlias "長辺・柱列帯・上端端部ピッチ"@ja-JP , "Long Inside End Top Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pacdfb300d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short inside end lower bar." ; + rdfs:label "ShortInsideEndLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the short inside end lower bar." ; + IFC4-PSD:definitionAlias ""@en , "短辺方向・柱間帯・下端端部の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "acdfb300d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortInsideEndLowerBarPitch" ; + IFC4-PSD:nameAlias "Short Inside End Lower Bar Pitch"@en , "短辺・柱列帯・下端端部ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pa5200e80d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short inside center lower bar." ; + rdfs:label "ShortInsideCenterLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the short inside center lower bar." ; + IFC4-PSD:definitionAlias ""@en , "短辺方向・柱間帯・下端中央の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "a5200e80d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortInsideCenterLowerBarPitch" ; + IFC4-PSD:nameAlias "Short Inside Center Lower Bar Pitch"@en , "短辺・柱列帯・下端中央ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p55414780d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the long outside top bar." ; + rdfs:label "LongOutsideTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the long outside top bar." ; + IFC4-PSD:definitionAlias ""@en , "長辺方向・柱列帯・上端の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "55414780d20011e1800000215ad4efdf" ; + IFC4-PSD:name "LongOutsideTopBarPitch" ; + IFC4-PSD:nameAlias "Long Outside Top Bar Pitch"@en , "長辺・柱列帯・上端ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:ShortInsideEndLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :pacdfb300d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortInsideEndLowerBarPitch . + +:ShortOutsideLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :p9cc7d380d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortOutsideLowerBarPitch . + +:LongOutsideLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :p8588e600d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongOutsideLowerBarPitch . + +:p9cc7d380d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short outside lower bar." ; + rdfs:label "ShortOutsideLowerBarPitch" ; + IFC4-PSD:definition "The pitch length of the short outside lower bar." ; + IFC4-PSD:definitionAlias "短辺方向・柱列帯・下端の鉄筋間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9cc7d380d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortOutsideLowerBarPitch" ; + IFC4-PSD:nameAlias "Short Outside Lower Bar Pitch"@en , "短辺・柱列帯・下端ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_ReinforcementBarPitchOfSlab + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The pitch length information of reinforcement bar with the slab." ; + rdfs:label "Pset_ReinforcementBarPitchOfSlab" ; + IFC4-PSD:applicableClass IFC4:IfcSlab ; + IFC4-PSD:applicableTypeValue "IfcSlab" ; + IFC4-PSD:definition "The pitch length information of reinforcement bar with the slab." ; + IFC4-PSD:definitionAlias "スラブの鉄筋間隔に関する情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarPitchOfSlab" ; + IFC4-PSD:propertyDef :p7dc94180d20011e1800000215ad4efdf , :pacdfb300d20011e1800000215ad4efdf , :p75710680d20011e1800000215ad4efdf , :p8588e600d20011e1800000215ad4efdf , :p9cc7d380d20011e1800000215ad4efdf , :p65f1bd80d20011e1800000215ad4efdf , :pa5200e80d20011e1800000215ad4efdf , :p95a0c580d20011e1800000215ad4efdf , :p8de12100d20011e1800000215ad4efdf , :p6e49f880d20011e1800000215ad4efdf , :p5d998280d20011e1800000215ad4efdf , :p48245880d20011e1800000215ad4efdf , :p4eb2d000d20011e1800000215ad4efdf , :p55414780d20011e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p4eb2d000d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LongInsideCenterLowerBarPitch + a rdf:Property ; + rdfs:seeAlso :p8de12100d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongInsideCenterLowerBarPitch . + +:p48245880d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias ""@en , "鉄筋の説明。"@ja-JP ; + IFC4-PSD:ifdguid "48245880d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "説明"@ja-JP , "Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:LongOutsideTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p55414780d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongOutsideTopBarPitch . + +:ShortInsideEndTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p7dc94180d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortInsideEndTopBarPitch . + +:p4eb2d000d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias ""@en , "一般的な鉄筋タイプの説明ラベル。"@ja-JP ; + IFC4-PSD:ifdguid "4eb2d000d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p6e49f880d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the short outside top bar." ; + rdfs:label "ShortOutsideTopBarPitch" ; + IFC4-PSD:definition "The pitch length of the short outside top bar." ; + IFC4-PSD:definitionAlias ""@en , "短辺方向・柱列帯・上端の鉄筋間隔。"@ja-JP ; + IFC4-PSD:ifdguid "6e49f880d20011e1800000215ad4efdf" ; + IFC4-PSD:name "ShortOutsideTopBarPitch" ; + IFC4-PSD:nameAlias "Short Outside Top Bar Pitch"@en , "短辺・柱列帯・上端ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:LongInsideEndTopBarPitch + a rdf:Property ; + rdfs:seeAlso :p65f1bd80d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LongInsideEndTopBarPitch . diff --git a/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfWall.ttl b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfWall.ttl new file mode 100644 index 00000000..c96d4691 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ReinforcementBarPitchOfWall.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ReinforcementBarPitchOfWall + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The pitch length information of reinforcement bar with the wall." ; + rdfs:label "Pset_ReinforcementBarPitchOfWall" ; + IFC4-PSD:applicableClass IFC4:IfcWall ; + IFC4-PSD:applicableTypeValue "IfcWall" ; + IFC4-PSD:definition "The pitch length information of reinforcement bar with the wall." ; + IFC4-PSD:definitionAlias "壁における補強筋のピッチ長さ情報。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ReinforcementBarPitchOfWall" ; + IFC4-PSD:propertyDef :pde587e80d20011e1800000215ad4efdf , :pc1bc4680d20011e1800000215ad4efdf , :pc84abe00d20011e1800000215ad4efdf , :pe7495000d20011e1800000215ad4efdf , :pbbc66580d20011e1800000215ad4efdf , :pd698da00d20011e1800000215ad4efdf . + +:SpacingBarPitch a rdf:Property ; + rdfs:seeAlso :pe7495000d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpacingBarPitch . + +:Description a rdf:Property ; + rdfs:seeAlso :pbbc66580d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Description . + +:HorizontalBarPitch a rdf:Property ; + rdfs:seeAlso :pde587e80d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HorizontalBarPitch . + +:pc1bc4680d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A descriptive label for the general reinforcement type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "A descriptive label for the general reinforcement type." ; + IFC4-PSD:definitionAlias ""@en , "一般的な鉄筋タイプの説明ラベル。\n(例えば、壁の外側・内側で鉄筋間隔が異なる場合に、\"Outside\",\"Inside\"を記述する)"@ja-JP ; + IFC4-PSD:ifdguid "c1bc4680d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:VerticalBarPitch a rdf:Property ; + rdfs:seeAlso :pd698da00d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VerticalBarPitch . + +:BarAllocationType a rdf:Property ; + rdfs:seeAlso :pc84abe00d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BarAllocationType . + +:pe7495000d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the spacing bar." ; + rdfs:label "SpacingBarPitch" ; + IFC4-PSD:definition "The pitch length of the spacing bar." ; + IFC4-PSD:definitionAlias "巾止筋の間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e7495000d20011e1800000215ad4efdf" ; + IFC4-PSD:name "SpacingBarPitch" ; + IFC4-PSD:nameAlias "Spacing Bar Pitch"@en , "巾止筋ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pbbc66580d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the reinforcement." ; + rdfs:label "Description" ; + IFC4-PSD:definition "Description of the reinforcement." ; + IFC4-PSD:definitionAlias "鉄筋の説明。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bbc66580d20011e1800000215ad4efdf" ; + IFC4-PSD:name "Description" ; + IFC4-PSD:nameAlias "説明"@ja-JP , "Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:pde587e80d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the horizontal bar." ; + rdfs:label "HorizontalBarPitch" ; + IFC4-PSD:definition "The pitch length of the horizontal bar." ; + IFC4-PSD:definitionAlias ""@en , "水平方向の補強筋の間隔。"@ja-JP ; + IFC4-PSD:ifdguid "de587e80d20011e1800000215ad4efdf" ; + IFC4-PSD:name "HorizontalBarPitch" ; + IFC4-PSD:nameAlias "Horizontal Bar Pitch"@en , "横筋ピッチ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pc1bc4680d20011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd698da00d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pitch length of the vertical bar." ; + rdfs:label "VerticalBarPitch" ; + IFC4-PSD:definition "The pitch length of the vertical bar." ; + IFC4-PSD:definitionAlias "鉛直方向の補強筋の間隔。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d698da00d20011e1800000215ad4efdf" ; + IFC4-PSD:name "VerticalBarPitch" ; + IFC4-PSD:nameAlias "縦筋ピッチ"@ja-JP , "Vertical Bar Pitch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pc84abe00d20011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the type of the reinforcement bar allocation." ; + rdfs:label "BarAllocationType" ; + IFC4-PSD:definition "Defines the type of the reinforcement bar allocation." ; + IFC4-PSD:definitionAlias "配筋タイプの定義。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c84abe00d20011e1800000215ad4efdf" ; + IFC4-PSD:name "BarAllocationType" ; + IFC4-PSD:nameAlias "配筋タイプ"@ja-JP , "Bar Allocation Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SINGLE" , "DOUBLE" , "ALTERNATE" , "OTHER" , "USERDEFINED" , "NOTDEFINED" + ] . diff --git a/converter/src/main/resources/pset/Pset_Risk.ttl b/converter/src/main/resources/pset/Pset_Risk.ttl new file mode 100644 index 00000000..ac6a0a3e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_Risk.ttl @@ -0,0 +1,211 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p88d0a180d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies preventive measures to be taken to mitigate risk." ; + rdfs:label "PreventiveMeassures" ; + IFC4-PSD:definition "Identifies preventive measures to be taken to mitigate risk." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "88d0a180d20111e1800000215ad4efdf" ; + IFC4-PSD:name "PreventiveMeassures" ; + IFC4-PSD:nameAlias "Preventive Meassures"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:PreventiveMeassures a rdf:Property ; + rdfs:seeAlso :p88d0a180d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PreventiveMeassures . + +:p0516b500d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of risk from which the type required may be set." ; + rdfs:label "RiskType" ; + IFC4-PSD:definition "Identifies the predefined types of risk from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0516b500d20111e1800000215ad4efdf" ; + IFC4-PSD:name "RiskType" ; + IFC4-PSD:nameAlias "Risk Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BUSINESS" , "HAZARD" , "HEALTHANDSAFETY" , "INSURANCE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p44dd9c80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the level of severity of the consequences that the risk would have in case it happens." ; + rdfs:label "RiskConsequence" ; + IFC4-PSD:definition "Indicates the level of severity of the consequences that the risk would have in case it happens." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "44dd9c80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "RiskConsequence" ; + IFC4-PSD:nameAlias "Risk Consequence"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CATASTROPHIC" , "SOME" , "MINOR" , "UNSET" , "VERYLOW" , "INSIGNIFICANT" , "OTHER" , "NOTKNOWN" , "SEVERE" , "MODERATE" , "MAJOR" , "CONSIDERABLE" + ] . + +:p5aeb5d00d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A general rating of the risk that may be determined from a combination of the risk assessment and risk consequence." ; + rdfs:label "RiskRating" ; + IFC4-PSD:definition "A general rating of the risk that may be determined from a combination of the risk assessment and risk consequence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5aeb5d00d20111e1800000215ad4efdf" ; + IFC4-PSD:name "RiskRating" ; + IFC4-PSD:nameAlias "Risk Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OTHER" , "LOW" , "SOME" , "CRITICAL" , "NOTKNOWN" , "VERYHIGH" , "INSIGNIFICANT" , "HIGH" , "MODERATE" , "VERYLOW" , "CONSIDERABLE" , "UNSET" + ] . + +:p81a99380d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates wether the risk affects only to the person assigned to that task (FALSE) or if it can also affect to the people in the surroundings (TRUE).\n\nFor example, the process of painting would affect all the people in the vicinity of the process." ; + rdfs:label "AffectsSurroundings" ; + IFC4-PSD:definition "Indicates wether the risk affects only to the person assigned to that task (FALSE) or if it can also affect to the people in the surroundings (TRUE).\n\nFor example, the process of painting would affect all the people in the vicinity of the process." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "81a99380d20111e1800000215ad4efdf" ; + IFC4-PSD:name "AffectsSurroundings" ; + IFC4-PSD:nameAlias "Affects Surroundings"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p1bbd0c00d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A first subsidiary value that might be assigned to designate a more specific type of risk.\n\nNOTE: Nature of risk may be identified in various ways depending upon the place where risk assessment takes place and according to local agreement. This property set allows for a generic nature of risk and up to two subsidiary natures. An example might be 'causing injury and damage'." ; + rdfs:label "SubNatureOfRisk1" ; + IFC4-PSD:definition "A first subsidiary value that might be assigned to designate a more specific type of risk.\n\nNOTE: Nature of risk may be identified in various ways depending upon the place where risk assessment takes place and according to local agreement. This property set allows for a generic nature of risk and up to two subsidiary natures. An example might be 'causing injury and damage'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1bbd0c00d20111e1800000215ad4efdf" ; + IFC4-PSD:name "SubNatureOfRisk1" ; + IFC4-PSD:nameAlias "Sub Nature Of Risk1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p1495fe00d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication of the generic nature of the risk that might be encountered. \n\nNOTE: It is anticipated that there will be a local agreement that constrains the values that might be assigned to this property. An example might be 'Fall' or 'Fall of grille unit' causing injury and damage to person and property." ; + rdfs:label "NatureOfRisk" ; + IFC4-PSD:definition "An indication of the generic nature of the risk that might be encountered. \n\nNOTE: It is anticipated that there will be a local agreement that constrains the values that might be assigned to this property. An example might be 'Fall' or 'Fall of grille unit' causing injury and damage to person and property." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1495fe00d20111e1800000215ad4efdf" ; + IFC4-PSD:name "NatureOfRisk" ; + IFC4-PSD:nameAlias "Nature Of Risk"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:RiskType a rdf:Property ; + rdfs:seeAlso :p0516b500d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiskType . + +:NatureOfRisk a rdf:Property ; + rdfs:seeAlso :p1495fe00d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NatureOfRisk . + +:AssessmentOfRisk a rdf:Property ; + rdfs:seeAlso :p30010900d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AssessmentOfRisk . + +:p29729180d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A value that may be assigned to capture the cause or trigger for the risk. An example might be 'poor fixing'." ; + rdfs:label "RiskCause" ; + IFC4-PSD:definition "A value that may be assigned to capture the cause or trigger for the risk. An example might be 'poor fixing'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "29729180d20111e1800000215ad4efdf" ; + IFC4-PSD:name "RiskCause" ; + IFC4-PSD:nameAlias "Risk Cause"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:RiskOwner a rdf:Property ; + rdfs:seeAlso :p7191b400d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiskOwner . + +:RiskCause a rdf:Property ; + rdfs:seeAlso :p29729180d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiskCause . + +:RiskConsequence a rdf:Property ; + rdfs:seeAlso :p44dd9c80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiskConsequence . + +:p7191b400d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A determination of who is the owner of the risk by reference to principal roles of organizations within a project. Determination of the specific organization should be by reference to instances of IfcActorRole assigned to instances of IfcOrganization (if assigned)." ; + rdfs:label "RiskOwner" ; + IFC4-PSD:definition "A determination of who is the owner of the risk by reference to principal roles of organizations within a project. Determination of the specific organization should be by reference to instances of IfcActorRole assigned to instances of IfcOrganization (if assigned)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "7191b400d20111e1800000215ad4efdf" ; + IFC4-PSD:name "RiskOwner" ; + IFC4-PSD:nameAlias "Risk Owner"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DESIGNER" , "SPECIFIER" , "CONSTRUCTOR" , "INSTALLER" , "MAINTAINER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p30010900d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Likelihood of risk event occurring.\n\nNote that assessment of risk may frequently be associated with the physical location of the object for which the risk is assessed." ; + rdfs:label "AssessmentOfRisk" ; + IFC4-PSD:definition "Likelihood of risk event occurring.\n\nNote that assessment of risk may frequently be associated with the physical location of the object for which the risk is assessed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "30010900d20111e1800000215ad4efdf" ; + IFC4-PSD:name "AssessmentOfRisk" ; + IFC4-PSD:nameAlias "Assessment Of Risk"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "VERYPOSSIBLE" , "LIKELY" , "VERYLIKELY" , "VERYUNLIKELY" , "UNSET" , "NOTKNOWN" , "RARE" , "SOMEWHATPOSSIBLE" , "POSSIBLE" , "UNLIKELY" , "ALMOSTCERTAIN" , "OTHER" + ] . + +:SubNatureOfRisk2 a rdf:Property ; + rdfs:seeAlso :p224b8380d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SubNatureOfRisk2 . + +:RiskRating a rdf:Property ; + rdfs:seeAlso :p5aeb5d00d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiskRating . + +:p224b8380d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A second subsidiary value that might be assigned to designate a more specific type of risk. An example might be 'o person and property'." ; + rdfs:label "SubNatureOfRisk2" ; + IFC4-PSD:definition "A second subsidiary value that might be assigned to designate a more specific type of risk. An example might be 'o person and property'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "224b8380d20111e1800000215ad4efdf" ; + IFC4-PSD:name "SubNatureOfRisk2" ; + IFC4-PSD:nameAlias "Sub Nature Of Risk2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_Risk a IFC4-PSD:PropertySetDef ; + rdfs:comment "An indication of exposure to mischance, peril, menace, hazard or loss. \n\nHISTORY: Extended in IFC2x3\n\nThere are various types of risk that may be encountered and there may be several instances of Pset_Risk associated in an instance of an IfcProcess.\nSpecification of this property set incorporates the values of the Incom risk analysis matrix (satisfying AS/NZS 4360) together with additional identified requirements." ; + rdfs:label "Pset_Risk" ; + IFC4-PSD:applicableClass IFC4:IfcProcess ; + IFC4-PSD:applicableTypeValue "IfcProcess" ; + IFC4-PSD:definition "An indication of exposure to mischance, peril, menace, hazard or loss. \n\nHISTORY: Extended in IFC2x3\n\nThere are various types of risk that may be encountered and there may be several instances of Pset_Risk associated in an instance of an IfcProcess.\nSpecification of this property set incorporates the values of the Incom risk analysis matrix (satisfying AS/NZS 4360) together with additional identified requirements." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_Risk" ; + IFC4-PSD:propertyDef :p44dd9c80d20111e1800000215ad4efdf , :p224b8380d20111e1800000215ad4efdf , :p5aeb5d00d20111e1800000215ad4efdf , :p7191b400d20111e1800000215ad4efdf , :p29729180d20111e1800000215ad4efdf , :p88d0a180d20111e1800000215ad4efdf , :p1bbd0c00d20111e1800000215ad4efdf , :p0516b500d20111e1800000215ad4efdf , :p30010900d20111e1800000215ad4efdf , :p81a99380d20111e1800000215ad4efdf , :p1495fe00d20111e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AffectsSurroundings a rdf:Property ; + rdfs:seeAlso :p81a99380d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AffectsSurroundings . + +:SubNatureOfRisk1 a rdf:Property ; + rdfs:seeAlso :p1bbd0c00d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SubNatureOfRisk1 . diff --git a/converter/src/main/resources/pset/Pset_RoofCommon.ttl b/converter/src/main/resources/pset/Pset_RoofCommon.ttl index 0003b4c6..a3da00a4 100644 --- a/converter/src/main/resources/pset/Pset_RoofCommon.ttl +++ b/converter/src/main/resources/pset/Pset_RoofCommon.ttl @@ -1,154 +1,138 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_RoofCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_RoofCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcRoof" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcRoof. Note: Properties for ProjectedArea and TotalArea added in IFC 2x3" ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcRoof. Nota : les propriétés SurfaceProjection et SurfaceTotale ont été introduites depuis la version 2x3."@fr-FR ; - IFC4-PSD:definitionAlias """IfcRoof(屋根)オブジェクトに関する共通プロパティセット定義。 -注:建築面積と延床面積のプロパティは、IFC2x3から追加された。"""@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcRoof实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_RoofCommon" ; - IFC4-PSD:propertyDef :_984fea80d20111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_9e45cb80d20111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_adc51480d20111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b584b900d20111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_bd445d80d20111e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c46b6b80d20111e1800000215ad4efdf ; -. -:_984fea80d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "984fea80d20111e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_9e45cb80d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "9e45cb80d20111e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_adc51480d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "adc51480d20111e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "Isolation acoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_b584b900d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準によって指定される。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "b584b900d20111e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_bd445d80d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "bd445d80d20111e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_c46b6b80d20111e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -Here the total thermal transmittance coefficient through the roof surface (including all materials).""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la surface de la couverture (tous matériaux inclus)."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Dachkonstruktion (für alle Schichten)."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示穿过该屋顶表面的整体导热系数(包括所有材料)"""@zh-CN ; - IFC4-PSD:definitionAlias """熱貫流率(U値)。 -ここでは(すべての材料を含む)屋根面を通した全体の熱還流率を示す。"""@ja-JP ; - IFC4-PSD:ifdguid "c46b6b80d20111e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p87a90f614ea44ebea4d7523924d88911 + a IFC4-PSD:PropertyDef ; + rdfs:label "LoadBearing" ; + IFC4-PSD:ifdguid "87a90f614ea44ebea4d7523924d88911" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p984fea80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_RoofCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcRoof. Note: Properties for ProjectedArea and TotalArea added in IFC 2x3" ; + rdfs:label "Pset_RoofCommon" ; + IFC4-PSD:applicableClass IFC4:IfcRoof ; + IFC4-PSD:applicableTypeValue "IfcRoof" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcRoof. Note: Properties for ProjectedArea and TotalArea added in IFC 2x3" ; + IFC4-PSD:definitionAlias "IfcRoof(屋根)オブジェクトに関する共通プロパティセット定義。\n注:建築面積と延床面積のプロパティは、IFC2x3から追加された。"@ja-JP , "所有IfcRoof实例的定义中通用的属性。"@zh-CN , ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcRoof. Nota : les propriétés SurfaceProjection et SurfaceTotale ont été introduites depuis la version 2x3."@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_RoofCommon" ; + IFC4-PSD:propertyDef :p87a90f614ea44ebea4d7523924d88911 , :pbd445d80d20111e1800000215ad4efdf , :p9e45cb80d20111e1800000215ad4efdf , :pc46b6b80d20111e1800000215ad4efdf , :pb584b900d20111e1800000215ad4efdf , :padc51480d20111e1800000215ad4efdf , :p984fea80d20111e1800000215ad4efdf . + +:pc46b6b80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the roof surface (including all materials)." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the roof surface (including all materials)." ; + IFC4-PSD:definitionAlias "材料的导热系数(U值)。\n表示穿过该屋顶表面的整体导热系数(包括所有材料)"@zh-CN , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Dachkonstruktion (für alle Schichten)."@de-DE , ""@en , "熱貫流率(U値)。\nここでは(すべての材料を含む)屋根面を通した全体の熱還流率を示す。"@ja-JP , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la surface de la couverture (tous matériaux inclus)."@fr-FR ; + IFC4-PSD:ifdguid "c46b6b80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR , "熱貫流率"@ja-JP , "导热系数"@zh-CN , "U-Wert"@de-DE , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:p984fea80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "984fea80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参考号"@zh-CN , "Bauteiltyp"@de-DE , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :padc51480d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p87a90f614ea44ebea4d7523924d88911 ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:p9e45cb80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; + IFC4-PSD:ifdguid "9e45cb80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en , "Status"@de-DE , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:padc51480d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias ""@en , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , "遮音等級情報。関連する建築基準法を参照。"@ja-JP , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; + IFC4-PSD:ifdguid "adc51480d20111e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "Acoustic Rating"@en , "Isolation acoustique"@fr-FR , "Schallschutzklasse"@de-DE , "遮音等級"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pc46b6b80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pbd445d80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:FireRating a rdf:Property ; + rdfs:seeAlso :pb584b900d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:pb584b900d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object. It is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "主要な耐火等級。関連する建築基準法、消防法などの国家基準によって指定される。"@ja-JP ; + IFC4-PSD:ifdguid "b584b900d20111e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR , "耐火等級"@ja-JP , "Fire Rating"@en , "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pbd445d80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "bd445d80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Außenbauteil"@de-DE , "是否外部构件"@zh-CN , "Is External"@en , "外部区分"@ja-JP , "EstExterieur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p9e45cb80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBath.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBath.ttl new file mode 100644 index 00000000..5f86c6ea --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBath.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p0f857e80d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "排水口の接続のサイズ。"@ja-JP ; + IFC4-PSD:ifdguid "0f857e80d20211e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "ドレインサイズ"@ja-JP , "Drain Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :p0f857e80d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . + +:BathType a rdf:Property ; + rdfs:seeAlso :pd0572d80d20111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BathType . + +:Pset_SanitaryTerminalTypeBath + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Sanitary appliance for immersion of the human body or parts of it (BS6100). HISTORY: In IFC4, Material and MaterialThickness properties removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)" ; + rdfs:label "Pset_SanitaryTerminalTypeBath" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/BATH" ; + IFC4-PSD:definition "Sanitary appliance for immersion of the human body or parts of it (BS6100). HISTORY: In IFC4, Material and MaterialThickness properties removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)" ; + IFC4-PSD:definitionAlias "人体の全体かその一部を浸す衛生器具(BS6100)。履歴:IFC4では材料および材料厚さ属性削除。使用材料の機能は IfcMaterialsResourceスキーマを使用。色のデータ型は、(まだ文字列値)IfcLabelに変更。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeBath" ; + IFC4-PSD:propertyDef :pd0572d80d20111e1800000215ad4efdf , :p17452300d20211e1800000215ad4efdf , :p0f857e80d20211e1800000215ad4efdf . + +:p17452300d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the bath is fitted with handles that provide assistance to a bather in entering or leaving the bath." ; + rdfs:label "HasGrabHandles" ; + IFC4-PSD:definition "Indicates whether the bath is fitted with handles that provide assistance to a bather in entering or leaving the bath." ; + IFC4-PSD:definitionAlias ""@en , "風呂の出入りを補助する手すりが取り付けられているかどうかを示す。"@ja-JP ; + IFC4-PSD:ifdguid "17452300d20211e1800000215ad4efdf" ; + IFC4-PSD:name "HasGrabHandles" ; + IFC4-PSD:nameAlias "Has Grab Handles"@en , "手すりの有無"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasGrabHandles a rdf:Property ; + rdfs:seeAlso :p17452300d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasGrabHandles . + +:pd0572d80d20111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The property enumeration defines the types of bath that may be specified within the property set." ; + rdfs:label "BathType" ; + IFC4-PSD:definition "The property enumeration defines the types of bath that may be specified within the property set." ; + IFC4-PSD:definitionAlias "列挙するプロパティは、プロパティセット内で指定することができるバスの種類の定義:\n\n家庭用:全身を簡単に浸漬することができる一度に1人の人間が入るバス。\n\n家庭用Corner:浸漬トラフが傾いていて、全身を簡単に浸漬することができる一度に1人の人間が入るバス。\n\nフットバス:足を洗う浅いバス。\n\nジャグジー:複数の人のための渦のバス\n\nプランジバス:通常は全身を簡単に浸漬することができまる一度に複数の人の入るバス。\n\n座バス:水浴を椅子のように座って行うバス。\n\n治療バス:水浴セラピーの目的に使用されるバス。\n\n渦バス:ポンプによる水の循環や、水や空気の誘引により水を攪拌する統合された装置としてのバス。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d0572d80d20111e1800000215ad4efdf" ; + IFC4-PSD:name "BathType" ; + IFC4-PSD:nameAlias "Bath Type"@en , "バスタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FOOT" , "POOL" , "SITZ" , "DOMESTIC" , "UNSET" , "SPA" , "OTHER" , "NOTKNOWN" , "PLUNGE" , "TREATMENT" + ] . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBidet.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBidet.ttl new file mode 100644 index 00000000..7b6bf770 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeBidet.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Mounting a rdf:Property ; + rdfs:seeAlso :p23c97b80d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mounting . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SanitaryTerminalTypeBidet + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Waste water appliance for washing the excretory organs while sitting astride the bowl (BS6100). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value). BidetMounting changed to Mounting." ; + rdfs:label "Pset_SanitaryTerminalTypeBidet" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/BIDET" ; + IFC4-PSD:definition "Waste water appliance for washing the excretory organs while sitting astride the bowl (BS6100). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value). BidetMounting changed to Mounting." ; + IFC4-PSD:definitionAlias "ボウル(BS6100)にまたがって座って排泄器官を洗浄するための排水器具を設定します。履歴:IFC4では、材料のプロパティが削除されます。 \n使用材料の機能は IfcMaterialsResourceスキーマを使用。\n色のデータ型は、IfcLabel(まだ文字列値)に変更。BidetMountingをMountingに変更。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeBidet" ; + IFC4-PSD:propertyDef :p23c97b80d20211e1800000215ad4efdf , :p5bd0be80d20211e1800000215ad4efdf , :p53788380d20211e1800000215ad4efdf . + +:p53788380d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The level at which water spills out of the object." ; + rdfs:label "SpilloverLevel" ; + IFC4-PSD:definition "The level at which water spills out of the object." ; + IFC4-PSD:definitionAlias ""@en , "水がこぼれるレベル。"@ja-JP ; + IFC4-PSD:ifdguid "53788380d20211e1800000215ad4efdf" ; + IFC4-PSD:name "SpilloverLevel" ; + IFC4-PSD:nameAlias "流出レベル"@ja-JP , "Spillover Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p5bd0be80d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "排水口の接続のサイズ。"@ja-JP ; + IFC4-PSD:ifdguid "5bd0be80d20211e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "Drain Size"@en , "ドレインサイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SpilloverLevel a rdf:Property ; + rdfs:seeAlso :p53788380d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpilloverLevel . + +:p23c97b80d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC’s, basins, sinks, etc.) where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections\n.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\n.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor.\n\nNote that BackToWall, Pedestal and WallHung are allowable values for a bidet." ; + rdfs:label "Mounting" ; + IFC4-PSD:definition "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC’s, basins, sinks, etc.) where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections\n.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\n.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor.\n\nNote that BackToWall, Pedestal and WallHung are allowable values for a bidet." ; + IFC4-PSD:definitionAlias "列挙するプロパティはPset_SanitaryMountingEnumでは(トイレの、洗面台、シンクなど)、衛生配管への装着法で定義される:\n\n床置き壁排水:台座は、カバーの背面の壁にあるフラッシュバルブに接続される。\n\n床置き:床の衛生配管に装着される。\n\nカウンター:水平面に設置された衛生配管に接続します。注:手洗器があると、通常は'化粧'が使用される。手洗器を参照。\n\n壁掛け:衛生配管は壁から出され床には何もなくなる。。\n\n床置き壁排水、床置き、壁掛けは、ビデの許容値であることに注意。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "23c97b80d20211e1800000215ad4efdf" ; + IFC4-PSD:name "Mounting" ; + IFC4-PSD:nameAlias "装着"@ja-JP , "Mounting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :p5bd0be80d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCistern.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCistern.ttl new file mode 100644 index 00000000..ad09ab42 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCistern.ttl @@ -0,0 +1,127 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:IsAutomaticFlush a rdf:Property ; + rdfs:seeAlso :p9cc8d300d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsAutomaticFlush . + +:CisternCapacity a rdf:Property ; + rdfs:seeAlso :p786cf680d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CisternCapacity . + +:IsSingleFlush a rdf:Property ; + rdfs:seeAlso :p7dca4100d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSingleFlush . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SanitaryTerminalTypeCistern + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A water storage unit attached to a sanitary terminal that is fitted with a device, operated automatically or by the user, that discharges water to cleanse a water closet (toilet) pan, urinal or slop hopper. (BS6100 330 5008)" ; + rdfs:label "Pset_SanitaryTerminalTypeCistern" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/CISTERN" ; + IFC4-PSD:definition "A water storage unit attached to a sanitary terminal that is fitted with a device, operated automatically or by the user, that discharges water to cleanse a water closet (toilet) pan, urinal or slop hopper. (BS6100 330 5008)" ; + IFC4-PSD:definitionAlias ""@en , "衛生配管に接続されている貯水装置で、自動または手動により、大便器(トイレ)パン、小便器や汚物ホッパーなどを排水により洗浄する。 (BS61003305008)"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeCistern" ; + IFC4-PSD:propertyDef :p95a1c500d20211e1800000215ad4efdf , :p9cc8d300d20211e1800000215ad4efdf , :p786cf680d20211e1800000215ad4efdf , :p84f14f00d20211e1800000215ad4efdf , :p7dca4100d20211e1800000215ad4efdf , :p6a1eda80d20211e1800000215ad4efdf . + +:p786cf680d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Volumetric capacity of the cistern" ; + rdfs:label "CisternCapacity" ; + IFC4-PSD:definition "Volumetric capacity of the cistern" ; + IFC4-PSD:definitionAlias ""@en , "貯水タンクの体積容量。"@ja-JP ; + IFC4-PSD:ifdguid "786cf680d20211e1800000215ad4efdf" ; + IFC4-PSD:name "CisternCapacity" ; + IFC4-PSD:nameAlias "Cistern Capacity"@en , "貯水タンク容量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:FlushRate a rdf:Property ; + rdfs:seeAlso :p95a1c500d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlushRate . + +:p9cc8d300d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Boolean value that determines if the cistern is flushed automatically either after each use or periodically (TRUE) or whether manual flushing is required (FALSE)." ; + rdfs:label "IsAutomaticFlush" ; + IFC4-PSD:definition "Boolean value that determines if the cistern is flushed automatically either after each use or periodically (TRUE) or whether manual flushing is required (FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "貯水タンクは、使用後に自動的または定期的に洗浄する場合(TRUE)、手動で洗浄する場合(FALSE)をブーリアン値で指定する。"@ja-JP ; + IFC4-PSD:ifdguid "9cc8d300d20211e1800000215ad4efdf" ; + IFC4-PSD:name "IsAutomaticFlush" ; + IFC4-PSD:nameAlias "Is Automatic Flush"@en , "自動フラッシュか"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7dca4100d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the cistern is single flush = TRUE (i.e. the same amount of water is used for each and every flush) or dual flush = FALSE (i.e. the amount of water used for a flush may be selected by the user to be high or low depending on the waste material to be removed)." ; + rdfs:label "IsSingleFlush" ; + IFC4-PSD:definition "Indicates whether the cistern is single flush = TRUE (i.e. the same amount of water is used for each and every flush) or dual flush = FALSE (i.e. the amount of water used for a flush may be selected by the user to be high or low depending on the waste material to be removed)." ; + IFC4-PSD:definitionAlias ""@en , "単一フラッシュ= TRUE(各洗浄に同量の水が使用される)、デュアルフラッシュ= FALSE(洗浄する汚物に応じてハイまたはローをユーザが選択することができるフラッシュ使用)の指標を設定する。"@ja-JP ; + IFC4-PSD:ifdguid "7dca4100d20211e1800000215ad4efdf" ; + IFC4-PSD:name "IsSingleFlush" ; + IFC4-PSD:nameAlias "Is Single Flush"@en , "単一のフラッシュ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p95a1c500d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The minimum and maximum volume of water used at each flush. Where a single flush is used, the value of upper bound and lower bound should be equal. For a dual flush toilet, the lower bound should be used for the lesser flush rate and the upper bound for the greater flush rate. Where flush is achieved using mains pressure water through a flush valve, the value of upper and lower bound should be equal and should be the same as the flush rate property of the flush valve (see relevant valve property set). Alternatively, in this case, do not assert the flush rate property; refer to the flush rate of the flush valve." ; + rdfs:label "FlushRate" ; + IFC4-PSD:definition "The minimum and maximum volume of water used at each flush. Where a single flush is used, the value of upper bound and lower bound should be equal. For a dual flush toilet, the lower bound should be used for the lesser flush rate and the upper bound for the greater flush rate. Where flush is achieved using mains pressure water through a flush valve, the value of upper and lower bound should be equal and should be the same as the flush rate property of the flush valve (see relevant valve property set). Alternatively, in this case, do not assert the flush rate property; refer to the flush rate of the flush valve." ; + IFC4-PSD:definitionAlias ""@en , "各フラッシュで使用される水量の最小値と最大値。単一フラッシュが使用されている場合、上下限値は同じ。デュアルフラッシュトイレについては、下限が低いフラッシュレート、上限に大きいフラッシュ率を使用する。ここで、洗浄はフラッシュバルブを通した水の水圧を用いて達成されるので、フラッシュレートとフラッシュバルブの上下限値と等しくなければなりません(関連バルブプロパティセットを参照してください)。また、この場合には、フラッシュレートのプロパティを設定しない。フラッシュバルブのフラッシュレートを参照。"@ja-JP ; + IFC4-PSD:ifdguid "95a1c500d20211e1800000215ad4efdf" ; + IFC4-PSD:name "FlushRate" ; + IFC4-PSD:nameAlias "Flush Rate"@en , "フラッシュレート"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:p84f14f00d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The property enumeration Pset_FlushTypeEnum defines the types of flushing mechanism that may be specified for cisterns and sanitary terminals where:-\n\nLever: \tFlushing is achieved by twisting a lever that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nPull: \tFlushing is achieved by pulling a handle or knob vertically upwards that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nPush: \tFlushing is achieved by pushing a button or plate that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nSensor: Flush is activated through an automatic sensing mechanism." ; + rdfs:label "FlushType" ; + IFC4-PSD:definition "The property enumeration Pset_FlushTypeEnum defines the types of flushing mechanism that may be specified for cisterns and sanitary terminals where:-\n\nLever: \tFlushing is achieved by twisting a lever that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nPull: \tFlushing is achieved by pulling a handle or knob vertically upwards that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nPush: \tFlushing is achieved by pushing a button or plate that causes a predetermined flow of water to be passed from a cistern to the sanitary terminal.\nSensor: Flush is activated through an automatic sensing mechanism." ; + IFC4-PSD:definitionAlias "列挙するプロパティはPset_FlushTypeEnumでは貯水槽や衛生配管の配置による、フラッシュメカニズムのタイプを定義する:\n\nレバー式:洗浄水は、レバーをねじることによって貯水タンクから衛生配管にの所定の流量を流す。\n\n引っ張り式:洗浄水は、ハンドルまたはノブを垂直方向に引くことによって貯水タンクから衛生配管にの所定の流量を流す。\n\n押しボタン式:洗浄水は、ボタンかプレートを押すことによって貯水タンクから衛生配管にの所定の流量を流す。\n\nセンサー式:洗浄水は、自動検出機構を介して作動する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "84f14f00d20211e1800000215ad4efdf" ; + IFC4-PSD:name "FlushType" ; + IFC4-PSD:nameAlias "Flush Type"@en , "タイプフラッシュ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LEVER" , "PULL" , "PUSH" , "SENSOR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FlushType a rdf:Property ; + rdfs:seeAlso :p84f14f00d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlushType . + +:CisternHeight a rdf:Property ; + rdfs:seeAlso :p6a1eda80d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CisternHeight . + +:p6a1eda80d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the height of the cistern or, if set to 'None' if the urinal has no cistern and is flushed using mains or high pressure water through a flushing valve." ; + rdfs:label "CisternHeight" ; + IFC4-PSD:definition "Enumeration that identifies the height of the cistern or, if set to 'None' if the urinal has no cistern and is flushed using mains or high pressure water through a flushing valve." ; + IFC4-PSD:definitionAlias "貯水タンクの高さを示す。小便器がフラッシュバルブを使い貯水タンクを持っていない場合は'None'に設定される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6a1eda80d20211e1800000215ad4efdf" ; + IFC4-PSD:name "CisternHeight" ; + IFC4-PSD:nameAlias "貯水タンクの高さ"@ja-JP , "Cistern Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HIGHLEVEL" , "LOWLEVEL" , "NONE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCommon.ttl new file mode 100644 index 00000000..caf1960d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeCommon.ttl @@ -0,0 +1,115 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1b1c71bc34194116982bbacb563822d6 + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "1b1c71bc34194116982bbacb563822d6" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :paeaa7600d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Color a rdf:Property ; + rdfs:seeAlso :p93112095298e44d29aea7995d82eb202 ; + rdfs:subPropertyOf IFC4-PSD:Color . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :p6cf48d3d336e4eb0acdf9bdf68db0d60 ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . + +:p36bde0df4e7b4ff4a9b7b5191c5e82f7 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length of the object." ; + rdfs:label "NominalLength" ; + IFC4-PSD:definition "Nominal or quoted length of the object." ; + IFC4-PSD:ifdguid "36bde0df4e7b4ff4a9b7b5191c5e82f7" ; + IFC4-PSD:name "NominalLength" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p1b1c71bc34194116982bbacb563822d6 ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:NominalDepth a rdf:Property ; + rdfs:seeAlso :pbb516e7b73f84dcd85b953f3b61f0f22 ; + rdfs:subPropertyOf IFC4-PSD:NominalDepth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pbb516e7b73f84dcd85b953f3b61f0f22 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted depth of the object." ; + rdfs:label "NominalDepth" ; + IFC4-PSD:definition "Nominal or quoted depth of the object." ; + IFC4-PSD:ifdguid "bb516e7b73f84dcd85b953f3b61f0f22" ; + IFC4-PSD:name "NominalDepth" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:paeaa7600d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "使用される認識分類システムで分類基準がない場合、プロジェクトで指定された型(タイプ'A-1'など)で提供されるレファレンスID。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "aeaa7600d20211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_SanitaryTerminalTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for sanitary terminals." ; + rdfs:label "Pset_SanitaryTerminalTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSanitaryTerminal ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal" ; + IFC4-PSD:definition "Common properties for sanitary terminals." ; + IFC4-PSD:definitionAlias "衛生器具の共通プロパティを設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeCommon" ; + IFC4-PSD:propertyDef :p1b1c71bc34194116982bbacb563822d6 , :p6cf48d3d336e4eb0acdf9bdf68db0d60 , :p93112095298e44d29aea7995d82eb202 , :paeaa7600d20211e1800000215ad4efdf , :p36bde0df4e7b4ff4a9b7b5191c5e82f7 , :pbb516e7b73f84dcd85b953f3b61f0f22 . + +:p93112095298e44d29aea7995d82eb202 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Color selection for this object." ; + rdfs:label "Color" ; + IFC4-PSD:definition "Color selection for this object." ; + IFC4-PSD:ifdguid "93112095298e44d29aea7995d82eb202" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:NominalLength a rdf:Property ; + rdfs:seeAlso :p36bde0df4e7b4ff4a9b7b5191c5e82f7 ; + rdfs:subPropertyOf IFC4-PSD:NominalLength . + +:p6cf48d3d336e4eb0acdf9bdf68db0d60 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted width of the object." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "Nominal or quoted width of the object." ; + IFC4-PSD:ifdguid "6cf48d3d336e4eb0acdf9bdf68db0d60" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSanitaryFountain.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSanitaryFountain.ttl new file mode 100644 index 00000000..dbd538b9 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSanitaryFountain.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc7b32700d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the form of mounting of the fountain from the enumerated list of mountings where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\n.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + rdfs:label "Mounting" ; + IFC4-PSD:definition "Selection of the form of mounting of the fountain from the enumerated list of mountings where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\n.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + IFC4-PSD:definitionAlias "設置場所の選択:\n\n・床置き壁排出:接続口の後部に出水口を合わせること。\n・台:床置きの衛生器具には基礎があること。\n・調理台:衛生器具の表層が水平に設置されていること。※手洗い台として設置された場合「化粧台」として扱うこと。また、洗面台種類の規格表を参照のこと。\n・壁掛け型:衛生器具は片側固定がされ床から離れていること。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c7b32700d20211e1800000215ad4efdf" ; + IFC4-PSD:name "Mounting" ; + IFC4-PSD:nameAlias "Mounting"@en , "設置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SanitaryTerminalTypeSanitaryFountain + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Asanitary terminal that provides a low pressure jet of water for a specific purpose (IAI). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)." ; + rdfs:label "Pset_SanitaryTerminalTypeSanitaryFountain" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/SANITARYFOUNTAIN" ; + IFC4-PSD:definition "Asanitary terminal that provides a low pressure jet of water for a specific purpose (IAI). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)." ; + IFC4-PSD:definitionAlias "特定の使用用途の水を低圧で供給する衛生機器\n背景:IFC4で、要素のプロパティーは排除されています。IfcMaterialsResourceのタイプを使ってください。\n色のデータ形式は文字列としてIfcLabelに変更されています。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeSanitaryFountain" ; + IFC4-PSD:propertyDef :pbb2ece80d20211e1800000215ad4efdf , :pc7b32700d20211e1800000215ad4efdf , :pf8935c00d20211e1800000215ad4efdf . + +:FountainType a rdf:Property ; + rdfs:seeAlso :pbb2ece80d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FountainType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf8935c00d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素から排水溝への下水管サイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f8935c00d20211e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "下水管サイズ"@ja-JP , "Drain Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :pf8935c00d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . + +:pbb2ece80d20211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the type of fountain from the enumerated list of types where:-\n\nDrinkingWater: \tSanitary appliance that provides a low pressure jet of drinking water.\nEyewash: \tWaste water appliance, usually installed in work places where there is a risk of injury to eyes by solid particles or dangerous liquids, with which the user can wash the eyes without touching them." ; + rdfs:label "FountainType" ; + IFC4-PSD:definition "Selection of the type of fountain from the enumerated list of types where:-\n\nDrinkingWater: \tSanitary appliance that provides a low pressure jet of drinking water.\nEyewash: \tWaste water appliance, usually installed in work places where there is a risk of injury to eyes by solid particles or dangerous liquids, with which the user can wash the eyes without touching them." ; + IFC4-PSD:definitionAlias "噴水タイプの選択:\n\n・飲用水:飲用水を低圧で供給するための衛生器具\n・洗眼器:廃水器具で、通常は個体の粒子か危険な液体による眼への障害の危険がある作業場所に設置され、使用者はそれらに触れずに目を洗うことができる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bb2ece80d20211e1800000215ad4efdf" ; + IFC4-PSD:name "FountainType" ; + IFC4-PSD:nameAlias "Fountain Type"@en , "噴水タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DRINKINGWATER" , "EYEWASH" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Mounting a rdf:Property ; + rdfs:seeAlso :pc7b32700d20211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mounting . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeShower.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeShower.ttl new file mode 100644 index 00000000..9644ba48 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeShower.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p3bedca80d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A description of the shower head(s) that emit the spray of water." ; + rdfs:label "ShowerHeadDescription" ; + IFC4-PSD:definition "A description of the shower head(s) that emit the spray of water." ; + IFC4-PSD:definitionAlias "シャワーヘッドが排出する水の放射の表現。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3bedca80d20311e1800000215ad4efdf" ; + IFC4-PSD:name "ShowerHeadDescription" ; + IFC4-PSD:nameAlias "シャワーヘッド表現"@ja-JP , "Shower Head Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:ShowerType a rdf:Property ; + rdfs:seeAlso :p06e17800d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShowerType . + +:Pset_SanitaryTerminalTypeShower + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Installation or waste water appliance that emits a spray of water to wash the human body (BS6100). HISTORY: In IFC4, Material and MaterialThickness properties removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)" ; + rdfs:label "Pset_SanitaryTerminalTypeShower" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/SHOWER" ; + IFC4-PSD:definition "Installation or waste water appliance that emits a spray of water to wash the human body (BS6100). HISTORY: In IFC4, Material and MaterialThickness properties removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)" ; + IFC4-PSD:definitionAlias ""@en , "人体を洗うために水をスプレー状に放射する廃水器具(BS6100)\n背景: IFC4において、要素と要素厚さのプロパティーは排除されています 。IfcMaterialsResourceのタイプを使ってください。 色のデータ形式は文字列としてIfcLabelに変更されています。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeShower" ; + IFC4-PSD:propertyDef :p3bedca80d20311e1800000215ad4efdf , :p427c4200d20311e1800000215ad4efdf , :p06e17800d20311e1800000215ad4efdf , :p15c82a80d20311e1800000215ad4efdf . + +:p15c82a80d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the shower has a separate receptacle that catches the water in a shower and directs it to a waste outlet." ; + rdfs:label "HasTray" ; + IFC4-PSD:definition "Indicates whether the shower has a separate receptacle that catches the water in a shower and directs it to a waste outlet." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "15c82a80d20311e1800000215ad4efdf" ; + IFC4-PSD:name "HasTray" ; + IFC4-PSD:nameAlias "Has Tray"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasTray a rdf:Property ; + rdfs:seeAlso :p15c82a80d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasTray . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :p427c4200d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . + +:ShowerHeadDescription + a rdf:Property ; + rdfs:seeAlso :p3bedca80d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShowerHeadDescription . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p06e17800d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the type of shower from the enumerated list of types where:-\n\nDrench: \tShower that rapidly gives a thorough soaking in an emergency.\nIndividual: \tShower unit that is typically enclosed and is for the use of one person at a time.\nTunnel: \tShower that has a succession of shower heads or spreaders that operate simultaneously along its length." ; + rdfs:label "ShowerType" ; + IFC4-PSD:definition "Selection of the type of shower from the enumerated list of types where:-\n\nDrench: \tShower that rapidly gives a thorough soaking in an emergency.\nIndividual: \tShower unit that is typically enclosed and is for the use of one person at a time.\nTunnel: \tShower that has a succession of shower heads or spreaders that operate simultaneously along its length." ; + IFC4-PSD:definitionAlias ""@en , "場所からのシャワータイプの選択:\n\n・水浸性:緊急時には素早く水に浸れるシャワー\n・独立性:一度に一人が使え、区切られているシャワーユニット\n・トンネル:シャワーヘッドの連続で設置されているか長さ方向に同時操作となる水散布機型のシャワー"@ja-JP ; + IFC4-PSD:ifdguid "06e17800d20311e1800000215ad4efdf" ; + IFC4-PSD:name "ShowerType" ; + IFC4-PSD:nameAlias "シャワータイプ"@ja-JP , "Shower Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DRENCH" , "INDIVIDUAL" , "TUNNEL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p427c4200d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "要素の排水口接続口サイズ。"@ja-JP ; + IFC4-PSD:ifdguid "427c4200d20311e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "Drain Size"@en , "管口径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSink.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSink.ttl new file mode 100644 index 00000000..d55856e2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeSink.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p532cb800d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the type of sink from the enumerated list of types where:-\n\nBelfast: \tDeep sink that has a plain edge and a weir overflow\n.\nBucket: \tSink at low level, with protected front edge, that facilitates filling and emptying buckets, usually with a hinged grid on which to stand them.\nCleaners:\t Sink, usually fixed at normal height (900mm), with protected front edge.\nCombination_Left:\t Sink with integral drainer on left hand side\n.\nCombination_Right: Sink with integral drainer on right hand side\n.\nCombination_Double: \tSink with integral drainer on both sides\n.\nDrip: Small sink that catches drips or flow from a faucet\n.\nLaboratory: Sink, of acid resisting material, with a top edge shaped to facilitate fixing to the underside of a desktop\n.\nLondon: Deep sink that has a plain edge and no overflow\n.\nPlaster: Sink with sediment receiver to prevent waste plaster passing into drains\n.\nPot: Large metal sink, with a standing waste, for washing cooking utensils\n.\nRinsing: Metal sink in which water can be heated and culinary utensils and tableware immersed at high temperature that destroys most harmful bacteria and allows subsequent self drying.\n.\nShelf: Ceramic sink with an integral back shelf through which water fittings are mounted\n.\nVegetablePreparation: \tLarge metal sink, with a standing waste, for washing and preparing vegetables\n." ; + rdfs:label "SinkType" ; + IFC4-PSD:definition "Selection of the type of sink from the enumerated list of types where:-\n\nBelfast: \tDeep sink that has a plain edge and a weir overflow\n.\nBucket: \tSink at low level, with protected front edge, that facilitates filling and emptying buckets, usually with a hinged grid on which to stand them.\nCleaners:\t Sink, usually fixed at normal height (900mm), with protected front edge.\nCombination_Left:\t Sink with integral drainer on left hand side\n.\nCombination_Right: Sink with integral drainer on right hand side\n.\nCombination_Double: \tSink with integral drainer on both sides\n.\nDrip: Small sink that catches drips or flow from a faucet\n.\nLaboratory: Sink, of acid resisting material, with a top edge shaped to facilitate fixing to the underside of a desktop\n.\nLondon: Deep sink that has a plain edge and no overflow\n.\nPlaster: Sink with sediment receiver to prevent waste plaster passing into drains\n.\nPot: Large metal sink, with a standing waste, for washing cooking utensils\n.\nRinsing: Metal sink in which water can be heated and culinary utensils and tableware immersed at high temperature that destroys most harmful bacteria and allows subsequent self drying.\n.\nShelf: Ceramic sink with an integral back shelf through which water fittings are mounted\n.\nVegetablePreparation: \tLarge metal sink, with a standing waste, for washing and preparing vegetables\n." ; + IFC4-PSD:definitionAlias ""@en , "シンクタイプの選択\n\n・深流し:エッジが平らであふれにくい深いシンク\n• 下流し:先端が保護され、低水位用のシンク\n・掃除流し:先端が保護されたシンク(通常は900mm高さに調整されたもの)\n・左水切り:左側に水切りが付いているシンク\n・右水切り流し:右側に水切りが付いているシンク\n・両水切り流し:両側に水切りが付いているタイプ\n・点滴:蛇口からの流れや滴を捕まえる小さめのシンク\n・実験流し:デスク天板下が簡易的に固定された他耐酸性の材料を使ったシンク\n・ロンドン:オーバーフローなしのエッジが平らの深いシンク\n・石膏流し:廃石膏が排水管中に入ってしまうのをを防ぐため、沈殿物レシーバーが付いているシンク。\n・料理流し:ゴミの廃棄もできる調理用具を洗うためのシンク\n・すすぎ用の流し:高温滅菌ができる乾いた状態を保持できる鉄製のシンク\n・棚付き流し:金具の接続や設置ができる棚を後ろに持つセラミック製のシンク\n・野菜流し:ゴミの廃棄もできる、洗浄や調理の準備をする大きめの鉄製のシンク"@ja-JP ; + IFC4-PSD:ifdguid "532cb800d20311e1800000215ad4efdf" ; + IFC4-PSD:name "SinkType" ; + IFC4-PSD:nameAlias "シンクの種類"@ja-JP , "Sink Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "DRIP" , "RINSING" , "CLEANERS" , "POT" , "BUCKET" , "OTHER" , "COMBINATION_RIGHT" , "PLASTER" , "COMBINATION_LEFT" , "NOTKNOWN" , "LONDON" , "VEGETABLEPREPARATION" , "SHELF" , "COMBINATION_DOUBLE" , "LABORATORY" , "BELFAST" + ] . + +:pbc143000d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素への接続口径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bc143000d20311e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "Drain Size"@en , "管径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SinkType a rdf:Property ; + rdfs:seeAlso :p532cb800d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SinkType . + +:MountingOffset a rdf:Property ; + rdfs:seeAlso :pc5050180d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MountingOffset . + +:Mounting a rdf:Property ; + rdfs:seeAlso :p7192b380d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mounting . + +:p7192b380d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the form of mounting of the sink from the enumerated list of mountings where:-\n\nBackToWall: A pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + rdfs:label "Mounting" ; + IFC4-PSD:definition "Selection of the form of mounting of the sink from the enumerated list of mountings where:-\n\nBackToWall: A pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + IFC4-PSD:definitionAlias "設置場所の選択\n\n・床置き壁排出:接続口の後部に出水口を合わせること。\n・台:床置きの衛生器具には基礎があること。\n・調理台:衛生器具の表層が水平に設置されていること。※手洗い台として設置された場合「化粧台」として扱うこと。また、洗面台種類の規格表を参照のこと。\n・壁掛け型:衛生器具は片側固定がされ床から離れていること。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7192b380d20311e1800000215ad4efdf" ; + IFC4-PSD:name "Mounting" ; + IFC4-PSD:nameAlias "Mounting"@en , "設置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pa141bb80d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Color selection for this object." ; + rdfs:label "Color" ; + IFC4-PSD:definition "Color selection for this object." ; + IFC4-PSD:definitionAlias ""@en , "要素の色。"@ja-JP ; + IFC4-PSD:ifdguid "a141bb80d20311e1800000215ad4efdf" ; + IFC4-PSD:name "Color" ; + IFC4-PSD:nameAlias "色"@ja-JP , "Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Color a rdf:Property ; + rdfs:seeAlso :pa141bb80d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Color . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :pbc143000d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . + +:Pset_SanitaryTerminalTypeSink + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Waste water appliance for receiving, retaining or disposing of domestic, culinary, laboratory or industrial process liquids. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value). SinkMounting changed to Mounting." ; + rdfs:label "Pset_SanitaryTerminalTypeSink" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/SINK" ; + IFC4-PSD:definition "Waste water appliance for receiving, retaining or disposing of domestic, culinary, laboratory or industrial process liquids. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value). SinkMounting changed to Mounting." ; + IFC4-PSD:definitionAlias "受信側の廃水機器。\n家庭内の処理や保持、台所や便所もしくは工業用途の液体処理を行います。\n背景:IFC4において、要素のプロパティーは排除されています 。IfcMaterialsResourceのタイプを使ってください。 色のデータ形式は文字列としてIfcLabelに変更されています。「SinkMounting」は「Mounting」に変更されています。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeSink" ; + IFC4-PSD:propertyDef :pa141bb80d20311e1800000215ad4efdf , :p532cb800d20311e1800000215ad4efdf , :p7192b380d20311e1800000215ad4efdf , :pbc143000d20311e1800000215ad4efdf , :pc5050180d20311e1800000215ad4efdf . + +:pc5050180d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "For cunter top maounted sinks, the vertical offset between the top of the sink and the counter top." ; + rdfs:label "MountingOffset" ; + IFC4-PSD:definition "For cunter top maounted sinks, the vertical offset between the top of the sink and the counter top." ; + IFC4-PSD:definitionAlias "調理台に設置されたシンクに、上端と調理台間で垂直に補正されること。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c5050180d20311e1800000215ad4efdf" ; + IFC4-PSD:name "MountingOffset" ; + IFC4-PSD:nameAlias "据付補正"@ja-JP , "Mounting Offset"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeToiletPan.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeToiletPan.ttl new file mode 100644 index 00000000..9443d535 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeToiletPan.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:PanMounting a rdf:Property ; + rdfs:seeAlso :pf7aefa00d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PanMounting . + +:ToiletPanType a rdf:Property ; + rdfs:seeAlso :pe7971a80d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ToiletPanType . + +:pe7971a80d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The property enumeration Pset_ToiletPanTypeEnum defines the types of toilet pan that may be specified within the property set Pset_Toilet:-\n\nSiphonic: \tToilet pan in which excrement is removed by siphonage induced by the flushing water.\nSquat: \tToilet pan with an elongated bowl installed with its top edge at or near floor level, so that the user has to squat.\nWashDown: \tToilet pan in which excrement is removed by the momentum of the flushing water.\nWashOut: \tA washdown toilet pan in which excrement falls first into a shallow water filled bowl." ; + rdfs:label "ToiletPanType" ; + IFC4-PSD:definition "The property enumeration Pset_ToiletPanTypeEnum defines the types of toilet pan that may be specified within the property set Pset_Toilet:-\n\nSiphonic: \tToilet pan in which excrement is removed by siphonage induced by the flushing water.\nSquat: \tToilet pan with an elongated bowl installed with its top edge at or near floor level, so that the user has to squat.\nWashDown: \tToilet pan in which excrement is removed by the momentum of the flushing water.\nWashOut: \tA washdown toilet pan in which excrement falls first into a shallow water filled bowl." ; + IFC4-PSD:definitionAlias "Pset_SanitaryMountingEnumは下記に列挙された便器タイプとして定義されます。\n\nサイホン式:流水を含むサイホンにより汚物が廃棄される便器\n和式:便器が床面か淵の高さと同じに配置された便器。使用者はしゃがまなければならない。\nウォッシュダウン式:勢いよく洗い流すことにより便器をきれいにします\n洗浄式便器:まず汚物が落ちその後、便器に水が流れます"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e7971a80d20311e1800000215ad4efdf" ; + IFC4-PSD:name "ToiletPanType" ; + IFC4-PSD:nameAlias "Toilet Pan Type"@en , "便器タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SIPHONIC" , "SQUAT" , "WASHDOWN" , "WASHOUT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p0f867e00d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The level at which water spills out of the terminal." ; + rdfs:label "SpilloverLevel" ; + IFC4-PSD:definition "The level at which water spills out of the terminal." ; + IFC4-PSD:definitionAlias "継手からの水位。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0f867e00d20411e1800000215ad4efdf" ; + IFC4-PSD:name "SpilloverLevel" ; + IFC4-PSD:nameAlias "水位"@ja-JP , "Spillover Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pd221f080d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that defines the types of toilet (water closet) arrangements that may be specified where:-\n\nBedPanWasher: Enclosed soil appliance in which bedpans and urinal bottles are emptied and cleansed.\nChemical: Portable receptacle or soil appliance that receives and retains excrement in either an integral or a separate container, in which it is chemically treated and from which it has to be emptied periodically.\nCloseCoupled: \tToilet suite in which a flushing cistern is connected directly to the water closet pan.\nLooseCoupled: \tToilet arrangement in which a flushing cistern is connected to the water closet pan through a flushing pipe.\nSlopHopper: \tHopper shaped soil appliance with a flushing rim and outlet similar to those of a toilet pan, into which human excrement is emptied for disposal." ; + rdfs:label "ToiletType" ; + IFC4-PSD:definition "Enumeration that defines the types of toilet (water closet) arrangements that may be specified where:-\n\nBedPanWasher: Enclosed soil appliance in which bedpans and urinal bottles are emptied and cleansed.\nChemical: Portable receptacle or soil appliance that receives and retains excrement in either an integral or a separate container, in which it is chemically treated and from which it has to be emptied periodically.\nCloseCoupled: \tToilet suite in which a flushing cistern is connected directly to the water closet pan.\nLooseCoupled: \tToilet arrangement in which a flushing cistern is connected to the water closet pan through a flushing pipe.\nSlopHopper: \tHopper shaped soil appliance with a flushing rim and outlet similar to those of a toilet pan, into which human excrement is emptied for disposal." ; + IFC4-PSD:definitionAlias "トイレ配置は下記に列挙された仕様となります。\n\n便器洗浄機:便器と小便器が空にされ洗浄される周囲が囲まれた電気機器。\nケミカル:別々の容器で排泄物を受けて、保持し、化学的に扱われる、定期的に空にされる携帯用の容器または土機器。\nシスターン直結型:シスターンがが便器に直接密着して設置されたタイプ\nシスターン分離型:シスターンがパイプを介して便器につながっているタイプ\n汚物流し:ホッパーは土壌器具にデザイされており、汚物が流され空になります。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d221f080d20311e1800000215ad4efdf" ; + IFC4-PSD:name "ToiletType" ; + IFC4-PSD:nameAlias "トイレ種類"@ja-JP , "Toilet Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BEDPANWASHER" , "CHEMICAL" , "CLOSECOUPLED" , "LOOSECOUPLED" , "SLOPHOPPER" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SanitaryTerminalTypeToiletPan + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Soil appliance for the disposal of excrement. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Prefix for color property removed. Datatype of color changed to IfcLabel (still a string value)." ; + rdfs:label "Pset_SanitaryTerminalTypeToiletPan" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/TOILETPAN" ; + IFC4-PSD:definition "Soil appliance for the disposal of excrement. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Prefix for color property removed. Datatype of color changed to IfcLabel (still a string value)." ; + IFC4-PSD:definitionAlias "排泄物排気用の機器。\n背景:IFC4において、要素のプロパティーは排除されています 。IfcMaterialsResourceのタイプを使ってください。 色の設定は取り除かれています。色のデータ形式は文字列としてIfcLabelに変更されています。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeToiletPan" ; + IFC4-PSD:propertyDef :pd221f080d20311e1800000215ad4efdf , :p0f867e00d20411e1800000215ad4efdf , :pe7971a80d20311e1800000215ad4efdf , :pf7aefa00d20311e1800000215ad4efdf . + +:pf7aefa00d20311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC’s, basins, sinks, etc.) where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + rdfs:label "PanMounting" ; + IFC4-PSD:definition "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC’s, basins, sinks, etc.) where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base.\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + IFC4-PSD:definitionAlias ""@en , "Pset_SanitaryMountingEnumは固定された衛生器具の接続点(トイレや洗面器、シンクなど)に取り付けられます。\n\n・床置き壁排出:背面の壁に接続口を合わせること。\n・台:床置きの衛生器具には基礎があること。\n・カウンター:衛生器具の表層が水平に設置されていること。※手洗い台として設置された場合「化粧台」として扱うこと。また、洗面台種類の規格表を参照のこと。\n・壁掛け型:衛生器具は片側固定がされ床から離れていること。"@ja-JP ; + IFC4-PSD:ifdguid "f7aefa00d20311e1800000215ad4efdf" ; + IFC4-PSD:name "PanMounting" ; + IFC4-PSD:nameAlias "取付方法"@ja-JP , "Pan Mounting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ToiletType a rdf:Property ; + rdfs:seeAlso :pd221f080d20311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ToiletType . + +:SpilloverLevel a rdf:Property ; + rdfs:seeAlso :p0f867e00d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpilloverLevel . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeUrinal.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeUrinal.ttl new file mode 100644 index 00000000..5cfce024 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeUrinal.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p596f6400d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The level at which water spills out of the object." ; + rdfs:label "SpilloverLevel" ; + IFC4-PSD:definition "The level at which water spills out of the object." ; + IFC4-PSD:definitionAlias ""@en , "継手からの水位。"@ja-JP ; + IFC4-PSD:ifdguid "596f6400d20411e1800000215ad4efdf" ; + IFC4-PSD:name "SpilloverLevel" ; + IFC4-PSD:nameAlias "水位"@ja-JP , "Spillover Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:UrinalType a rdf:Property ; + rdfs:seeAlso :p35138780d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UrinalType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SanitaryTerminalTypeUrinal + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Soil appliance that receives urine and directs it to a waste outlet (BS6100). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Prefix for color property removed. Datatype of color changed to IfcLabel (still a string value). Mounting property added." ; + rdfs:label "Pset_SanitaryTerminalTypeUrinal" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/URINAL" ; + IFC4-PSD:definition "Soil appliance that receives urine and directs it to a waste outlet (BS6100). HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Prefix for color property removed. Datatype of color changed to IfcLabel (still a string value). Mounting property added." ; + IFC4-PSD:definitionAlias "小便を受けたり直接排水溝に流すための機器(BS6100)。\n背景:IFC4において、要素のプロパティーは排除されています 。IfcMaterialsResourceのタイプを使ってください。 色の設定は取り除かれています。色のデータ形式は文字列としてIfcLabelに変更されています。また、「設置」のプロパティーが加えられました。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeUrinal" ; + IFC4-PSD:propertyDef :p596f6400d20411e1800000215ad4efdf , :p4361a380d20411e1800000215ad4efdf , :p35138780d20411e1800000215ad4efdf . + +:p4361a380d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the form of mounting from the enumerated list of mountings where:-\n\nBackToWall =\tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections\nPedestal =\tA floor mounted sanitary terminal that has an integral base\nCounterTop =\tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung =\tA sanitary terminal cantilevered clear of the floor\n.\n\nNote that BackToWall, Pedestal and WallHung are allowable values for a urinal." ; + rdfs:label "Mounting" ; + IFC4-PSD:definition "Selection of the form of mounting from the enumerated list of mountings where:-\n\nBackToWall =\tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections\nPedestal =\tA floor mounted sanitary terminal that has an integral base\nCounterTop =\tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung =\tA sanitary terminal cantilevered clear of the floor\n.\n\nNote that BackToWall, Pedestal and WallHung are allowable values for a urinal." ; + IFC4-PSD:definitionAlias ""@en , "下記の設置方法より選択\n\n\n・床置き壁排出:接続口の後部に出水口を合わせること。\n・台:床置きの衛生器具には基礎があること。\n・カウンター:衛生器具の表層が水平に設置されていること。※手洗い台として設置された場合「化粧台」として扱うこと。また、洗面台種類の規格表を参照のこと。\n・壁掛け型:衛生器具は片側固定がされ床から離れていること。\n\n床置き壁排出型・台座と壁掛け型は便器と同等とされます。"@ja-JP ; + IFC4-PSD:ifdguid "4361a380d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Mounting" ; + IFC4-PSD:nameAlias "設置"@ja-JP , "Mounting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p35138780d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the type of urinal from the enumerated list of types where:-\n\nBowl: Individual wall mounted urinal.\nSlab: Urinal that consists of a slab or sheet fixed to a wall and down which urinal flows into a floor channel.\nStall: Floor mounted urinal that consists of an elliptically shaped sanitary stall fixed to a wall and down which urine flows into a floor channel.\nTrough: Wall mounted urinal of elongated rectangular shape on plan, that can be used by more than one person at a time." ; + rdfs:label "UrinalType" ; + IFC4-PSD:definition "Selection of the type of urinal from the enumerated list of types where:-\n\nBowl: Individual wall mounted urinal.\nSlab: Urinal that consists of a slab or sheet fixed to a wall and down which urinal flows into a floor channel.\nStall: Floor mounted urinal that consists of an elliptically shaped sanitary stall fixed to a wall and down which urine flows into a floor channel.\nTrough: Wall mounted urinal of elongated rectangular shape on plan, that can be used by more than one person at a time." ; + IFC4-PSD:definitionAlias "下記のリストより小便器タイプを選択\n\n便器:壁に設置された独立した小便器\n床:壁や床の溝へ流れるように固定されている\n個室:衛生個室の床や壁に楕円形に設置されたフロア\n溝:一人以上の人数が同時に使用できるよう、壁に直角に長く引き伸ばした形"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "35138780d20411e1800000215ad4efdf" ; + IFC4-PSD:name "UrinalType" ; + IFC4-PSD:nameAlias "Urinal Type"@en , "小便器タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BOWL" , "SLAB" , "STALL" , "TROUGH" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Mounting a rdf:Property ; + rdfs:seeAlso :p4361a380d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mounting . + +:SpilloverLevel a rdf:Property ; + rdfs:seeAlso :p596f6400d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpilloverLevel . diff --git a/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeWashHandBasin.ttl b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeWashHandBasin.ttl new file mode 100644 index 00000000..76fc8416 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SanitaryTerminalTypeWashHandBasin.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Mounting a rdf:Property ; + rdfs:seeAlso :p9176a700d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mounting . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pbff48200d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the drain outlet connection from the object." ; + rdfs:label "DrainSize" ; + IFC4-PSD:definition "The size of the drain outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "要素への接続口径。"@ja-JP ; + IFC4-PSD:ifdguid "bff48200d20411e1800000215ad4efdf" ; + IFC4-PSD:name "DrainSize" ; + IFC4-PSD:nameAlias "Drain Size"@en , "管径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_SanitaryTerminalTypeWashHandBasin + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Waste water appliance for washing the upper parts of the body. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)." ; + rdfs:label "Pset_SanitaryTerminalTypeWashHandBasin" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSanitaryTerminal/WASHHANDBASIN" ; + IFC4-PSD:definition "Waste water appliance for washing the upper parts of the body. HISTORY: In IFC4, Material property removed. Use materials capabilities from IfcMaterialsResource schema. Datatype of color changed to IfcLabel (still a string value)." ; + IFC4-PSD:definitionAlias ""@en , "体の上部分を洗浄するための廃水機器。\n背景:IFC4において、要素のプロパティーは排除されています 。IfcMaterialsResourceのタイプを使ってください。 色のデータ形式は文字列としてIfcLabelに変更されています。また、「設置」のプロパティーが加えられました。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SanitaryTerminalTypeWashHandBasin" ; + IFC4-PSD:propertyDef :pbff48200d20411e1800000215ad4efdf , :p802d9a80d20411e1800000215ad4efdf , :p9176a700d20411e1800000215ad4efdf , :pc97dea00d20411e1800000215ad4efdf . + +:pc97dea00d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "For counter top mounted basins the vertical offset between the top of the sink and the counter top." ; + rdfs:label "MountingOffset" ; + IFC4-PSD:definition "For counter top mounted basins the vertical offset between the top of the sink and the counter top." ; + IFC4-PSD:definitionAlias "カウンター用途として、カウンターとシンクの間に垂直洗浄に据付される廃水機器。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c97dea00d20411e1800000215ad4efdf" ; + IFC4-PSD:name "MountingOffset" ; + IFC4-PSD:nameAlias "Mounting Offset"@en , "据付補正"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p9176a700d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Selection of the form of mounting from the enumerated list of mountings where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + rdfs:label "Mounting" ; + IFC4-PSD:definition "Selection of the form of mounting from the enumerated list of mountings where:-\n\nBackToWall: \tA pedestal mounted sanitary terminal that fits flush to the wall at the rear to cover its service connections.\nPedestal: \tA floor mounted sanitary terminal that has an integral base\nCounterTop: \tA sanitary terminal that is installed into a horizontal surface that is installed into a horizontal surface. Note: When applied to a wash hand basin, the term more normally used is ‘vanity’. See also Wash Hand Basin Type specification.\nWallHung: \tA sanitary terminal cantilevered clear of the floor." ; + IFC4-PSD:definitionAlias "以下のリストから設置方法を選択\n\n\n・床置き壁排出:接続口の後部に出水口を合わせること。\n・台:床置きの衛生器具には基礎があること。\n・カウンター:衛生器具の表層が水平に設置されていること。※手洗い台として設置された場合「化粧台」として扱うこと。また、洗面台種類の規格表を参照のこと。\n・壁掛け型:衛生器具は片側固定がされ床から離れていること。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9176a700d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Mounting" ; + IFC4-PSD:nameAlias "設置"@ja-JP , "Mounting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BACKTOWALL" , "PEDESTAL" , "COUNTERTOP" , "WALLHUNG" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MountingOffset a rdf:Property ; + rdfs:seeAlso :pc97dea00d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MountingOffset . + +:DrainSize a rdf:Property ; + rdfs:seeAlso :pbff48200d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainSize . + +:p802d9a80d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of wash hand basin that may be specified where:\n\n\nDentalCuspidor: Waste water appliance that receives and flushes away mouth washings\n.\nHandRinse: Wall mounted wash hand basin that has an overall width of 500mm or less\n.\nHospital: Wash hand basin that has a smooth easy clean surface without tapholes or overflow slot for use where hygiene is of prime importance. \n\nTipup: Wash hand basin mounted on pivots so that it can be emptied by tilting.\n\nVanity: Wash hand basin for installation into a horizontal surface.\n\nWashfountain: Wash hand basin that is circular, semi-circular or polygonal on plan, at which more than one person can wash at the same time.\nWashingTrough: Wash hand basin of elongated rectangular shape in plan, at which more than one person can wash at the same time." ; + rdfs:label "WashHandBasinType" ; + IFC4-PSD:definition "Defines the types of wash hand basin that may be specified where:\n\n\nDentalCuspidor: Waste water appliance that receives and flushes away mouth washings\n.\nHandRinse: Wall mounted wash hand basin that has an overall width of 500mm or less\n.\nHospital: Wash hand basin that has a smooth easy clean surface without tapholes or overflow slot for use where hygiene is of prime importance. \n\nTipup: Wash hand basin mounted on pivots so that it can be emptied by tilting.\n\nVanity: Wash hand basin for installation into a horizontal surface.\n\nWashfountain: Wash hand basin that is circular, semi-circular or polygonal on plan, at which more than one person can wash at the same time.\nWashingTrough: Wash hand basin of elongated rectangular shape in plan, at which more than one person can wash at the same time." ; + IFC4-PSD:definitionAlias ""@en , "手洗いの種類は設置される場所で定義されます。\n\n歯科用痰壷:口をゆすぐ際に受けて流す廃水機器\n手洗い:500mm以下の幅の壁掛け型手洗い\n病院用:サイフォンか氾濫防止弁が付いた衛生が最優先とされる場所で使用される手洗い洗面器\n上げ起こし型:角度調整によって空にできる軸上に設置された手洗い\n化粧台:地平面に設置された手洗い台\n洗浄噴水型:一人以上の人間が同時に使用できる円・半円・多角形の洗面台\n洗浄ボウル:一人以上の人間が同時に使用できる多角形の洗面台"@ja-JP ; + IFC4-PSD:ifdguid "802d9a80d20411e1800000215ad4efdf" ; + IFC4-PSD:name "WashHandBasinType" ; + IFC4-PSD:nameAlias "Wash Hand Basin Type"@en , "手洗い種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HOSPITAL" , "TIPUP" , "WASHINGTROUGH" , "OTHER" , "HANDRINSE" , "UNSET" , "NOTKNOWN" , "WASHFOUNTAIN" , "DENTALCUSPIDOR" + ] . + +:WashHandBasinType a rdf:Property ; + rdfs:seeAlso :p802d9a80d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WashHandBasinType . diff --git a/converter/src/main/resources/pset/Pset_SensorPHistory.ttl b/converter/src/main/resources/pset/Pset_SensorPHistory.ttl new file mode 100644 index 00000000..ad8cf6d0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorPHistory.ttl @@ -0,0 +1,92 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Value a rdf:Property ; + rdfs:seeAlso :pd569ac00d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Value . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorPHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history of controller values. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcSensor ; + IFC4-PSD:applicableTypeValue "IfcSensor" ; + IFC4-PSD:definition "Properties for history of controller values. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorPHistory" ; + IFC4-PSD:propertyDef :pd569ac00d20411e1800000215ad4efdf , :pdbf82380d20411e1800000215ad4efdf , :pd8fd3300d20411e1800000215ad4efdf , :pdef31400d20411e1800000215ad4efdf . + +:pd8fd3300d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates sensed direction for sensors capturing magnitude and direction measured from True North (0 degrees) in a clockwise direction." ; + rdfs:label "Direction" ; + IFC4-PSD:definition "Indicates sensed direction for sensors capturing magnitude and direction measured from True North (0 degrees) in a clockwise direction." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d8fd3300d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Direction" ; + IFC4-PSD:nameAlias "Direction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pd569ac00d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates sensed values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the SetPoint property of the corresponding sensor type property set." ; + rdfs:label "Value" ; + IFC4-PSD:definition "Indicates sensed values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the SetPoint property of the corresponding sensor type property set." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d569ac00d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Value" ; + IFC4-PSD:nameAlias "Value"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Quality a rdf:Property ; + rdfs:seeAlso :pdbf82380d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Quality . + +:Status a rdf:Property ; + rdfs:seeAlso :pdef31400d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pdbf82380d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + rdfs:label "Quality" ; + IFC4-PSD:definition "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "dbf82380d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Quality" ; + IFC4-PSD:nameAlias "Quality"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Direction a rdf:Property ; + rdfs:seeAlso :pd8fd3300d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Direction . + +:pdef31400d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "def31400d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeCO2Sensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeCO2Sensor.ttl new file mode 100644 index 00000000..370773eb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeCO2Sensor.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SetPointConcentration + a rdf:Property ; + rdfs:seeAlso :pe4ab0c98841748269c10ddef20bb5aa9 ; + rdfs:subPropertyOf IFC4-PSD:SetPointConcentration . + +:Pset_SensorTypeCO2Sensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects carbon dioxide." ; + rdfs:label "Pset_SensorTypeCO2Sensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/CO2SENSOR" ; + IFC4-PSD:definition "A device that senses or detects carbon dioxide." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeCO2Sensor" ; + IFC4-PSD:propertyDef :pe4ab0c98841748269c10ddef20bb5aa9 . + +:pe4ab0c98841748269c10ddef20bb5aa9 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The carbon dioxide concentration to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointConcentration" ; + IFC4-PSD:definition "The carbon dioxide concentration to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "e4ab0c98841748269c10ddef20bb5aa9" ; + IFC4-PSD:name "SetPointConcentration" ; + IFC4-PSD:nameAlias "Set Point Concentration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SensorTypeCommon.ttl new file mode 100644 index 00000000..21df8db2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pf03c2080d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f03c2080d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SensorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Sensor type common attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSensor ; + IFC4-PSD:applicableTypeValue "IfcSensor" ; + IFC4-PSD:definition "Sensor type common attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "センサータイプの共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeCommon" ; + IFC4-PSD:propertyDef :pe9151280d20411e1800000215ad4efdf , :pf03c2080d20411e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :pe9151280d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Status a rdf:Property ; + rdfs:seeAlso :pf03c2080d20411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe9151280d20411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "e9151280d20411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조ID"@ko-KR , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeConductanceSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeConductanceSensor.ttl new file mode 100644 index 00000000..d57f44ac --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeConductanceSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p0649e100d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointConductance" ; + IFC4-PSD:definition "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en , "감지되는 전기 전도율. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , "感知される電気伝導率。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "0649e100d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointConductance" ; + IFC4-PSD:nameAlias "전기 전도율 설정"@ko-KR , "Set Point Conductance"@en , "電気伝導率設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcElectricConductanceMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeConductanceSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects electrical conductance. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeConductanceSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/CONDUCTANCESENSOR" ; + IFC4-PSD:definition "A device that senses or detects electrical conductance. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "電気伝導性を感知または検出するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeConductanceSensor" ; + IFC4-PSD:propertyDef :p0649e100d20511e1800000215ad4efdf . + +:SetPointConductance a rdf:Property ; + rdfs:seeAlso :p0649e100d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointConductance . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeContactSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeContactSensor.ttl new file mode 100644 index 00000000..d5f1a8af --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeContactSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SensorTypeContactSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects contact. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeContactSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/CONTACTSENSOR" ; + IFC4-PSD:definition "A device that senses or detects contact. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "接触を感知または検出するデバイス"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeContactSensor" ; + IFC4-PSD:propertyDef :p12ce3980d20511e1800000215ad4efdf . + +:SetPointContact a rdf:Property ; + rdfs:seeAlso :p12ce3980d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointContact . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p12ce3980d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The contact value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointContact" ; + IFC4-PSD:definition "The contact value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en , "감지되는 접촉 상태. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , "感知される接触状態。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "12ce3980d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointContact" ; + IFC4-PSD:nameAlias "Set Point Contact"@en , "접촉 상태 설정"@ko-KR , "接触状態設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeFireSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeFireSensor.ttl new file mode 100644 index 00000000..018acaa0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeFireSensor.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:AccuracyOfFireSensor + a rdf:Property ; + rdfs:seeAlso :p2679a000d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccuracyOfFireSensor . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeFireSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects the presence of fire." ; + rdfs:label "Pset_SensorTypeFireSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/FIRESENSOR" ; + IFC4-PSD:definition "A device that senses or detects the presence of fire." ; + IFC4-PSD:definitionAlias "炎の存在を感知または検出するデバイス"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeFireSensor" ; + IFC4-PSD:propertyDef :p2083bf00d20511e1800000215ad4efdf , :p2c6f8100d20511e1800000215ad4efdf , :p2679a000d20511e1800000215ad4efdf . + +:p2679a000d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The accuracy of the sensor." ; + rdfs:label "AccuracyOfFireSensor" ; + IFC4-PSD:definition "The accuracy of the sensor." ; + IFC4-PSD:definitionAlias "센서의 정밀도."@ko-KR , ""@en , "センサの精度。"@ja-JP ; + IFC4-PSD:ifdguid "2679a000d20511e1800000215ad4efdf" ; + IFC4-PSD:name "AccuracyOfFireSensor" ; + IFC4-PSD:nameAlias "정확도"@ko-KR , "Accuracy Of Fire Sensor"@en , "精度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p2c6f8100d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time constant of the sensor." ; + rdfs:label "TimeConstant" ; + IFC4-PSD:definition "The time constant of the sensor." ; + IFC4-PSD:definitionAlias "センサの時定数。"@ja-JP , ""@en , "센서의 시정."@ko-KR ; + IFC4-PSD:ifdguid "2c6f8100d20511e1800000215ad4efdf" ; + IFC4-PSD:name "TimeConstant" ; + IFC4-PSD:nameAlias "時定数"@ja-JP , "시정"@ko-KR , "Time Constant"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:FireSensorSetPoint a rdf:Property ; + rdfs:seeAlso :p2083bf00d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireSensorSetPoint . + +:p2083bf00d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature value to be sensed to indicate the presence of fire." ; + rdfs:label "FireSensorSetPoint" ; + IFC4-PSD:definition "The temperature value to be sensed to indicate the presence of fire." ; + IFC4-PSD:definitionAlias "炎の存在を示すために感知される温度値。"@ja-JP , ""@en , "불꽃의 존재를 보여주기 위하여 감지되는 온도 값."@ko-KR ; + IFC4-PSD:ifdguid "2083bf00d20511e1800000215ad4efdf" ; + IFC4-PSD:name "FireSensorSetPoint" ; + IFC4-PSD:nameAlias "感知温度"@ja-JP , "감지 온도"@ko-KR , "Fire Sensor Set Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:TimeConstant a rdf:Property ; + rdfs:seeAlso :p2c6f8100d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TimeConstant . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeFlowSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeFlowSensor.ttl new file mode 100644 index 00000000..77a347aa --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeFlowSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SensorTypeFlowSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects flow. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeFlowSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/FLOWSENSOR" ; + IFC4-PSD:definition "A device that senses or detects flow. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "流れを感知または検出するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeFlowSensor" ; + IFC4-PSD:propertyDef :p3a250680d20511e1800000215ad4efdf . + +:p3a250680d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The volumetric flow value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointFlow" ; + IFC4-PSD:definition "The volumetric flow value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 유량. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en , "感知される流量。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "3a250680d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointFlow" ; + IFC4-PSD:nameAlias "유량 설정"@ko-KR , "流量設定値"@ja-JP , "Set Point Flow"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:SetPointFlow a rdf:Property ; + rdfs:seeAlso :p3a250680d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointFlow . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeFrostSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeFrostSensor.ttl new file mode 100644 index 00000000..f5d368d1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeFrostSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeFrostSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects the presense of frost." ; + rdfs:label "Pset_SensorTypeFrostSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/FROSTSENSOR" ; + IFC4-PSD:definition "A device that senses or detects the presense of frost." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeFrostSensor" ; + IFC4-PSD:propertyDef :p2c68553a248d4030943839a8806ebd51 . + +:SetPointFrost a rdf:Property ; + rdfs:seeAlso :p2c68553a248d4030943839a8806ebd51 ; + rdfs:subPropertyOf IFC4-PSD:SetPointFrost . + +:p2c68553a248d4030943839a8806ebd51 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The detection of frost." ; + rdfs:label "SetPointFrost" ; + IFC4-PSD:definition "The detection of frost." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2c68553a248d4030943839a8806ebd51" ; + IFC4-PSD:name "SetPointFrost" ; + IFC4-PSD:nameAlias "Set Point Frost"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeGasSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeGasSensor.ttl new file mode 100644 index 00000000..e6644801 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeGasSensor.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SetPointConcentration + a rdf:Property ; + rdfs:seeAlso :p5163f400d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointConcentration . + +:p5163f400d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The gas concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointConcentration" ; + IFC4-PSD:definition "The gas concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en , "感知されるガス濃度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "5163f400d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointConcentration" ; + IFC4-PSD:nameAlias "ガス濃度設定値"@ja-JP , "Set Point Concentration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:CoverageArea a rdf:Property ; + rdfs:seeAlso :p6a6ca500d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverageArea . + +:p6a6ca500d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + rdfs:label "CoverageArea" ; + IFC4-PSD:definition "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + IFC4-PSD:definitionAlias ""@en , "センサでカバーされている床面積。(通常、センターがセンサの位置にある円として測定される)"@ja-JP ; + IFC4-PSD:ifdguid "6a6ca500d20511e1800000215ad4efdf" ; + IFC4-PSD:name "CoverageArea" ; + IFC4-PSD:nameAlias "測定範囲"@ja-JP , "Coverage Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:GasDetected a rdf:Property ; + rdfs:seeAlso :p490bb900d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GasDetected . + +:Pset_SensorTypeGasSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects gas. HISTORY: Changed in IFC4. Gas detected made into enumeration, set point concentration and coverage area added. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeGasSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/GASSENSOR" ; + IFC4-PSD:definition "A device that senses or detects gas. HISTORY: Changed in IFC4. Gas detected made into enumeration, set point concentration and coverage area added. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias ""@en , "ガスを感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeGasSensor" ; + IFC4-PSD:propertyDef :p490bb900d20511e1800000215ad4efdf , :p5163f400d20511e1800000215ad4efdf , :p6a6ca500d20511e1800000215ad4efdf . + +:p490bb900d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identification of the gas that is being detected, according to chemical formula. For example, carbon monoxide is 'CO', carbon dioxide is 'CO2', oxygen is 'O2'." ; + rdfs:label "GasDetected" ; + IFC4-PSD:definition "Identification of the gas that is being detected, according to chemical formula. For example, carbon monoxide is 'CO', carbon dioxide is 'CO2', oxygen is 'O2'." ; + IFC4-PSD:definitionAlias ""@en , "検出されているガスの識別。"@ja-JP ; + IFC4-PSD:ifdguid "490bb900d20511e1800000215ad4efdf" ; + IFC4-PSD:name "GasDetected" ; + IFC4-PSD:nameAlias "対象ガス"@ja-JP , "Gas Detected"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeHeatSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeHeatSensor.ttl new file mode 100644 index 00000000..ca9b3e65 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeHeatSensor.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p7f493880d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + rdfs:label "CoverageArea" ; + IFC4-PSD:definition "The area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + IFC4-PSD:definitionAlias ""@en , "センサでカバーされている範囲。(通常、センターがセンサの位置にある円として測定される)"@ja-JP , "센서 커버하는 범위. (일반적으로 센터 센서의 위치에있는 원형으로 측정되는)"@ko-KR ; + IFC4-PSD:ifdguid "7f493880d20511e1800000215ad4efdf" ; + IFC4-PSD:name "CoverageArea" ; + IFC4-PSD:nameAlias "Coverage Area"@en , "測定範囲"@ja-JP , "측정 범위"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:p84a68300d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointTemperature" ; + IFC4-PSD:definition "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知される温度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지되는 온도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "84a68300d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointTemperature" ; + IFC4-PSD:nameAlias "Set Point Temperature"@en , "온도 설정"@ko-KR , "温度設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:SetPointTemperature a rdf:Property ; + rdfs:seeAlso :p84a68300d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointTemperature . + +:CoverageArea a rdf:Property ; + rdfs:seeAlso :p7f493880d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverageArea . + +:p8cfebe00d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The rate of temperature rise that is to be sensed as being hazardous." ; + rdfs:label "RateOfTemperatureRise" ; + IFC4-PSD:definition "The rate of temperature rise that is to be sensed as being hazardous." ; + IFC4-PSD:definitionAlias ""@en , "위험 것으로 느껴지게하는 온도 상승률."@ko-KR , "危険であるとして感じられることになっている温度上昇率。"@ja-JP ; + IFC4-PSD:ifdguid "8cfebe00d20511e1800000215ad4efdf" ; + IFC4-PSD:name "RateOfTemperatureRise" ; + IFC4-PSD:nameAlias "温度上昇率"@ja-JP , "Rate Of Temperature Rise"@en , "온도 상승률"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTemperatureRateOfChangeMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:RateOfTemperatureRise + a rdf:Property ; + rdfs:seeAlso :p8cfebe00d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RateOfTemperatureRise . + +:Pset_SensorTypeHeatSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects heat. HISTORY: In IFC4, incorporates Fire Sensor. HeatSensorSetPoint changed to SetPointTemperature" ; + rdfs:label "Pset_SensorTypeHeatSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/HEATSENSOR" ; + IFC4-PSD:definition "A device that senses or detects heat. HISTORY: In IFC4, incorporates Fire Sensor. HeatSensorSetPoint changed to SetPointTemperature" ; + IFC4-PSD:definitionAlias ""@en , "熱を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeHeatSensor" ; + IFC4-PSD:propertyDef :p8cfebe00d20511e1800000215ad4efdf , :p7f493880d20511e1800000215ad4efdf , :p84a68300d20511e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeHumiditySensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeHumiditySensor.ttl new file mode 100644 index 00000000..47022fb2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeHumiditySensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SetPointHumidity a rdf:Property ; + rdfs:seeAlso :pa6a00580d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointHumidity . + +:pa6a00580d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The humidity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointHumidity" ; + IFC4-PSD:definition "The humidity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知される湿度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지되는 습도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a6a00580d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointHumidity" ; + IFC4-PSD:nameAlias "Set Point Humidity"@en , "습도 설정"@ko-KR , "湿度設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_SensorTypeHumiditySensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects humidity. HISTORY: HumiditySensorSetPoint changed to SetPointHumidity. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeHumiditySensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/HUMIDITYSENSOR" ; + IFC4-PSD:definition "A device that senses or detects humidity. HISTORY: HumiditySensorSetPoint changed to SetPointHumidity. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias ""@en , "湿度を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeHumiditySensor" ; + IFC4-PSD:propertyDef :pa6a00580d20511e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeIdentifierSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeIdentifierSensor.ttl new file mode 100644 index 00000000..43f53fa0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeIdentifierSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p51b07040b89147dda5f701b8e246bf62 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The detected tag value." ; + rdfs:label "SetPointIdentifier" ; + IFC4-PSD:definition "The detected tag value." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "51b07040b89147dda5f701b8e246bf62" ; + IFC4-PSD:name "SetPointIdentifier" ; + IFC4-PSD:nameAlias "Set Point Identifier"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:SetPointIdentifier a rdf:Property ; + rdfs:seeAlso :p51b07040b89147dda5f701b8e246bf62 ; + rdfs:subPropertyOf IFC4-PSD:SetPointIdentifier . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeIdentifierSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses identification tags." ; + rdfs:label "Pset_SensorTypeIdentifierSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/IDENTIFIERSENSOR" ; + IFC4-PSD:definition "A device that senses identification tags." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeIdentifierSensor" ; + IFC4-PSD:propertyDef :p51b07040b89147dda5f701b8e246bf62 . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeIonConcentrationSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeIonConcentrationSensor.ttl new file mode 100644 index 00000000..9a9b6e4f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeIonConcentrationSensor.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SetPointConcentration + a rdf:Property ; + rdfs:seeAlso :pbcadc600d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointConcentration . + +:SubstanceDetected a rdf:Property ; + rdfs:seeAlso :pb61f4e80d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SubstanceDetected . + +:pbcadc600d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ion concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointConcentration" ; + IFC4-PSD:definition "The ion concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知されるイオン濃度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지되는 이온 농도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "bcadc600d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointConcentration" ; + IFC4-PSD:nameAlias "이온 농도 설정"@ko-KR , "Set Point Concentration"@en , "イオン濃度設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcIonConcentrationMeasure + ] . + +:Pset_SensorTypeIonConcentrationSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects ion concentration such as water hardness. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeIonConcentrationSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/IONCONCENTRATIONSENSOR" ; + IFC4-PSD:definition "A device that senses or detects ion concentration such as water hardness. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "水の硬度などのイオン濃度を感知または検出する装置"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeIonConcentrationSensor" ; + IFC4-PSD:propertyDef :pb61f4e80d20511e1800000215ad4efdf , :pbcadc600d20511e1800000215ad4efdf . + +:pb61f4e80d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identification of the substance that is being detected according to chemical formula. For example, calcium carbonate is 'CaCO3'" ; + rdfs:label "SubstanceDetected" ; + IFC4-PSD:definition "Identification of the substance that is being detected according to chemical formula. For example, calcium carbonate is 'CaCO3'" ; + IFC4-PSD:definitionAlias ""@en , "검출되는 물질의 식별."@ko-KR , "検出されている物質の識別。"@ja-JP ; + IFC4-PSD:ifdguid "b61f4e80d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SubstanceDetected" ; + IFC4-PSD:nameAlias "Substance Detected"@en , "대상 물질"@ko-KR , "対象物質"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeLevelSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeLevelSensor.ttl new file mode 100644 index 00000000..903a0a47 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeLevelSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SensorTypeLevelSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects fill level. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeLevelSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/LEVEL" ; + IFC4-PSD:definition "A device that senses or detects fill level. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "レベルを感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeLevelSensor" ; + IFC4-PSD:propertyDef :pc9cab500d20511e1800000215ad4efdf . + +:SetPointLevel a rdf:Property ; + rdfs:seeAlso :pc9cab500d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointLevel . + +:pc9cab500d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointLevel" ; + IFC4-PSD:definition "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知されるレベル。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지되는 수준. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "c9cab500d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointLevel" ; + IFC4-PSD:nameAlias "레벨 설정"@ko-KR , "レベル設定値"@ja-JP , "Set Point Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeLightSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeLightSensor.ttl new file mode 100644 index 00000000..d6c5c858 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeLightSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe1a23900d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The illuminance value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointIlluminance" ; + IFC4-PSD:definition "The illuminance value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en , "感知される照度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지하는 조도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR ; + IFC4-PSD:ifdguid "e1a23900d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointIlluminance" ; + IFC4-PSD:nameAlias "Set Point Illuminance"@en , "조도 설정"@ko-KR , "照度設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcIlluminanceMeasure + ] . + +:SetPointIlluminance a rdf:Property ; + rdfs:seeAlso :pe1a23900d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointIlluminance . + +:Pset_SensorTypeLightSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects light. HISTORY: LightSensorSensorSetPoint changed to SetPointIlluminance. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeLightSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/LIGHTSENSOR" ; + IFC4-PSD:definition "A device that senses or detects light. HISTORY: LightSensorSensorSetPoint changed to SetPointIlluminance. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias "光を感知または検出するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeLightSensor" ; + IFC4-PSD:propertyDef :pe1a23900d20511e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeMoistureSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeMoistureSensor.ttl new file mode 100644 index 00000000..3a28c892 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeMoistureSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SetPointMoisture a rdf:Property ; + rdfs:seeAlso :pee269180d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointMoisture . + +:Pset_SensorTypeMoistureSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects moisture. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeMoistureSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/MOISTURESENSOR" ; + IFC4-PSD:definition "A device that senses or detects moisture. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "水分を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeMoistureSensor" ; + IFC4-PSD:propertyDef :pee269180d20511e1800000215ad4efdf . + +:pee269180d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The moisture value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointMoisture" ; + IFC4-PSD:definition "The moisture value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias ""@en , "感知される水分。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , "감지되는 수분. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR ; + IFC4-PSD:ifdguid "ee269180d20511e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointMoisture" ; + IFC4-PSD:nameAlias "水分設定値"@ja-JP , "Set Point Moisture"@en , "수분 설정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeMovementSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeMovementSensor.ttl new file mode 100644 index 00000000..80a802b0 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeMovementSensor.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SensorTypeMovementSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects movement. HISTORY: In IFC4, time constant deleted." ; + rdfs:label "Pset_SensorTypeMovementSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/MOVEMENTSENSOR" ; + IFC4-PSD:definition "A device that senses or detects movement. HISTORY: In IFC4, time constant deleted." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeMovementSensor" ; + IFC4-PSD:propertyDef :p09919c80d20611e1800000215ad4efdf , :pfd0d4400d20511e1800000215ad4efdf . + +:SetPointMovement a rdf:Property ; + rdfs:seeAlso :p09919c80d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointMovement . + +:MovementSensingType a rdf:Property ; + rdfs:seeAlso :pfd0d4400d20511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MovementSensingType . + +:pfd0d4400d20511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that identifies the type of movement sensing mechanism." ; + rdfs:label "MovementSensingType" ; + IFC4-PSD:definition "Enumeration that identifies the type of movement sensing mechanism." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "fd0d4400d20511e1800000215ad4efdf" ; + IFC4-PSD:name "MovementSensingType" ; + IFC4-PSD:nameAlias "Movement Sensing Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PHOTOELECTRICCELL" , "PRESSUREPAD" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p09919c80d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The movement to be sensed." ; + rdfs:label "SetPointMovement" ; + IFC4-PSD:definition "The movement to be sensed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "09919c80d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointMovement" ; + IFC4-PSD:nameAlias "Set Point Movement"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypePHSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypePHSensor.ttl new file mode 100644 index 00000000..c003bc2f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypePHSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1910e580d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointPH" ; + IFC4-PSD:definition "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知される酸性度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , ""@en , "감지되는 산도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR ; + IFC4-PSD:ifdguid "1910e580d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointPH" ; + IFC4-PSD:nameAlias "酸性度設定値"@ja-JP , "Set Point PH"@en , "산성도 설정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPHMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypePHSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects acidity. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypePHSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/PHSENSOR" ; + IFC4-PSD:definition "A device that senses or detects acidity. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "酸性度を感知または検出するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypePHSensor" ; + IFC4-PSD:propertyDef :p1910e580d20611e1800000215ad4efdf . + +:SetPointPH a rdf:Property ; + rdfs:seeAlso :p1910e580d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointPH . diff --git a/converter/src/main/resources/pset/Pset_SensorTypePressureSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypePressureSensor.ttl new file mode 100644 index 00000000..dfab59d1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypePressureSensor.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypePressureSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects pressure. HISTORY: PressureSensorSensorSetPoint changed to SetPointPressure. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypePressureSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/PRESSURESENSOR" ; + IFC4-PSD:definition "A device that senses or detects pressure. HISTORY: PressureSensorSensorSetPoint changed to SetPointPressure. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias "圧力を感知または検出するデバイス。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypePressureSensor" ; + IFC4-PSD:propertyDef :p262dd480d20611e1800000215ad4efdf , :p30e86980d20611e1800000215ad4efdf . + +:IsSwitch a rdf:Property ; + rdfs:seeAlso :p30e86980d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsSwitch . + +:p30e86980d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies if the sensor also functions as a switch at the set point (=TRUE) or not (= FALSE)." ; + rdfs:label "IsSwitch" ; + IFC4-PSD:definition "Identifies if the sensor also functions as a switch at the set point (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "센서 설정에서 스위치 역할 (TRUE) 또는 여부 (FALSE)를 확인한다."@ko-KR , "センサーが設定値でスイッチとして機能する(TRUE)か、否か(FALSE)を識別する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "30e86980d20611e1800000215ad4efdf" ; + IFC4-PSD:name "IsSwitch" ; + IFC4-PSD:nameAlias "スイッチ機能の有無"@ja-JP , "스위치 기능의 유무"@ko-KR , "Is Switch"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p262dd480d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointPressure" ; + IFC4-PSD:definition "The pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 압력. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en , "感知される圧力。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "262dd480d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointPressure" ; + IFC4-PSD:nameAlias "Set Point Pressure"@en , "압력 설정"@ko-KR , "圧力設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:SetPointPressure a rdf:Property ; + rdfs:seeAlso :p262dd480d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointPressure . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeRadiationSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeRadiationSensor.ttl new file mode 100644 index 00000000..42401e49 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeRadiationSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p3cd42b80d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The radiation power value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointRadiation" ; + IFC4-PSD:definition "The radiation power value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知される放射線量。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , ""@en , "감지되는 방사선. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR ; + IFC4-PSD:ifdguid "3cd42b80d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointRadiation" ; + IFC4-PSD:nameAlias "放射線設定値"@ja-JP , "방사선 설정"@ko-KR , "Set Point Radiation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:SetPointRadiation a rdf:Property ; + rdfs:seeAlso :p3cd42b80d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointRadiation . + +:Pset_SensorTypeRadiationSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects radiation. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeRadiationSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/RADIATIONSENSOR" ; + IFC4-PSD:definition "A device that senses or detects radiation. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "放射線を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeRadiationSensor" ; + IFC4-PSD:propertyDef :p3cd42b80d20611e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeRadioactivitySensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeRadioactivitySensor.ttl new file mode 100644 index 00000000..ee4caa78 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeRadioactivitySensor.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeRadioactivitySensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects atomic decay. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeRadioactivitySensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/RADIOACTIVITYSENSOR" ; + IFC4-PSD:definition "A device that senses or detects atomic decay. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "原子核の崩壊を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeRadioactivitySensor" ; + IFC4-PSD:propertyDef :p4bbade00d20611e1800000215ad4efdf . + +:p4bbade00d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The radioactivity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointRadioactivity" ; + IFC4-PSD:definition "The radioactivity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 방사능. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en , "感知される放射能。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "4bbade00d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointRadioactivity" ; + IFC4-PSD:nameAlias "放射能設定値"@ja-JP , "Set Point Radioactivity"@en , "방사능 설정"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcRadioActivityMeasure + ] . + +:SetPointRadioactivity + a rdf:Property ; + rdfs:seeAlso :p4bbade00d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointRadioactivity . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeSmokeSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeSmokeSensor.ttl new file mode 100644 index 00000000..8444b9b5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeSmokeSensor.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SensorTypeSmokeSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects smoke. HISTORY: PressureSensorSensorSetPoint (error in previous release) changed to SetPointConcentration. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeSmokeSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/SMOKESENSOR" ; + IFC4-PSD:definition "A device that senses or detects smoke. HISTORY: PressureSensorSensorSetPoint (error in previous release) changed to SetPointConcentration. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias ""@en , "煙を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeSmokeSensor" ; + IFC4-PSD:propertyDef :p58d7cd00d20611e1800000215ad4efdf , :p5f664480d20611e1800000215ad4efdf , :p68571600d20611e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CoverageArea a rdf:Property ; + rdfs:seeAlso :p58d7cd00d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverageArea . + +:p5f664480d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The smoke concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointConcentration" ; + IFC4-PSD:definition "The smoke concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "感知される煙濃度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , ""@en , "감지되는 연기 농도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR ; + IFC4-PSD:ifdguid "5f664480d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointConcentration" ; + IFC4-PSD:nameAlias "연기 농도 설정"@ko-KR , "Set Point Concentration"@en , "煙濃度設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:SetPointConcentration + a rdf:Property ; + rdfs:seeAlso :p5f664480d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointConcentration . + +:p58d7cd00d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + rdfs:label "CoverageArea" ; + IFC4-PSD:definition "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." ; + IFC4-PSD:definitionAlias "センサでカバーされている床面積。(通常、センターがセンサの位置にある円として測定される)"@ja-JP , "센서 커버되는 바닥 면적. (일반적으로 센터 센서의 위치에있는 원형으로 측정되는)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "58d7cd00d20611e1800000215ad4efdf" ; + IFC4-PSD:name "CoverageArea" ; + IFC4-PSD:nameAlias "측정 범위"@ko-KR , "Coverage Area"@en , "測定範囲"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:HasBuiltInAlarm a rdf:Property ; + rdfs:seeAlso :p68571600d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasBuiltInAlarm . + +:p68571600d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the smoke sensor is included as an element within a smoke alarm/sensor unit (TRUE) or not (FALSE)." ; + rdfs:label "HasBuiltInAlarm" ; + IFC4-PSD:definition "Indicates whether the smoke sensor is included as an element within a smoke alarm/sensor unit (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "연기 센서가 화재 경보 센서 유닛의 요소로 포함되어 있는지 (TRUE) 여부 (FALSE)를 확인한다."@ko-KR , "煙センサーが煙警報センサユニットの中に要素として含まれているか(TRUE)、否か(FALSE)を識別する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "68571600d20611e1800000215ad4efdf" ; + IFC4-PSD:name "HasBuiltInAlarm" ; + IFC4-PSD:nameAlias "煙警報器に含まれているか"@ja-JP , "연기 경보기에 포함여부"@ko-KR , "Has Built In Alarm"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeSoundSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeSoundSensor.ttl new file mode 100644 index 00000000..897eeeb3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeSoundSensor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SetPointSound a rdf:Property ; + rdfs:seeAlso :p7442d800d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointSound . + +:Pset_SensorTypeSoundSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects sound. HISTORY: SoundSensorSensorSetPoint changed to SetPointSound. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeSoundSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/SOUNDSENSOR" ; + IFC4-PSD:definition "A device that senses or detects sound. HISTORY: SoundSensorSensorSetPoint changed to SetPointSound. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias ""@en , "音を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeSoundSensor" ; + IFC4-PSD:propertyDef :p7442d800d20611e1800000215ad4efdf . + +:p7442d800d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The sound pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointSound" ; + IFC4-PSD:definition "The sound pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 음압. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , ""@en , "感知される音圧。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP ; + IFC4-PSD:ifdguid "7442d800d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointSound" ; + IFC4-PSD:nameAlias "音圧設定値"@ja-JP , "읍압 설정치"@ko-KR , "Set Point Sound"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcSoundPressureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeTemperatureSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeTemperatureSensor.ttl new file mode 100644 index 00000000..18dcee75 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeTemperatureSensor.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeTemperatureSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects temperature. HISTORY: TemperatureSensorSensorSetPoint changed to SetPointTemperature. Range, accuracy and time constant deleted." ; + rdfs:label "Pset_SensorTypeTemperatureSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/TEMPERATURESENSOR" ; + IFC4-PSD:definition "A device that senses or detects temperature. HISTORY: TemperatureSensorSensorSetPoint changed to SetPointTemperature. Range, accuracy and time constant deleted." ; + IFC4-PSD:definitionAlias ""@en , "温度を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeTemperatureSensor" ; + IFC4-PSD:propertyDef :p93416a00d20611e1800000215ad4efdf , :p815fc700d20611e1800000215ad4efdf . + +:SetPointTemperature a rdf:Property ; + rdfs:seeAlso :p93416a00d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointTemperature . + +:p815fc700d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that Identifies the types of temperature sensor that can be specified." ; + rdfs:label "TemperatureSensorType" ; + IFC4-PSD:definition "Enumeration that Identifies the types of temperature sensor that can be specified." ; + IFC4-PSD:definitionAlias ""@en , "明示された温度センサーのタイプを識別する一覧。"@ja-JP , "명시된 온도 센서 유형을 식별하는 목록."@ko-KR ; + IFC4-PSD:ifdguid "815fc700d20611e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureSensorType" ; + IFC4-PSD:nameAlias "온도 센서 타입"@ko-KR , "Temperature Sensor Type"@en , "温度センサータイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HIGHLIMIT" , "LOWLIMIT" , "OUTSIDETEMPERATURE" , "OPERATINGTEMPERATURE" , "ROOMTEMPERATURE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:TemperatureSensorType + a rdf:Property ; + rdfs:seeAlso :p815fc700d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureSensorType . + +:p93416a00d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointTemperature" ; + IFC4-PSD:definition "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 온도. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , "感知される温度。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "93416a00d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointTemperature" ; + IFC4-PSD:nameAlias "温度設定値"@ja-JP , "온도 성정"@ko-KR , "Set Point Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SensorTypeWindSensor.ttl b/converter/src/main/resources/pset/Pset_SensorTypeWindSensor.ttl new file mode 100644 index 00000000..824b4cdc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SensorTypeWindSensor.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pa2c0b300d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration that Identifies the types of wind sensors that can be specified." ; + rdfs:label "WindSensorType" ; + IFC4-PSD:definition "Enumeration that Identifies the types of wind sensors that can be specified." ; + IFC4-PSD:definitionAlias ""@en , "명시된 바람 센서 유형을 식별하는 목록."@ko-KR , "明示された風センサーのタイプを識別する一覧。"@ja-JP ; + IFC4-PSD:ifdguid "a2c0b300d20611e1800000215ad4efdf" ; + IFC4-PSD:name "WindSensorType" ; + IFC4-PSD:nameAlias "바람 센서 타입"@ko-KR , "風センサータイプ"@ja-JP , "Wind Sensor Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CUP" , "UNSET" , "OTHER" , "TUBE" , "SONIC" , "LASERDOPPLER" , "WINDMILL" , "HOTWIRE" , "NOTKNOWN" , "PLATE" + ] . + +:SetPointSpeed a rdf:Property ; + rdfs:seeAlso :pb66c1980d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPointSpeed . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SensorTypeWindSensor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A device that senses or detects wind speed and direction. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SensorTypeWindSensor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSensor/WINDSENSOR" ; + IFC4-PSD:definition "A device that senses or detects wind speed and direction. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "風速を感知または検出するデバイス。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SensorTypeWindSensor" ; + IFC4-PSD:propertyDef :pb66c1980d20611e1800000215ad4efdf , :pa2c0b300d20611e1800000215ad4efdf . + +:pb66c1980d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The wind speed value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + rdfs:label "SetPointSpeed" ; + IFC4-PSD:definition "The wind speed value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." ; + IFC4-PSD:definitionAlias "감지되는 바람. 세트 포인트 값을 넣으려면, IfcPropertyBoundedValue.SetPointValue를 사용하십시오."@ko-KR , "感知される風速。\nセットポイント値を置くために、IfcPropertyBoundedValue.SetPointValueを使用する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b66c1980d20611e1800000215ad4efdf" ; + IFC4-PSD:name "SetPointSpeed" ; + IFC4-PSD:nameAlias "Set Point Speed"@en , "풍속 설정"@ko-KR , "風速設定値"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLinearVelocityMeasure + ] . + +:WindSensorType a rdf:Property ; + rdfs:seeAlso :pa2c0b300d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WindSensorType . diff --git a/converter/src/main/resources/pset/Pset_ServiceLife.ttl b/converter/src/main/resources/pset/Pset_ServiceLife.ttl new file mode 100644 index 00000000..def0748f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ServiceLife.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ServiceLife a IFC4-PSD:PropertySetDef ; + rdfs:comment "Captures the period of time that an artifact will last. HISTORY: Introduced in IFC2X4 as replacement for IfcServiceLife." ; + rdfs:label "Pset_ServiceLife" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "Captures the period of time that an artifact will last. HISTORY: Introduced in IFC2X4 as replacement for IfcServiceLife." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ServiceLife" ; + IFC4-PSD:propertyDef :peadfd580d20611e1800000215ad4efdf , :p8eb2f46791c242e7b997996569152d4f . + +:MeanTimeBetweenFailure + a rdf:Property ; + rdfs:seeAlso :p8eb2f46791c242e7b997996569152d4f ; + rdfs:subPropertyOf IFC4-PSD:MeanTimeBetweenFailure . + +:p8eb2f46791c242e7b997996569152d4f + a IFC4-PSD:PropertyDef ; + rdfs:comment "The average time duration between instances of failure of a product." ; + rdfs:label "MeanTimeBetweenFailure" ; + IFC4-PSD:definition "The average time duration between instances of failure of a product." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8eb2f46791c242e7b997996569152d4f" ; + IFC4-PSD:name "MeanTimeBetweenFailure" ; + IFC4-PSD:nameAlias "Mean Time Between Failure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:peadfd580d20611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length or duration of a service life. \n\nThe lower bound indicates pessimistic service life, the upper bound indicates optimistic service life, and the setpoint indicates the typical service life." ; + rdfs:label "ServiceLifeDuration" ; + IFC4-PSD:definition "The length or duration of a service life. \n\nThe lower bound indicates pessimistic service life, the upper bound indicates optimistic service life, and the setpoint indicates the typical service life." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "eadfd580d20611e1800000215ad4efdf" ; + IFC4-PSD:name "ServiceLifeDuration" ; + IFC4-PSD:nameAlias "Service Life Duration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ServiceLifeDuration a rdf:Property ; + rdfs:seeAlso :peadfd580d20611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ServiceLifeDuration . diff --git a/converter/src/main/resources/pset/Pset_ServiceLifeFactors.ttl b/converter/src/main/resources/pset/Pset_ServiceLifeFactors.ttl new file mode 100644 index 00000000..e1ee2b13 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ServiceLifeFactors.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:DesignLevel a rdf:Property ; + rdfs:seeAlso :p8d77f8cb925b4cfdbea48301f42c89a0 ; + rdfs:subPropertyOf IFC4-PSD:DesignLevel . + +:p9988ab22befe45c9ab3c94972c61bd90 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the outdoor environment (where appropriate)" ; + rdfs:label "OutdoorEnvironment" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the outdoor environment (where appropriate)" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "9988ab22befe45c9ab3c94972c61bd90" ; + IFC4-PSD:name "OutdoorEnvironment" ; + IFC4-PSD:nameAlias "Outdoor Environment"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pac78d9e0d39b43f4af2c7b7596d60667 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the quality of work executed." ; + rdfs:label "WorkExecutionLevel" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the quality of work executed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ac78d9e0d39b43f4af2c7b7596d60667" ; + IFC4-PSD:name "WorkExecutionLevel" ; + IFC4-PSD:nameAlias "Work Execution Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p8d77f8cb925b4cfdbea48301f42c89a0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of design level employed." ; + rdfs:label "DesignLevel" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of design level employed." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8d77f8cb925b4cfdbea48301f42c89a0" ; + IFC4-PSD:name "DesignLevel" ; + IFC4-PSD:nameAlias "Design Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_ServiceLifeFactors + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Captures various factors that impact the expected service life of elements within the system or zone." ; + rdfs:label "Pset_ServiceLifeFactors" ; + IFC4-PSD:applicableClass IFC4:IfcSystem ; + IFC4-PSD:applicableTypeValue "IfcSystem" ; + IFC4-PSD:definition "Captures various factors that impact the expected service life of elements within the system or zone." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ServiceLifeFactors" ; + IFC4-PSD:propertyDef :p97e75274042544a89cb65b8a94766d30 , :pab27c286d027498e962abd4fa0cab9a8 , :p37ac936a1b0a42bfa3c0f4998cca50e4 , :pd5f5278715be42a0b539cf3f060054e3 , :pac78d9e0d39b43f4af2c7b7596d60667 , :p9988ab22befe45c9ab3c94972c61bd90 , :p8d77f8cb925b4cfdbea48301f42c89a0 . + +:p97e75274042544a89cb65b8a94766d30 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the level or degree of maintenance applied to dcomponents." ; + rdfs:label "MaintenanceLevel" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the level or degree of maintenance applied to dcomponents." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "97e75274042544a89cb65b8a94766d30" ; + IFC4-PSD:name "MaintenanceLevel" ; + IFC4-PSD:nameAlias "Maintenance Level"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:IndoorEnvironment a rdf:Property ; + rdfs:seeAlso :pab27c286d027498e962abd4fa0cab9a8 ; + rdfs:subPropertyOf IFC4-PSD:IndoorEnvironment . + +:MaintenanceLevel a rdf:Property ; + rdfs:seeAlso :p97e75274042544a89cb65b8a94766d30 ; + rdfs:subPropertyOf IFC4-PSD:MaintenanceLevel . + +:p37ac936a1b0a42bfa3c0f4998cca50e4 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the conditions in which components are operating." ; + rdfs:label "InUseConditions" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the conditions in which components are operating." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "37ac936a1b0a42bfa3c0f4998cca50e4" ; + IFC4-PSD:name "InUseConditions" ; + IFC4-PSD:nameAlias "In Use Conditions"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pab27c286d027498e962abd4fa0cab9a8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the indoor environment (where appropriate)." ; + rdfs:label "IndoorEnvironment" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the indoor environment (where appropriate)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "ab27c286d027498e962abd4fa0cab9a8" ; + IFC4-PSD:name "IndoorEnvironment" ; + IFC4-PSD:nameAlias "Indoor Environment"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pd5f5278715be42a0b539cf3f060054e3 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Adjustment of the service life resulting from the effect of the quality of components used." ; + rdfs:label "QualityOfComponents" ; + IFC4-PSD:definition "Adjustment of the service life resulting from the effect of the quality of components used." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "d5f5278715be42a0b539cf3f060054e3" ; + IFC4-PSD:name "QualityOfComponents" ; + IFC4-PSD:nameAlias "Quality Of Components"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:InUseConditions a rdf:Property ; + rdfs:seeAlso :p37ac936a1b0a42bfa3c0f4998cca50e4 ; + rdfs:subPropertyOf IFC4-PSD:InUseConditions . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WorkExecutionLevel a rdf:Property ; + rdfs:seeAlso :pac78d9e0d39b43f4af2c7b7596d60667 ; + rdfs:subPropertyOf IFC4-PSD:WorkExecutionLevel . + +:QualityOfComponents a rdf:Property ; + rdfs:seeAlso :pd5f5278715be42a0b539cf3f060054e3 ; + rdfs:subPropertyOf IFC4-PSD:QualityOfComponents . + +:OutdoorEnvironment a rdf:Property ; + rdfs:seeAlso :p9988ab22befe45c9ab3c94972c61bd90 ; + rdfs:subPropertyOf IFC4-PSD:OutdoorEnvironment . diff --git a/converter/src/main/resources/pset/Pset_ShadingDeviceCommon.ttl b/converter/src/main/resources/pset/Pset_ShadingDeviceCommon.ttl new file mode 100644 index 00000000..111a8fca --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ShadingDeviceCommon.ttl @@ -0,0 +1,232 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9c7f0680d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the visible light that is reflected by the glazing at normal incidence. It is a value without unit." ; + rdfs:label "VisibleLightReflectance" ; + IFC4-PSD:definition "Fraction of the visible light that is reflected by the glazing at normal incidence. It is a value without unit." ; + IFC4-PSD:definitionAlias "Fraction du rayonnement visible qui est réfléchi par la protection solaire sous incidence normale. Valeur sans unité."@fr-FR , "通常の入射における日除け装置により反射される可視光の比率。単位の無い数値。"@ja-JP , ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "9c7f0680d20711e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleLightReflectance" ; + IFC4-PSD:nameAlias "Reflexion du rayonnement visible"@fr-FR , "Reflektionsgrad für sichtbares Licht"@de-DE , "可視光反射率"@ja-JP , "Visible Light Reflectance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p69d50e00d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; + IFC4-PSD:ifdguid "69d50e00d20711e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Außenbauteil"@de-DE , "外部区分"@ja-JP , "Is External"@en , "Est extérieur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p6f325880d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is operated machanically (TRUE) or not, i.e. manually (FALSE)." ; + rdfs:label "MechanicalOperated" ; + IFC4-PSD:definition "Indication whether the element is operated machanically (TRUE) or not, i.e. manually (FALSE)." ; + IFC4-PSD:definitionAlias "機械的操作が可能かどうかを示すブーリアン値。可能な場合TRUE、手動の場合FALSE。"@ja-JP , "Angabe, ob dieses Bauteil mechanisch bewegt oder angetrieben wird (JA) oder manuell (NEIN). Diese Eigenschaft wird nur für beweglichen Sonnenschutz angegeben."@de-DE , ""@en , "Indique si l'élément est actionné mécaniquement (VRAI) ou manuellement (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "6f325880d20711e1800000215ad4efdf" ; + IFC4-PSD:name "MechanicalOperated" ; + IFC4-PSD:nameAlias "機械的操作"@ja-JP , "Mechanisch"@de-DE , "Mechanical Operated"@en , "Actionné mécaniquement"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p47db8b80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Bemusterungstyp, wird als Attribute angegeben, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). A fournir s'il n'y a pas de référence à une classification en usage."@fr-FR ; + IFC4-PSD:ifdguid "47db8b80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bemusterungstyp"@de-DE , "Référence"@fr-FR , "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p47db8b80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p69d50e00d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:VisibleLightTransmittance + a rdf:Property ; + rdfs:seeAlso :p7f4a3800d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleLightTransmittance . + +:p7f4a3800d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the visible light that passes the shading system at normal incidence. It is a value without unit." ; + rdfs:label "VisibleLightTransmittance" ; + IFC4-PSD:definition "Fraction of the visible light that passes the shading system at normal incidence. It is a value without unit." ; + IFC4-PSD:definitionAlias "通常の入射における日除け装置を通過する可視光の比率。単位の無い数値。"@ja-JP , "Fraction du rayonnement visible qui est transmise par la protection solaire sous incidence normale. Valeur sans unité."@fr-FR , ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "7f4a3800d20711e1800000215ad4efdf" ; + IFC4-PSD:name "VisibleLightTransmittance" ; + IFC4-PSD:nameAlias "Transmittance du rayonnement visible"@fr-FR , "可視光透過率"@ja-JP , "Visible Light Transmittance"@en , "Transmissionsgrad für sichtbares Licht"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p4e6a0300d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , ""@en ; + IFC4-PSD:ifdguid "4e6a0300d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@de-DE , "Statut"@fr-FR , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p85401900d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(Rsol): The ratio of incident solar radiation that is reflected by a shading system (also named ρe). Note the following equation Asol + Rsol + Tsol = 1" ; + rdfs:label "SolarReflectance" ; + IFC4-PSD:definition "(Rsol): The ratio of incident solar radiation that is reflected by a shading system (also named ρe). Note the following equation Asol + Rsol + Tsol = 1" ; + IFC4-PSD:definitionAlias "(Rsol):日除けシステムにより反射される日射の率。注: Asol + Rsol + Tsol = 1 という方程式が成り立つ。"@ja-JP , ""@de-DE , ""@en , "(Rsol). Ratio du rayonnement solaire incident qui est réfléchi par la protection solaire. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR ; + IFC4-PSD:ifdguid "85401900d20711e1800000215ad4efdf" ; + IFC4-PSD:name "SolarReflectance" ; + IFC4-PSD:nameAlias "Solar Reflectance"@en , "Reflexion du rayonnement solaire"@fr-FR , "Strahlungsreflectionsgrad"@de-DE , "日射反射率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ShadingDeviceType a rdf:Property ; + rdfs:seeAlso :p5de94c00d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShadingDeviceType . + +:Status a rdf:Property ; + rdfs:seeAlso :p4e6a0300d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:SolarTransmittance a rdf:Property ; + rdfs:seeAlso :p79eced80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarTransmittance . + +:p5de94c00d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Specifies the type of shading device." ; + rdfs:label "ShadingDeviceType" ; + IFC4-PSD:definition "Specifies the type of shading device." ; + IFC4-PSD:definitionAlias "日除け装置の種別を設定する。"@ja-JP , ""@de-DE , ""@en , "Spécifies le type de protection solaire."@fr-FR ; + IFC4-PSD:ifdguid "5de94c00d20711e1800000215ad4efdf" ; + IFC4-PSD:name "ShadingDeviceType" ; + IFC4-PSD:nameAlias "Type de protection solaire"@fr-FR , "Shading Device Type"@en , "Sonnenschutztyp"@de-DE , "日除け装置種別"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FIXED" , "MOVABLE" , "OVERHANG" , "SIDEFIN" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SolarReflectance a rdf:Property ; + rdfs:seeAlso :p85401900d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SolarReflectance . + +:p75283980d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material of a certain thickness for this element." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material of a certain thickness for this element." ; + IFC4-PSD:definitionAlias ""@en , "Coefficient de transmission thermique surfacique (U) d'un métériau d'une certaine épaisseur pour cet élément"@fr-FR , "熱貫流率U値。\nここでは(すべての材料を含む)梁を通した熱移動の方向における全体の熱還流率を示す。\n注:IFC2x4の新しいプロパティ"@ja-JP , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Tür."@de-DE ; + IFC4-PSD:ifdguid "75283980d20711e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "U-Wert"@de-DE , "Thermal Transmittance"@en , "Transmission thermique surfacique"@fr-FR , "熱貫流率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:pa86ac880d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The color of the surface." ; + rdfs:label "SurfaceColor" ; + IFC4-PSD:definition "The color of the surface." ; + IFC4-PSD:definitionAlias "表面の色を示す文字列情報。"@ja-JP , "La couleur de la surface"@fr-FR , ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "a86ac880d20711e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceColor" ; + IFC4-PSD:nameAlias "Oberflächenfarbe"@de-DE , "表面色"@ja-JP , "Couleur surface"@fr-FR , "Surface Color"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:SurfaceColor a rdf:Property ; + rdfs:seeAlso :pa86ac880d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceColor . + +:Roughness a rdf:Property ; + rdfs:seeAlso :pa1dc5100d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Roughness . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p75283980d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:pa1dc5100d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A measure of the vertical deviations of the surface." ; + rdfs:label "Roughness" ; + IFC4-PSD:definition "A measure of the vertical deviations of the surface." ; + IFC4-PSD:definitionAlias ""@de-DE , ""@en , "表面の垂直方向の偏差。"@ja-JP , "Une mesure des déviations verticales de la surface."@fr-FR ; + IFC4-PSD:ifdguid "a1dc5100d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Roughness" ; + IFC4-PSD:nameAlias "Rauheit der Oberfläche"@de-DE , "表面粗さ"@ja-JP , "Roughness"@en , "Rugosité"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_ShadingDeviceCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shading device properties associated with an element that represents a shading device" ; + rdfs:label "Pset_ShadingDeviceCommon" ; + IFC4-PSD:applicableClass IFC4:IfcShadingDevice ; + IFC4-PSD:applicableTypeValue "IfcShadingDevice" ; + IFC4-PSD:definition "Shading device properties associated with an element that represents a shading device" ; + IFC4-PSD:definitionAlias ""@en , "日除け装置(IfcShadingDeviceオブジェクト)に関する共通プロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ShadingDeviceCommon" ; + IFC4-PSD:propertyDef :p4e6a0300d20711e1800000215ad4efdf , :pa86ac880d20711e1800000215ad4efdf , :p5de94c00d20711e1800000215ad4efdf , :p47db8b80d20711e1800000215ad4efdf , :p69d50e00d20711e1800000215ad4efdf , :p6f325880d20711e1800000215ad4efdf , :p7f4a3800d20711e1800000215ad4efdf , :p79eced80d20711e1800000215ad4efdf , :pa1dc5100d20711e1800000215ad4efdf , :p85401900d20711e1800000215ad4efdf , :p9c7f0680d20711e1800000215ad4efdf , :p75283980d20711e1800000215ad4efdf . + +:p79eced80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "(Tsol): The ratio of incident solar radiation that directly passes through a shading system (also named τe). Note the following equation Asol + Rsol + Tsol = 1" ; + rdfs:label "SolarTransmittance" ; + IFC4-PSD:definition "(Tsol): The ratio of incident solar radiation that directly passes through a shading system (also named τe). Note the following equation Asol + Rsol + Tsol = 1" ; + IFC4-PSD:definitionAlias "(Tsol). Ratio du rayonnement solaire incident qui est transmis directement par la protection solaire. Noter l'équation suivante : Asol + Rsol + Tsol = 1."@fr-FR , ""@de-DE , ""@en , "(Tsol):日除けシステムを直接透過する日射の率。注: Asol + Rsol + Tsol = 1 という方程式が成り立つ。"@ja-JP ; + IFC4-PSD:ifdguid "79eced80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "SolarTransmittance" ; + IFC4-PSD:nameAlias "Strahlungstransmissionsgrad"@de-DE , "日射透過率"@ja-JP , "Solar Transmittance"@en , "Transmission du rayonnement solaire"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:VisibleLightReflectance + a rdf:Property ; + rdfs:seeAlso :p9c7f0680d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VisibleLightReflectance . + +:MechanicalOperated a rdf:Property ; + rdfs:seeAlso :p6f325880d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MechanicalOperated . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ShadingDevicePHistory.ttl b/converter/src/main/resources/pset/Pset_ShadingDevicePHistory.ttl new file mode 100644 index 00000000..f3465414 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ShadingDevicePHistory.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Azimuth a rdf:Property ; + rdfs:seeAlso :pc6382d80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Azimuth . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ShadingDevicePHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Shading device performance history attributes." ; + rdfs:label "Pset_ShadingDevicePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcShadingDevice ; + IFC4-PSD:applicableTypeValue "IfcShadingDevice" ; + IFC4-PSD:definition "Shading device performance history attributes." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ShadingDevicePHistory" ; + IFC4-PSD:propertyDef :pc6382d80d20711e1800000215ad4efdf , :pb3255d80d20711e1800000215ad4efdf . + +:TiltAngle a rdf:Property ; + rdfs:seeAlso :pb3255d80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TiltAngle . + +:pc6382d80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The azimuth of the outward normal for the outward or upward facing surface." ; + rdfs:label "Azimuth" ; + IFC4-PSD:definition "The azimuth of the outward normal for the outward or upward facing surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "c6382d80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Azimuth" ; + IFC4-PSD:nameAlias "Azimuth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pb3255d80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The angle of tilt defined in the plane perpendicular to the extrusion axis (X-Axis of the local placement). The angle shall be measured from the orientation of the Z-Axis in the local placement." ; + rdfs:label "TiltAngle" ; + IFC4-PSD:definition "The angle of tilt defined in the plane perpendicular to the extrusion axis (X-Axis of the local placement). The angle shall be measured from the orientation of the Z-Axis in the local placement." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b3255d80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "TiltAngle" ; + IFC4-PSD:nameAlias "Tilt Angle"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_SiteCommon.ttl b/converter/src/main/resources/pset/Pset_SiteCommon.ttl new file mode 100644 index 00000000..197ed971 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SiteCommon.ttl @@ -0,0 +1,126 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:BuildingHeightLimit a rdf:Property ; + rdfs:seeAlso :pe2d46580d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BuildingHeightLimit . + +:Pset_SiteCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcSite. Please note that several site attributes are handled directly at the IfcSite instance, the site number (or short name) by IfcSite.Name, the site name (or long name) by IfcSite.LongName, and the description (or comments) by IfcSite.Description. The land title number is also given as an explicit attribute IfcSite.LandTitleNumber. Actual site quantities, like site perimeter, site area and site volume are provided by IfcElementQuantity, and site classification according to national building code by IfcClassificationReference. The global positioning of the site in terms of Northing and Easting and height above sea level datum is given by IfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevation and the postal address by IfcSite.SiteAddress." ; + rdfs:label "Pset_SiteCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSite ; + IFC4-PSD:applicableTypeValue "IfcSite" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSite. Please note that several site attributes are handled directly at the IfcSite instance, the site number (or short name) by IfcSite.Name, the site name (or long name) by IfcSite.LongName, and the description (or comments) by IfcSite.Description. The land title number is also given as an explicit attribute IfcSite.LandTitleNumber. Actual site quantities, like site perimeter, site area and site volume are provided by IfcElementQuantity, and site classification according to national building code by IfcClassificationReference. The global positioning of the site in terms of Northing and Easting and height above sea level datum is given by IfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevation and the postal address by IfcSite.SiteAddress." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de IfcSite. Veuillez noter que plusieurs attributs sont portés par l'instance IfcSite : le numéro du site ou nom court (IfcSite.Name), le nom ou nom long (IfcSite.LongName), et la description ou des commentaires (IfcSite.Description). Le numéro de référence du foncier est donné par l'attribut IfcSite.LandTitleNumber. Les quantités du site comme le périmètre et la superficie sont fournis par des instances de IfcElementQuantity et la référence à une classification nationale par IfcClassificationReference. La position du site en termes de longitude, latitude et altitude est donnée par IfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevation et l'adresse postale par IfcSite.SiteAddress."@fr-FR , ""@en , "IfcSiteに関する共通プロパティセット定義。以下の属性値に関しては、IfcSiteオブジェクトの属性に設定する。敷地番号はIfcSite.Name、敷地名称はIfcSite.LongName、敷地に関する記述はIfcSite.Description。敷地に関する周囲長、面積、体積などの数量値は、IfcElementQuantityによって設定する。地理情報に関する緯度・経度・標高値はIfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevationによって設定し、郵便住所はIfcSite.SiteAddressによって設定する。"@ja-JP , "Property Set Definition in German"@de-DE ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SiteCommon" ; + IFC4-PSD:propertyDef :pea940a00d20711e1800000215ad4efdf , :pe2d46580d20711e1800000215ad4efdf , :pdd771b00d20711e1800000215ad4efdf , :pd819d080d20711e1800000215ad4efdf , :pd3551c80d20711e1800000215ad4efdf , :pcd5f3b80d20711e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pd819d080d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio of the utilization, TotalArea / BuildableArea, expressed as a maximum value. The ratio value may be used to derive BuildableArea." ; + rdfs:label "SiteCoverageRatio" ; + IFC4-PSD:definition "The ratio of the utilization, TotalArea / BuildableArea, expressed as a maximum value. The ratio value may be used to derive BuildableArea." ; + IFC4-PSD:definitionAlias "建築基準により最大となる、敷地面積(IfcElementQuantity)と建築面積(IfcBuildingのIfcElementQuantity)の比率。"@ja-JP , "Grundflächenzahl als Verhältnis der bebaubaren Fläche zur Bruttogrundstücksfläche."@de-DE , "TotalArea / BuildableArea로 표시되는 이용 가능한 비율의 최대값입니다."@ko-KR , "Valeur maximale de la surface constructible exprimée en ratio. La valeur du ratio peut être utilisée pour déterminer la surface constructible."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "d819d080d20711e1800000215ad4efdf" ; + IFC4-PSD:name "SiteCoverageRatio" ; + IFC4-PSD:nameAlias "建蔽率"@ja-JP , "Grundflächenzahl"@de-DE , "Site Coverage Ratio"@en , "RatioSurfaceConstructible"@fr-FR , "건폐율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pd3551c80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The area of site utilization expressed as a maximum value according to local building codes." ; + rdfs:label "BuildableArea" ; + IFC4-PSD:definition "The area of site utilization expressed as a maximum value according to local building codes." ; + IFC4-PSD:definitionAlias "bebaubare Fläche als maximale überbaubare Fläche des Grundstücks."@de-DE , "Surface constructible maximale en fonction des contraintes d'urbanisme."@fr-FR , "속성정의"@ko-KR , "建築基準により建築可能な最大の面積。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d3551c80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "BuildableArea" ; + IFC4-PSD:nameAlias "建築可能面積"@ja-JP , "건축 가능 면적"@ko-KR , "bebaubare Fläche"@de-DE , "ValeurSurfaceConstructible"@fr-FR , "Buildable Area"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pdd771b00d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio of all floor areas to the buildable area as the maximum floor area utilization of the site as a maximum value according to local building codes." ; + rdfs:label "FloorAreaRatio" ; + IFC4-PSD:definition "The ratio of all floor areas to the buildable area as the maximum floor area utilization of the site as a maximum value according to local building codes." ; + IFC4-PSD:definitionAlias "Geschossflächenzahl als Verhältnis der gesamten Geschossfläche aller Vollgeschosse der baulichen Anlagen auf einem Baugrundstück zu der Fläche des Baugrundstücks."@de-DE , ""@en , "Ratio de la surface totale de planchers à la surface constructible, indication de la valeur maximale de la surface de planchers selon la règlementation locale (coefficient d'occupation des sols, N.d.T.)"@fr-FR , "建築基準により最大となる床面積と敷地面積(IfcElementQuantities)の比率。"@ja-JP ; + IFC4-PSD:ifdguid "dd771b00d20711e1800000215ad4efdf" ; + IFC4-PSD:name "FloorAreaRatio" ; + IFC4-PSD:nameAlias "ratio de surface de planchers"@fr-FR , "Floor Area Ratio"@en , "容積率"@ja-JP , "Geschossflächenzahl"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:FloorAreaRatio a rdf:Property ; + rdfs:seeAlso :pdd771b00d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FloorAreaRatio . + +:pe2d46580d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Allowed maximum height of buildings on this site - according to local building codes." ; + rdfs:label "BuildingHeightLimit" ; + IFC4-PSD:definition "Allowed maximum height of buildings on this site - according to local building codes." ; + IFC4-PSD:definitionAlias "Maximale Bebauungshöhe die auf diesem Grundstück zulässig ist."@de-DE , "Hauteur maximale des bâtiments autorisée sur ce site."@fr-FR , "各地域の建築基準により許可される建物の高さの最大値。"@ja-JP , "TotalArea / BuildableArea로 표시되는 이용 가능한 비율의 최대값입니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e2d46580d20711e1800000215ad4efdf" ; + IFC4-PSD:name "BuildingHeightLimit" ; + IFC4-PSD:nameAlias "건물 높이 제한"@ko-KR , "Building Height Limit"@en , "HauteurMaximale"@fr-FR , "maximale Bebauungshöhe"@de-DE , "建物高さ制限"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SiteCoverageRatio a rdf:Property ; + rdfs:seeAlso :pd819d080d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SiteCoverageRatio . + +:BuildableArea a rdf:Property ; + rdfs:seeAlso :pd3551c80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BuildableArea . + +:TotalArea a rdf:Property ; + rdfs:seeAlso :pea940a00d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalArea . + +:pcd5f3b80d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , "Identifikator der projektinternen Referenz für dieses Grundstück, z.B. nach der Grundstückklassifizierung des Bauherrn. Wird verwendet, wenn keine allgemein anerkanntes Klassifizierungssystem angewandt wird."@de-DE , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; + IFC4-PSD:ifdguid "cd5f3b80d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "Referenz ID"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pea940a00d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned area for the site. Used for programming the site space." ; + rdfs:label "TotalArea" ; + IFC4-PSD:definition "Total planned area for the site. Used for programming the site space." ; + IFC4-PSD:definitionAlias "부지에 대한 총 계획 면적. 호텔 공간 계획에 사용됩니다."@ko-KR , "敷地にたいする延べ計画面積。敷地空間の計画に使用。"@ja-JP , "Surface totale brute. Définie en phase de programmation."@fr-FR , "Gesamte Grundstücksfläche für diese Bauaufgabe."@de-DE , ""@en ; + IFC4-PSD:ifdguid "ea940a00d20711e1800000215ad4efdf" ; + IFC4-PSD:name "TotalArea" ; + IFC4-PSD:nameAlias "Bruttogrundstücksfläche"@de-DE , "Total Area"@en , "연면적"@ko-KR , "SurfaceBruteProgrammee"@fr-FR , "延べ面積"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pcd5f3b80d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_SlabCommon.ttl b/converter/src/main/resources/pset/Pset_SlabCommon.ttl index 63fa34cc..07657f17 100644 --- a/converter/src/main/resources/pset/Pset_SlabCommon.ttl +++ b/converter/src/main/resources/pset/Pset_SlabCommon.ttl @@ -1,250 +1,213 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_SlabCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_SlabCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcSlab" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSlab. Note: Properties for PitchAngle added in IFC 2x3" ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcSlab. Nota : la propriété AngleInclinaison a été introduite depuis la version 2x3."@fr-FR ; - IFC4-PSD:definitionAlias "IfcSlab(スラブ)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias """所有IfcSlab实例的定义中通用的属性。 -注:PitchAngle属性为IFC 2x3 新添。"""@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_SlabCommon" ; - IFC4-PSD:propertyDef :_00093400d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0d262300d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_13b49a80d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1a431200d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2038f300d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_2e870f00d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_347cf000d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_3b0b6780d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_4199df00d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_49598380d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_faabe980d20711e1800000215ad4efdf ; -. -:_00093400d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "00093400d20811e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_0d262300d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "0d262300d20811e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_13b49a80d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "13b49a80d20811e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1a431200d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est fait de matière combustible (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否由可燃材料制成。"@zh-CN ; - IFC4-PSD:ifdguid "1a431200d20811e1800000215ad4efdf" ; - IFC4-PSD:name "Combustible" ; - IFC4-PSD:nameAlias "Brennbares Material"@de-DE ; - IFC4-PSD:nameAlias "Combustible"@fr-FR ; - IFC4-PSD:nameAlias "可燃性区分"@ja-JP ; - IFC4-PSD:nameAlias "是否可燃"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2038f300d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication on how the flames spread around the surface, It is given according to the national building code that governs the fire behaviour for materials." ; - IFC4-PSD:definitionAlias "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR ; - IFC4-PSD:definitionAlias "炎がどのように材料の表面を広がるかという指標。材料の炎に対する振る舞いについての国家建築規則に従って提供される。"@ja-JP ; - IFC4-PSD:ifdguid "2038f300d20811e1800000215ad4efdf" ; - IFC4-PSD:name "SurfaceSpreadOfFlame" ; - IFC4-PSD:nameAlias "Brandverhalten"@de-DE ; - IFC4-PSD:nameAlias "SurfacePropagationFlamme"@fr-FR ; - IFC4-PSD:nameAlias "火炎伝播性"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_2e870f00d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material. Here the total thermal transmittance coefficient through the slab (including all materials)." ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la dalle (tous matériaux inclus)."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Decke (für alle Schichten)."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示穿过该板的整体导热系数(包括所有材料)。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここではスラブを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "2e870f00d20811e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_347cf000d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "347cf000d20811e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_3b0b6780d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "3b0b6780d20811e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_4199df00d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen Brandabschnitt begrenzt (WAHR), oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est conçu pour assurer un compartimentage contre l'incendie (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "部材が防火区画として用いられるかどうかを示すブーリアン値(TRUE or False)。"@ja-JP ; - IFC4-PSD:ifdguid "4199df00d20811e1800000215ad4efdf" ; - IFC4-PSD:name "Compartmentation" ; - IFC4-PSD:nameAlias "Brandabschnittsdefinierendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "Compartimentage"@fr-FR ; - IFC4-PSD:nameAlias "防火区画"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_49598380d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Angle of the slab to the horizontal when used as a component for the roof (specified as 0 degrees or not asserted for cases where the slab is not used as a roof component). - -The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only.""" ; - IFC4-PSD:definitionAlias "Angle de la dalle avec l'horizontale quand elle est utilisée comme un élément de la couverture (valeur 0 ou non définie lorsque la dalle ne participe pas à la couverture). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété."@fr-FR ; - IFC4-PSD:definitionAlias """Neigungswinkel der Decke gegenüber der Horizontalen wenn es sich um eine Dachfläche handelt. Angabe 0 Grad definiert eine horizontale Fläche. - -Dieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."""@de-DE ; - IFC4-PSD:definitionAlias """コンポーネントが屋根として使用される場合の、水平に対するスラブの角度(スラブが屋根として使用されない場合は、0度と指定されるか、定義されない)。 - -形状情報は形状の表現として追加され、幾何学的なパラメータが使用される。幾何学的なパラメータと追加された形状プロパティが矛盾する場合、幾何学的なパラメータが優先される。CADのような、幾何学操作アプリケーションにとって、この値は、書き込み専用であるべきだ。"""@ja-JP ; - IFC4-PSD:ifdguid "49598380d20811e1800000215ad4efdf" ; - IFC4-PSD:name "PitchAngle" ; - IFC4-PSD:nameAlias "AngleInclinaison"@fr-FR ; - IFC4-PSD:nameAlias "Dachflächenneigung"@de-DE ; - IFC4-PSD:nameAlias "勾配角度"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_faabe980d20711e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "faabe980d20711e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:p1a431200d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + rdfs:label "Combustible" ; + IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE , "Indique si l'objet est fait de matière combustible (VRAI) ou non (FAUX)."@fr-FR , "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP , ""@en , "表示该构件是否由可燃材料制成。"@zh-CN ; + IFC4-PSD:ifdguid "1a431200d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Combustible" ; + IFC4-PSD:nameAlias "是否可燃"@zh-CN , "Brennbares Material"@de-DE , "可燃性区分"@ja-JP , "Combustible"@en , "Combustible"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Compartmentation a rdf:Property ; + rdfs:seeAlso :p4199df00d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Compartmentation . + +:p49598380d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Angle of the slab to the horizontal when used as a component for the roof (specified as 0 degrees or not asserted for cases where the slab is not used as a roof component). \n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + rdfs:label "PitchAngle" ; + IFC4-PSD:definition "Angle of the slab to the horizontal when used as a component for the roof (specified as 0 degrees or not asserted for cases where the slab is not used as a roof component). \n\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. For geometry editing applications, like CAD: this value should be write-only." ; + IFC4-PSD:definitionAlias "Angle de la dalle avec l'horizontale quand elle est utilisée comme un élément de la couverture (valeur 0 ou non définie lorsque la dalle ne participe pas à la couverture). Cette propriété est donnée en complément de la représentation de la forme et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment. Les applications qui déterminent la géométrie comme les logiciels de CAO ne doivent pas autoriser la modification de cette propriété."@fr-FR , ""@en , "コンポーネントが屋根として使用される場合の、水平に対するスラブの角度(スラブが屋根として使用されない場合は、0度と指定されるか、定義されない)。\n\n形状情報は形状の表現として追加され、幾何学的なパラメータが使用される。幾何学的なパラメータと追加された形状プロパティが矛盾する場合、幾何学的なパラメータが優先される。CADのような、幾何学操作アプリケーションにとって、この値は、書き込み専用であるべきだ。"@ja-JP , "Neigungswinkel der Decke gegenüber der Horizontalen wenn es sich um eine Dachfläche handelt. Angabe 0 Grad definiert eine horizontale Fläche.\n\nDieser Parameter wird zusätzlich zur geometrischen Repräsentation bereitgestellt. Im Fall der Inkonsistenz zwischen dem Parameter und der Geometrie hat die geometrische Repräsention Priorität. Dieser Parameter ist für CAD Software write-only."@de-DE ; + IFC4-PSD:ifdguid "49598380d20811e1800000215ad4efdf" ; + IFC4-PSD:name "PitchAngle" ; + IFC4-PSD:nameAlias "Dachflächenneigung"@de-DE , "Pitch Angle"@en , "AngleInclinaison"@fr-FR , "勾配角度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPlaneAngleMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pfaabe980d20711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p3b0b6780d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:p3b0b6780d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP , "表示该对象是否需要承重。"@zh-CN , "Indique si l'objet est censé porter des charges (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , ""@en ; + IFC4-PSD:ifdguid "3b0b6780d20811e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "耐力部材"@ja-JP , "Porteur"@fr-FR , "Tragendes Bauteil"@de-DE , "Load Bearing"@en , "是否承重"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p2e870f00d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material. Here the total thermal transmittance coefficient through the slab (including all materials)." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material. Here the total thermal transmittance coefficient through the slab (including all materials)." ; + IFC4-PSD:definitionAlias ""@en , "材料的导热系数(U值)。\n表示穿过该板的整体导热系数(包括所有材料)。"@zh-CN , "熱貫流率U値。ここではスラブを通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers la dalle (tous matériaux inclus)."@fr-FR , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Decke (für alle Schichten)."@de-DE ; + IFC4-PSD:ifdguid "2e870f00d20811e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR , "熱貫流率"@ja-JP , "Thermal Transmittance"@en , "U-Wert"@de-DE , "导热系数"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:p00093400d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , ""@en ; + IFC4-PSD:ifdguid "00093400d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Status"@de-DE , "Statut"@fr-FR , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p347cf000d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p13b49a80d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:p13b49a80d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object. It is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object. It is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , ""@en , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; + IFC4-PSD:ifdguid "13b49a80d20811e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR , "耐火等級"@ja-JP , "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE , "防火等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p4199df00d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; + rdfs:label "Compartmentation" ; + IFC4-PSD:definition "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "部材が防火区画として用いられるかどうかを示すブーリアン値(TRUE or False)。"@ja-JP , "Angabe, ob dieses Bauteil einen Brandabschnitt begrenzt (WAHR), oder nicht (FALSCH)."@de-DE , ""@en , "Indique si l'objet est conçu pour assurer un compartimentage contre l'incendie (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "4199df00d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Compartmentation" ; + IFC4-PSD:nameAlias "防火区画"@ja-JP , "Compartimentage"@fr-FR , "Compartmentation"@en , "Brandabschnittsdefinierendes Bauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p0d262300d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , ""@en , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , "遮音等級情報。関連する建築基準法を参照。"@ja-JP , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; + IFC4-PSD:ifdguid "0d262300d20811e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "隔音等级"@zh-CN , "遮音等級"@ja-JP , "Acoustic Rating"@en , "IsolationAcoustique"@fr-FR , "Schallschutzklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pfaabe980d20711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; + IFC4-PSD:ifdguid "faabe980d20711e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "参考号"@zh-CN , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:PitchAngle a rdf:Property ; + rdfs:seeAlso :p49598380d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PitchAngle . + +:Combustible a rdf:Property ; + rdfs:seeAlso :p1a431200d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Combustible . + +:SurfaceSpreadOfFlame + a rdf:Property ; + rdfs:seeAlso :p2038f300d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceSpreadOfFlame . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :p2e870f00d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :p0d262300d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SlabCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcSlab. Note: Properties for PitchAngle added in IFC 2x3" ; + rdfs:label "Pset_SlabCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSlab ; + IFC4-PSD:applicableTypeValue "IfcSlab" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSlab. Note: Properties for PitchAngle added in IFC 2x3" ; + IFC4-PSD:definitionAlias "IfcSlab(スラブ)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcSlab. Nota : la propriété AngleInclinaison a été introduite depuis la version 2x3."@fr-FR , ""@en , "所有IfcSlab实例的定义中通用的属性。\n注:PitchAngle属性为IFC 2x3 新添。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SlabCommon" ; + IFC4-PSD:propertyDef :p3b0b6780d20811e1800000215ad4efdf , :p13b49a80d20811e1800000215ad4efdf , :p347cf000d20811e1800000215ad4efdf , :p1a431200d20811e1800000215ad4efdf , :pfaabe980d20711e1800000215ad4efdf , :p4199df00d20811e1800000215ad4efdf , :p2e870f00d20811e1800000215ad4efdf , :p0d262300d20811e1800000215ad4efdf , :p49598380d20811e1800000215ad4efdf , :p00093400d20811e1800000215ad4efdf , :p2038f300d20811e1800000215ad4efdf . + +:p2038f300d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication on how the flames spread around the surface, It is given according to the national building code that governs the fire behaviour for materials." ; + rdfs:label "SurfaceSpreadOfFlame" ; + IFC4-PSD:definition "Indication on how the flames spread around the surface, It is given according to the national building code that governs the fire behaviour for materials." ; + IFC4-PSD:definitionAlias ""@en , "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR , "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "炎がどのように材料の表面を広がるかという指標。材料の炎に対する振る舞いについての国家建築規則に従って提供される。"@ja-JP ; + IFC4-PSD:ifdguid "2038f300d20811e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceSpreadOfFlame" ; + IFC4-PSD:nameAlias "Brandverhalten"@de-DE , "火炎伝播性"@ja-JP , "SurfacePropagationFlamme"@fr-FR , "Surface Spread Of Flame"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p347cf000d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , ""@en , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; + IFC4-PSD:ifdguid "347cf000d20811e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "是否外部构件"@zh-CN , "Is External"@en , "外部区分"@ja-JP , "EstExterieur"@fr-FR , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p00093400d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_SolarDeviceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SolarDeviceTypeCommon.ttl new file mode 100644 index 00000000..32756e45 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SolarDeviceTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SolarDeviceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for solar device types." ; + rdfs:label "Pset_SolarDeviceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSolarDevice ; + IFC4-PSD:applicableTypeValue "IfcSolarDevice" ; + IFC4-PSD:definition "Common properties for solar device types." ; + IFC4-PSD:definitionAlias "太陽の装置タイプのための共通属性。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SolarDeviceTypeCommon" ; + IFC4-PSD:propertyDef :p5bd3bd00d20811e1800000215ad4efdf , :p55dddc00d20811e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p55dddc00d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p55dddc00d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "このプロジェクト (例. 'A-1' タイプなど)で指定された参照ID。認められた分類体系の分類参照が存在しない場合に適用される。"@ja-JP , ""@en , "프로젝트 (예 : 'A-1'유형 등) 지정된 참조 ID. 인정 분류 체계의 분류 참조가없는 경우에 적용된다."@ko-KR ; + IFC4-PSD:ifdguid "55dddc00d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照"@ja-JP , "Reference"@en , "참조"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p5bd3bd00d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p5bd3bd00d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5bd3bd00d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SoundAttenuation.ttl b/converter/src/main/resources/pset/Pset_SoundAttenuation.ttl new file mode 100644 index 00000000..fb858242 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SoundAttenuation.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SoundPressure a rdf:Property ; + rdfs:seeAlso :p858ce400d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoundPressure . + +:p858ce400d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A time series of sound pressure values measured in decibels at a reference pressure of 20 microPascals for the referenced octave band frequency. Each value in IfcTimeSeries.ListValues is correlated to the sound frequency at the same position within SoundFrequencies." ; + rdfs:label "SoundPressure" ; + IFC4-PSD:definition "A time series of sound pressure values measured in decibels at a reference pressure of 20 microPascals for the referenced octave band frequency. Each value in IfcTimeSeries.ListValues is correlated to the sound frequency at the same position within SoundFrequencies." ; + IFC4-PSD:definitionAlias ""@en , "시계열의 음압 단위는 dB. 옥타브 밴드 소리의 강도 20mPa을 기준한다. IfcTimeSeries에 나열된 각 값은 같은 장소에서 같은 주파수 번트에서 온도의 주파수와 관련."@ko-KR , "時系列の音圧、単位はデシベル。オクターブバンドの音の強さ20mPaを基準する。IfcTimeSeriesにリストされた各値は同じ場所で、同じ周波数バントでの温の周波数と関連する。"@ja-JP ; + IFC4-PSD:ifdguid "858ce400d20811e1800000215ad4efdf" ; + IFC4-PSD:name "SoundPressure" ; + IFC4-PSD:nameAlias "音圧"@ja-JP , "음압"@ko-KR , "Sound Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SoundScale a rdf:Property ; + rdfs:seeAlso :p7443d780d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoundScale . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p80c83000d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "List of nominal sound frequencies, correlated to the SoundPressure time series values (IfcTimeSeries.ListValues)" ; + rdfs:label "SoundFrequency" ; + IFC4-PSD:definition "List of nominal sound frequencies, correlated to the SoundPressure time series values (IfcTimeSeries.ListValues)" ; + IFC4-PSD:definitionAlias ""@en , "대표적인 주파수 목록 시계열 소리 圧値과 관련된다. (IfcTimeSeries에 나열된 값)"@ko-KR , "代表的な周波数リスト、時系列音圧値と関連する。(IfcTimeSeriesにリストされた値)"@ja-JP ; + IFC4-PSD:ifdguid "80c83000d20811e1800000215ad4efdf" ; + IFC4-PSD:name "SoundFrequency" ; + IFC4-PSD:nameAlias "Sound Frequency"@en , "音の周波数"@ja-JP , "소리의 주파수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:Pset_SoundAttenuation + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common definition to capture sound pressure at a point on behalf of a device typically used within the context of building services and flow distribution systems. To indicate sound values from an instance of IfcDistributionFlowElement at a particular location, IfcAnnotation instance(s) should be assigned to the IfcDistributionFlowElement through the IfcRelAssignsToProduct relationship. The IfcAnnotation should specify ObjectType of 'Sound' and geometric representation of 'Annotation Point' consisting of a single IfcPoint subtype as described at IfcAnnotation. This property set is instantiated multiple times on an object for each frequency band. HISTORY: New property set in IFC Release 2x4." ; + rdfs:label "Pset_SoundAttenuation" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcAnnotation/SOUND" ; + IFC4-PSD:definition "Common definition to capture sound pressure at a point on behalf of a device typically used within the context of building services and flow distribution systems. To indicate sound values from an instance of IfcDistributionFlowElement at a particular location, IfcAnnotation instance(s) should be assigned to the IfcDistributionFlowElement through the IfcRelAssignsToProduct relationship. The IfcAnnotation should specify ObjectType of 'Sound' and geometric representation of 'Annotation Point' consisting of a single IfcPoint subtype as described at IfcAnnotation. This property set is instantiated multiple times on an object for each frequency band. HISTORY: New property set in IFC Release 2x4." ; + IFC4-PSD:definitionAlias "建物管理・空気の搬送システムに関連する設備の音圧の性能指標。特定位置からあるIfcDistributionFlowElement設備の音性能値を表すために、IfcRelAssignsToProduct を通してIfcDistributionFlowElementに IfcAnnotation注釈属性値を付ける。 IfcAnnotation属性値は音の種別(ObjectType) と幾何的な代表位置注釈ポイントで構成され、注釈ポイントは IfcAnnotation注釈を入れたIfcPoint一点とする。このPsetは周波数バンド(帯域幅)1HZにおけるある音の強さの倍数で表示する。履歴:IFC2x4に新たに定義された。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SoundAttenuation" ; + IFC4-PSD:propertyDef :p858ce400d20811e1800000215ad4efdf , :p7443d780d20811e1800000215ad4efdf , :p80c83000d20811e1800000215ad4efdf . + +:SoundFrequency a rdf:Property ; + rdfs:seeAlso :p80c83000d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoundFrequency . + +:p7443d780d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The reference sound scale. \n\nDBA: Decibels in an A-weighted scale\nDBB: Decibels in an B-weighted scale\nDBC: Decibels in an C-weighted scale\nNC: Noise criteria\nNR: Noise rating" ; + rdfs:label "SoundScale" ; + IFC4-PSD:definition "The reference sound scale. \n\nDBA: Decibels in an A-weighted scale\nDBB: Decibels in an B-weighted scale\nDBC: Decibels in an C-weighted scale\nNC: Noise criteria\nNR: Noise rating" ; + IFC4-PSD:definitionAlias ""@en , "소음 단위. DBA : dB (A) DBB : dB (B) DBC : dB (C) NC : 소음 기준 NR : 소음 평가"@ko-KR , "騒音の単位:\n\n- DBA: dB(A)\n- DBB: dB(B)\n- DBC:dB(C)\n- NC:騒音基準\n- NR:騒音評価"@ja-JP ; + IFC4-PSD:ifdguid "7443d780d20811e1800000215ad4efdf" ; + IFC4-PSD:name "SoundScale" ; + IFC4-PSD:nameAlias "騒音の単位"@ja-JP , "소음단위"@ko-KR , "Sound Scale"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "DBA" , "DBB" , "DBC" , "NC" , "NR" + ] . diff --git a/converter/src/main/resources/pset/Pset_SoundGeneration.ttl b/converter/src/main/resources/pset/Pset_SoundGeneration.ttl new file mode 100644 index 00000000..992ef66c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SoundGeneration.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SoundGeneration + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common definition to capture the properties of sound typically used within the context of building services and flow distribution systems. This property set is instantiated multiple times on an object for each frequency band. HISTORY: New property set in IFC Release 2x4." ; + rdfs:label "Pset_SoundGeneration" ; + IFC4-PSD:applicableClass IFC4:IfcDistributionFlowElement ; + IFC4-PSD:applicableTypeValue "IfcDistributionFlowElement" ; + IFC4-PSD:definition "Common definition to capture the properties of sound typically used within the context of building services and flow distribution systems. This property set is instantiated multiple times on an object for each frequency band. HISTORY: New property set in IFC Release 2x4." ; + IFC4-PSD:definitionAlias "建物管理・空気の搬送システムに関連する設備の騒音性能指標。周波数バンド(帯域幅)1HZにおけるある音の強さの倍数で表示する。履歴:IFC4に新たに定義された。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SoundGeneration" ; + IFC4-PSD:propertyDef :p8faee280d20811e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p8faee280d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table of sound frequencies and sound power measured in decibels at a reference power of 1 picowatt(10^(-12) watt) for the referenced octave band frequency." ; + rdfs:label "SoundCurve" ; + IFC4-PSD:definition "Table of sound frequencies and sound power measured in decibels at a reference power of 1 picowatt(10^(-12) watt) for the referenced octave band frequency." ; + IFC4-PSD:definitionAlias ""@en , "옥타브 밴드 1pW (10 ^ (-12) 소리의 강도를 기준으로하는 소리의 주파수와 데시벨 단위로 측정하는 소리 에너지의 목록."@ko-KR , "オクターブバンド1pW(10^(-12)の音の強さを基準とする音の周波数とデシベル単位で計測した音のエネルギーの一覧表。"@ja-JP ; + IFC4-PSD:ifdguid "8faee280d20811e1800000215ad4efdf" ; + IFC4-PSD:name "SoundCurve" ; + IFC4-PSD:nameAlias "Sound Curve"@en , "音響(騒音?)曲線"@ja-JP , "음향곡성"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcSoundPowerMeasure ; + IFC4-PSD:definingValue IFC4:IfcFrequencyMeasure + ] . + +:SoundCurve a rdf:Property ; + rdfs:seeAlso :p8faee280d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SoundCurve . diff --git a/converter/src/main/resources/pset/Pset_SpaceCommon.ttl b/converter/src/main/resources/pset/Pset_SpaceCommon.ttl index 1e708cef..a8d3d91e 100644 --- a/converter/src/main/resources/pset/Pset_SpaceCommon.ttl +++ b/converter/src/main/resources/pset/Pset_SpaceCommon.ttl @@ -1,138 +1,126 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_SpaceCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_SpaceCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcSpace" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSpace. Please note that several space attributes are handled directly at the IfcSpace instance, the space number (or short name) by IfcSpace.Name, the space name (or long name) by IfcSpace:LongName, and the description (or comments) by IfcSpace.Description. Actual space quantities, like space perimeter, space area and space volume are provided by IfcElementQuantity, and space classification according to national building code by IfcClassificationReference. The level above zero (relative to the building) for the slab row construction is provided by the IfcBuildingStorey.Elevation, the level above zero (relative to the building) for the floor finish is provided by the IfcSpace.ElevationWithFlooring." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcSpace. Veuillez noter que plusieurs attributs sont portés par l'instance IfcSpace : le numéro de la pièce ou le nom court (IfcSpace.Name), le nom ou nom long (IfcSpace:LongName) et la description ou des commentaires (IfcSpace.Description). Les quantités comme le périmètre, la surface et le volume de la pièce sont fournis par des instances de IfcElementQuantity, et la référence à une classification nationale par IfcClassificationReference. L'élévation de la dalle relativement au niveau de référence du bâtiment est fourni par IfcBuildingStorey.Elevation. L'élévation du plancher relativement au niveau de référence du bâtiment est fourni par IfcSpace.ElevationWithFlooring."@fr-FR ; - IFC4-PSD:definitionAlias "IfcSpaceに関する共通プロパティセット定義。以下の属性値に関しては、IfcSpaceオブジェクトの属性に設定する。部屋番号はIfcSite.Name、部屋名称はIfcSite.LongName、部屋に関する記述はIfcSite.Description。部屋(空間)に関する周囲長、面積、体積などの数量値は、IfcElementQuantitiesによって設定する。部屋(空間)に関する分類コードはIfcClassificationReferenceによって設定する。スラブに対するレベルはIfcBuildingStorey.Elevationによって与えられる。床仕上げに対するレベルはIfcSpace.ElevationWithFlooringによって与えられる。"@ja-JP ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_SpaceCommon" ; - IFC4-PSD:propertyDef :_00ee9580d20911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_06e47680d20911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0d72ee00d20911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_1499fc00d20911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_a81efd00d20811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f7fdc400d20811e1800000215ad4efdf ; -. -:_00ee9580d20911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned gross area for the space. Used for programming the space." ; - IFC4-PSD:definitionAlias "Surface programmée brute totale de la pièce. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画されたグロス面積。建物計画に際に使用。"@ja-JP ; - IFC4-PSD:definitionAlias "객실의 총 계획 면적 글로스. 공간 계획시 사용된다."@ko-KR ; - IFC4-PSD:ifdguid "00ee9580d20911e1800000215ad4efdf" ; - IFC4-PSD:name "GrossPlannedArea" ; - IFC4-PSD:nameAlias "Surface programmée brute"@fr-FR ; - IFC4-PSD:nameAlias "計画グロス面積"@ja-JP ; - IFC4-PSD:nameAlias "계획 그로스 면적"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_06e47680d20911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total planned net area for the space. Used for programming the space." ; - IFC4-PSD:definitionAlias "Surface programmée nette totale de la pièce. Telle que définie lors de la programmation."@fr-FR ; - IFC4-PSD:definitionAlias "計画されたネット面積。建物計画に際に使用。(通常は、柱型等を抜いた面積となる)"@ja-JP ; - IFC4-PSD:definitionAlias "객실의 총 계획 인터넷 공간이 있습니다. 공간 계획시 사용된다."@ko-KR ; - IFC4-PSD:ifdguid "06e47680d20911e1800000215ad4efdf" ; - IFC4-PSD:name "NetPlannedArea" ; - IFC4-PSD:nameAlias "Surface programmée nette"@fr-FR ; - IFC4-PSD:nameAlias "計画ネット面積"@ja-JP ; - IFC4-PSD:nameAlias "계획 인터넷 면적"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_0d72ee00d20911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieser Raum (wie z.B. eine Toilette) öffentlich zugänglich sein soll (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'espace (par exemple des toilettes) est conçu pour être un espace accessible au public (TRUE) ou non (FALSE)."@fr-FR ; - IFC4-PSD:definitionAlias "この部屋(空間)が公共アクセス空間かどうかを示すブーリアン値。例:公共トイレの場合TRUE。"@ja-JP ; - IFC4-PSD:definitionAlias "이 방 (공간)이 공공 액세스 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE."@ko-KR ; - IFC4-PSD:ifdguid "0d72ee00d20911e1800000215ad4efdf" ; - IFC4-PSD:name "PubliclyAccessible" ; - IFC4-PSD:nameAlias "AccessibleAuPublic"@fr-FR ; - IFC4-PSD:nameAlias "öffentlich zugänglich"@de-DE ; - IFC4-PSD:nameAlias "公共アクセス可能性"@ja-JP ; - IFC4-PSD:nameAlias "공공 액세스 가능성"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_1499fc00d20911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as an accessible space for handicapped people, e.g., for a public toilet (TRUE) or not (FALSE). This information is often used to declare the need for access for the disabled and for special design requirements of this space." ; - IFC4-PSD:definitionAlias "Angabe, ob dieser Raum (wie z.B. eine Toilette) behindertengerecht zugänglich sein soll (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être accessible aux handicapés (VRAI) ou non (FAUX). Cette information est souvent utilisée pour déclarer la nécessité d'un accès pour handicapés ou pour des contraintes spéciales de conception."@fr-FR ; - IFC4-PSD:definitionAlias "この部屋(空間)がハンディキャップ者向けの空間かどうかを示すブーリアン値。例:公共トイレの場合TRUE。この情報は、障害者向け利用の必要性や特別なデザインの必要性を示すために利用される。"@ja-JP ; - IFC4-PSD:definitionAlias "이 방 (공간)이 핸디캡을위한 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE. 이 정보는 장애인을위한 이용의 필요성과 특별한 디자인의 필요성을 나타내기 위해 사용된다."@ko-KR ; - IFC4-PSD:ifdguid "1499fc00d20911e1800000215ad4efdf" ; - IFC4-PSD:name "HandicapAccessible" ; - IFC4-PSD:nameAlias "AccessibleHandicapes"@fr-FR ; - IFC4-PSD:nameAlias "behindertengerecht zugänglich"@de-DE ; - IFC4-PSD:nameAlias "ハンディキャップアクセス可能性"@ja-JP ; - IFC4-PSD:nameAlias "핸디캡 액세스 가능성"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_a81efd00d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Räume zu einem Raumtyp (auch Funktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Raumtypen als Typobjekte unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "a81efd00d20811e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Raumtyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "참조 ID"@ko-KR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f7fdc400d20811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieser Raum ein Aussenaum ist (JA) oder ein Innenraum (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:ifdguid "f7fdc400d20811e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Est extérieur"@fr-FR ; - IFC4-PSD:nameAlias "IstAußenraum"@de-DE ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +:pf7fdc400d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "Angabe, ob dieser Raum ein Aussenaum ist (JA) oder ein Innenraum (NEIN)."@de-DE ; + IFC4-PSD:ifdguid "f7fdc400d20811e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "外部区分"@ja-JP , "Est extérieur"@fr-FR , "IstAußenraum"@de-DE , "Is External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p0d72ee00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; + rdfs:label "PubliclyAccessible" ; + IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob dieser Raum (wie z.B. eine Toilette) öffentlich zugänglich sein soll (JA) oder nicht (NEIN)."@de-DE , "이 방 (공간)이 공공 액세스 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE."@ko-KR , "この部屋(空間)が公共アクセス空間かどうかを示すブーリアン値。例:公共トイレの場合TRUE。"@ja-JP , "Indique si l'espace (par exemple des toilettes) est conçu pour être un espace accessible au public (TRUE) ou non (FALSE)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "0d72ee00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "PubliclyAccessible" ; + IFC4-PSD:nameAlias "公共アクセス可能性"@ja-JP , "öffentlich zugänglich"@de-DE , "AccessibleAuPublic"@fr-FR , "공공 액세스 가능성"@ko-KR , "Publicly Accessible"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:NetPlannedArea a rdf:Property ; + rdfs:seeAlso :p06e47680d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NetPlannedArea . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa81efd00d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p00ee9580d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned gross area for the space. Used for programming the space." ; + rdfs:label "GrossPlannedArea" ; + IFC4-PSD:definition "Total planned gross area for the space. Used for programming the space." ; + IFC4-PSD:definitionAlias "Surface programmée brute totale de la pièce. Telle que définie lors de la programmation."@fr-FR , "計画されたグロス面積。建物計画に際に使用。"@ja-JP , ""@en , "객실의 총 계획 면적 글로스. 공간 계획시 사용된다."@ko-KR ; + IFC4-PSD:ifdguid "00ee9580d20911e1800000215ad4efdf" ; + IFC4-PSD:name "GrossPlannedArea" ; + IFC4-PSD:nameAlias "계획 그로스 면적"@ko-KR , "Gross Planned Area"@en , "計画グロス面積"@ja-JP , "Surface programmée brute"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:pa81efd00d20811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Räume zu einem Raumtyp (auch Funktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Raumtypen als Typobjekte unterstützt."@de-DE , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "a81efd00d20811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "Raumtyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:GrossPlannedArea a rdf:Property ; + rdfs:seeAlso :p00ee9580d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GrossPlannedArea . + +:p1499fc00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space (in case of e.g., a toilet) is designed to serve as an accessible space for handicapped people, e.g., for a public toilet (TRUE) or not (FALSE). This information is often used to declare the need for access for the disabled and for special design requirements of this space." ; + rdfs:label "HandicapAccessible" ; + IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as an accessible space for handicapped people, e.g., for a public toilet (TRUE) or not (FALSE). This information is often used to declare the need for access for the disabled and for special design requirements of this space." ; + IFC4-PSD:definitionAlias ""@en , "この部屋(空間)がハンディキャップ者向けの空間かどうかを示すブーリアン値。例:公共トイレの場合TRUE。この情報は、障害者向け利用の必要性や特別なデザインの必要性を示すために利用される。"@ja-JP , "이 방 (공간)이 핸디캡을위한 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE. 이 정보는 장애인을위한 이용의 필요성과 특별한 디자인의 필요성을 나타내기 위해 사용된다."@ko-KR , "Indique si l'élément est conçu pour être accessible aux handicapés (VRAI) ou non (FAUX). Cette information est souvent utilisée pour déclarer la nécessité d'un accès pour handicapés ou pour des contraintes spéciales de conception."@fr-FR , "Angabe, ob dieser Raum (wie z.B. eine Toilette) behindertengerecht zugänglich sein soll (JA) oder nicht (NEIN)."@de-DE ; + IFC4-PSD:ifdguid "1499fc00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "HandicapAccessible" ; + IFC4-PSD:nameAlias "Handicap Accessible"@en , "AccessibleHandicapes"@fr-FR , "핸디캡 액세스 가능성"@ko-KR , "behindertengerecht zugänglich"@de-DE , "ハンディキャップアクセス可能性"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_SpaceCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcSpace. Please note that several space attributes are handled directly at the IfcSpace instance, the space number (or short name) by IfcSpace.Name, the space name (or long name) by IfcSpace:LongName, and the description (or comments) by IfcSpace.Description. Actual space quantities, like space perimeter, space area and space volume are provided by IfcElementQuantity, and space classification according to national building code by IfcClassificationReference. The level above zero (relative to the building) for the slab row construction is provided by the IfcBuildingStorey.Elevation, the level above zero (relative to the building) for the floor finish is provided by the IfcSpace.ElevationWithFlooring." ; + rdfs:label "Pset_SpaceCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSpace. Please note that several space attributes are handled directly at the IfcSpace instance, the space number (or short name) by IfcSpace.Name, the space name (or long name) by IfcSpace:LongName, and the description (or comments) by IfcSpace.Description. Actual space quantities, like space perimeter, space area and space volume are provided by IfcElementQuantity, and space classification according to national building code by IfcClassificationReference. The level above zero (relative to the building) for the slab row construction is provided by the IfcBuildingStorey.Elevation, the level above zero (relative to the building) for the floor finish is provided by the IfcSpace.ElevationWithFlooring." ; + IFC4-PSD:definitionAlias ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcSpace. Veuillez noter que plusieurs attributs sont portés par l'instance IfcSpace : le numéro de la pièce ou le nom court (IfcSpace.Name), le nom ou nom long (IfcSpace:LongName) et la description ou des commentaires (IfcSpace.Description). Les quantités comme le périmètre, la surface et le volume de la pièce sont fournis par des instances de IfcElementQuantity, et la référence à une classification nationale par IfcClassificationReference. L'élévation de la dalle relativement au niveau de référence du bâtiment est fourni par IfcBuildingStorey.Elevation. L'élévation du plancher relativement au niveau de référence du bâtiment est fourni par IfcSpace.ElevationWithFlooring."@fr-FR , "IfcSpaceに関する共通プロパティセット定義。以下の属性値に関しては、IfcSpaceオブジェクトの属性に設定する。部屋番号はIfcSite.Name、部屋名称はIfcSite.LongName、部屋に関する記述はIfcSite.Description。部屋(空間)に関する周囲長、面積、体積などの数量値は、IfcElementQuantitiesによって設定する。部屋(空間)に関する分類コードはIfcClassificationReferenceによって設定する。スラブに対するレベルはIfcBuildingStorey.Elevationによって与えられる。床仕上げに対するレベルはIfcSpace.ElevationWithFlooringによって与えられる。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceCommon" ; + IFC4-PSD:propertyDef :pa81efd00d20811e1800000215ad4efdf , :p06e47680d20911e1800000215ad4efdf , :p1499fc00d20911e1800000215ad4efdf , :pf7fdc400d20811e1800000215ad4efdf , :p00ee9580d20911e1800000215ad4efdf , :p0d72ee00d20911e1800000215ad4efdf . + +:HandicapAccessible a rdf:Property ; + rdfs:seeAlso :p1499fc00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HandicapAccessible . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pf7fdc400d20811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p06e47680d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned net area for the space. Used for programming the space." ; + rdfs:label "NetPlannedArea" ; + IFC4-PSD:definition "Total planned net area for the space. Used for programming the space." ; + IFC4-PSD:definitionAlias "計画されたネット面積。建物計画に際に使用。(通常は、柱型等を抜いた面積となる)"@ja-JP , "객실의 총 계획 인터넷 공간이 있습니다. 공간 계획시 사용된다."@ko-KR , "Surface programmée nette totale de la pièce. Telle que définie lors de la programmation."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "06e47680d20911e1800000215ad4efdf" ; + IFC4-PSD:name "NetPlannedArea" ; + IFC4-PSD:nameAlias "計画ネット面積"@ja-JP , "Net Planned Area"@en , "Surface programmée nette"@fr-FR , "계획 인터넷 면적"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:PubliclyAccessible a rdf:Property ; + rdfs:seeAlso :p0d72ee00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PubliclyAccessible . diff --git a/converter/src/main/resources/pset/Pset_SpaceCoveringRequirements.ttl b/converter/src/main/resources/pset/Pset_SpaceCoveringRequirements.ttl new file mode 100644 index 00000000..587cdcd6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceCoveringRequirements.ttl @@ -0,0 +1,264 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1e0092682e5347b2b2c5050bd03ee111 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Height of the molding.\n\nThe height information is provided in absence of an IfcCovering (type=MOLDING) object with own shape representation and material assignment. In case of inconsistency the height assigned to IfcCovering elements takes precedence." ; + rdfs:label "MoldingHeight" ; + IFC4-PSD:definition "Height of the molding.\n\nThe height information is provided in absence of an IfcCovering (type=MOLDING) object with own shape representation and material assignment. In case of inconsistency the height assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Angabe der Höhe des umlaufenden Gesims (Deckenkante). \n\nDer Höhenparameter wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = MOLDING) für das Gesims dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Höhe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , "部屋の廻縁の高さ。\n\n形状表現を持つIfcCovering(type=MOLDING)オブジェクトが存在しない場合に与えられる厚さ情報。IfcCoveringの幾何形状パラメータとこのプロパティ値が一致しない場合、幾何形状パラメータの値を優先する。"@ja-JP , ""@en , ""@fr-FR ; + IFC4-PSD:ifdguid "1e0092682e5347b2b2c5050bd03ee111" ; + IFC4-PSD:name "MoldingHeight" ; + IFC4-PSD:nameAlias "Höhe des Gesims"@de-DE , "廻縁高"@ja-JP , "Molding Height"@en , "Hauteur de la moulure"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p56029141a7c040c4aef51a242fa1611f + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance between the floor slab and the floor covering, often used for cables and other installations. Often referred to as raised flooring. " ; + rdfs:label "ConcealedFlooringOffset" ; + IFC4-PSD:definition "Distance between the floor slab and the floor covering, often used for cables and other installations. Often referred to as raised flooring. " ; + IFC4-PSD:ifdguid "56029141a7c040c4aef51a242fa1611f" ; + IFC4-PSD:name "ConcealedFlooringOffset" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:pbfd1f6a6ca08440899165d31dda04831 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=FLOORING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + rdfs:label "FloorCovering" ; + IFC4-PSD:definition "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=FLOORING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias ""@en , "部屋の床材質または仕上げに関するラベル(識別情報)。このラベル名は部屋リスト情報や部屋情報表示の際に利用される。"@ja-JP , "Indication sur la nature du revêtement de sol […]. L'information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=FLOORING) avec sa propre représentation de forme et une assignation à un matériau. En cas d'incohérence, c'est le matériau assigné à l'instance de IfcCovering qui prime."@fr-FR , "Angabe des Materials für den Bodenbelag. Diese Angabe wird im Raumbuch verwendet und oft im Raumstempel angezeigt.\n\nDie Materialangabe wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = FLOORING) für den Bodenbelag dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialangabe des zugeordneten Bekleidungsobjekts Priorität."@de-DE ; + IFC4-PSD:ifdguid "bfd1f6a6ca08440899165d31dda04831" ; + IFC4-PSD:name "FloorCovering" ; + IFC4-PSD:nameAlias "床仕上げ"@ja-JP , "RevetementSol"@fr-FR , "Floor Covering"@en , "Bodenbelag"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ConcealedFlooringOffset + a rdf:Property ; + rdfs:seeAlso :p56029141a7c040c4aef51a242fa1611f ; + rdfs:subPropertyOf IFC4-PSD:ConcealedFlooringOffset . + +:ConcealedCeiling a rdf:Property ; + rdfs:seeAlso :p7502fd34b7fa494280c610aec4787043 ; + rdfs:subPropertyOf IFC4-PSD:ConcealedCeiling . + +:SkirtingBoardHeight a rdf:Property ; + rdfs:seeAlso :paf1249f71eb24579aaec871aa4a6287b ; + rdfs:subPropertyOf IFC4-PSD:SkirtingBoardHeight . + +:p44c775b14a0d46c58ad8c7e36c34a349 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the material layer(s) for the space cladding. \n\nThe thickness information is provided in absence of an IfcCovering (type=CLADDING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + rdfs:label "WallCoveringThickness" ; + IFC4-PSD:definition "Thickness of the material layer(s) for the space cladding. \n\nThe thickness information is provided in absence of an IfcCovering (type=CLADDING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Epaisseur de la couche de matériau constituant le revêtement de mur. Cette information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=CLADDING) avec sa propre représentation de forme. En cas d'incohérence entre les paramètres géométriques de l'instance de IfcCovering et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "部屋の壁に関する材質層の厚さ。\n\n形状表現を持つIfcCovering(type=CLADDING)オブジェクトが存在しない場合に与えられる厚さ情報。IfcCoveringの幾何形状パラメータとこのプロパティ値が一致しない場合、幾何形状パラメータの値を優先する。"@ja-JP , "Angabe der Dicke der Materialschichten für die Wandbekleidung. \n\nDer Dickenparameter wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = CLADDING) für die Wandbekleidung dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialdicke des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@en ; + IFC4-PSD:ifdguid "44c775b14a0d46c58ad8c7e36c34a349" ; + IFC4-PSD:name "WallCoveringThickness" ; + IFC4-PSD:nameAlias "Dicke der Wandbekleidung"@de-DE , "Epaisseur du revêtement de mur"@fr-FR , "Wall Covering Thickness"@en , "壁仕上げ厚"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Molding a rdf:Property ; + rdfs:seeAlso :p3f9ca576246247ff8bdca254b651a15a ; + rdfs:subPropertyOf IFC4-PSD:Molding . + +:CeilingCovering a rdf:Property ; + rdfs:seeAlso :pda83c4235c1d40aba9510f6abe2412f6 ; + rdfs:subPropertyOf IFC4-PSD:CeilingCovering . + +:ConcealedFlooring a rdf:Property ; + rdfs:seeAlso :p8650a689ba064df69f052a87ab070f02 ; + rdfs:subPropertyOf IFC4-PSD:ConcealedFlooring . + +:WallCoveringThickness + a rdf:Property ; + rdfs:seeAlso :p44c775b14a0d46c58ad8c7e36c34a349 ; + rdfs:subPropertyOf IFC4-PSD:WallCoveringThickness . + +:p69193a7f647f4526bd7f1d3b9fdd1a9e + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=CLADDING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + rdfs:label "WallCovering" ; + IFC4-PSD:definition "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=CLADDING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Angabe des Materials für die Wandbekleidung, oder den Wandbelag Diese Angabe wird im Raumbuch verwendet und oft im Raumstempel angezeigt.\n\nDie Materialangabe wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = CLADDING) für die Wandbekleidung dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialangabe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@en , "Indication sur la nature du revêtement de mur […]. L'information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=CLADDING) avec sa propre représentation de forme et une assignation à un matériau. En cas d'incohérence, c'est le matériau assigné à l'instance de IfcCovering qui prime."@fr-FR , "部屋の壁材質または仕上げに関するラベル(識別情報)。このラベル名は部屋リスト情報や部屋情報表示の際に利用される。"@ja-JP ; + IFC4-PSD:ifdguid "69193a7f647f4526bd7f1d3b9fdd1a9e" ; + IFC4-PSD:name "WallCovering" ; + IFC4-PSD:nameAlias "Wandbekleidung"@de-DE , "Wall Covering"@en , "RevetementMur"@fr-FR , "壁仕上げ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p7502fd34b7fa494280c610aec4787043 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space is designed to have a concealed flooring space (TRUE) or not (FALSE). A concealed ceiling space is normally meant to be the space between a slab and a ceiling." ; + rdfs:label "ConcealedCeiling" ; + IFC4-PSD:definition "Indication whether this space is designed to have a concealed flooring space (TRUE) or not (FALSE). A concealed ceiling space is normally meant to be the space between a slab and a ceiling." ; + IFC4-PSD:definitionAlias "Angabe, ob dieser Raum mit einer Installationsdecke (abgehängten Decke) ausgestattet ist (JA), oder nicht (NEIN)."@de-DE , ""@en , "Indique si la pièce comprend un faux plafond (VRAI) ou non (FAUX)"@fr-FR , "この部屋(空間)が隠蔽された天井空間を持つように設計されているかどうかを示すブーリアン値。隠蔽された天井空間とは、スラブと天井の間の空間。"@ja-JP ; + IFC4-PSD:ifdguid "7502fd34b7fa494280c610aec4787043" ; + IFC4-PSD:name "ConcealedCeiling" ; + IFC4-PSD:nameAlias "Concealed Ceiling"@en , "Installationsdecke"@de-DE , "FauxPlafond"@fr-FR , "隠蔽天井"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:MoldingHeight a rdf:Property ; + rdfs:seeAlso :p1e0092682e5347b2b2c5050bd03ee111 ; + rdfs:subPropertyOf IFC4-PSD:MoldingHeight . + +:ConcealedCeilingOffset + a rdf:Property ; + rdfs:seeAlso :pa7d072c8df3245bd9c1b9424d7f35a87 ; + rdfs:subPropertyOf IFC4-PSD:ConcealedCeilingOffset . + +:p8650a689ba064df69f052a87ab070f02 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space is designed to have a concealed flooring space (TRUE) or not (FALSE). A concealed flooring space is normally meant to be the space beneath a raised floor." ; + rdfs:label "ConcealedFlooring" ; + IFC4-PSD:definition "Indication whether this space is designed to have a concealed flooring space (TRUE) or not (FALSE). A concealed flooring space is normally meant to be the space beneath a raised floor." ; + IFC4-PSD:definitionAlias ""@en , "この部屋(空間)が隠蔽された床空間を持つように設計されているかどうかを示すブーリアン値。隠蔽された床空間とは、上げ床の下の空間。"@ja-JP , "Angabe, ob dieser Raum mit einem aufgeständerten Fußboden ausgestattet ist (JA), oder nicht (NEIN)."@de-DE , "Indique si la pièce comprend un faux plancher (VRAI) ou non (FAUX)"@fr-FR ; + IFC4-PSD:ifdguid "8650a689ba064df69f052a87ab070f02" ; + IFC4-PSD:name "ConcealedFlooring" ; + IFC4-PSD:nameAlias "FauxPlancher"@fr-FR , "隠蔽床"@ja-JP , "Installationsboden"@de-DE , "Concealed Flooring"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:paf1249f71eb24579aaec871aa4a6287b + a IFC4-PSD:PropertyDef ; + rdfs:comment "Height of the skirting board.\n\nThe height information is provided in absence of an IfcCovering (type=SKIRTINGBOARD) object with own shape representation and material assignment. In case of inconsistency the height assigned to IfcCovering elements takes precedence." ; + rdfs:label "SkirtingBoardHeight" ; + IFC4-PSD:definition "Height of the skirting board.\n\nThe height information is provided in absence of an IfcCovering (type=SKIRTINGBOARD) object with own shape representation and material assignment. In case of inconsistency the height assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Angabe der Höhe der umlaufenden Sockelleiste. \n\nDer Höhenparameter wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = SKIRTINGBOARD) für die Sockelleiste dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Höhe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@en , ""@fr-FR , "部屋の幅木の高さ。\n\n形状表現を持つIfcCovering(type=SKIRTINGBOARD)オブジェクトが存在しない場合に与えられる厚さ情報。IfcCoveringの幾何形状パラメータとこのプロパティ値が一致しない場合、幾何形状パラメータの値を優先する。"@ja-JP ; + IFC4-PSD:ifdguid "af1249f71eb24579aaec871aa4a6287b" ; + IFC4-PSD:name "SkirtingBoardHeight" ; + IFC4-PSD:nameAlias "Höhe der Sockelleite"@de-DE , "Skirting Board Height"@en , "幅木材高"@ja-JP , "Hauteur de la plinthe"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p9650c4d3c07f4ccc9fd8147b099f0939 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the material layer(s) for the space flooring. \n\nThe thickness information is provided in absence of an IfcCovering (type=FLOORING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + rdfs:label "FloorCoveringThickness" ; + IFC4-PSD:definition "Thickness of the material layer(s) for the space flooring. \n\nThe thickness information is provided in absence of an IfcCovering (type=FLOORING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Epaisseur de la couche de matériau constituant le revêtement de sol. Cette information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=FLOORING) avec sa propre représentation de forme. En cas d'incohérence entre les paramètres géométriques de l'instance de IfcCovering et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en , "Angabe der Dicke der Materialschichten für den Bodenbelag. \n\nDer Dickenparameter wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = FLOORING) für den Bodenbelag dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialdicke des zugeordneten Bekleidungsobjekts Priorität."@de-DE , "部屋の床に関する材質層の厚さ。\n\n形状表現を持つIfcCovering(type=FLOORING)オブジェクトが存在しない場合に与えられる厚さ情報。IfcCoveringの幾何形状パラメータとこのプロパティ値が一致しない場合、幾何形状パラメータの値を優先する。"@ja-JP ; + IFC4-PSD:ifdguid "9650c4d3c07f4ccc9fd8147b099f0939" ; + IFC4-PSD:name "FloorCoveringThickness" ; + IFC4-PSD:nameAlias "Floor Covering Thickness"@en , "Epaisseur du revêtement de sol"@fr-FR , "床仕上げ材厚"@ja-JP , "Dicke des Bodenbelags"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:FloorCoveringThickness + a rdf:Property ; + rdfs:seeAlso :p9650c4d3c07f4ccc9fd8147b099f0939 ; + rdfs:subPropertyOf IFC4-PSD:FloorCoveringThickness . + +:p6d6b4d00a2234b90b4eb1901ca5be2b5 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label to indicate the material or construction of the skirting board around the space flooring. The label is used for room book information.\n\nThe material information is provided in absence of an IfcCovering (type=SKIRTINGBOARD) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + rdfs:label "SkirtingBoard" ; + IFC4-PSD:definition "Label to indicate the material or construction of the skirting board around the space flooring. The label is used for room book information.\n\nThe material information is provided in absence of an IfcCovering (type=SKIRTINGBOARD) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Angabe des Materials für die Sockelleiste. Diese Angabe wird im Raumbuch verwendet.\n\nDie Materialangabe wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = SKIRTINGBOARD) für die Sockelleiste dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialangabe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , "部屋の床の周りにある幅木の材質または施工に関するラベル(識別情報)。ラベル名は部屋リスト情報に使用される。\n\n形状表現を持つIfcCovering (type=SKIRTINGBOARD)オブジェクトが存在しない場合に与えられる材質情報。IfcCoveringの材質情報とこのプロパティ値が一致しない場合、IfcCoveringに与えられている材質情報を優先する。"@ja-JP , ""@fr-FR , ""@en ; + IFC4-PSD:ifdguid "6d6b4d00a2234b90b4eb1901ca5be2b5" ; + IFC4-PSD:name "SkirtingBoard" ; + IFC4-PSD:nameAlias "Skirting Board"@en , "Matériau de la plinthe"@fr-FR , "幅木材"@ja-JP , "Sockelleiste"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:WallCovering a rdf:Property ; + rdfs:seeAlso :p69193a7f647f4526bd7f1d3b9fdd1a9e ; + rdfs:subPropertyOf IFC4-PSD:WallCovering . + +:SkirtingBoard a rdf:Property ; + rdfs:seeAlso :p6d6b4d00a2234b90b4eb1901ca5be2b5 ; + rdfs:subPropertyOf IFC4-PSD:SkirtingBoard . + +:CeilingCoveringThickness + a rdf:Property ; + rdfs:seeAlso :pabdab367fcc64b08b03d584baeb819c8 ; + rdfs:subPropertyOf IFC4-PSD:CeilingCoveringThickness . + +:pa7d072c8df3245bd9c1b9424d7f35a87 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance between the upper floor slab and the suspended ceiling, often used for distribution systems. Often referred to as plenum. " ; + rdfs:label "ConcealedCeilingOffset" ; + IFC4-PSD:definition "Distance between the upper floor slab and the suspended ceiling, often used for distribution systems. Often referred to as plenum. " ; + IFC4-PSD:ifdguid "a7d072c8df3245bd9c1b9424d7f35a87" ; + IFC4-PSD:name "ConcealedCeilingOffset" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNonNegativeLengthMeasure + ] . + +:pabdab367fcc64b08b03d584baeb819c8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the material layer(s) for the space ceiling. \n\nThe thickness information is provided in absence of an IfcCovering (type=CEILING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + rdfs:label "CeilingCoveringThickness" ; + IFC4-PSD:definition "Thickness of the material layer(s) for the space ceiling. \n\nThe thickness information is provided in absence of an IfcCovering (type=CEILING) object with own shape representation. In cases of inconsistency between the geometric parameters of an assigned IfcCovering and this attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Epaisseur de la couche de matériau constituant le revêtement de sol. Cette information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=CEILING) avec sa propre représentation de forme. En cas d'incohérence entre les paramètres géométriques de l'instance de IfcCovering et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "Angabe der Dicke der Materialschichten für die Deckenbekleidung. \n\nDer Dickenparameter wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = CEILING) für die Deckenbekleidung dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialdicke des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@en , "部屋の天井に関する材質層の厚さ。\n\n形状表現を持つIfcCovering(type=CEILING)オブジェクトが存在しない場合に与えられる厚さ情報。IfcCoveringの幾何形状パラメータとこのプロパティ値が一致しない場合、幾何形状パラメータの値を優先する。"@ja-JP ; + IFC4-PSD:ifdguid "abdab367fcc64b08b03d584baeb819c8" ; + IFC4-PSD:name "CeilingCoveringThickness" ; + IFC4-PSD:nameAlias "Ceiling Covering Thickness"@en , "Dicke der Deckenbekleidung"@de-DE , "Epaisseur du revêtement de plafond"@fr-FR , "天井仕上げ厚"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:FloorCovering a rdf:Property ; + rdfs:seeAlso :pbfd1f6a6ca08440899165d31dda04831 ; + rdfs:subPropertyOf IFC4-PSD:FloorCovering . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pda83c4235c1d40aba9510f6abe2412f6 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=CEILING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + rdfs:label "CeilingCovering" ; + IFC4-PSD:definition "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp.\n\nThe material information is provided in absence of an IfcCovering (type=CEILING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Indication sur la nature du revêtement de plafond […]. L'information sur le matériau est fournie en l'absence d'un objet de la classe IfcCovering (Type=CEILING) avec sa propre représentation de forme et une assignation à un matériau. En cas d'incohérence, c'est le matériau assigné à l'instance de IfcCovering qui prime."@fr-FR , "部屋の天井材質または仕上げに関するラベル(識別情報)。このラベル名は部屋リスト情報や部屋情報表示の際に利用される。"@ja-JP , "Angabe des Materials für die Deckenbekleidung oder den Deckenbelag (bzw. der Unterdecke). Diese Angabe wird im Raumbuch verwendet und oft im Raumstempel angezeigt.\n\nDie Materialangabe wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = CEILING) für die Deckenbekleidung dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialangabe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@en ; + IFC4-PSD:ifdguid "da83c4235c1d40aba9510f6abe2412f6" ; + IFC4-PSD:name "CeilingCovering" ; + IFC4-PSD:nameAlias "Deckenbekleidung"@de-DE , "Ceiling Covering"@en , "RevetementPlafond"@fr-FR , "天井仕上げ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p3f9ca576246247ff8bdca254b651a15a + a IFC4-PSD:PropertyDef ; + rdfs:comment "Label to indicate the material or construction of the molding around the space ceiling. The label is used for room book information.\n\nThe material information is provided in absence of an IfcCovering (type=MOLDING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + rdfs:label "Molding" ; + IFC4-PSD:definition "Label to indicate the material or construction of the molding around the space ceiling. The label is used for room book information.\n\nThe material information is provided in absence of an IfcCovering (type=MOLDING) object with own shape representation and material assignment. In case of inconsistency the material assigned to IfcCovering elements takes precedence." ; + IFC4-PSD:definitionAlias "Angabe des Materials für das Gesims (Deckenkante). Diese Angabe wird im Raumbuch verwendet.\n\nDie Materialangabe wird übernommen, wenn kein eigenes Bekleidungsobjekt (IfcCovering mit PredefinedType = MOLDING) für das Gesims dem Raum zugeordnet ist. Bei Inkonsistenzen (wenn beides gegeben ist), hat die Materialangabe des zugeordneten Bekleidungsobjekts Priorität."@de-DE , ""@fr-FR , ""@en , "部屋の廻縁の材質または施工に関するラベル(識別情報)。ラベル名は部屋リスト情報に使用される。\n\n形状表現を持つIfcCovering (type=MOLDING)オブジェクトが存在しない場合に与えられる材質情報。IfcCoveringの材質情報とこのプロパティ値が一致しない場合、IfcCoveringに与えられている材質情報を優先する。"@ja-JP ; + IFC4-PSD:ifdguid "3f9ca576246247ff8bdca254b651a15a" ; + IFC4-PSD:name "Molding" ; + IFC4-PSD:nameAlias "Molding"@en , "Matériau de la moulure"@fr-FR , "廻縁"@ja-JP , "Gesims"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_SpaceCoveringRequirements + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of covering requirements of IfcSpace. Those properties define the requirements coming from a space program in early project phases and can later be used to define the room book information, if such coverings are not modeled explicitly as covering elements." ; + rdfs:label "Pset_SpaceCoveringRequirements" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "Properties common to the definition of covering requirements of IfcSpace. Those properties define the requirements coming from a space program in early project phases and can later be used to define the room book information, if such coverings are not modeled explicitly as covering elements." ; + IFC4-PSD:definitionAlias ""@en , "IfcSpace(部屋)の仕上げ(Covering)の共通属性。プロジェクト初期の空間計画からの仕上げ要求仕様情報を設定する。もし。Coveringオブジェクトが生成されていない場合は、このプロパティセットの情報は仕上げ表作成に使用することができる。"@ja-JP , "Eigenschaften der Bekleidungen des Raumes.\n\nDiese Eigenschaften werden als Anforderungen in frühen Phasen im Raumprogramm geführt und können für spätere Phasen als Informationen für das Raumbuch dienen, falls die Bekleidungen nicht als eigenständige Elemente angelegt werden."@de-DE ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceCoveringRequirements" ; + IFC4-PSD:propertyDef :pabdab367fcc64b08b03d584baeb819c8 , :p9650c4d3c07f4ccc9fd8147b099f0939 , :pbfd1f6a6ca08440899165d31dda04831 , :p8650a689ba064df69f052a87ab070f02 , :p56029141a7c040c4aef51a242fa1611f , :paf1249f71eb24579aaec871aa4a6287b , :p3f9ca576246247ff8bdca254b651a15a , :p44c775b14a0d46c58ad8c7e36c34a349 , :pda83c4235c1d40aba9510f6abe2412f6 , :pa7d072c8df3245bd9c1b9424d7f35a87 , :p1e0092682e5347b2b2c5050bd03ee111 , :p6d6b4d00a2234b90b4eb1901ca5be2b5 , :p7502fd34b7fa494280c610aec4787043 , :p69193a7f647f4526bd7f1d3b9fdd1a9e . diff --git a/converter/src/main/resources/pset/Pset_SpaceFireSafetyRequirements.ttl b/converter/src/main/resources/pset/Pset_SpaceFireSafetyRequirements.ttl new file mode 100644 index 00000000..1840c22c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceFireSafetyRequirements.ttl @@ -0,0 +1,128 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p8bcf9000d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space is required to have pressurized air (TRUE) or not (FALSE)." ; + rdfs:label "AirPressurization" ; + IFC4-PSD:definition "Indication whether the space is required to have pressurized air (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob der Raum einen Luftdruckausgleich erfordert (WAHR) oder nicht (FALSCH)."@de-DE , "Indique si l'espace nécessite d'être alimenté en air comprimé (VRAI) ou non (FAUX)"@fr-FR , ""@en , "공간이 가압 요구되고 있는지 여부를 나타내는 부울 값입니다. (TRUE) 가압 (FALSE) 비 가압."@ko-KR , "空間が加圧することを要求されているかどうかを示すブーリアン値。(TRUE)加圧、(FALSE)非加圧。"@ja-JP ; + IFC4-PSD:ifdguid "8bcf9000d20911e1800000215ad4efdf" ; + IFC4-PSD:name "AirPressurization" ; + IFC4-PSD:nameAlias "AirComprimeDisponible"@fr-FR , "Air Pressurization"@en , "Luftdruckausgleich"@de-DE , "공기 가압"@ko-KR , "空気加圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FlammableStorage a rdf:Property ; + rdfs:seeAlso :p3c895f80d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlammableStorage . + +:AirPressurization a rdf:Property ; + rdfs:seeAlso :p8bcf9000d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirPressurization . + +:p3c895f80d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space is intended to serve as a storage of flammable material (which is regarded as such by the presiding building code. (TRUE) indicates yes, (FALSE) otherwise." ; + rdfs:label "FlammableStorage" ; + IFC4-PSD:definition "Indication whether the space is intended to serve as a storage of flammable material (which is regarded as such by the presiding building code. (TRUE) indicates yes, (FALSE) otherwise." ; + IFC4-PSD:definitionAlias "Indique si l'espace est destiné au stockage de matières inflammables (considérées comme telles par le Code de la Construction en vigueur). (VRAI) signifie oui, (FAUX) sinon."@fr-FR , "Angabe, ob der Raum zur Lagerung der Produktion von brennbaren Stoffen genutzt wird (WHAHR) oder nicht (FALSCH). Die Angabe erfolgt nach der nationalen oder regionalen Brandschutzverordnung."@de-DE , ""@en , "空間が可燃物(建築基準を管理することによりそのように考慮される)の倉庫として使われることを意図されているかどうかを示すブーリアン値。(TRUE)はい、(FALSE)いいえ。"@ja-JP , "공간이 가연물 (건축 기준을 관리함으로써 그렇게 여겨지는)의 창고로 사용되는 것을 의도하고 있는지 여부를 나타내는 부울 값입니다. (TRUE) 예 (FALSE) 아니오. \"이 물체가 화재의 경우 출구로 사용되도록 설계되었는지 여부를 나타내는 (TRUE) 예 (FALSE) 아니오 값"@ko-KR ; + IFC4-PSD:ifdguid "3c895f80d20911e1800000215ad4efdf" ; + IFC4-PSD:name "FlammableStorage" ; + IFC4-PSD:nameAlias "Lagerung brennbarer Stoffe"@de-DE , "可燃物保管区分"@ja-JP , "StockageCombustible"@fr-FR , "가연성 물질 창고"@ko-KR , "Flammable Storage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p840feb80d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space has an automatic sprinkler protection (TRUE) or not (FALSE).\nIt should only be given, if the property \"SprinklerProtection\" is set to TRUE." ; + rdfs:label "SprinklerProtectionAutomatic" ; + IFC4-PSD:definition "Indication whether the space has an automatic sprinkler protection (TRUE) or not (FALSE).\nIt should only be given, if the property \"SprinklerProtection\" is set to TRUE." ; + IFC4-PSD:definitionAlias "스프링 클러 설비가 자동 여부를 나타내는 부울 값입니다. (TRUE) 자동 (FALSE) 비자동. \"스프링 클러 방어\"속성이 TRUE로 설정된 경우에만 주어진다."@ko-KR , "スプリンクラー設備が自動かどうか示すブーリアン値。(TRUE)自動、(FALSE)非自動。「スプリンクラー防御」プロパティがTRUEに設定された場合のみ、与えられる。"@ja-JP , ""@en , "Indication selon laquelle ce bâtiment bénéficie d'une protection automatique par sprinkler (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob der Raum durch eine automatische Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH). Dieser Wert soll nur angegeben werden, wenn das Attribut SprinklerProtection auf (WAHR) gesetzt ist."@de-DE ; + IFC4-PSD:ifdguid "840feb80d20911e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtectionAutomatic" ; + IFC4-PSD:nameAlias "自動スプリンクラー防御"@ja-JP , "Sprinklerschutz automatisch"@de-DE , "Sprinkler Protection Automatic"@en , "스프링 클러 방어 자동 구분"@ko-KR , "ProtectionAutomatiqueParSprinkler"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:SprinklerProtectionAutomatic + a rdf:Property ; + rdfs:seeAlso :p840feb80d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtectionAutomatic . + +:p7e1a0a80d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space is sprinkler protected (TRUE) or not (FALSE)." ; + rdfs:label "SprinklerProtection" ; + IFC4-PSD:definition "Indication whether the space is sprinkler protected (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "スプリンクラー設備の有無を示すブーリアン値。(TRUE)有、(FALSE)なし。"@ja-JP , "Indication selon laquelle ce bâtiment bénéficie d'une protection par sprinkler (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob der Raum durch eine Sprinkleranlage geschützt wird (WAHR) oder nicht (FALSCH)."@de-DE , "스프링 클러 설비의 유무를 나타내는 부울 값입니다. (TRUE) 유 (FALSE) 없음."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "7e1a0a80d20911e1800000215ad4efdf" ; + IFC4-PSD:name "SprinklerProtection" ; + IFC4-PSD:nameAlias "Sprinklerschutz"@de-DE , "スプリンクラー防御"@ja-JP , "스프링 클러 방어"@ko-KR , "ProtectionParSprinkler"@fr-FR , "Sprinkler Protection"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:FireRiskFactor a rdf:Property ; + rdfs:seeAlso :p33988e00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRiskFactor . + +:p76f2fc80d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." ; + IFC4-PSD:definitionAlias ""@en , "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Cas d'un espace comme un couloir conçu pour servir d'espace de sortie, par exemple pour l'évacuation en cas d'incendie."@fr-FR , "Angabe, ob der Raum einen Notausgang für den Brandfall hat und als ein Notausgangs(sammel)raum im Sinne der Brandschutzverordnung gilt (WAHR), oder nicht (FALSCH)."@de-DE , "여기에 공간 (예 복도), 예를 들면 화재 피난 목적을 위해 출구 공간으로 사용하도록 설계되었는지 여부"@ko-KR , "このオブジェクトが火災の場合に出口として使われるように設計されているかどうかを示すブーリアン値。(TRUE)はい、(FALSE)いいえ。\nここに、空間(例えば廊下)は、例えば火災避難目的のために出口空間として使われるよう設計されているかどうか。"@ja-JP ; + IFC4-PSD:ifdguid "76f2fc80d20911e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "Fire Exit"@en , "SortieSecours"@fr-FR , "화재 출구 (피난 출구)"@ko-KR , "非常口区分"@ja-JP , "Notausgang"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_SpaceFireSafetyRequirements + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties related to fire protection of spaces that apply to the occurrences of IfcSpace or IfcZone." ; + rdfs:label "Pset_SpaceFireSafetyRequirements" ; + IFC4-PSD:applicableClass , IFC4:IfcSpace , ; + IFC4-PSD:applicableTypeValue "IfcSpace, IfcSpatialZone, IfcZone" ; + IFC4-PSD:definition "Properties related to fire protection of spaces that apply to the occurrences of IfcSpace or IfcZone." ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , "Définition de l'IAI : propriétés relatives à la protection incendie, qui s'appliquent à toutes les occurrences des classes IfcSpace et IfcZone."@fr-FR , ""@en , "IfcSpaceまたはIfcZoneの存在に適用される、空間の火災防御(防火)に関連したプロパティ。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceFireSafetyRequirements" ; + IFC4-PSD:propertyDef :p76f2fc80d20911e1800000215ad4efdf , :p7e1a0a80d20911e1800000215ad4efdf , :p3c895f80d20911e1800000215ad4efdf , :p8bcf9000d20911e1800000215ad4efdf , :p33988e00d20911e1800000215ad4efdf , :p840feb80d20911e1800000215ad4efdf . + +:FireExit a rdf:Property ; + rdfs:seeAlso :p76f2fc80d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:SprinklerProtection a rdf:Property ; + rdfs:seeAlso :p7e1a0a80d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SprinklerProtection . + +:p33988e00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire Risk factor assigned to the space according to local building regulations. It defines the fire risk of the space at several levels of fire hazard." ; + rdfs:label "FireRiskFactor" ; + IFC4-PSD:definition "Fire Risk factor assigned to the space according to local building regulations. It defines the fire risk of the space at several levels of fire hazard." ; + IFC4-PSD:definitionAlias ""@en , "지역 건축 규칙에 따라 공간에 할당된 화재 위험 요인 화재 어느 정도의 공간의 화재 위험도를 정의한다. \""@ko-KR , "地域の建築規則に従って空間に割り当てられた火災危険要因\n火災のいくつかのレベルにおける空間の火災危険度を定義する。"@ja-JP , "Facteur de risque incendie attribué à l'espace, selon la réglementation locale en matière de construction."@fr-FR , "Brandgefahrenklasse des Raums, angegeben nach der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "33988e00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "FireRiskFactor" ; + IFC4-PSD:nameAlias "화재 위험 요인"@ko-KR , "FacteurRisqueIncendie"@fr-FR , "火災危険度要因"@ja-JP , "Brandgefahrenklasse"@de-DE , "Fire Risk Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SpaceHeaterPHistory.ttl b/converter/src/main/resources/pset/Pset_SpaceHeaterPHistory.ttl new file mode 100644 index 00000000..45d96efb --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceHeaterPHistory.ttl @@ -0,0 +1,233 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FractionRadiantHeatTransfer + a rdf:Property ; + rdfs:seeAlso :p9a1dac00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FractionRadiantHeatTransfer . + +:AirResistanceCurve a rdf:Property ; + rdfs:seeAlso :pb9b4d480d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirResistanceCurve . + +:UACurve a rdf:Property ; + rdfs:seeAlso :pb15c9980d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UACurve . + +:SpaceAirTemperature a rdf:Property ; + rdfs:seeAlso :pa6096e00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceAirTemperature . + +:p9a1dac00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the total heat transfer rate as the radiant heat transfer." ; + rdfs:label "FractionRadiantHeatTransfer" ; + IFC4-PSD:definition "Fraction of the total heat transfer rate as the radiant heat transfer." ; + IFC4-PSD:definitionAlias ""@en , "総合熱移動の内放射熱移動とみなされる部分"@ja-JP ; + IFC4-PSD:ifdguid "9a1dac00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "FractionRadiantHeatTransfer" ; + IFC4-PSD:nameAlias "放射熱移動フラクション"@ja-JP , "Fraction Radiant Heat Transfer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pc1747900d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall heat transfer rate." ; + rdfs:label "HeatOutputRate" ; + IFC4-PSD:definition "Overall heat transfer rate." ; + IFC4-PSD:definitionAlias "総合熱移動率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c1747900d20911e1800000215ad4efdf" ; + IFC4-PSD:name "HeatOutputRate" ; + IFC4-PSD:nameAlias "Heat Output Rate"@en , "熱出力比"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:FractionConvectiveHeatTransfer + a rdf:Property ; + rdfs:seeAlso :p9c800600d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FractionConvectiveHeatTransfer . + +:padc91280d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Auxiliary energy source consumption." ; + rdfs:label "AuxiliaryEnergySourceConsumption" ; + IFC4-PSD:definition "Auxiliary energy source consumption." ; + IFC4-PSD:definitionAlias "補助エネルギー源使用量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "adc91280d20911e1800000215ad4efdf" ; + IFC4-PSD:name "AuxiliaryEnergySourceConsumption" ; + IFC4-PSD:nameAlias "補助エネルギー源使用量"@ja-JP , "Auxiliary Energy Source Consumption"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p9c800600d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the total heat transfer rate as the convective heat transfer." ; + rdfs:label "FractionConvectiveHeatTransfer" ; + IFC4-PSD:definition "Fraction of the total heat transfer rate as the convective heat transfer." ; + IFC4-PSD:definitionAlias "総合熱移動の内対流射熱移動とみなされる部分"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9c800600d20911e1800000215ad4efdf" ; + IFC4-PSD:name "FractionConvectiveHeatTransfer" ; + IFC4-PSD:nameAlias "Fraction Convective Heat Transfer"@en , "対流熱移動フラクション"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pa30e7d80d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Average surface temperature of the component." ; + rdfs:label "SurfaceTemperature" ; + IFC4-PSD:definition "Average surface temperature of the component." ; + IFC4-PSD:definitionAlias ""@en , "構成要素の平均表面温度"@ja-JP ; + IFC4-PSD:ifdguid "a30e7d80d20911e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceTemperature" ; + IFC4-PSD:nameAlias "Surface Temperature"@en , "表面温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Exponent a rdf:Property ; + rdfs:seeAlso :pbde0f200d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Exponent . + +:SpaceMeanRadiantTemperature + a rdf:Property ; + rdfs:seeAlso :pa99cf500d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceMeanRadiantTemperature . + +:pb15c9980d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "UA curve as function of ambient temperature and surface temperature; UA = f (Tambient, Tsurface)" ; + rdfs:label "UACurve" ; + IFC4-PSD:definition "UA curve as function of ambient temperature and surface temperature; UA = f (Tambient, Tsurface)" ; + IFC4-PSD:definitionAlias "周囲温度と表面温度との関数のUA曲線"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b15c9980d20911e1800000215ad4efdf" ; + IFC4-PSD:name "UACurve" ; + IFC4-PSD:nameAlias "UA曲線"@ja-JP , "UACurve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SurfaceTemperature a rdf:Property ; + rdfs:seeAlso :pa30e7d80d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceTemperature . + +:pa0ac2380d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ratio of the real heat transfer rate to the maximum possible heat transfer rate." ; + rdfs:label "Effectiveness" ; + IFC4-PSD:definition "Ratio of the real heat transfer rate to the maximum possible heat transfer rate." ; + IFC4-PSD:definitionAlias "最大可能熱移動量に対する実熱移動量の割合"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a0ac2380d20911e1800000215ad4efdf" ; + IFC4-PSD:name "Effectiveness" ; + IFC4-PSD:nameAlias "効率"@ja-JP , "Effectiveness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pa6096e00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Dry bulb temperature in the space." ; + rdfs:label "SpaceAirTemperature" ; + IFC4-PSD:definition "Dry bulb temperature in the space." ; + IFC4-PSD:definitionAlias "部屋の乾球温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a6096e00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceAirTemperature" ; + IFC4-PSD:nameAlias "Space Air Temperature"@en , "室温"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb6b9e400d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Partial output capacity curve (as a function of water temperature); Q = f (Twater)." ; + rdfs:label "OutputCapacityCurve" ; + IFC4-PSD:definition "Partial output capacity curve (as a function of water temperature); Q = f (Twater)." ; + IFC4-PSD:definitionAlias ""@en , "部分的アウトプット能力曲線(水温の関数として)"@ja-JP ; + IFC4-PSD:ifdguid "b6b9e400d20911e1800000215ad4efdf" ; + IFC4-PSD:name "OutputCapacityCurve" ; + IFC4-PSD:nameAlias "部分的アウトプット能力曲線"@ja-JP , "Output Capacity Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Effectiveness a rdf:Property ; + rdfs:seeAlso :pa0ac2380d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Effectiveness . + +:pb9b4d480d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Air resistance curve (w/ fan only); Pressure = f ( flow rate)." ; + rdfs:label "AirResistanceCurve" ; + IFC4-PSD:definition "Air resistance curve (w/ fan only); Pressure = f ( flow rate)." ; + IFC4-PSD:definitionAlias "空気抵抗曲線(送風機のみ)圧力=f(流速)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b9b4d480d20911e1800000215ad4efdf" ; + IFC4-PSD:name "AirResistanceCurve" ; + IFC4-PSD:nameAlias "空気抵抗曲線"@ja-JP , "Air Resistance Curve"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:AuxiliaryEnergySourceConsumption + a rdf:Property ; + rdfs:seeAlso :padc91280d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AuxiliaryEnergySourceConsumption . + +:OutputCapacityCurve a rdf:Property ; + rdfs:seeAlso :pb6b9e400d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutputCapacityCurve . + +:pbde0f200d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Characteristic exponent, slope of log(heat output) vs log (surface temperature minus environmental temperature)." ; + rdfs:label "Exponent" ; + IFC4-PSD:definition "Characteristic exponent, slope of log(heat output) vs log (surface temperature minus environmental temperature)." ; + IFC4-PSD:definitionAlias "特徴的な指数、log(熱出力)log(表面温度マイナス周囲温度)の勾配"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bde0f200d20911e1800000215ad4efdf" ; + IFC4-PSD:name "Exponent" ; + IFC4-PSD:nameAlias "Exponent"@en , "指数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pa99cf500d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mean radiant temperature in the space." ; + rdfs:label "SpaceMeanRadiantTemperature" ; + IFC4-PSD:definition "Mean radiant temperature in the space." ; + IFC4-PSD:definitionAlias "部屋の平均放射温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a99cf500d20911e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceMeanRadiantTemperature" ; + IFC4-PSD:nameAlias "Space Mean Radiant Temperature"@en , "室平均放射温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_SpaceHeaterPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space heater performance history common attributes." ; + rdfs:label "Pset_SpaceHeaterPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcSpaceHeater ; + IFC4-PSD:applicableTypeValue "IfcSpaceHeater" ; + IFC4-PSD:definition "Space heater performance history common attributes." ; + IFC4-PSD:definitionAlias ""@en , "暖房用ヒーター性能履歴共通属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceHeaterPHistory" ; + IFC4-PSD:propertyDef :pa99cf500d20911e1800000215ad4efdf , :pb9b4d480d20911e1800000215ad4efdf , :pb6b9e400d20911e1800000215ad4efdf , :pbde0f200d20911e1800000215ad4efdf , :padc91280d20911e1800000215ad4efdf , :pc1747900d20911e1800000215ad4efdf , :pa30e7d80d20911e1800000215ad4efdf , :p9c800600d20911e1800000215ad4efdf , :pb15c9980d20911e1800000215ad4efdf , :pa6096e00d20911e1800000215ad4efdf , :p9a1dac00d20911e1800000215ad4efdf , :pa0ac2380d20911e1800000215ad4efdf . + +:HeatOutputRate a rdf:Property ; + rdfs:seeAlso :pc1747900d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatOutputRate . diff --git a/converter/src/main/resources/pset/Pset_SpaceHeaterTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeCommon.ttl new file mode 100644 index 00000000..c4439f41 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeCommon.ttl @@ -0,0 +1,249 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p216b1f80d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the energy source or fuel combusted to generate heat if applicable. Note: hydronic heaters shall use UNSET; dual-use hydronic/electric heaters shall use ELECTRICITY." ; + rdfs:label "EnergySource" ; + IFC4-PSD:definition "Enumeration defining the energy source or fuel combusted to generate heat if applicable. Note: hydronic heaters shall use UNSET; dual-use hydronic/electric heaters shall use ELECTRICITY." ; + IFC4-PSD:definitionAlias "列挙型はエネルギー源や燃料該当する場合は熱を発生させる燃焼定義します。注:温水循環式のヒーターはunsetを使用してはならない。デュアル使用すると、温水循環式の電気ヒーターは電気を使用しなければならない。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "216b1f80d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "EnergySource" ; + IFC4-PSD:nameAlias "エネルギー源"@ja-JP , "Energy Source"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ELECTRICITY" , "OIL" , "NOTKNOWN" , "WOOD" , "WOOD_CHIP" , "WOOD_PULVERIZED" , "PROPANE" , "UNSET" , "COAL" , "GAS" , "WOOD_PELLET" , "OTHER" , "COAL_PULVERIZED" + ] . + +:NumberOfPanels a rdf:Property ; + rdfs:seeAlso :p6d1dc900d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfPanels . + +:Reference a rdf:Property ; + rdfs:seeAlso :pcafde100d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Pset_SpaceHeaterTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space heater type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. Properties added in IFC4." ; + rdfs:label "Pset_SpaceHeaterTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSpaceHeater ; + IFC4-PSD:applicableTypeValue "IfcSpaceHeater" ; + IFC4-PSD:definition "Space heater type common attributes.\nSoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. Properties added in IFC4." ; + IFC4-PSD:definitionAlias "暖房用ヒーター共通属性                       SoundLevel属性はIFC2x2付録で削除された。: IfcSoundPropertiesを代わりに使う 特性はIFC4を加えました"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceHeaterTypeCommon" ; + IFC4-PSD:propertyDef :p07c9d800d20a11e1800000215ad4efdf , :p4f506400d20a11e1800000215ad4efdf , :pe9fc7300d20911e1800000215ad4efdf , :p216b1f80d20a11e1800000215ad4efdf , :pd224ef00d20911e1800000215ad4efdf , :pfbde1600d20911e1800000215ad4efdf , :p63946100d20a11e1800000215ad4efdf , :p57a89f00d20a11e1800000215ad4efdf , :p727b1380d20a11e1800000215ad4efdf , :pcafde100d20911e1800000215ad4efdf , :p5d9e8000d20a11e1800000215ad4efdf , :p14e6c700d20a11e1800000215ad4efdf , :p6d1dc900d20a11e1800000215ad4efdf . + +:ThermalEfficiency a rdf:Property ; + rdfs:seeAlso :p63946100d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalEfficiency . + +:EnergySource a rdf:Property ; + rdfs:seeAlso :p216b1f80d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EnergySource . + +:Status a rdf:Property ; + rdfs:seeAlso :pd224ef00d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pcafde100d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cafde100d20911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p14e6c700d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the heat transfer medium if applicable." ; + rdfs:label "HeatTransferMedium" ; + IFC4-PSD:definition "Enumeration defining the heat transfer medium if applicable." ; + IFC4-PSD:definitionAlias ""@en , "列挙体は熱媒体を必要に応じて定義します。"@ja-JP ; + IFC4-PSD:ifdguid "14e6c700d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatTransferMedium" ; + IFC4-PSD:nameAlias "Heat Transfer Medium"@en , "熱媒体"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WATER" , "STEAM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p6d1dc900d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of panels." ; + rdfs:label "NumberOfPanels" ; + IFC4-PSD:definition "Number of panels." ; + IFC4-PSD:definitionAlias ""@en , "パネルの数"@ja-JP ; + IFC4-PSD:ifdguid "6d1dc900d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfPanels" ; + IFC4-PSD:nameAlias "Number Of Panels"@en , "パネルの数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:ThermalMassHeatCapacity + a rdf:Property ; + rdfs:seeAlso :p57a89f00d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalMassHeatCapacity . + +:HeatTransferMedium a rdf:Property ; + rdfs:seeAlso :p14e6c700d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatTransferMedium . + +:OutputCapacity a rdf:Property ; + rdfs:seeAlso :p5d9e8000d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutputCapacity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe9fc7300d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates how the space heater is designed to be placed." ; + rdfs:label "PlacementType" ; + IFC4-PSD:definition "Indicates how the space heater is designed to be placed." ; + IFC4-PSD:definitionAlias "暖房用ヒーターが置かれるようにどう設計されているかを示します。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e9fc7300d20911e1800000215ad4efdf" ; + IFC4-PSD:name "PlacementType" ; + IFC4-PSD:nameAlias "プレースメントタイプ"@ja-JP , "Placement Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BASEBOARD" , "TOWELWARMER" , "SUSPENDED" , "WALL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:PlacementType a rdf:Property ; + rdfs:seeAlso :pe9fc7300d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PlacementType . + +:pfbde1600d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the temperature classification of the space heater surface temperature.\nlow temperature - surface temperature is relatively low, usually heated by hot water or electricity.\nhigh temperature - surface temperature is relatively high, usually heated by gas or steam." ; + rdfs:label "TemperatureClassification" ; + IFC4-PSD:definition "Enumeration defining the temperature classification of the space heater surface temperature.\nlow temperature - surface temperature is relatively low, usually heated by hot water or electricity.\nhigh temperature - surface temperature is relatively high, usually heated by gas or steam." ; + IFC4-PSD:definitionAlias "暖房用ヒーター表面温度の温度分類を定義。低温タイプ-お湯またh電気によるものの表面温度は相対的に低い。高温タイプ-ガスまたは蒸気によって熱するタイプの表面温度は比較的高い。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fbde1600d20911e1800000215ad4efdf" ; + IFC4-PSD:name "TemperatureClassification" ; + IFC4-PSD:nameAlias "温度分類"@ja-JP , "Temperature Classification"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LOWTEMPERATURE" , "HIGHTEMPERATURE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:BodyMass a rdf:Property ; + rdfs:seeAlso :p4f506400d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BodyMass . + +:p57a89f00d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Product of component mass and specific heat." ; + rdfs:label "ThermalMassHeatCapacity" ; + IFC4-PSD:definition "Product of component mass and specific heat." ; + IFC4-PSD:definitionAlias "質量あたりの熱容量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "57a89f00d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalMassHeatCapacity" ; + IFC4-PSD:nameAlias "Thermal Mass Heat Capacity"@en , "保有熱容量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p4f506400d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall body mass of the heater." ; + rdfs:label "BodyMass" ; + IFC4-PSD:definition "Overall body mass of the heater." ; + IFC4-PSD:definitionAlias "ヒーターの全体的な質量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4f506400d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "BodyMass" ; + IFC4-PSD:nameAlias "Body Mass"@en , "本体重量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p07c9d800d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates how heat is transmitted according to the shape of the space heater." ; + rdfs:label "HeatTransferDimension" ; + IFC4-PSD:definition "Indicates how heat is transmitted according to the shape of the space heater." ; + IFC4-PSD:definitionAlias "室内暖房機の形に従って熱がどう伝えられるかを示します。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "07c9d800d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatTransferDimension" ; + IFC4-PSD:nameAlias "熱伝達値"@ja-JP , "Heat Transfer Dimension"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "POINT" , "PATH" , "SURFACE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:TemperatureClassification + a rdf:Property ; + rdfs:seeAlso :pfbde1600d20911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TemperatureClassification . + +:HeatTransferDimension + a rdf:Property ; + rdfs:seeAlso :p07c9d800d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatTransferDimension . + +:p5d9e8000d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total nominal heat output as listed by the manufacturer." ; + rdfs:label "OutputCapacity" ; + IFC4-PSD:definition "Total nominal heat output as listed by the manufacturer." ; + IFC4-PSD:definitionAlias "メーカーによりリストアップされた公称熱出力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5d9e8000d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "OutputCapacity" ; + IFC4-PSD:nameAlias "Output Capacity"@en , "出力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:NumberOfSections a rdf:Property ; + rdfs:seeAlso :p727b1380d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSections . + +:p63946100d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Overall Thermal Efficiency is defined as gross energy output of the heat transfer device divided by the energy input." ; + rdfs:label "ThermalEfficiency" ; + IFC4-PSD:definition "Overall Thermal Efficiency is defined as gross energy output of the heat transfer device divided by the energy input." ; + IFC4-PSD:definitionAlias ""@en , "熱効率:熱伝導装置の総エネルギー出力/エネルギー入力として総合的な熱効率は定義される。"@ja-JP ; + IFC4-PSD:ifdguid "63946100d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalEfficiency" ; + IFC4-PSD:nameAlias "熱効率"@ja-JP , "Thermal Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcNormalisedRatioMeasure + ] . + +:p727b1380d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of vertical sections, measured in the direction of flow." ; + rdfs:label "NumberOfSections" ; + IFC4-PSD:definition "Number of vertical sections, measured in the direction of flow." ; + IFC4-PSD:definitionAlias ""@en , "流れ方向で測定した垂直方向のセクションの数"@ja-JP ; + IFC4-PSD:ifdguid "727b1380d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfSections" ; + IFC4-PSD:nameAlias "セクションの数"@ja-JP , "Number Of Sections"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:pd224ef00d20911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "d224ef00d20911e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceHeaterTypeConvector.ttl b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeConvector.ttl new file mode 100644 index 00000000..631e202a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeConvector.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ConvectorType a rdf:Property ; + rdfs:seeAlso :p7e66d580d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ConvectorType . + +:Pset_SpaceHeaterTypeConvector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space heater type convector attributes." ; + rdfs:label "Pset_SpaceHeaterTypeConvector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSpaceHeater/CONVECTOR" ; + IFC4-PSD:definition "Space heater type convector attributes." ; + IFC4-PSD:definitionAlias "暖房用ヒーター対流式属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceHeaterTypeConvector" ; + IFC4-PSD:propertyDef :p7e66d580d20a11e1800000215ad4efdf . + +:p7e66d580d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of convector, whether forced air (mechanically driven) or natural (gravity)." ; + rdfs:label "ConvectorType" ; + IFC4-PSD:definition "Indicates the type of convector, whether forced air (mechanically driven) or natural (gravity)." ; + IFC4-PSD:definitionAlias "強制空気(機械的に運転される)か自然な(重力)であることにかかわらず対流式暖房器のタイプを示します。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7e66d580d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ConvectorType" ; + IFC4-PSD:nameAlias "対流タイプ"@ja-JP , "Convector Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FORCED" , "NATURAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceHeaterTypeRadiator.ttl b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeRadiator.ttl new file mode 100644 index 00000000..b3a26947 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceHeaterTypeRadiator.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9179a580d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the type of radiator." ; + rdfs:label "RadiatorType" ; + IFC4-PSD:definition "Indicates the type of radiator." ; + IFC4-PSD:definitionAlias ""@en , "ラジエーターの種類"@ja-JP ; + IFC4-PSD:ifdguid "9179a580d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "RadiatorType" ; + IFC4-PSD:nameAlias "Radiator Type"@en , "ラジエータータイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "FINNEDTUBE" , "PANEL" , "SECTIONAL" , "TUBULAR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa9512980d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Weight of water content within the heater." ; + rdfs:label "WaterContent" ; + IFC4-PSD:definition "Weight of water content within the heater." ; + IFC4-PSD:definitionAlias "ヒーター内部の水分の重み"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a9512980d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "WaterContent" ; + IFC4-PSD:nameAlias "水含量"@ja-JP , "Water Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:TubingLength a rdf:Property ; + rdfs:seeAlso :pa0f8ee80d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TubingLength . + +:pa0f8ee80d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water tube length inside the component." ; + rdfs:label "TubingLength" ; + IFC4-PSD:definition "Water tube length inside the component." ; + IFC4-PSD:definitionAlias "構成要素における水管の長さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a0f8ee80d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "TubingLength" ; + IFC4-PSD:nameAlias "Tubing Length"@en , "チューブの長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WaterContent a rdf:Property ; + rdfs:seeAlso :pa9512980d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaterContent . + +:Pset_SpaceHeaterTypeRadiator + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space heater type radiator attributes." ; + rdfs:label "Pset_SpaceHeaterTypeRadiator" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSpaceHeater/RADIATOR" ; + IFC4-PSD:definition "Space heater type radiator attributes." ; + IFC4-PSD:definitionAlias ""@en , "暖房用ヒーターラジエーター属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceHeaterTypeRadiator" ; + IFC4-PSD:propertyDef :pa0f8ee80d20a11e1800000215ad4efdf , :p9179a580d20a11e1800000215ad4efdf , :pa9512980d20a11e1800000215ad4efdf . + +:RadiatorType a rdf:Property ; + rdfs:seeAlso :p9179a580d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RadiatorType . diff --git a/converter/src/main/resources/pset/Pset_SpaceLightingRequirements.ttl b/converter/src/main/resources/pset/Pset_SpaceLightingRequirements.ttl new file mode 100644 index 00000000..dfc56f9f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceLightingRequirements.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SpaceLightingRequirements + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties related to the lighting requirements that apply to the occurrences of IfcSpace or IfcZone. This includes the required artificial lighting, illuminance, etc." ; + rdfs:label "Pset_SpaceLightingRequirements" ; + IFC4-PSD:applicableClass IFC4:IfcSpace , , ; + IFC4-PSD:applicableTypeValue "IfcSpace, IfcSpatialZone, IfcZone" ; + IFC4-PSD:definition "Properties related to the lighting requirements that apply to the occurrences of IfcSpace or IfcZone. This includes the required artificial lighting, illuminance, etc." ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , ""@en , "IfcSpaceまたはIfcZoneオブジェクトに適用される照明の条件に関するプロパティ。必要とされる人工照明及び照度などを含む。"@ja-JP , "Définition de l'IAI : propriétés relatives aux exigences en matière d'éclairement, applicables à toutes les instances des classes IfcSpace et IfcZone. Comprend l'éclairage artificiel, le niveau d'éclairement,…"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceLightingRequirements" ; + IFC4-PSD:propertyDef :pbb32cc80d20a11e1800000215ad4efdf , :pb53ceb80d20a11e1800000215ad4efdf . + +:Illuminance a rdf:Property ; + rdfs:seeAlso :pbb32cc80d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Illuminance . + +:ArtificialLighting a rdf:Property ; + rdfs:seeAlso :pb53ceb80d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ArtificialLighting . + +:pbb32cc80d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Required average illuminance value for this space." ; + rdfs:label "Illuminance" ; + IFC4-PSD:definition "Required average illuminance value for this space." ; + IFC4-PSD:definitionAlias "Valeur de l'éclairement attendu pour la pièce."@fr-FR , "이 공간을 위해 필요한 평균 조도"@ko-KR , ""@en , "領域に対しての必要とされる照度の値の平均値。"@ja-JP , "Geforderte durchschnittliche Beleuchtungsstärke in diesem Raum."@de-DE ; + IFC4-PSD:ifdguid "bb32cc80d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "Illuminance" ; + IFC4-PSD:nameAlias "照度"@ja-JP , "조도"@ko-KR , "EclairementAttendu"@fr-FR , "Beleuchtungsstärke"@de-DE , "Illuminance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIlluminanceMeasure + ] . + +:pb53ceb80d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space requires artificial lighting (as natural lighting would be not sufficient). (TRUE) indicates yes (FALSE) otherwise." ; + rdfs:label "ArtificialLighting" ; + IFC4-PSD:definition "Indication whether this space requires artificial lighting (as natural lighting would be not sufficient). (TRUE) indicates yes (FALSE) otherwise." ; + IFC4-PSD:definitionAlias "Angabe, ob dieser Raum eine künstliche Beleuchtung erfordert (WAHR) oder nicht (FALSCH)"@de-DE , ""@en , "이 공간이 인공 조명을 필요로하는지 여부 (자연 조명이 충분하지 않기 위하여)를 나타내는 부울 값입니다. (TRUE) 필요 (FALSE) 아니오 값."@ko-KR , "領域が人工照明を必要とするかどうかの表示(自然光が十分でないとして) (TRUE)の場合、必要。(FALSE)の場合、不必要。"@ja-JP , "Indication si cette pièce a des besoins d'éclairage artificiel (dans la mesure où l'éclairage naturel ne serait pas suffisant). (VRAI) signifie oui, (FAUX) sinon."@fr-FR ; + IFC4-PSD:ifdguid "b53ceb80d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ArtificialLighting" ; + IFC4-PSD:nameAlias "Artificial Lighting"@en , "인공 조명"@ko-KR , "EclairageArtificiel"@fr-FR , "künstliche Beleuchtung"@de-DE , "人工照明"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SpaceOccupancyRequirements.ttl b/converter/src/main/resources/pset/Pset_SpaceOccupancyRequirements.ttl new file mode 100644 index 00000000..c7146d4d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceOccupancyRequirements.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe0bfd600d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Design occupancy loading for this type of usage assigned to this space." ; + rdfs:label "AreaPerOccupant" ; + IFC4-PSD:definition "Design occupancy loading for this type of usage assigned to this space." ; + IFC4-PSD:definitionAlias "Anteil der Raumfläche pro Benutzer für Nutzung des Raums."@de-DE , "Taux de remplissage de l'espace pour l'usage type"@fr-FR , ""@en , "この空間に割り当てられた用途に対する想定利用負荷。"@ja-JP ; + IFC4-PSD:ifdguid "e0bfd600d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "AreaPerOccupant" ; + IFC4-PSD:nameAlias "Fläche pro Nutzer"@de-DE , "利用者毎面積"@ja-JP , "SurfaceParOccupant"@fr-FR , "Area Per Occupant"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcAreaMeasure + ] . + +:OccupancyNumber a rdf:Property ; + rdfs:seeAlso :pcf76c980d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyNumber . + +:Pset_SpaceOccupancyRequirements + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties concerning work activities occurring or expected to occur within one or a set of similar spatial structure elements." ; + rdfs:label "Pset_SpaceOccupancyRequirements" ; + IFC4-PSD:applicableClass IFC4:IfcSpace , , ; + IFC4-PSD:applicableTypeValue "IfcSpace, IfcSpatialZone, IfcZone" ; + IFC4-PSD:definition "Properties concerning work activities occurring or expected to occur within one or a set of similar spatial structure elements." ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , "一つの、あるいは複数の類似した空間構成要素で起きる、あるいは起こるであろう業務活動に関する属性。"@ja-JP , "Définition de l'IAI : propriétés relatives à l'usage attendu ou effectif d'un élément de structure spatial ou d'un ensemble d'éléments de struture spatiale similaires."@fr-FR , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceOccupancyRequirements" ; + IFC4-PSD:propertyDef :pc84fbb80d20a11e1800000215ad4efdf , :pe0bfd600d20a11e1800000215ad4efdf , :pdac9f500d20a11e1800000215ad4efdf , :peae1d480d20a11e1800000215ad4efdf , :pd4d41400d20a11e1800000215ad4efdf , :pe61d2080d20a11e1800000215ad4efdf , :pcf76c980d20a11e1800000215ad4efdf . + +:OccupancyNumberPeak a rdf:Property ; + rdfs:seeAlso :pd4d41400d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyNumberPeak . + +:OccupancyTimePerDay a rdf:Property ; + rdfs:seeAlso :pdac9f500d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyTimePerDay . + +:MinimumHeadroom a rdf:Property ; + rdfs:seeAlso :pe61d2080d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MinimumHeadroom . + +:pdac9f500d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of time during the day that the activity is required within this space." ; + rdfs:label "OccupancyTimePerDay" ; + IFC4-PSD:definition "The amount of time during the day that the activity is required within this space." ; + IFC4-PSD:definitionAlias "Durée journalière de l'activité dans cet espace"@fr-FR , ""@en , "Durchschnittliche Belegungszeit des Raums pro Tag."@de-DE , "この空間での活動をするために必要な日中の時間。"@ja-JP ; + IFC4-PSD:ifdguid "dac9f500d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyTimePerDay" ; + IFC4-PSD:nameAlias "Occupancy Time Per Day"@en , "日毎利用時間"@ja-JP , "DureeOccupationJour"@fr-FR , "Belegungszeit pro Tag"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTimeMeasure + ] . + +:pe61d2080d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Headroom required for the activity assigned to this space." ; + rdfs:label "MinimumHeadroom" ; + IFC4-PSD:definition "Headroom required for the activity assigned to this space." ; + IFC4-PSD:definitionAlias "この空間に割り当てられた用途に必要な頭上あき高。"@ja-JP , ""@en , "Hauteur de passage requise pour l'usage assigné à l'espace"@fr-FR , "Minumal geforderte lichte Höhe für diesen Raum."@de-DE ; + IFC4-PSD:ifdguid "e61d2080d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "MinimumHeadroom" ; + IFC4-PSD:nameAlias "Minimum Headroom"@en , "HauteurPassageMinimale"@fr-FR , "最小頭上あき高"@ja-JP , "Lichte Höhe"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:AreaPerOccupant a rdf:Property ; + rdfs:seeAlso :pe0bfd600d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AreaPerOccupant . + +:pcf76c980d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of people required for the activity assigned to this space." ; + rdfs:label "OccupancyNumber" ; + IFC4-PSD:definition "Number of people required for the activity assigned to this space." ; + IFC4-PSD:definitionAlias ""@en , "Nombre d'occupants concernés par l'activité dans cet espace."@fr-FR , "Durchschnittliche Anzahl der Personen für deren Aktivitäten der Raum vorgesehen ist."@de-DE , "この空間に割り当てられた活動を遂行するために必要な人数。"@ja-JP ; + IFC4-PSD:ifdguid "cf76c980d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyNumber" ; + IFC4-PSD:nameAlias "Occupancy Number"@en , "Belegung"@de-DE , "利用人数"@ja-JP , "NombreOccupants"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:IsOutlookDesirable a rdf:Property ; + rdfs:seeAlso :peae1d480d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsOutlookDesirable . + +:OccupancyType a rdf:Property ; + rdfs:seeAlso :pc84fbb80d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyType . + +:peae1d480d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication of whether the outlook is desirable (set TRUE) or not (set FALSE)" ; + rdfs:label "IsOutlookDesirable" ; + IFC4-PSD:definition "An indication of whether the outlook is desirable (set TRUE) or not (set FALSE)" ; + IFC4-PSD:definitionAlias "外の眺望が望ましいかどうか。"@ja-JP , "Angabe, ob dieser Raum einen natürlichen Ausblick nach draussen gewähren soll (WAHR) oder dies nicht gefordert ist (FALSCH)."@de-DE , "Indique si la vue sur l'extérieur est souhaitable (VRAI) ou non (FAUX)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "eae1d480d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "IsOutlookDesirable" ; + IFC4-PSD:nameAlias "Ausblick erwünscht"@de-DE , "VueExterieurSouhaitable"@fr-FR , "眺望の善し悪し"@ja-JP , "Is Outlook Desirable"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pd4d41400d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximal number of people required for the activity assigned to this space in peak time." ; + rdfs:label "OccupancyNumberPeak" ; + IFC4-PSD:definition "Maximal number of people required for the activity assigned to this space in peak time." ; + IFC4-PSD:definitionAlias "この空間に割り当てられた活動を遂行するために必要な最大人数。"@ja-JP , ""@en , "Maximale Anzahl der Personen für deren Aktivitäten der Raum vorgesehen ist."@de-DE , "Nombre maximum d'occupants simultanés concernés par l'activité dans cet espace à l'heure de pointe."@fr-FR ; + IFC4-PSD:ifdguid "d4d41400d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyNumberPeak" ; + IFC4-PSD:nameAlias "Maximale Belegung"@de-DE , "利用人数ピーク"@ja-JP , "Occupancy Number Peak"@en , "NombreOccupantsMax"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:pc84fbb80d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Occupancy type for this object. It is defined according to the presiding national building code." ; + rdfs:label "OccupancyType" ; + IFC4-PSD:definition "Occupancy type for this object. It is defined according to the presiding national building code." ; + IFC4-PSD:definitionAlias "Usage type de cet espace. Est défini selon le Code national en vigueur."@fr-FR , "このオブジェクトの用途。統括する国の建築法規により定義される。"@ja-JP , ""@en , "Nutzungsart des Raums gemäß der gültigen Raumnutzungstabelle des Raumprogramms."@de-DE ; + IFC4-PSD:ifdguid "c84fbb80d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyType" ; + IFC4-PSD:nameAlias "Nutzungsart"@de-DE , "Occupancy Type"@en , "TypeOccupation"@fr-FR , "用途"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SpaceParking.ttl b/converter/src/main/resources/pset/Pset_SpaceParking.ttl new file mode 100644 index 00000000..971199c4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceParking.ttl @@ -0,0 +1,92 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ParkingUnits a rdf:Property ; + rdfs:seeAlso :pffbe6800d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ParkingUnits . + +:p0c42c080d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the parking aisle is designed for oneway traffic (TRUE) or twoway traffic (FALSE). Should only be provided if the property IsAisle is set to TRUE." ; + rdfs:label "IsOneWay" ; + IFC4-PSD:definition "Indicates whether the parking aisle is designed for oneway traffic (TRUE) or twoway traffic (FALSE). Should only be provided if the property IsAisle is set to TRUE." ; + IFC4-PSD:definitionAlias "駐車場通路が一方通行(TRUE)か双方向(FALSE)かを示すフラグ。"@ja-JP , ""@en , "Indique si cette allée du parking est prévue pour être à sens unique (VRAI) ou à double sens (FAUX). A fournir seulement si la propriété \"Est un accès\" est égale à VRAI."@fr-FR ; + IFC4-PSD:ifdguid "0c42c080d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "IsOneWay" ; + IFC4-PSD:nameAlias "Sens unique"@fr-FR , "Is One Way"@en , "一方通行"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf7662d00d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the type of transporation for which the parking space is designed. Values are not predefined but might include car, compact car, motorcycle, bicycle, truck, bus etc." ; + rdfs:label "ParkingUse" ; + IFC4-PSD:definition "Identifies the type of transporation for which the parking space is designed. Values are not predefined but might include car, compact car, motorcycle, bicycle, truck, bus etc." ; + IFC4-PSD:definitionAlias ""@en , "Identifie le type de véhicule pour lequel le parking a été conçu. Les valeurs possibles (voiture, bus, motos, vélos,…) ne sont pas prédéfinies."@fr-FR , "どの車両種別の駐車場なのかを識別します。値はあらかじめ定められないが、自動車、小型車、オートバイ、自転車、トラック、バスなどを含んでいるかもしれません。"@ja-JP ; + IFC4-PSD:ifdguid "f7662d00d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ParkingUse" ; + IFC4-PSD:nameAlias "AccessibleHandicape"@fr-FR , "Parking Use"@en , "駐車場の用途"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Pset_SpaceParking a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcSpace which have an attribute value for ObjectType = 'Parking'. NOTE: Modified in IFC 2x3, properties ParkingUse and ParkingUnits added." ; + rdfs:label "Pset_SpaceParking" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSpace/PARKING" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcSpace which have an attribute value for ObjectType = 'Parking'. NOTE: Modified in IFC 2x3, properties ParkingUse and ParkingUnits added." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition des instances de la classe IfcSpace lorsque la valeur de l'attribut ObjetType est \"Parking\". Nota : les propriétés TypeVehicule et NombreUnites ont été introduites depuis la révision 2x3."@fr-FR , ""@en , "IfcObjectのObjectType属性の値が\"Parking\"の場合に設定される共通プロパティ情報。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceParking" ; + IFC4-PSD:propertyDef :p0c42c080d20b11e1800000215ad4efdf , :pffbe6800d20a11e1800000215ad4efdf , :pf7662d00d20a11e1800000215ad4efdf , :p051bb280d20b11e1800000215ad4efdf . + +:pffbe6800d20a11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the number of transporation units of the type specified by the property ParkingUse that may be accommodated within the space. Generally, this value should default to 1 unit. However, where the parking space is for motorcycles or bicycles, provision may be made for more than one unit in the space." ; + rdfs:label "ParkingUnits" ; + IFC4-PSD:definition "Indicates the number of transporation units of the type specified by the property ParkingUse that may be accommodated within the space. Generally, this value should default to 1 unit. However, where the parking space is for motorcycles or bicycles, provision may be made for more than one unit in the space." ; + IFC4-PSD:definitionAlias "Nombre d'unités du type de véhicule spécifié dans la propriété TypeVehicule que peut contenir l'espace alloué au parking. Généralement, la valeur par défaut est 1. Elle peut être supérieure pour les deux roues."@fr-FR , ""@en , "車両種別ごとの駐車台数のユニットごとの指定台数。一般に、この値は1台/1ユニットになるべきです。しかしながら、オートバイまたは自転車向けである場合、数台/1ユニット以上なるかもしれません。"@ja-JP ; + IFC4-PSD:ifdguid "ffbe6800d20a11e1800000215ad4efdf" ; + IFC4-PSD:name "ParkingUnits" ; + IFC4-PSD:nameAlias "Parking Units"@en , "TypeVehicule"@fr-FR , "一区画当たりの駐車台数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsOneWay a rdf:Property ; + rdfs:seeAlso :p0c42c080d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsOneWay . + +:IsAisle a rdf:Property ; + rdfs:seeAlso :p051bb280d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsAisle . + +:ParkingUse a rdf:Property ; + rdfs:seeAlso :pf7662d00d20a11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ParkingUse . + +:p051bb280d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates that this parking zone is for accessing the parking units, i.e. an aisle (TRUE) and not a parking unit itself (FALSE)" ; + rdfs:label "IsAisle" ; + IFC4-PSD:definition "Indicates that this parking zone is for accessing the parking units, i.e. an aisle (TRUE) and not a parking unit itself (FALSE)" ; + IFC4-PSD:definitionAlias ""@en , "駐車場の通路部分(TRUE)か駐車部部分(FALSE)かを示すフラグ。"@ja-JP , "Indique si cette zone du parking, comme une allée, est réservée à l'accès (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "051bb280d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "IsAisle" ; + IFC4-PSD:nameAlias "NombreUnites"@fr-FR , "通路か駐車スペースの判別"@ja-JP , "Is Aisle"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceThermalDesign.ttl b/converter/src/main/resources/pset/Pset_SpaceThermalDesign.ttl new file mode 100644 index 00000000..bb8b5ac8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceThermalDesign.ttl @@ -0,0 +1,253 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TotalHeatLoss a rdf:Property ; + rdfs:seeAlso :p31373380d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatLoss . + +:HeatingDryBulb a rdf:Property ; + rdfs:seeAlso :p43b16d00d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingDryBulb . + +:p3dbb8c00d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Inside relative humidity for cooling design." ; + rdfs:label "CoolingRelativeHumidity" ; + IFC4-PSD:definition "Inside relative humidity for cooling design." ; + IFC4-PSD:definitionAlias ""@en , "냉방 설계의 실내 디자인 상대 습도."@ko-KR , "冷房設計における室内設計相対湿度。"@ja-JP ; + IFC4-PSD:ifdguid "3dbb8c00d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingRelativeHumidity" ; + IFC4-PSD:nameAlias "冷房設計相対湿度"@ja-JP , "Cooling Relative Humidity"@en , "냉방 설계 상대습도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:HeatingRelativeHumidity + a rdf:Property ; + rdfs:seeAlso :p490eb780d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingRelativeHumidity . + +:p43b16d00d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Inside dry bulb temperature for heating design." ; + rdfs:label "HeatingDryBulb" ; + IFC4-PSD:definition "Inside dry bulb temperature for heating design." ; + IFC4-PSD:definitionAlias ""@en , "暖房設計における室内設計乾球温度。"@ja-JP , "난방 설계의 실내 디자인 건구 온도"@ko-KR ; + IFC4-PSD:ifdguid "43b16d00d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingDryBulb" ; + IFC4-PSD:nameAlias "난방 설계온도"@ko-KR , "Heating Dry Bulb"@en , "暖房設計温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p4f9d2f00d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation outside air requirement for the space." ; + rdfs:label "VentilationAirFlowrate" ; + IFC4-PSD:definition "Ventilation outside air requirement for the space." ; + IFC4-PSD:definitionAlias "必要外気量。"@ja-JP , "필요 외기 량."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "4f9d2f00d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationAirFlowrate" ; + IFC4-PSD:nameAlias "Ventilation Air Flowrate"@en , "외기량"@ko-KR , "外気量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:p490eb780d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Inside relative humidity for heating design." ; + rdfs:label "HeatingRelativeHumidity" ; + IFC4-PSD:definition "Inside relative humidity for heating design." ; + IFC4-PSD:definitionAlias ""@en , "난방 설계의 실내 디자인 상대 습도."@ko-KR , "暖房設計における室内設計相対湿度。"@ja-JP ; + IFC4-PSD:ifdguid "490eb780d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingRelativeHumidity" ; + IFC4-PSD:nameAlias "暖房設計相対湿度"@ja-JP , "난방 설계 상대습도"@ko-KR , "Heating Relative Humidity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:VentilationAirFlowrate + a rdf:Property ; + rdfs:seeAlso :p4f9d2f00d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationAirFlowrate . + +:p19f84600d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The air flowrate required during the peak cooling conditions." ; + rdfs:label "CoolingDesignAirflow" ; + IFC4-PSD:definition "The air flowrate required during the peak cooling conditions." ; + IFC4-PSD:definitionAlias ""@en , "ピーク時の冷房条件で要求される給気量。"@ja-JP ; + IFC4-PSD:ifdguid "19f84600d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingDesignAirflow" ; + IFC4-PSD:nameAlias "Cooling Design Airflow"@en , "冷房設計吸気量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:BoundaryAreaHeatLoss + a rdf:Property ; + rdfs:seeAlso :p617ed200d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BoundaryAreaHeatLoss . + +:HeatingDesignAirflow + a rdf:Property ; + rdfs:seeAlso :p1fee2700d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingDesignAirflow . + +:CoolingDryBulb a rdf:Property ; + rdfs:seeAlso :p385e4180d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingDryBulb . + +:p2c727f80d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total amount of heat or energy gained by the space at the time of the space's peak cooling conditions." ; + rdfs:label "TotalHeatGain" ; + IFC4-PSD:definition "The total amount of heat or energy gained by the space at the time of the space's peak cooling conditions." ; + IFC4-PSD:definitionAlias "최대의 실내 최대 냉방 부하 취득한 현열 또는 에너지."@ko-KR , "ピーク時の室内最大冷房負荷時に取得した顕熱或いはエネルギー。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2c727f80d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatGain" ; + IFC4-PSD:nameAlias "연 인수 금액"@ko-KR , "熱取得の合計"@ja-JP , "Total Heat Gain"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:TotalHeatGain a rdf:Property ; + rdfs:seeAlso :p2c727f80d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatGain . + +:p25e40800d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total sensible heat or energy gained by the space during the peak cooling conditions." ; + rdfs:label "TotalSensibleHeatGain" ; + IFC4-PSD:definition "The total sensible heat or energy gained by the space during the peak cooling conditions." ; + IFC4-PSD:definitionAlias "피크 냉방 조건에서 얻은 현열 또는 에너지."@ko-KR , "ピーク時の冷房条件で取得した顕熱或いはエネルギー。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "25e40800d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalSensibleHeatGain" ; + IFC4-PSD:nameAlias "현열 부하의 합계"@ko-KR , "Total Sensible Heat Gain"@en , "顕熱負荷の合計"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p385e4180d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Inside dry bulb temperature for cooling design." ; + rdfs:label "CoolingDryBulb" ; + IFC4-PSD:definition "Inside dry bulb temperature for cooling design." ; + IFC4-PSD:definitionAlias ""@en , "冷房設計における室内設計乾球温度。"@ja-JP , "냉방 설계의 실내 디자인 건구 온도"@ko-KR ; + IFC4-PSD:ifdguid "385e4180d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingDryBulb" ; + IFC4-PSD:nameAlias "냉방 설계온도"@ko-KR , "冷房設計温度"@ja-JP , "Cooling Dry Bulb"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CeilingRAPlenum a rdf:Property ; + rdfs:seeAlso :p5a57c400d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CeilingRAPlenum . + +:p617ed200d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat loss per unit area for the boundary object. This is a design input value for use in the absence of calculated load data." ; + rdfs:label "BoundaryAreaHeatLoss" ; + IFC4-PSD:definition "Heat loss per unit area for the boundary object. This is a design input value for use in the absence of calculated load data." ; + IFC4-PSD:definitionAlias ""@en , "단위 면적이 주변 관련 설비의 열 손실. 공조 부하 계산 이외의 디자인 설정."@ko-KR , "単位面積ありた周辺関連設備の熱ロス。空調負荷計算値以外の設計設定値。"@ja-JP ; + IFC4-PSD:ifdguid "617ed200d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "BoundaryAreaHeatLoss" ; + IFC4-PSD:nameAlias "주변 관련 설비의 열 손실"@ko-KR , "周辺関連設備の熱ロス"@ja-JP , "Boundary Area Heat Loss"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcHeatFluxDensityMeasure + ] . + +:Pset_SpaceThermalDesign + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Space or zone HVAC design requirements. HISTORY: New property set in IFC Release 1.0 (Pset_SpaceHvacInformation); renamed to Pset_SpaceThermalDesign and revised in IFC2x2." ; + rdfs:label "Pset_SpaceThermalDesign" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "Space or zone HVAC design requirements. HISTORY: New property set in IFC Release 1.0 (Pset_SpaceHvacInformation); renamed to Pset_SpaceThermalDesign and revised in IFC2x2." ; + IFC4-PSD:definitionAlias "室内或いはゾーンの空調設計要求。履歴:IFC1.0の新PropertySet(Pset_SpaceHvacInformation)、:IFC2x2にPset_SpaceThermalDesignと再定義された。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceThermalDesign" ; + IFC4-PSD:propertyDef :p617ed200d20b11e1800000215ad4efdf , :p19f84600d20b11e1800000215ad4efdf , :p385e4180d20b11e1800000215ad4efdf , :p54fa7980d20b11e1800000215ad4efdf , :p1fee2700d20b11e1800000215ad4efdf , :p25e40800d20b11e1800000215ad4efdf , :p3dbb8c00d20b11e1800000215ad4efdf , :p4f9d2f00d20b11e1800000215ad4efdf , :p5a57c400d20b11e1800000215ad4efdf , :p31373380d20b11e1800000215ad4efdf , :p490eb780d20b11e1800000215ad4efdf , :p2c727f80d20b11e1800000215ad4efdf , :p43b16d00d20b11e1800000215ad4efdf . + +:p54fa7980d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Design exhaust air flow rate for the space." ; + rdfs:label "ExhaustAirFlowrate" ; + IFC4-PSD:definition "Design exhaust air flow rate for the space." ; + IFC4-PSD:definitionAlias "設計排気量。"@ja-JP , "설계 배기량."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "54fa7980d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "ExhaustAirFlowrate" ; + IFC4-PSD:nameAlias "Exhaust Air Flowrate"@en , "排気量"@ja-JP , "배기량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:TotalSensibleHeatGain + a rdf:Property ; + rdfs:seeAlso :p25e40800d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalSensibleHeatGain . + +:ExhaustAirFlowrate a rdf:Property ; + rdfs:seeAlso :p54fa7980d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExhaustAirFlowrate . + +:CoolingRelativeHumidity + a rdf:Property ; + rdfs:seeAlso :p3dbb8c00d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingRelativeHumidity . + +:p1fee2700d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The air flowrate required during the peak heating conditions, but could also be determined by minimum ventilation requirement or minimum air change requirements." ; + rdfs:label "HeatingDesignAirflow" ; + IFC4-PSD:definition "The air flowrate required during the peak heating conditions, but could also be determined by minimum ventilation requirement or minimum air change requirements." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1fee2700d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingDesignAirflow" ; + IFC4-PSD:nameAlias "Heating Design Airflow"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:CoolingDesignAirflow + a rdf:Property ; + rdfs:seeAlso :p19f84600d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingDesignAirflow . + +:p5a57c400d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ceiling plenum used for return air or not. TRUE = Yes, FALSE = No." ; + rdfs:label "CeilingRAPlenum" ; + IFC4-PSD:definition "Ceiling plenum used for return air or not. TRUE = Yes, FALSE = No." ; + IFC4-PSD:definitionAlias "천장 환 기 (리탄있어 · 없음) TRUE = 있고 FALSE = 없음."@ko-KR , ""@en , "天井裏還気(リタンあり・なし) TRUE=あり、FALSE=なし。"@ja-JP ; + IFC4-PSD:ifdguid "5a57c400d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "CeilingRAPlenum" ; + IFC4-PSD:nameAlias "Ceiling RAPlenum"@en , "天井裏還気"@ja-JP , "천장환원주의"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p31373380d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total amount of heat or energy lost by the space at the time of the space's peak heating conditions." ; + rdfs:label "TotalHeatLoss" ; + IFC4-PSD:definition "The total amount of heat or energy lost by the space at the time of the space's peak heating conditions." ; + IFC4-PSD:definitionAlias ""@en , "최대의 실내 최대 난방 부하에 취득 · 손실 열 또는 에너지."@ko-KR , "ピーク時の室内最大暖房負荷時に取得・損失した熱或いはエネルギー。"@ja-JP ; + IFC4-PSD:ifdguid "31373380d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatLoss" ; + IFC4-PSD:nameAlias "Total Heat Loss"@en , "열 손실 합계"@ko-KR , "熱ロスの合計"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceThermalLoad.ttl b/converter/src/main/resources/pset/Pset_SpaceThermalLoad.ttl new file mode 100644 index 00000000..d2a7a3b5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceThermalLoad.ttl @@ -0,0 +1,266 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9db23280d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from exhaust air." ; + rdfs:label "ExhaustAir" ; + IFC4-PSD:definition "Loads from exhaust air." ; + IFC4-PSD:definitionAlias ""@en , "배기에 의한 열부하"@ko-KR , "排気による熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "9db23280d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "ExhaustAir" ; + IFC4-PSD:nameAlias "Exhaust Air"@en , "배기"@ko-KR , "排気"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:People a rdf:Property ; + rdfs:seeAlso :p6e032a80d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:People . + +:p9723bb00d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from recirculated air." ; + rdfs:label "RecirculatedAir" ; + IFC4-PSD:definition "Loads from recirculated air." ; + IFC4-PSD:definitionAlias ""@en , "循環空気による熱負荷。"@ja-JP , "순환공기에 의한 열부하"@ko-KR ; + IFC4-PSD:ifdguid "9723bb00d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "RecirculatedAir" ; + IFC4-PSD:nameAlias "순환공기"@ko-KR , "循環空気"@ja-JP , "Recirculated Air"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:pa4d94080d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the air exchange rate." ; + rdfs:label "AirExchangeRate" ; + IFC4-PSD:definition "Loads from the air exchange rate." ; + IFC4-PSD:definitionAlias ""@en , "換気による熱負荷。"@ja-JP , "환기에 의한 열부하"@ko-KR ; + IFC4-PSD:ifdguid "a4d94080d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "AirExchangeRate" ; + IFC4-PSD:nameAlias "換気回数"@ja-JP , "Air Exchange Rate"@en , "환기회수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p7491a200d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lighting loads." ; + rdfs:label "Lighting" ; + IFC4-PSD:definition "Lighting loads." ; + IFC4-PSD:definitionAlias "조명 부하"@ko-KR , ""@en , "照明負荷。"@ja-JP ; + IFC4-PSD:ifdguid "7491a200d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "Lighting" ; + IFC4-PSD:nameAlias "조명"@ko-KR , "Lighting"@en , "照明"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:VentilationIndoorAir + a rdf:Property ; + rdfs:seeAlso :p870bdb80d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationIndoorAir . + +:p8f641680d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation loads from outdoor air." ; + rdfs:label "VentilationOutdoorAir" ; + IFC4-PSD:definition "Ventilation loads from outdoor air." ; + IFC4-PSD:definitionAlias ""@en , "외기에한 열부하"@ko-KR , "外気による熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "8f641680d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationOutdoorAir" ; + IFC4-PSD:nameAlias "외기량"@ko-KR , "外気量"@ja-JP , "Ventilation Outdoor Air"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:RelativeHumidity a rdf:Property ; + rdfs:seeAlso :pc6d2c300d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RelativeHumidity . + +:RecirculatedAir a rdf:Property ; + rdfs:seeAlso :p9723bb00d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RecirculatedAir . + +:p870bdb80d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation loads from indoor air." ; + rdfs:label "VentilationIndoorAir" ; + IFC4-PSD:definition "Ventilation loads from indoor air." ; + IFC4-PSD:definitionAlias "室内の換気による熱負荷。"@ja-JP , "실내 환기에 의한 열 부하"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "870bdb80d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationIndoorAir" ; + IFC4-PSD:nameAlias "室内の換気量"@ja-JP , "실내 환기량"@ko-KR , "Ventilation Indoor Air"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:TotalSensibleLoad a rdf:Property ; + rdfs:seeAlso :pd6520c00d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalSensibleLoad . + +:pe8cc4580d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total electromagnetic energy added or removed by emission or absorption. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalRadiantLoad" ; + IFC4-PSD:definition "Total electromagnetic energy added or removed by emission or absorption. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias "放射や吸収による放射エネルギーの増加、或いは減少の合計。ゼロより小さい(-)場合、放射エネルギーが減少となる。ゼロより大きい(+)場合、放射エネルギーが増大となる。"@ja-JP , ""@en , "방사선 및 흡수에 의한 방사 에너지 증가 또는 감소의 총. 제로보다 작은 (-) 경우 방사 에너지가 감소된다. 제로보다 큰 (+) 경우 방사 에너지가 증대된다."@ko-KR ; + IFC4-PSD:ifdguid "e8cc4580d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalRadiantLoad" ; + IFC4-PSD:nameAlias "Total Radiant Load"@en , "放射熱負荷の合計"@ja-JP , "복사열로드 합계"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p807d6400d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from equipment." ; + rdfs:label "EquipmentSensible" ; + IFC4-PSD:definition "Heat gains and losses from equipment." ; + IFC4-PSD:definitionAlias "事務機器からの熱取得と熱ロス。"@ja-JP , "사무기기에서 열 취득 및 손실"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "807d6400d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "EquipmentSensible" ; + IFC4-PSD:nameAlias "Equipment Sensible"@en , "事務機器の顕熱"@ja-JP , "사무기기의 현열"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:pce926780d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from infiltration." ; + rdfs:label "InfiltrationSensible" ; + IFC4-PSD:definition "Heat gains and losses from infiltration." ; + IFC4-PSD:definitionAlias ""@en , "열 부하및 열손실"@ko-KR , "すき間風からの熱負荷と熱ロス。"@ja-JP ; + IFC4-PSD:ifdguid "ce926780d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationSensible" ; + IFC4-PSD:nameAlias "すき間風の顕熱"@ja-JP , "열취득 및 손실"@ko-KR , "Infiltration Sensible"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:Lighting a rdf:Property ; + rdfs:seeAlso :p7491a200d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Lighting . + +:InfiltrationSensible + a rdf:Property ; + rdfs:seeAlso :pce926780d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationSensible . + +:pd6520c00d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total energy added or removed from air that affects its temperature. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalSensibleLoad" ; + IFC4-PSD:definition "Total energy added or removed from air that affects its temperature. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias "공기 온도를 상승 · 하강하는 취득 · 손실 열량의 총. 제로보다 작은 (-) 경우 실내가 열 손실이된다. 제로보다 큰 (+) 경우 실내가 열을 검색된다."@ko-KR , ""@en , "空気温度を上昇・下降させる取得・損失の熱量の合計。ゼロより小さい(-)場合、室内が熱損失となる。ゼロより大きい(+)場合、室内が熱取得となる。"@ja-JP ; + IFC4-PSD:ifdguid "d6520c00d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalSensibleLoad" ; + IFC4-PSD:nameAlias "Total Sensible Load"@en , "현열부하의 합계"@ko-KR , "顕熱負荷の合計"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:pde11b080d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total energy added or removed from air that affects its humidity or concentration of water vapor. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalLatentLoad" ; + IFC4-PSD:definition "Total energy added or removed from air that affects its humidity or concentration of water vapor. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias ""@en , "空気湿度(水蒸気量)を上昇・下降させる取得・損失の熱量の合計。ゼロより小さい(-)場合、室内の水蒸気が減少となる。ゼロより大きい(+)場合、室内の水蒸気が増大となる。"@ja-JP , "습도 (수증기량)을 상승 · 하강하는 취득 · 손실 열량의 총. 제로보다 작은 (-) 경우 실내의 수증기가 감소된다. 제로보다 큰 (+) 경우 실내의 수증기가 증가된다."@ko-KR ; + IFC4-PSD:ifdguid "de11b080d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalLatentLoad" ; + IFC4-PSD:nameAlias "잠열부하의 합계"@ko-KR , "Total Latent Load"@en , "潜熱負荷の合計"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:VentilationOutdoorAir + a rdf:Property ; + rdfs:seeAlso :p8f641680d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationOutdoorAir . + +:pbfabb500d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the dry bulb temperature." ; + rdfs:label "DryBulbTemperature" ; + IFC4-PSD:definition "Loads from the dry bulb temperature." ; + IFC4-PSD:definitionAlias "건구온도에의한 열부하"@ko-KR , "乾球温度による熱負荷。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bfabb500d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "DryBulbTemperature" ; + IFC4-PSD:nameAlias "乾球温度"@ja-JP , "Dry Bulb Temperature"@en , "건구온도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:TotalRadiantLoad a rdf:Property ; + rdfs:seeAlso :pe8cc4580d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalRadiantLoad . + +:pc6d2c300d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the relative humidity." ; + rdfs:label "RelativeHumidity" ; + IFC4-PSD:definition "Loads from the relative humidity." ; + IFC4-PSD:definitionAlias "相対湿度による熱負荷。"@ja-JP , ""@en , "상대습도에 의한 열부하"@ko-KR ; + IFC4-PSD:ifdguid "c6d2c300d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "RelativeHumidity" ; + IFC4-PSD:nameAlias "Relative Humidity"@en , "상대습도"@ko-KR , "相対湿度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:EquipmentSensible a rdf:Property ; + rdfs:seeAlso :p807d6400d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EquipmentSensible . + +:DryBulbTemperature a rdf:Property ; + rdfs:seeAlso :pbfabb500d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DryBulbTemperature . + +:Pset_SpaceThermalLoad + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The space thermal load defines all thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load. The maximum, minimum, time series and app" ; + rdfs:label "Pset_SpaceThermalLoad" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "The space thermal load defines all thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load. The maximum, minimum, time series and app" ; + IFC4-PSD:definitionAlias "室内熱負荷は居室或いはゾーンの全ての熱ロスと熱取得を定義する。熱取得の要因属性は熱負荷の各因子を示している。最大値、最小値、時間変動など。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceThermalLoad" ; + IFC4-PSD:propertyDef :p9723bb00d20b11e1800000215ad4efdf , :p9db23280d20b11e1800000215ad4efdf , :pbfabb500d20b11e1800000215ad4efdf , :p6e032a80d20b11e1800000215ad4efdf , :p870bdb80d20b11e1800000215ad4efdf , :pce926780d20b11e1800000215ad4efdf , :pc6d2c300d20b11e1800000215ad4efdf , :p807d6400d20b11e1800000215ad4efdf , :p7491a200d20b11e1800000215ad4efdf , :pde11b080d20b11e1800000215ad4efdf , :pd6520c00d20b11e1800000215ad4efdf , :p8f641680d20b11e1800000215ad4efdf , :pa4d94080d20b11e1800000215ad4efdf , :pe8cc4580d20b11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:AirExchangeRate a rdf:Property ; + rdfs:seeAlso :pa4d94080d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirExchangeRate . + +:p6e032a80d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from people." ; + rdfs:label "People" ; + IFC4-PSD:definition "Heat gains and losses from people." ; + IFC4-PSD:definitionAlias ""@en , "人員からの熱取得。"@ja-JP , "사람의 열"@ko-KR ; + IFC4-PSD:ifdguid "6e032a80d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "People" ; + IFC4-PSD:nameAlias "人員"@ja-JP , "People"@en , "인원"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:TotalLatentLoad a rdf:Property ; + rdfs:seeAlso :pde11b080d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalLatentLoad . + +:ExhaustAir a rdf:Property ; + rdfs:seeAlso :p9db23280d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExhaustAir . diff --git a/converter/src/main/resources/pset/Pset_SpaceThermalLoadPHistory.ttl b/converter/src/main/resources/pset/Pset_SpaceThermalLoadPHistory.ttl new file mode 100644 index 00000000..1607ec1b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceThermalLoadPHistory.ttl @@ -0,0 +1,266 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p12856c80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the relative humidity." ; + rdfs:label "RelativeHumidity" ; + IFC4-PSD:definition "Loads from the relative humidity." ; + IFC4-PSD:definitionAlias "상대습도에 의한 열부하"@ko-KR , "相対湿度による熱負荷。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "12856c80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "RelativeHumidity" ; + IFC4-PSD:nameAlias "相対湿度"@ja-JP , "Relative Humidity"@en , "상대습도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:InfiltrationSensible + a rdf:Property ; + rdfs:seeAlso :p15805d00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationSensible . + +:p03062380d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation loads from outdoor air." ; + rdfs:label "VentilationOutdoorAir" ; + IFC4-PSD:definition "Ventilation loads from outdoor air." ; + IFC4-PSD:definitionAlias ""@en , "外気による熱負荷。"@ja-JP , "외기에한 열부하"@ko-KR ; + IFC4-PSD:ifdguid "03062380d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationOutdoorAir" ; + IFC4-PSD:nameAlias "Ventilation Outdoor Air"@en , "外気量"@ja-JP , "외기량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p0f8a7c00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the dry bulb temperature." ; + rdfs:label "DryBulbTemperature" ; + IFC4-PSD:definition "Loads from the dry bulb temperature." ; + IFC4-PSD:definitionAlias "乾球温度による熱負荷。"@ja-JP , "건구온도에의한 열부하"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "0f8a7c00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "DryBulbTemperature" ; + IFC4-PSD:nameAlias "Dry Bulb Temperature"@en , "乾球温度"@ja-JP , "건구온도"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p15805d00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from infiltration." ; + rdfs:label "InfiltrationSensible" ; + IFC4-PSD:definition "Heat gains and losses from infiltration." ; + IFC4-PSD:definitionAlias ""@en , "열 부하및 열손실"@ko-KR , "すき間風からの熱負荷と熱ロス。"@ja-JP ; + IFC4-PSD:ifdguid "15805d00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationSensible" ; + IFC4-PSD:nameAlias "すき間風の顕熱"@ja-JP , "Infiltration Sensible"@en , "열취득 및 손실"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p08fc0480d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from exhaust air." ; + rdfs:label "ExhaustAir" ; + IFC4-PSD:definition "Loads from exhaust air." ; + IFC4-PSD:definitionAlias ""@en , "排気による熱負荷。"@ja-JP , "배기에 의한 열부하"@ko-KR ; + IFC4-PSD:ifdguid "08fc0480d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "ExhaustAir" ; + IFC4-PSD:nameAlias "Exhaust Air"@en , "배기"@ko-KR , "排気"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pfaade880d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lighting loads." ; + rdfs:label "Lighting" ; + IFC4-PSD:definition "Lighting loads." ; + IFC4-PSD:definitionAlias "조명 부하"@ko-KR , "照明負荷。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "faade880d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "Lighting" ; + IFC4-PSD:nameAlias "조명"@ko-KR , "照明"@ja-JP , "Lighting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p06011400d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from recirculated air." ; + rdfs:label "RecirculatedAir" ; + IFC4-PSD:definition "Loads from recirculated air." ; + IFC4-PSD:definitionAlias ""@en , "순환공기에 의한 열부하"@ko-KR , "循環空気による熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "06011400d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "RecirculatedAir" ; + IFC4-PSD:nameAlias "循環空気"@ja-JP , "Recirculated Air"@en , "순환공기"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:TotalLatentLoad a rdf:Property ; + rdfs:seeAlso :p1b763e00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalLatentLoad . + +:TotalSensibleLoad a rdf:Property ; + rdfs:seeAlso :p187b4d80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalSensibleLoad . + +:TotalRadiantLoad a rdf:Property ; + rdfs:seeAlso :p1e712e80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalRadiantLoad . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:DryBulbTemperature a rdf:Property ; + rdfs:seeAlso :p0f8a7c00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DryBulbTemperature . + +:VentilationOutdoorAir + a rdf:Property ; + rdfs:seeAlso :p03062380d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationOutdoorAir . + +:pfda8d900d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from equipment." ; + rdfs:label "EquipmentSensible" ; + IFC4-PSD:definition "Heat gains and losses from equipment." ; + IFC4-PSD:definitionAlias "사무기기에서 열 취득 및 손실"@ko-KR , "事務機器からの熱取得と熱ロス。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "fda8d900d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "EquipmentSensible" ; + IFC4-PSD:nameAlias "사무기기의 현열"@ko-KR , "事務機器の顕熱"@ja-JP , "Equipment Sensible"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_SpaceThermalLoadPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The space thermal load IfcSpaceThermalLoadProperties defines actual measured thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load." ; + rdfs:label "Pset_SpaceThermalLoadPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "The space thermal load IfcSpaceThermalLoadProperties defines actual measured thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load." ; + IFC4-PSD:definitionAlias "室内熱負荷属性IfcSpaceThermalLoadProperties はある居室或いはゾーンの実際の熱ロスと熱取得を定義する。熱取得の要因属性は熱負荷の各因子を示している。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceThermalLoadPHistory" ; + IFC4-PSD:propertyDef :p15805d00d20c11e1800000215ad4efdf , :pfaade880d20b11e1800000215ad4efdf , :p0f8a7c00d20c11e1800000215ad4efdf , :p12856c80d20c11e1800000215ad4efdf , :pfda8d900d20b11e1800000215ad4efdf , :p1e712e80d20c11e1800000215ad4efdf , :p000b3300d20c11e1800000215ad4efdf , :p187b4d80d20c11e1800000215ad4efdf , :p1b763e00d20c11e1800000215ad4efdf , :pf7b2f800d20b11e1800000215ad4efdf , :p03062380d20c11e1800000215ad4efdf , :p0bf6f500d20c11e1800000215ad4efdf , :p08fc0480d20c11e1800000215ad4efdf , :p06011400d20c11e1800000215ad4efdf . + +:EquipmentSensible a rdf:Property ; + rdfs:seeAlso :pfda8d900d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EquipmentSensible . + +:VentilationIndoorAir + a rdf:Property ; + rdfs:seeAlso :p000b3300d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationIndoorAir . + +:People a rdf:Property ; + rdfs:seeAlso :pf7b2f800d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:People . + +:Lighting a rdf:Property ; + rdfs:seeAlso :pfaade880d20b11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Lighting . + +:RecirculatedAir a rdf:Property ; + rdfs:seeAlso :p06011400d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RecirculatedAir . + +:p0bf6f500d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Loads from the air exchange rate." ; + rdfs:label "AirExchangeRate" ; + IFC4-PSD:definition "Loads from the air exchange rate." ; + IFC4-PSD:definitionAlias "환기에 의한 열부하"@ko-KR , ""@en , "換気による熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "0bf6f500d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "AirExchangeRate" ; + IFC4-PSD:nameAlias "환기회수"@ko-KR , "換気回数"@ja-JP , "Air Exchange Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p187b4d80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total energy added or removed from air that affects its temperature. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalSensibleLoad" ; + IFC4-PSD:definition "Total energy added or removed from air that affects its temperature. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias "공기 온도를 상승 · 하강하는 취득 · 손실 열량의 총. 제로보다 작은 (-) 경우 실내가 열 손실이된다. 제로보다 큰 (+) 경우 실내가 열을 검색된다."@ko-KR , "空気温度を上昇・下降させる取得・損失の熱量の合計。ゼロより小さい(-)場合、室内が熱損失となる。ゼロより大きい(+)場合、室内が熱取得となる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "187b4d80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalSensibleLoad" ; + IFC4-PSD:nameAlias "Total Sensible Load"@en , "顕熱負荷の合計"@ja-JP , "현열부하의 합계"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p1b763e00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total energy added or removed from air that affects its humidity or concentration of water vapor. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalLatentLoad" ; + IFC4-PSD:definition "Total energy added or removed from air that affects its humidity or concentration of water vapor. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias "습도 (수증기량)을 상승 · 하강하는 취득 · 손실 열량의 총. 제로보다 작은 (-) 경우 실내의 수증기가 감소된다. 제로보다 큰 (+) 경우 실내의 수증기가 증가된다."@ko-KR , "空気湿度(水蒸気量)を上昇・下降させる取得・損失の熱量の合計。ゼロより小さい(-)場合、室内の水蒸気が減少となる。ゼロより大きい(+)場合、室内の水蒸気が増大となる。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1b763e00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalLatentLoad" ; + IFC4-PSD:nameAlias "Total Latent Load"@en , "잠열부하의 합계"@ko-KR , "潜熱負荷の合計"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:ExhaustAir a rdf:Property ; + rdfs:seeAlso :p08fc0480d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExhaustAir . + +:pf7b2f800d20b11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heat gains and losses from people." ; + rdfs:label "People" ; + IFC4-PSD:definition "Heat gains and losses from people." ; + IFC4-PSD:definitionAlias "人員からの熱取得。"@ja-JP , ""@en , "사람의 열"@ko-KR ; + IFC4-PSD:ifdguid "f7b2f800d20b11e1800000215ad4efdf" ; + IFC4-PSD:name "People" ; + IFC4-PSD:nameAlias "인원"@ko-KR , "People"@en , "人員"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p1e712e80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total electromagnetic energy added or removed by emission or absorption. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + rdfs:label "TotalRadiantLoad" ; + IFC4-PSD:definition "Total electromagnetic energy added or removed by emission or absorption. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space." ; + IFC4-PSD:definitionAlias "放射や吸収による放射エネルギーの増加、或いは減少の合計。ゼロより小さい(-)場合、放射エネルギーが減少となる。ゼロより大きい(+)場合、放射エネルギーが増大となる。"@ja-JP , "방사선 및 흡수에 의한 방사 에너지 증가 또는 감소의 총. 제로보다 작은 (-) 경우 방사 에너지가 감소된다. 제로보다 큰 (+) 경우 방사 에너지가 증대된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "1e712e80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "TotalRadiantLoad" ; + IFC4-PSD:nameAlias "복사열로드 합계"@ko-KR , "放射熱負荷の合計"@ja-JP , "Total Radiant Load"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:RelativeHumidity a rdf:Property ; + rdfs:seeAlso :p12856c80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RelativeHumidity . + +:AirExchangeRate a rdf:Property ; + rdfs:seeAlso :p0bf6f500d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirExchangeRate . + +:p000b3300d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation loads from indoor air." ; + rdfs:label "VentilationIndoorAir" ; + IFC4-PSD:definition "Ventilation loads from indoor air." ; + IFC4-PSD:definitionAlias ""@en , "실내 환기에 의한 열 부하"@ko-KR , "室内の換気による熱負荷。"@ja-JP ; + IFC4-PSD:ifdguid "000b3300d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationIndoorAir" ; + IFC4-PSD:nameAlias "室内の換気量"@ja-JP , "실내 환기량"@ko-KR , "Ventilation Indoor Air"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceThermalPHistory.ttl b/converter/src/main/resources/pset/Pset_SpaceThermalPHistory.ttl new file mode 100644 index 00000000..f6bd6015 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceThermalPHistory.ttl @@ -0,0 +1,129 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HeatingAirFlowRate a rdf:Property ; + rdfs:seeAlso :p2b8e1d80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingAirFlowRate . + +:VentilationAirFlowRate + a rdf:Property ; + rdfs:seeAlso :p2e890e00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VentilationAirFlowRate . + +:ExhaustAirFlowRate a rdf:Property ; + rdfs:seeAlso :p3183fe80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExhaustAirFlowRate . + +:p38ab0c80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The relative humidity of the space." ; + rdfs:label "SpaceRelativeHumidity" ; + IFC4-PSD:definition "The relative humidity of the space." ; + IFC4-PSD:definitionAlias "室内の相対湿度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "38ab0c80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceRelativeHumidity" ; + IFC4-PSD:nameAlias "室内相対湿度"@ja-JP , "Space Relative Humidity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p3183fe80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Exhaust air flow rate in the space." ; + rdfs:label "ExhaustAirFlowRate" ; + IFC4-PSD:definition "Exhaust air flow rate in the space." ; + IFC4-PSD:definitionAlias ""@en , "室内の排気流量"@ja-JP ; + IFC4-PSD:ifdguid "3183fe80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "ExhaustAirFlowRate" ; + IFC4-PSD:nameAlias "排気空気流量"@ja-JP , "Exhaust Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SpaceRelativeHumidity + a rdf:Property ; + rdfs:seeAlso :p38ab0c80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceRelativeHumidity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p35178580d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature of the space." ; + rdfs:label "SpaceTemperature" ; + IFC4-PSD:definition "Temperature of the space." ; + IFC4-PSD:definitionAlias ""@en , "室内の温度"@ja-JP ; + IFC4-PSD:ifdguid "35178580d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperature" ; + IFC4-PSD:nameAlias "室内温度"@ja-JP , "Space Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SpaceTemperature a rdf:Property ; + rdfs:seeAlso :p35178580d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperature . + +:p2b8e1d80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heating air flow rate in the space." ; + rdfs:label "HeatingAirFlowRate" ; + IFC4-PSD:definition "Heating air flow rate in the space." ; + IFC4-PSD:definitionAlias "室内の暖房空気流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2b8e1d80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingAirFlowRate" ; + IFC4-PSD:nameAlias "暖房空気流量"@ja-JP , "Heating Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_SpaceThermalPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Thermal and air flow conditions of a space or zone. HISTORY: New property set in IFC 2x2." ; + rdfs:label "Pset_SpaceThermalPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcSpace ; + IFC4-PSD:applicableTypeValue "IfcSpace" ; + IFC4-PSD:definition "Thermal and air flow conditions of a space or zone. HISTORY: New property set in IFC 2x2." ; + IFC4-PSD:definitionAlias "スペースまたはゾーンの熱空気流条件   履歴:IFC2x2で設定された新しいプロパティ"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceThermalPHistory" ; + IFC4-PSD:propertyDef :p2b8e1d80d20c11e1800000215ad4efdf , :p3183fe80d20c11e1800000215ad4efdf , :p2e890e00d20c11e1800000215ad4efdf , :p38ab0c80d20c11e1800000215ad4efdf , :p27fa9680d20c11e1800000215ad4efdf , :p35178580d20c11e1800000215ad4efdf . + +:p27fa9680d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Cooling air flow rate in the space." ; + rdfs:label "CoolingAirFlowRate" ; + IFC4-PSD:definition "Cooling air flow rate in the space." ; + IFC4-PSD:definitionAlias "室内の冷却空気流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "27fa9680d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingAirFlowRate" ; + IFC4-PSD:nameAlias "冷却空気流量"@ja-JP , "Cooling Air Flow Rate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:CoolingAirFlowRate a rdf:Property ; + rdfs:seeAlso :p27fa9680d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingAirFlowRate . + +:p2e890e00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Ventilation air flow rate in the space." ; + rdfs:label "VentilationAirFlowRate" ; + IFC4-PSD:definition "Ventilation air flow rate in the space." ; + IFC4-PSD:definitionAlias ""@en , "室内の換気空気流量"@ja-JP ; + IFC4-PSD:ifdguid "2e890e00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "VentilationAirFlowRate" ; + IFC4-PSD:nameAlias "Ventilation Air Flow Rate"@en , "換気気流速度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_SpaceThermalRequirements.ttl b/converter/src/main/resources/pset/Pset_SpaceThermalRequirements.ttl new file mode 100644 index 00000000..ced96adc --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpaceThermalRequirements.ttl @@ -0,0 +1,338 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SpaceHumiditySummer a rdf:Property ; + rdfs:seeAlso :p7c057b00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceHumiditySummer . + +:SpaceHumidityWinter a rdf:Property ; + rdfs:seeAlso :p8162c580d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceHumidityWinter . + +:SpaceHumidity a rdf:Property ; + rdfs:seeAlso :p6bed9b80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceHumidity . + +:p42cd0b00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period. Provide this value, if no temperatur range (Min-Max) is available." ; + rdfs:label "SpaceTemperature" ; + IFC4-PSD:definition "Temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period. Provide this value, if no temperatur range (Min-Max) is available." ; + IFC4-PSD:definitionAlias "Geforderte Raumtemperatur, die nicht überschritten werden darf, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall. Diese wird angegeben, wenn kein geforderter Temperaturbereich (Min - Max) vorhanden ist."@de-DE , "Température de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison. A fournir si les valeurs maximale et minimale ne sont pas connues."@fr-FR , "空間またはゾーンの温度。利用者/設計者の視点から要求される。もし夏季または冬季の室内温度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "42cd0b00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperature" ; + IFC4-PSD:nameAlias "Raumtemperatur"@de-DE , "Température"@fr-FR , "Space Temperature"@en , "最高室内温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:DiscontinuedHeating a rdf:Property ; + rdfs:seeAlso :p86c01000d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DiscontinuedHeating . + +:p9fc8c100d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space requires air conditioning provided (TRUE) or not (FALSE)." ; + rdfs:label "AirConditioning" ; + IFC4-PSD:definition "Indication whether this space requires air conditioning provided (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "この空間が空調を要求するかどうかを示すブーリアン値。(TRUE)要、(FALSE)不要。"@ja-JP , ""@en , "이 공간이 공조를 요청할지 여부를 나타내는 부울 값입니다. (TRUE) 필요 (FALSE) 불필요."@ko-KR , "Anforderung, ob der Raum mit einer Klimaanlage ausgestattet werden soll (WAHR), oder nicht (Falsch)."@de-DE , "Indique si l'espace requiert un conditionnement d'air (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "9fc8c100d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "AirConditioning" ; + IFC4-PSD:nameAlias "공조"@ko-KR , "空調"@ja-JP , "Klimaanlage"@de-DE , "Air Conditioning"@en , "Conditionnement d'air"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:SpaceHumidityMax a rdf:Property ; + rdfs:seeAlso :p70b24f80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceHumidityMax . + +:p4eb8cd00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimal temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period." ; + rdfs:label "SpaceTemperatureMin" ; + IFC4-PSD:definition "Minimal temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period." ; + IFC4-PSD:definitionAlias "Température minimale de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison."@fr-FR , ""@en , "공간 또는 영역의 최저 온도 이용자 / 설계자의 관점에서 요구된다. 만약 여름철 또는 겨울철 실내 온도 요구가 주어지지 않는, 그것은 연중에, 그렇지 않으면 중간 분기별로 적용된다."@ko-KR , "空間またはゾーンの最低温度。利用者/設計者の視点から要求される。もし夏季または冬季の室内温度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , "Minimale geforderte Raumtemperatur, die nicht unterschritten werden darf, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall."@de-DE ; + IFC4-PSD:ifdguid "4eb8cd00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureMin" ; + IFC4-PSD:nameAlias "最低室内温度"@ja-JP , "최저온도"@ko-KR , "Raumtemperatur Minimal"@de-DE , "Space Temperature Min"@en , "Température minimale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:SpaceHumidityMin a rdf:Property ; + rdfs:seeAlso :p76a83080d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceHumidityMin . + +:AirConditioningCentral + a rdf:Property ; + rdfs:seeAlso :pa5bea200d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirConditioningCentral . + +:p8d4e8780d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space is required to have natural ventilation (TRUE) or mechanical ventilation (FALSE)." ; + rdfs:label "NaturalVentilation" ; + IFC4-PSD:definition "Indication whether the space is required to have natural ventilation (TRUE) or mechanical ventilation (FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "Indique si la ventilation de l'espace doit être naturelle (VRAI) ou mécanique (FAUX)."@fr-FR , "空間が自然換気を持つか機械換気を持つかを示すブーリアン値。(TRUE)有、(FALSE)なし。"@ja-JP , "공간이 자연 환기가 있는지 환기있는 여부를 나타내는 값"@ko-KR , "Anforderung, ob der Raum eine natürliche Lüftung haben soll (WAHR), oder eine künstliche Lüftung (Falsch)."@de-DE ; + IFC4-PSD:ifdguid "8d4e8780d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "NaturalVentilation" ; + IFC4-PSD:nameAlias "Natürliche Lüftung"@de-DE , "Natural Ventilation"@en , "自然換気"@ja-JP , "자연환기"@ko-KR , "Ventilation naturelle"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:SpaceTemperatureMax a rdf:Property ; + rdfs:seeAlso :p48c2ec00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureMax . + +:p94759580d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of the requirement of a particular natural air ventilation rate, given in air changes per hour." ; + rdfs:label "NaturalVentilationRate" ; + IFC4-PSD:definition "Indication of the requirement of a particular natural air ventilation rate, given in air changes per hour." ; + IFC4-PSD:definitionAlias "Taux de ventilation naturelle exprimé en volumes par heure."@fr-FR , "특정 자연 환기 율의 요구 지표. 시간 당 환기 회수로 주어진다."@ko-KR , ""@en , "特定の自然換気率の要求指標。1時間あたりの換気回数で与えられる。"@ja-JP , "Geforderte Luftwechselzahl (in Wechsel per Stunde) im Fall der natürlichen Lüftung."@de-DE ; + IFC4-PSD:ifdguid "94759580d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "NaturalVentilationRate" ; + IFC4-PSD:nameAlias "自然換気率"@ja-JP , "Natürliche Luftwechselzahl"@de-DE , "Natural Ventilation Rate"@en , "Taux ventilation naturelle"@fr-FR , "자연환기 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:SpaceTemperatureWinterMax + a rdf:Property ; + rdfs:seeAlso :p6001d980d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureWinterMax . + +:p65f7ba80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimal temperature of the space or zone for the cold (winter) period, that is required from user/designer view point and provided as requirement for heating." ; + rdfs:label "SpaceTemperatureWinterMin" ; + IFC4-PSD:definition "Minimal temperature of the space or zone for the cold (winter) period, that is required from user/designer view point and provided as requirement for heating." ; + IFC4-PSD:definitionAlias "공간이나 영역 추운 계절 (겨울)의 최저 온도. 이용자 / 설계자의 관점에서 요구된다."@ko-KR , "Température minimale de l'espace ou de la zone en hiver. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le chauffage."@fr-FR , ""@en , "Minimal geforderte Raumtemperatur für die Auslegung der Raumheizung."@de-DE , "空間またはゾーンの寒冷季(冬季)の最低温度。利用者/設計者の視点から要求される。"@ja-JP ; + IFC4-PSD:ifdguid "65f7ba80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureWinterMin" ; + IFC4-PSD:nameAlias "겨울철 최저온도"@ko-KR , "Température minimale en hiver"@fr-FR , "Space Temperature Winter Min"@en , "冬季最低室内温度"@ja-JP , "Raumtemperatur Heizung Minimal"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p70b24f80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximal permitted humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period." ; + rdfs:label "SpaceHumidityMax" ; + IFC4-PSD:definition "Maximal permitted humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period." ; + IFC4-PSD:definitionAlias "Maximal geforderte Luftfeuchtigkeit für diesen Raum, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall."@de-DE , ""@en , "공간 또는 영역의 습도. 이용자 / 설계자의 관점에서 요구된다. 만약 여름철 또는 겨울철 실내 습도 요구가 주어지지 않는, 그것은 연중에, 그렇지 않으면 중간 분기별로 적용된다."@ko-KR , "空間またはゾーンの最高湿度。利用者/設計者の視点から要求される。もし夏季または冬季の室内湿度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , "Humidité relative maximale de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison."@fr-FR ; + IFC4-PSD:ifdguid "70b24f80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceHumidityMax" ; + IFC4-PSD:nameAlias "最高室内湿度"@ja-JP , "Luftfeuchtigkeit Maximal"@de-DE , "Humidité relative maximale"@fr-FR , "실내습도"@ko-KR , "Space Humidity Max"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:SpaceTemperatureMin a rdf:Property ; + rdfs:seeAlso :p4eb8cd00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureMin . + +:p6bed9b80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period. Provide this property, if no humidity range (Min-Max) is available." ; + rdfs:label "SpaceHumidity" ; + IFC4-PSD:definition "Humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period. Provide this property, if no humidity range (Min-Max) is available." ; + IFC4-PSD:definitionAlias "Geforderte Luftfeuchtigkeit für diesen Raum, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall. Es wird angegeben, wenn kein geforderter Luftfeuchtigkeitsbereich (Min - Max) vorhanden ist."@de-DE , "空間またはゾーンの湿度。利用者/設計者の視点から要求される。もし夏季または冬季の室内湿度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , "Humidité relative de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison. A fournir si les valeurs maximale et minimale ne sont pas connues."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "6bed9b80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceHumidity" ; + IFC4-PSD:nameAlias "Humidité relative"@fr-FR , "Space Humidity"@en , "室内湿度"@ja-JP , "Luftfeuchtigkeit"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:Pset_SpaceThermalRequirements + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties related to the comfort requirements for thermal and other thermal related performance properties of spaces that apply to the occurrences of IfcSpace, IfcSpatialZone or IfcZone. It can also be used to capture requirements for IfcSpaceType's. This includes the required design temperature, humidity, ventilation, and air conditioning." ; + rdfs:label "Pset_SpaceThermalRequirements" ; + IFC4-PSD:applicableClass , IFC4:IfcSpace , ; + IFC4-PSD:applicableTypeValue "IfcSpace, IfcSpatialZone, IfcZone" ; + IFC4-PSD:definition "Properties related to the comfort requirements for thermal and other thermal related performance properties of spaces that apply to the occurrences of IfcSpace, IfcSpatialZone or IfcZone. It can also be used to capture requirements for IfcSpaceType's. This includes the required design temperature, humidity, ventilation, and air conditioning." ; + IFC4-PSD:definitionAlias "室の快適な温熱環境に関連する要求性能。IfcSpace, IfcZoneに適用される。\n温度、湿度、空調についての設計上の設定を含む。"@ja-JP , "Property Set Definition in German"@de-DE , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpaceThermalRequirements" ; + IFC4-PSD:propertyDef :p54161780d20c11e1800000215ad4efdf , :p70b24f80d20c11e1800000215ad4efdf , :pa5bea200d20c11e1800000215ad4efdf , :p9fc8c100d20c11e1800000215ad4efdf , :p8162c580d20c11e1800000215ad4efdf , :p76a83080d20c11e1800000215ad4efdf , :p8d4e8780d20c11e1800000215ad4efdf , :p65f7ba80d20c11e1800000215ad4efdf , :p42cd0b00d20c11e1800000215ad4efdf , :p5a0bf880d20c11e1800000215ad4efdf , :p4eb8cd00d20c11e1800000215ad4efdf , :p9a6b7680d20c11e1800000215ad4efdf , :p48c2ec00d20c11e1800000215ad4efdf , :p6bed9b80d20c11e1800000215ad4efdf , :p94759580d20c11e1800000215ad4efdf , :p6001d980d20c11e1800000215ad4efdf , :p7c057b00d20c11e1800000215ad4efdf , :p86c01000d20c11e1800000215ad4efdf . + +:SpaceTemperatureWinterMin + a rdf:Property ; + rdfs:seeAlso :p65f7ba80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureWinterMin . + +:MechanicalVentilationRate + a rdf:Property ; + rdfs:seeAlso :p9a6b7680d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MechanicalVentilationRate . + +:p86c01000d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether discontinued heating is required/desirable from user/designer view point. (TRUE) if yes, (FALSE) otherwise." ; + rdfs:label "DiscontinuedHeating" ; + IFC4-PSD:definition "Indication whether discontinued heating is required/desirable from user/designer view point. (TRUE) if yes, (FALSE) otherwise." ; + IFC4-PSD:definitionAlias ""@en , "不連続暖房が利用者/設計者の視点から要求/要望されるかどうかを示すブーリアン値。(TRUE)要、(FALSE)不要。"@ja-JP , "불연속 난방이 이용자 / 설계자의 관점에서 요청 / 요구되는지 여부를 나타내는 부울 값입니다. (TRUE) 필요 (FALSE) 불필요."@ko-KR , "Indique si un chauffage intermittent est requis ou souhaité par l'usager ou le concepteur (VRAI) ou non (FAUX)."@fr-FR , "Anfoderung, ob der Raum durch eine diskontinuierliche Heizung versorgt werden soll (WAHR) oder nicht (FALSCH)."@de-DE ; + IFC4-PSD:ifdguid "86c01000d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "DiscontinuedHeating" ; + IFC4-PSD:nameAlias "Chauffage intermittent"@fr-FR , "Diskontinuierliche Heizung"@de-DE , "Discontinued Heating"@en , "不連続暖房"@ja-JP , "불연속 난방"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:SpaceTemperature a rdf:Property ; + rdfs:seeAlso :p42cd0b00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperature . + +:p8162c580d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Humidity of the space or zone for the cold (winter) period that is required from user/designer view point and provided as requirement for heating." ; + rdfs:label "SpaceHumidityWinter" ; + IFC4-PSD:definition "Humidity of the space or zone for the cold (winter) period that is required from user/designer view point and provided as requirement for heating." ; + IFC4-PSD:definitionAlias ""@en , "Geforderte Luftfeuchtigkeit für diesen Raum für die Auslegung der Heizung."@de-DE , "空間またはゾーンの寒冷季(冬季)の室内湿度。利用者/設計者の視点から要求される。"@ja-JP , "Humidité relative minimale de l'espace ou de la zone en été. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le refroidissement."@fr-FR , "공간이나 영역 추운 계절 (동절기) 실내 습도. 이용자 / 설계자의 관점에서 요구된다."@ko-KR ; + IFC4-PSD:ifdguid "8162c580d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceHumidityWinter" ; + IFC4-PSD:nameAlias "Space Humidity Winter"@en , "겨울철실내 습도"@ko-KR , "Humidité relative minimale en été"@fr-FR , "冬季室内湿度"@ja-JP , "Luftfeuchtigkeit Heizung"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:p48c2ec00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximal temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period." ; + rdfs:label "SpaceTemperatureMax" ; + IFC4-PSD:definition "Maximal temperature of the space or zone, that is required from user/designer view point. If no summer or winter space temperature requirements are given, it applies all year, otherwise for the intermediate period." ; + IFC4-PSD:definitionAlias "공간 또는 영역의 최고 온도. 이용자 / 설계자의 관점에서 요구된다. 만약 여름철 또는 겨울철 실내 온도 요구가 주어지지 않는, 그것은 연중에, 그렇지 않으면 중간 분기별로 적용된다."@ko-KR , "Maximale geforderte Raumtemperatur, die nicht überschritten werden darf, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall."@de-DE , "Température maximale de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison."@fr-FR , "空間またはゾーンの最高温度。利用者/設計者の視点から要求される。もし夏季または冬季の室内温度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "48c2ec00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureMax" ; + IFC4-PSD:nameAlias "最高室内温度"@ja-JP , "최고 온도"@ko-KR , "Space Temperature Max"@en , "Raumtemperatur Maximal"@de-DE , "Température maximale"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p5a0bf880d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimal temperature of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + rdfs:label "SpaceTemperatureSummerMin" ; + IFC4-PSD:definition "Minimal temperature of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + IFC4-PSD:definitionAlias ""@en , "空間またはゾーンの暑熱季(夏季)の最低温度。利用者/設計者の視点から要求される。"@ja-JP , "Minimal geforderte Raumtemperatur aus dem Raumprogramm für die Auslegung der Raumkühlung."@de-DE , "공간이나 영역 혹서 계절 (여름)의 최저 온도. 이용자 / 설계자의 관점에서 요구된다."@ko-KR , "Température minimale de l'espace ou de la zone en été. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le refroidissement."@fr-FR ; + IFC4-PSD:ifdguid "5a0bf880d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureSummerMin" ; + IFC4-PSD:nameAlias "夏季最低室内温度"@ja-JP , "여름최저온도"@ko-KR , "Température minimale en été"@fr-FR , "Space Temperature Summer Min"@en , "Raumtemperatur Kühlung Minimal"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:NaturalVentilationRate + a rdf:Property ; + rdfs:seeAlso :p94759580d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NaturalVentilationRate . + +:p54161780d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximal temperature of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + rdfs:label "SpaceTemperatureSummerMax" ; + IFC4-PSD:definition "Maximal temperature of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + IFC4-PSD:definitionAlias "Température maximale de l'espace ou de la zone en été. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le refroidissement."@fr-FR , "공간이나 영역 혹서 계절 (여름)의 최고 온도 이용자 / 설계자의 관점에서 요구된다."@ko-KR , "空間またはゾーンの暑熱季(夏季)の最高温度。利用者/設計者の視点から要求される。"@ja-JP , ""@en , "Maximal geforderte Raumtemperatur aus dem Raumprogramm für die Auslegung der Raumkühlung."@de-DE ; + IFC4-PSD:ifdguid "54161780d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureSummerMax" ; + IFC4-PSD:nameAlias "Space Temperature Summer Max"@en , "여름최고온도"@ko-KR , "Température maximale en été"@fr-FR , "夏季最高室内温度"@ja-JP , "Raumtemperatur Kühlung Maximal"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p6001d980d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximal temperature of the space or zone for the cold (winter) period, that is required from user/designer view point and provided as requirement for heating." ; + rdfs:label "SpaceTemperatureWinterMax" ; + IFC4-PSD:definition "Maximal temperature of the space or zone for the cold (winter) period, that is required from user/designer view point and provided as requirement for heating." ; + IFC4-PSD:definitionAlias "空間またはゾーンの寒冷季(冬季)の最高温度。利用者/設計者の視点から要求される。"@ja-JP , "Maximal geforderte Raumtemperatur für die Auslegung der Raumheizung."@de-DE , "Température maximale de l'espace ou de la zone en hiver. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le chauffage."@fr-FR , "공간이나 영역 추운 계절 (겨울) 최고 온도 이용자 / 설계자의 관점에서 요구된다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "6001d980d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceTemperatureWinterMax" ; + IFC4-PSD:nameAlias "Space Temperature Winter Max"@en , "Raumtemperatur Heizung Maximal"@de-DE , "겨울최고온도"@ko-KR , "Température maximale en hiver"@fr-FR , "冬季最高室内温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p7c057b00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Humidity of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + rdfs:label "SpaceHumiditySummer" ; + IFC4-PSD:definition "Humidity of the space or zone for the hot (summer) period, that is required from user/designer view point and provided as requirement for cooling." ; + IFC4-PSD:definitionAlias "空間またはゾーンの暑熱季(夏季)の室内湿度。利用者/設計者の視点から要求される。"@ja-JP , "공간이나 영역 혹서 계절 (여름) 실내 습도. 이용자 / 설계자의 관점에서 요구된다."@ko-KR , "Humidité relative maximale de l'espace ou de la zone en été. Spécifiée par l'usager ou le concepteur et utilisée comme consigne pour le refroidissement."@fr-FR , "Geforderte Luftfeuchtigkeit für diesen Raum für die Auslegung der Kühlung."@de-DE , ""@en ; + IFC4-PSD:ifdguid "7c057b00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceHumiditySummer" ; + IFC4-PSD:nameAlias "Space Humidity Summer"@en , "Humidité relative maximale en été"@fr-FR , "Luftfeuchtigkeit Kühlung"@de-DE , "여름철실내 습도"@ko-KR , "夏季室内湿度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:pa5bea200d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the space requires a central air conditioning provided (TRUE) or not (FALSE).\nIt should only be given, if the property \"AirConditioning\" is set to TRUE." ; + rdfs:label "AirConditioningCentral" ; + IFC4-PSD:definition "Indication whether the space requires a central air conditioning provided (TRUE) or not (FALSE).\nIt should only be given, if the property \"AirConditioning\" is set to TRUE." ; + IFC4-PSD:definitionAlias ""@en , "공간이 중앙 식 공조를 요청할지 여부를 나타내는 부울 값입니다. \"공조\"속성이 TRUE로 설정된 경우에만 주어진다."@ko-KR , "Anforderung, ob die Klimaanlage zentral gesteuert werden soll (WAHR), oder nicht (FALSCH). Soll nur angegeben werden, wenn die Eigenschaft \"Klimaanlage\" mit WAHR gegeben ist."@de-DE , "Indique si l'espace requiert un conditionnement d'air centralisé (VRAI) ou non (FAUX). A fournir si la propriété \"Conditionnement d'air\" est VRAI."@fr-FR , "空間が中央式空調を要求するかどうかを示すブーリアン値。「空調」プロパティがTRUEに設定された場合のみ、与えられる。"@ja-JP ; + IFC4-PSD:ifdguid "a5bea200d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "AirConditioningCentral" ; + IFC4-PSD:nameAlias "Air Conditioning Central"@en , "中央式空調"@ja-JP , "중앙식 에어컨"@ko-KR , "Klimaanlage zentral"@de-DE , "Conditionnement d'air centralisé"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:AirConditioning a rdf:Property ; + rdfs:seeAlso :p9fc8c100d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirConditioning . + +:p76a83080d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimal permitted humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period." ; + rdfs:label "SpaceHumidityMin" ; + IFC4-PSD:definition "Minimal permitted humidity of the space or zone that is required from user/designer view point. If no summer or winter space humidity requirements are given, it applies all year, otherwise for the intermediate period." ; + IFC4-PSD:definitionAlias "空間またはゾーンの最低湿度。利用者/設計者の視点から要求される。もし夏季または冬季の室内湿度要求が与えられないと、それは通年に、さもなければ中間季に適用される。"@ja-JP , ""@en , "Minimal geforderte Luftfeuchtigkeit für diesen Raum, gilt als ganzjährige Anforderung unabhängig vom Heizungs-, oder Kühlungsfall."@de-DE , "Humidité relative minimale de l'espace ou de la zone spécifiée par l'usager ou le concepteur. Si les valeurs pour l'été et l'hiver ne sont pas connues, cette température s'applique toute l'année, sinon seulement en demi-saison."@fr-FR ; + IFC4-PSD:ifdguid "76a83080d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "SpaceHumidityMin" ; + IFC4-PSD:nameAlias "Space Humidity Min"@en , "Luftfeuchtigkeit Minimal"@de-DE , "Humidité relative minimale"@fr-FR , "最低室内湿度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:SpaceTemperatureSummerMax + a rdf:Property ; + rdfs:seeAlso :p54161780d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureSummerMax . + +:NaturalVentilation a rdf:Property ; + rdfs:seeAlso :p8d4e8780d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NaturalVentilation . + +:p9a6b7680d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of the requirement of a particular mechanical air ventilation rate, given in air changes per hour." ; + rdfs:label "MechanicalVentilationRate" ; + IFC4-PSD:definition "Indication of the requirement of a particular mechanical air ventilation rate, given in air changes per hour." ; + IFC4-PSD:definitionAlias ""@en , "특정 기계 환기 비율 요구 지표. 시간 당 환기 회수로 주어진다."@ko-KR , "Spécification du taux de ventilation mécanique exprimé en volumes par heure."@fr-FR , "Geforderte Luftwechselzahl (in Wechsel per Stunde) im Fall der künstlichen Lüftung."@de-DE , "特定の機械換気率の要求指標。1時間あたりの換気回数で与えられる。"@ja-JP ; + IFC4-PSD:ifdguid "9a6b7680d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "MechanicalVentilationRate" ; + IFC4-PSD:nameAlias "Mechanical Ventilation Rate"@en , "Künstliche Luftwechselzahl"@de-DE , "機械換気率"@ja-JP , "기계환기 비율"@ko-KR , "Taux ventilation mécanique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:SpaceTemperatureSummerMin + a rdf:Property ; + rdfs:seeAlso :p5a0bf880d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpaceTemperatureSummerMin . diff --git a/converter/src/main/resources/pset/Pset_SpatialZoneCommon.ttl b/converter/src/main/resources/pset/Pset_SpatialZoneCommon.ttl new file mode 100644 index 00000000..3e49ccf8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SpatialZoneCommon.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p3ae302c70c29422889f6f36a68e14a44 ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p09e2b7b541924636a1d531d532a1a8d2 + a IFC4-PSD:PropertyDef ; + rdfs:label "Reference" ; + IFC4-PSD:ifdguid "09e2b7b541924636a1d531d532a1a8d2" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SpatialZoneCommon + a IFC4-PSD:PropertySetDef ; + rdfs:label "Pset_SpatialZoneCommon" ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SpatialZoneCommon" ; + IFC4-PSD:propertyDef :p09e2b7b541924636a1d531d532a1a8d2 , :p3ae302c70c29422889f6f36a68e14a44 . + +:Reference a rdf:Property ; + rdfs:seeAlso :p09e2b7b541924636a1d531d532a1a8d2 ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p3ae302c70c29422889f6f36a68e14a44 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external zone at the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external zone at the outside of the building." ; + IFC4-PSD:ifdguid "3ae302c70c29422889f6f36a68e14a44" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_StackTerminalTypeCommon.ttl b/converter/src/main/resources/pset/Pset_StackTerminalTypeCommon.ttl new file mode 100644 index 00000000..70ebd93b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_StackTerminalTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pb2db9100d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "この規格(例、A-1)で特定のタイプの参照IDが割り当てられ、等級がなければ等級システムを使って割り当てられます。"@ja-JP ; + IFC4-PSD:ifdguid "b2db9100d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_StackTerminalTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for stack terminals." ; + rdfs:label "Pset_StackTerminalTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcStackTerminal ; + IFC4-PSD:applicableTypeValue "IfcStackTerminal" ; + IFC4-PSD:definition "Common properties for stack terminals." ; + IFC4-PSD:definitionAlias ""@en , "排気筒への接続口の共通プロパティー。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_StackTerminalTypeCommon" ; + IFC4-PSD:propertyDef :pb838db80d20c11e1800000215ad4efdf , :pb2db9100d20c11e1800000215ad4efdf . + +:pb838db80d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "b838db80d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pb2db9100d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Status a rdf:Property ; + rdfs:seeAlso :pb838db80d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_StairCommon.ttl b/converter/src/main/resources/pset/Pset_StairCommon.ttl index cb6cd3c5..b301825f 100644 --- a/converter/src/main/resources/pset/Pset_StairCommon.ttl +++ b/converter/src/main/resources/pset/Pset_StairCommon.ttl @@ -1,343 +1,337 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_StairCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_StairCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcStair" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcStair." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcStair"@fr-FR ; - IFC4-PSD:definitionAlias "IfcStair(階段)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcStair实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_StairCommon" ; - IFC4-PSD:propertyDef :_04841b80d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_0cdc5680d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_136ace00d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_19f94580d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_22518080d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_29788e80d20d11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_468b4f6c361b4ced8545cc440b4d8a1d ; - IFC4-PSD:propertyDef :_47b259a7db1246f487ecf6049461cc52 ; - IFC4-PSD:propertyDef :_975f98e25ec84e4dad52a2fb2cad197c ; - IFC4-PSD:propertyDef :_9996d6e7f7ec4fb9973c027edc7fc421 ; - IFC4-PSD:propertyDef :_a9e3055e9126471caa4a118eb84c2751 ; - IFC4-PSD:propertyDef :_d272b980d20c11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d9013100d20c11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e8807a00d20c11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ed452e00d20c11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f2a27880d20c11e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_fafab380d20c11e1800000215ad4efdf ; -. -:_04841b80d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Required headroom clearance for the passageway according to the applicable building code or additional requirements." ; - IFC4-PSD:definitionAlias "German-description-6"@de-DE ; - IFC4-PSD:definitionAlias "Hauteur de passage (échappée) requise selon le Code en vigueur ou des spécifications additionnelles."@fr-FR ; - IFC4-PSD:definitionAlias "建筑规范或其他规定要求的通道净空高度。"@zh-CN ; - IFC4-PSD:definitionAlias "要求される頭高余裕。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "04841b80d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "RequiredHeadroom" ; - IFC4-PSD:nameAlias "HauteurPassageRequise"@fr-FR ; - IFC4-PSD:nameAlias "erforderliche Durchgangshöhe"@de-DE ; - IFC4-PSD:nameAlias "所需净空"@zh-CN ; - IFC4-PSD:nameAlias "要求頭高余裕"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_0cdc5680d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication that this object is designed to be accessible by the handicapped. -Set to (TRUE) if this stair is rated as handicap accessible according the local building codes, otherwise (FALSE). Accessibility maybe provided by additional means.""" ; - IFC4-PSD:definitionAlias "German-description-7"@de-DE ; - IFC4-PSD:definitionAlias "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR ; - IFC4-PSD:definitionAlias "この空間がハンディキャップ者向けの空間かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias """表示该构件是否设计为可供残疾人使用的无障碍设施。 -该属性的根据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:ifdguid "0cdc5680d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "HandicapAccessible" ; - IFC4-PSD:nameAlias "AccessibleHandicapes"@fr-FR ; - IFC4-PSD:nameAlias "Behindertengerecht"@de-DE ; - IFC4-PSD:nameAlias "ハンディキャップアクセス可能性"@ja-JP ; - IFC4-PSD:nameAlias "是否为无障碍设施"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_136ace00d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "136ace00d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_19f94580d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for this object. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "19f94580d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_22518080d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). -Here it defines an exit stair in accordance to the national building code.""" ; - IFC4-PSD:definitionAlias "German-description-10"@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR ; - IFC4-PSD:definitionAlias "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP ; - IFC4-PSD:definitionAlias """表示该构件是否设计为火灾时的紧急出口。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:ifdguid "22518080d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Fluchtweg"@de-DE ; - IFC4-PSD:nameAlias "Sortie Secours"@fr-FR ; - IFC4-PSD:nameAlias "是否为紧急出口"@zh-CN ; - IFC4-PSD:nameAlias "非常口区分"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_29788e80d20d11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "German-description-11"@de-DE ; - IFC4-PSD:definitionAlias "Indique si le revêtement de surface est anti dérapant (VRAI) ou non (FALSE)"@fr-FR ; - IFC4-PSD:definitionAlias "スリップ防止のための表面仕上げをしているかどうかのブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示表面处理是否设计为防滑的。"@zh-CN ; - IFC4-PSD:ifdguid "29788e80d20d11e1800000215ad4efdf" ; - IFC4-PSD:name "HasNonSkidSurface" ; - IFC4-PSD:nameAlias "AntiDerapant"@fr-FR ; - IFC4-PSD:nameAlias "Nichtrutschende Oberfläche"@de-DE ; - IFC4-PSD:nameAlias "滑り止め表面加工区分"@ja-JP ; - IFC4-PSD:nameAlias "表面是否防滑"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_468b4f6c361b4ced8545cc440b4d8a1d - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Length of treads at a given offset. -Walking line position is given by the 'WalkingLineOffset'. The resulting value should normally be identical with TreadLength, it may be given in addition, if the walking line offset for building code calculations is different from that used in design.""" ; - IFC4-PSD:definitionAlias ""@de-DE ; - IFC4-PSD:ifdguid "468b4f6c361b4ced8545cc440b4d8a1d" ; - IFC4-PSD:name "TreadLengthAtOffset" ; - IFC4-PSD:nameAlias "Auftritt an der Lauflinie"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_47b259a7db1246f487ecf6049461cc52 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Minimum thickness of the stair flight, measured perpendicular to the slope of the flight to the inner corner of riser and tread. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; - IFC4-PSD:definitionAlias ""@de-DE ; - IFC4-PSD:ifdguid "47b259a7db1246f487ecf6049461cc52" ; - IFC4-PSD:name "WaistThickness" ; - IFC4-PSD:nameAlias "minimale Dicke des Treppenplatte"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_975f98e25ec84e4dad52a2fb2cad197c - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Offset of the walking line from the inner side of the flight. -Note: the walking line may have a own shape representation (in case of inconsistencies, the value derived from the shape representation shall take precedence).""" ; - IFC4-PSD:definitionAlias ""@de-DE ; - IFC4-PSD:ifdguid "975f98e25ec84e4dad52a2fb2cad197c" ; - IFC4-PSD:name "WalkingLineOffset" ; - IFC4-PSD:nameAlias "Abstand der Lauflinie"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_9996d6e7f7ec4fb9973c027edc7fc421 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Minimum length of treads at the inner side of the winder. -Only relevant in case of winding flights, for straight flights it is identical with IfcStairFlight.TreadLength. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence.""" ; - IFC4-PSD:definitionAlias ""@de-DE ; - IFC4-PSD:ifdguid "9996d6e7f7ec4fb9973c027edc7fc421" ; - IFC4-PSD:name "TreadLengthAtInnerSide" ; - IFC4-PSD:nameAlias "minimaler Auftritt an der Innenseite"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_a9e3055e9126471caa4a118eb84c2751 - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Horizontal distance from the front of the tread to the riser underneath. It is the overhang of the tread." ; - IFC4-PSD:definitionAlias ""@de-DE ; - IFC4-PSD:definitionAlias "Hauteur de passage (échappée) requise selon le Code en vigueur ou des spécifications additionnelles."@fr-FR ; - IFC4-PSD:ifdguid "a9e3055e9126471caa4a118eb84c2751" ; - IFC4-PSD:name "NosingLength" ; - IFC4-PSD:nameAlias "Hauteur de passage requise"@fr-FR ; - IFC4-PSD:nameAlias "Überstand"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_d272b980d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "d272b980d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_d9013100d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "d9013100d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_e8807a00d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total number of the risers included in the stair." ; - IFC4-PSD:definitionAlias "German-description-2"@de-DE ; - IFC4-PSD:definitionAlias "Nombre total de contremarches de l'escalier"@fr-FR ; - IFC4-PSD:definitionAlias "该楼梯所包含的踢板总数。"@zh-CN ; - IFC4-PSD:definitionAlias "階段の蹴上げ数。"@ja-JP ; - IFC4-PSD:ifdguid "e8807a00d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "NumberOfRiser" ; - IFC4-PSD:nameAlias "Anzahl der Steigungen"@de-DE ; - IFC4-PSD:nameAlias "NombreContreMarches"@fr-FR ; - IFC4-PSD:nameAlias "踢板数"@zh-CN ; - IFC4-PSD:nameAlias "蹴上げ数"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_ed452e00d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Total number of treads included in the stair." ; - IFC4-PSD:definitionAlias "German-description-3"@de-DE ; - IFC4-PSD:definitionAlias "Nombre total de girons de l'escalier"@fr-FR ; - IFC4-PSD:definitionAlias "该楼梯所包含的踏板总数。"@zh-CN ; - IFC4-PSD:definitionAlias "階段の踏面数。"@ja-JP ; - IFC4-PSD:ifdguid "ed452e00d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "NumberOfTreads" ; - IFC4-PSD:nameAlias "Anzahl der Auftritte"@de-DE ; - IFC4-PSD:nameAlias "NombreGirons"@fr-FR ; - IFC4-PSD:nameAlias "踏板数"@zh-CN ; - IFC4-PSD:nameAlias "踏面数"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_f2a27880d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Vertical distance from tread to tread. -The riser height is supposed to be equal for all steps of a stair or stair flight.""" ; - IFC4-PSD:definitionAlias "German-description-4"@de-DE ; - IFC4-PSD:definitionAlias "Hauteur de la contremarche, supposée homogène pour toutes les marches de l'escalier ou de la volée de marches."@fr-FR ; - IFC4-PSD:definitionAlias """踏板之间的垂直高度。 -楼梯或梯段所有梯级的踢板高度应当一致。"""@zh-CN ; - IFC4-PSD:definitionAlias "踏面と踏面の垂直方向の距離。この蹴上げ高さ値は、一連の階段において同じ値と仮定する。"@ja-JP ; - IFC4-PSD:ifdguid "f2a27880d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "RiserHeight" ; - IFC4-PSD:nameAlias "HauteurContreMarche"@fr-FR ; - IFC4-PSD:nameAlias "Steigung"@de-DE ; - IFC4-PSD:nameAlias "踢板高度"@zh-CN ; - IFC4-PSD:nameAlias "蹴上げ高さ"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. -:_fafab380d20c11e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Horizontal distance from the front of the thread to the front of the next tread. -The tread length is supposed to be equal for all steps of the stair or stair flight at the walking line.""" ; - IFC4-PSD:definitionAlias "German-description-5"@de-DE ; - IFC4-PSD:definitionAlias "Longueur de giron (largeur de marche), supposée égale pour toutes les marches de l'escalier ou de la volée de marchesle long de la ligne de foulée"@fr-FR ; - IFC4-PSD:definitionAlias """踏板前缘到下一级踏板前缘的水平距离。 -走线方向上楼梯或梯段所有梯级的踏板宽度应当一致。"""@zh-CN ; - IFC4-PSD:definitionAlias "踏面の前面部分から次の踏面までの水平方向の距離。この踏面長の値は、一連の階段において同じ値と仮定する。"@ja-JP ; - IFC4-PSD:ifdguid "fafab380d20c11e1800000215ad4efdf" ; - IFC4-PSD:name "TreadLength" ; - IFC4-PSD:nameAlias "Auftritt"@de-DE ; - IFC4-PSD:nameAlias "LongueurGiron"@fr-FR ; - IFC4-PSD:nameAlias "踏板长度"@zh-CN ; - IFC4-PSD:nameAlias "踏面長"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :p8fc535f66e7a4d6899fd3b4218b31836 ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:p47b259a7db1246f487ecf6049461cc52 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum thickness of the stair flight, measured perpendicular to the slope of the flight to the inner corner of riser and tread. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + rdfs:label "WaistThickness" ; + IFC4-PSD:definition "Minimum thickness of the stair flight, measured perpendicular to the slope of the flight to the inner corner of riser and tread. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + IFC4-PSD:definitionAlias ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "47b259a7db1246f487ecf6049461cc52" ; + IFC4-PSD:name "WaistThickness" ; + IFC4-PSD:nameAlias "minimale Dicke des Treppenplatte"@de-DE , "Waist Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfRiser a rdf:Property ; + rdfs:seeAlso :pe8807a00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfRiser . + +:Status a rdf:Property ; + rdfs:seeAlso :pd9013100d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p04841b80d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Required headroom clearance for the passageway according to the applicable building code or additional requirements." ; + rdfs:label "RequiredHeadroom" ; + IFC4-PSD:definition "Required headroom clearance for the passageway according to the applicable building code or additional requirements." ; + IFC4-PSD:definitionAlias "要求される頭高余裕。関連する建築基準法を参照。"@ja-JP , "建筑规范或其他规定要求的通道净空高度。"@zh-CN , ""@en , "Hauteur de passage (échappée) requise selon le Code en vigueur ou des spécifications additionnelles."@fr-FR , "German-description-6"@de-DE ; + IFC4-PSD:ifdguid "04841b80d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "RequiredHeadroom" ; + IFC4-PSD:nameAlias "erforderliche Durchgangshöhe"@de-DE , "要求頭高余裕"@ja-JP , "HauteurPassageRequise"@fr-FR , "所需净空"@zh-CN , "Required Headroom"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pd272b980d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; + IFC4-PSD:ifdguid "d272b980d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "参考号"@zh-CN , "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p468b4f6c361b4ced8545cc440b4d8a1d + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of treads at a given offset.\nWalking line position is given by the 'WalkingLineOffset'. The resulting value should normally be identical with TreadLength, it may be given in addition, if the walking line offset for building code calculations is different from that used in design." ; + rdfs:label "TreadLengthAtOffset" ; + IFC4-PSD:definition "Length of treads at a given offset.\nWalking line position is given by the 'WalkingLineOffset'. The resulting value should normally be identical with TreadLength, it may be given in addition, if the walking line offset for building code calculations is different from that used in design." ; + IFC4-PSD:definitionAlias ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "468b4f6c361b4ced8545cc440b4d8a1d" ; + IFC4-PSD:name "TreadLengthAtOffset" ; + IFC4-PSD:nameAlias "Tread Length At Offset"@en , "Auftritt an der Lauflinie"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_StairCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcStair." ; + rdfs:label "Pset_StairCommon" ; + IFC4-PSD:applicableClass IFC4:IfcStair ; + IFC4-PSD:applicableTypeValue "IfcStair" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcStair." ; + IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcStair"@fr-FR , "IfcStair(階段)オブジェクトに関する共通プロパティセット定義。"@ja-JP , ""@en , "所有IfcStair实例的定义中通用的属性。"@zh-CN ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_StairCommon" ; + IFC4-PSD:propertyDef :p19f94580d20d11e1800000215ad4efdf , :p29788e80d20d11e1800000215ad4efdf , :ped452e00d20c11e1800000215ad4efdf , :pfafab380d20c11e1800000215ad4efdf , :p22518080d20d11e1800000215ad4efdf , :pa9e3055e9126471caa4a118eb84c2751 , :p136ace00d20d11e1800000215ad4efdf , :p9996d6e7f7ec4fb9973c027edc7fc421 , :p04841b80d20d11e1800000215ad4efdf , :pd9013100d20c11e1800000215ad4efdf , :p8fc535f66e7a4d6899fd3b4218b31836 , :pe2afaa3ca32644f294f3a4fb08059fc3 , :p468b4f6c361b4ced8545cc440b4d8a1d , :pf2a27880d20c11e1800000215ad4efdf , :p0cdc5680d20d11e1800000215ad4efdf , :pd272b980d20c11e1800000215ad4efdf , :p47b259a7db1246f487ecf6049461cc52 , :p975f98e25ec84e4dad52a2fb2cad197c , :pe8807a00d20c11e1800000215ad4efdf . + +:p975f98e25ec84e4dad52a2fb2cad197c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Offset of the walking line from the inner side of the flight. \nNote: the walking line may have a own shape representation (in case of inconsistencies, the value derived from the shape representation shall take precedence)." ; + rdfs:label "WalkingLineOffset" ; + IFC4-PSD:definition "Offset of the walking line from the inner side of the flight. \nNote: the walking line may have a own shape representation (in case of inconsistencies, the value derived from the shape representation shall take precedence)." ; + IFC4-PSD:definitionAlias ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "975f98e25ec84e4dad52a2fb2cad197c" ; + IFC4-PSD:name "WalkingLineOffset" ; + IFC4-PSD:nameAlias "Walking Line Offset"@en , "Abstand der Lauflinie"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0cdc5680d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication that this object is designed to be accessible by the handicapped. \nSet to (TRUE) if this stair is rated as handicap accessible according the local building codes, otherwise (FALSE). Accessibility maybe provided by additional means." ; + rdfs:label "HandicapAccessible" ; + IFC4-PSD:definition "Indication that this object is designed to be accessible by the handicapped. \nSet to (TRUE) if this stair is rated as handicap accessible according the local building codes, otherwise (FALSE). Accessibility maybe provided by additional means." ; + IFC4-PSD:definitionAlias "Indique que cet objet est conçu pour être accessible aux handicapés. Indication donnée selon le Code National."@fr-FR , "表示该构件是否设计为可供残疾人使用的无障碍设施。\n该属性的根据为国家建筑规范。"@zh-CN , ""@en , "この空間がハンディキャップ者向けの空間かどうかを示すブーリアン値。"@ja-JP , "German-description-7"@de-DE ; + IFC4-PSD:ifdguid "0cdc5680d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "HandicapAccessible" ; + IFC4-PSD:nameAlias "AccessibleHandicapes"@fr-FR , "是否为无障碍设施"@zh-CN , "Handicap Accessible"@en , "ハンディキャップアクセス可能性"@ja-JP , "Behindertengerecht"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:TreadLengthAtOffset a rdf:Property ; + rdfs:seeAlso :p468b4f6c361b4ced8545cc440b4d8a1d ; + rdfs:subPropertyOf IFC4-PSD:TreadLengthAtOffset . + +:HasNonSkidSurface a rdf:Property ; + rdfs:seeAlso :p29788e80d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasNonSkidSurface . + +:WalkingLineOffset a rdf:Property ; + rdfs:seeAlso :p975f98e25ec84e4dad52a2fb2cad197c ; + rdfs:subPropertyOf IFC4-PSD:WalkingLineOffset . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p8fc535f66e7a4d6899fd3b4218b31836 + a IFC4-PSD:PropertyDef ; + rdfs:label "LoadBearing" ; + IFC4-PSD:ifdguid "8fc535f66e7a4d6899fd3b4218b31836" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:HandicapAccessible a rdf:Property ; + rdfs:seeAlso :p0cdc5680d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HandicapAccessible . + +:p29788e80d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + rdfs:label "HasNonSkidSurface" ; + IFC4-PSD:definition "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "German-description-11"@de-DE , "スリップ防止のための表面仕上げをしているかどうかのブーリアン値。"@ja-JP , ""@en , "表示表面处理是否设计为防滑的。"@zh-CN , "Indique si le revêtement de surface est anti dérapant (VRAI) ou non (FALSE)"@fr-FR ; + IFC4-PSD:ifdguid "29788e80d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "HasNonSkidSurface" ; + IFC4-PSD:nameAlias "表面是否防滑"@zh-CN , "AntiDerapant"@fr-FR , "滑り止め表面加工区分"@ja-JP , "Has Non Skid Surface"@en , "Nichtrutschende Oberfläche"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf2a27880d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Vertical distance from tread to tread. \nThe riser height is supposed to be equal for all steps of a stair or stair flight." ; + rdfs:label "RiserHeight" ; + IFC4-PSD:definition "Vertical distance from tread to tread. \nThe riser height is supposed to be equal for all steps of a stair or stair flight." ; + IFC4-PSD:definitionAlias "German-description-4"@de-DE , ""@en , "踏面と踏面の垂直方向の距離。この蹴上げ高さ値は、一連の階段において同じ値と仮定する。"@ja-JP , "Hauteur de la contremarche, supposée homogène pour toutes les marches de l'escalier ou de la volée de marches."@fr-FR , "踏板之间的垂直高度。\n楼梯或梯段所有梯级的踢板高度应当一致。"@zh-CN ; + IFC4-PSD:ifdguid "f2a27880d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "RiserHeight" ; + IFC4-PSD:nameAlias "踢板高度"@zh-CN , "Riser Height"@en , "HauteurContreMarche"@fr-FR , "蹴上げ高さ"@ja-JP , "Steigung"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p22518080d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit stair in accordance to the national building code." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere it defines an exit stair in accordance to the national building code." ; + IFC4-PSD:definitionAlias "Angabe, ob die Tür ein Notausgang oder Fluchttür gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN)."@de-DE , "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR , "このオブジェクトが火災時の非常口として設計されているかどうかを示すブーリアン値。ここでは関連する建築基準法における出口ドアとして定義している。"@ja-JP , "表示该构件是否设计为火灾时的紧急出口。\n该属性的依据为国家建筑规范。"@zh-CN , "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit stair in accordance to the national building code."@en ; + IFC4-PSD:ifdguid "22518080d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "Sortie Secours"@fr-FR , "Fire Exit"@en , "非常口区分"@ja-JP , "Fluchttreppe"@de-DE , "是否为紧急出口"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:WaistThickness a rdf:Property ; + rdfs:seeAlso :p47b259a7db1246f487ecf6049461cc52 ; + rdfs:subPropertyOf IFC4-PSD:WaistThickness . + +:TreadLength a rdf:Property ; + rdfs:seeAlso :pfafab380d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TreadLength . + +:p136ace00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , ""@en , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "136ace00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "外部区分"@ja-JP , "Außenbauteil"@de-DE , "是否外部构件"@zh-CN , "EstExterieur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:RiserHeight a rdf:Property ; + rdfs:seeAlso :pf2a27880d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiserHeight . + +:FireExit a rdf:Property ; + rdfs:seeAlso :p22518080d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:pe8807a00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total number of the risers included in the stair." ; + rdfs:label "NumberOfRiser" ; + IFC4-PSD:definition "Total number of the risers included in the stair." ; + IFC4-PSD:definitionAlias "German-description-2"@de-DE , "Nombre total de contremarches de l'escalier"@fr-FR , "階段の蹴上げ数。"@ja-JP , ""@en , "该楼梯所包含的踢板总数。"@zh-CN ; + IFC4-PSD:ifdguid "e8807a00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfRiser" ; + IFC4-PSD:nameAlias "蹴上げ数"@ja-JP , "Number Of Riser"@en , "踢板数"@zh-CN , "Anzahl der Steigungen"@de-DE , "NombreContreMarches"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:pe2afaa3ca32644f294f3a4fb08059fc3 + a IFC4-PSD:PropertyDef ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:ifdguid "e2afaa3ca32644f294f3a4fb08059fc3" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :p136ace00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:p9996d6e7f7ec4fb9973c027edc7fc421 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum length of treads at the inner side of the winder. \nOnly relevant in case of winding flights, for straight flights it is identical with IfcStairFlight.TreadLength. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + rdfs:label "TreadLengthAtInnerSide" ; + IFC4-PSD:definition "Minimum length of treads at the inner side of the winder. \nOnly relevant in case of winding flights, for straight flights it is identical with IfcStairFlight.TreadLength. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + IFC4-PSD:definitionAlias ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "9996d6e7f7ec4fb9973c027edc7fc421" ; + IFC4-PSD:name "TreadLengthAtInnerSide" ; + IFC4-PSD:nameAlias "minimaler Auftritt an der Innenseite"@de-DE , "Tread Length At Inner Side"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NosingLength a rdf:Property ; + rdfs:seeAlso :pa9e3055e9126471caa4a118eb84c2751 ; + rdfs:subPropertyOf IFC4-PSD:NosingLength . + +:pa9e3055e9126471caa4a118eb84c2751 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Horizontal distance from the front of the tread to the riser underneath. It is the overhang of the tread." ; + rdfs:label "NosingLength" ; + IFC4-PSD:definition "Horizontal distance from the front of the tread to the riser underneath. It is the overhang of the tread." ; + IFC4-PSD:definitionAlias "Hauteur de passage (échappée) requise selon le Code en vigueur ou des spécifications additionnelles."@fr-FR , ""@de-DE , ""@en ; + IFC4-PSD:ifdguid "a9e3055e9126471caa4a118eb84c2751" ; + IFC4-PSD:name "NosingLength" ; + IFC4-PSD:nameAlias "Nosing Length"@en , "Hauteur de passage requise"@fr-FR , "Überstand"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:pd9013100d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "d9013100d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Statut"@fr-FR , "Status"@en , "Status"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :p19f94580d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:RequiredHeadroom a rdf:Property ; + rdfs:seeAlso :p04841b80d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RequiredHeadroom . + +:TreadLengthAtInnerSide + a rdf:Property ; + rdfs:seeAlso :p9996d6e7f7ec4fb9973c027edc7fc421 ; + rdfs:subPropertyOf IFC4-PSD:TreadLengthAtInnerSide . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pe2afaa3ca32644f294f3a4fb08059fc3 ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:Reference a rdf:Property ; + rdfs:seeAlso :pd272b980d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pfafab380d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Horizontal distance from the front of the thread to the front of the next tread. \nThe tread length is supposed to be equal for all steps of the stair or stair flight at the walking line." ; + rdfs:label "TreadLength" ; + IFC4-PSD:definition "Horizontal distance from the front of the thread to the front of the next tread. \nThe tread length is supposed to be equal for all steps of the stair or stair flight at the walking line." ; + IFC4-PSD:definitionAlias ""@en , "踏面の前面部分から次の踏面までの水平方向の距離。この踏面長の値は、一連の階段において同じ値と仮定する。"@ja-JP , "Longueur de giron (largeur de marche), supposée égale pour toutes les marches de l'escalier ou de la volée de marchesle long de la ligne de foulée"@fr-FR , "踏板前缘到下一级踏板前缘的水平距离。\n走线方向上楼梯或梯段所有梯级的踏板宽度应当一致。"@zh-CN , "German-description-5"@de-DE ; + IFC4-PSD:ifdguid "fafab380d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "TreadLength" ; + IFC4-PSD:nameAlias "Tread Length"@en , "踏板长度"@zh-CN , "Auftritt"@de-DE , "踏面長"@ja-JP , "LongueurGiron"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfTreads a rdf:Property ; + rdfs:seeAlso :ped452e00d20c11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfTreads . + +:ped452e00d20c11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total number of treads included in the stair." ; + rdfs:label "NumberOfTreads" ; + IFC4-PSD:definition "Total number of treads included in the stair." ; + IFC4-PSD:definitionAlias "Nombre total de girons de l'escalier"@fr-FR , ""@en , "该楼梯所包含的踏板总数。"@zh-CN , "German-description-3"@de-DE , "階段の踏面数。"@ja-JP ; + IFC4-PSD:ifdguid "ed452e00d20c11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfTreads" ; + IFC4-PSD:nameAlias "踏面数"@ja-JP , "踏板数"@zh-CN , "Anzahl der Auftritte"@de-DE , "Number Of Treads"@en , "NombreGirons"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:p19f94580d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR , ""@en , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "19f94580d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE , "耐火等級"@ja-JP , "ResistanceAuFeu"@fr-FR , "Fire Rating"@en , "防火等级"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_StairFlightCommon.ttl b/converter/src/main/resources/pset/Pset_StairFlightCommon.ttl new file mode 100644 index 00000000..0023eb94 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_StairFlightCommon.ttl @@ -0,0 +1,230 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p4f059800d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total number of the risers included in the stair flight." ; + rdfs:label "NumberOfRiser" ; + IFC4-PSD:definition "Total number of the risers included in the stair flight." ; + IFC4-PSD:definitionAlias "階段の蹴上げ数。"@ja-JP , "German-description-2"@de-DE , "该梯段所包含的踢板总数。"@zh-CN , "Nombre total de contremarches de l'escalier"@fr-FR , ""@en ; + IFC4-PSD:ifdguid "4f059800d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfRiser" ; + IFC4-PSD:nameAlias "NombreContreMarches"@fr-FR , "蹴上げ数"@ja-JP , "踢板数"@zh-CN , "Anzahl der Steigungen"@de-DE , "Number Of Riser"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:TreadLengthAtInnerSide + a rdf:Property ; + rdfs:seeAlso :p8411ea80d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TreadLengthAtInnerSide . + +:Reference a rdf:Property ; + rdfs:seeAlso :p39906e00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p63499500d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Horizontal distance from the front of the thread to the front of the next tread. \nThe tread length is supposed to be equal for all steps of the stair or stair flight at the walking line." ; + rdfs:label "TreadLength" ; + IFC4-PSD:definition "Horizontal distance from the front of the thread to the front of the next tread. \nThe tread length is supposed to be equal for all steps of the stair or stair flight at the walking line." ; + IFC4-PSD:definitionAlias "German-description-5"@de-DE , ""@en , "踏板前缘到下一级踏板前缘的水平距离。\n走线方向上楼梯或梯段所有梯级的踏板宽度应当一致。"@zh-CN , "Longueur de giron (largeur de marche), supposée égale pour toutes les marches de l'escalier ou de la volée de marchesle long de la ligne de foulée"@fr-FR , "踏面の前面部分から次の踏面までの水平方向の距離。この踏面長の値は、一連の階段において同じ値と仮定する。"@ja-JP ; + IFC4-PSD:ifdguid "63499500d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "TreadLength" ; + IFC4-PSD:nameAlias "踏面長"@ja-JP , "Tread Length"@en , "Auftritt"@de-DE , "踏板长度"@zh-CN , "LongueurGiron"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WalkingLineOffset a rdf:Property ; + rdfs:seeAlso :p7197b100d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WalkingLineOffset . + +:NosingLength a rdf:Property ; + rdfs:seeAlso :p6c3a6680d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NosingLength . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p8411ea80d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum length of treads at the inner side of the winder. \nOnly relevant in case of winding flights, for straight flights it is identical with IfcStairFlight.TreadLength. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + rdfs:label "TreadLengthAtInnerSide" ; + IFC4-PSD:definition "Minimum length of treads at the inner side of the winder. \nOnly relevant in case of winding flights, for straight flights it is identical with IfcStairFlight.TreadLength. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + IFC4-PSD:definitionAlias "Longueur minimum des girons du côté intérieur de l'enroulement. Pertinent seulement pour les escaliers tournants car pour une volée droite, la valeur est donnée par la propriété \"Longueur du giron\". C'est une valeur précalculée. En cas d'incohérence, c'est la valeur dérivée de la représentation de la forme qui prime."@fr-FR , "螺旋楼梯踏板内侧的最小长度。\n该属性仅适用于螺旋楼梯。对直跑楼梯,该属性与IfcStairFlight.TreadLength一致。该属性为预设值,若有冲突,应以从形状描述得到的值为准。"@zh-CN , ""@en , "German-description-9"@de-DE ; + IFC4-PSD:ifdguid "8411ea80d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "TreadLengthAtInnerSide" ; + IFC4-PSD:nameAlias "minimaler Auftritt an der Innenseite"@de-DE , "LongueurGironCoteInterieur"@fr-FR , "内侧踏板长度"@zh-CN , "Tread Length At Inner Side"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p401ee580d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p7b211900d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of treads at a given offset.\nWalking line position is given by the 'WalkingLineOffset'. The resulting value should normally be identical with TreadLength, it may be given in addition, if the walking line offset for building code calculations is different from that used in design." ; + rdfs:label "TreadLengthAtOffset" ; + IFC4-PSD:definition "Length of treads at a given offset.\nWalking line position is given by the 'WalkingLineOffset'. The resulting value should normally be identical with TreadLength, it may be given in addition, if the walking line offset for building code calculations is different from that used in design." ; + IFC4-PSD:definitionAlias "German-description-8"@de-DE , "Longueur du giron le long de la ligne de foulée. La valeur relativement à cette position doit normalement être identique à la propriété \"Longueur du giron\" ; elle peut être indiquée si la valeur de la propriété \"Décalage de la ligne de foulée\" donnée par une règle de calcul est différente de celle utilisée en conception."@fr-FR , ""@en , "在指定偏移量处踏板的长度。\n走线位置由“走线偏移”指定。该属性一般应与踏板长度一致,但如果根据建筑规范计算得到的走线偏移量和设计中使用的走线偏移量不同时,应使用该属性。"@zh-CN ; + IFC4-PSD:ifdguid "7b211900d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "TreadLengthAtOffset" ; + IFC4-PSD:nameAlias "偏移踏板长度"@zh-CN , "Tread Length At Offset"@en , "LongueurGironSurLigneFoulee"@fr-FR , "Auftritt an der Lauflinie"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:TreadLengthAtOffset a rdf:Property ; + rdfs:seeAlso :p7b211900d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TreadLengthAtOffset . + +:TreadLength a rdf:Property ; + rdfs:seeAlso :p63499500d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TreadLength . + +:Headroom a rdf:Property ; + rdfs:seeAlso :p8bd18f00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Headroom . + +:RiserHeight a rdf:Property ; + rdfs:seeAlso :p5af15a00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RiserHeight . + +:p9429ca00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Minimum thickness of the stair flight, measured perpendicular to the slope of the flight to the inner corner of riser and tread. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + rdfs:label "WaistThickness" ; + IFC4-PSD:definition "Minimum thickness of the stair flight, measured perpendicular to the slope of the flight to the inner corner of riser and tread. It is a pre-calculated value, in case of inconsistencies, the value derived from the shape representation shall take precedence." ; + IFC4-PSD:definitionAlias ""@en , "楼梯梯段的最小厚度,即踢板和踏板所成的内角到梯段斜面的垂线长度。该属性为预设值,若有冲突,应以从形状描述得到的值为准。"@zh-CN , "German-description-11"@de-DE , "Epaisseur minimum de la volée mesurée perpendiculairement à la pente de la volée jusqu'au coin intérieur formé par la marche et la contremarche. C'est une valeur précalculée. En cas d'incohérence, c'est la valeur dérivée de la représentation de la forme qui prime."@fr-FR ; + IFC4-PSD:ifdguid "9429ca00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "WaistThickness" ; + IFC4-PSD:nameAlias "腰部厚度"@zh-CN , "minimale Dicke des Treppenplatte"@de-DE , "Waist Thickness"@en , "Epaisseur"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:WaistThickness a rdf:Property ; + rdfs:seeAlso :p9429ca00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WaistThickness . + +:p7197b100d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Offset of the walking line from the inner side of the flight. \nNote: the walking line may have a own shape representation (in case of inconsistencies, the value derived from the shape representation shall take precedence)." ; + rdfs:label "WalkingLineOffset" ; + IFC4-PSD:definition "Offset of the walking line from the inner side of the flight. \nNote: the walking line may have a own shape representation (in case of inconsistencies, the value derived from the shape representation shall take precedence)." ; + IFC4-PSD:definitionAlias ""@en , "走线到梯段内侧的偏移量。\n注:走线可能有单独的形状描述(如果不一致,应以从形状描述得到的值为准)。"@zh-CN , "German-description-7"@de-DE , "Décalage de la ligne de foulée par rapport au côté intérieur de la volée. Nota : la ligne de foulée peut avoir sa propre représentation. En cas d'incohérences, c'est la valeur déduite de la représentation de la forme qui prime."@fr-FR ; + IFC4-PSD:ifdguid "7197b100d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "WalkingLineOffset" ; + IFC4-PSD:nameAlias "Walking Line Offset"@en , "PositionLigneFoulee"@fr-FR , "走线偏移"@zh-CN , "Abstand der Lauflinie"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p39906e00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; + IFC4-PSD:ifdguid "39906e00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "参考号"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p8bd18f00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual headroom clearance for the passageway according to the current design. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "Headroom" ; + IFC4-PSD:definition "Actual headroom clearance for the passageway according to the current design. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias "Hauteur de passage (échappée) actuellement projetée. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "German-description-10"@de-DE , ""@en , "当前设计方案确定的通道实际净空高度。\n该属性所提供的形状信息是对内部形状描述和几何参数的补充。如果几何参数与该属性所提供的形状属性不符,应以几何参数为准。"@zh-CN ; + IFC4-PSD:ifdguid "8bd18f00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Headroom" ; + IFC4-PSD:nameAlias "HauteurPassage"@fr-FR , "净空"@zh-CN , "Durchgangshöhe"@de-DE , "Headroom"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p5af15a00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Vertical distance from tread to tread. \nThe riser height is supposed to be equal for all steps of a stair or stair flight." ; + rdfs:label "RiserHeight" ; + IFC4-PSD:definition "Vertical distance from tread to tread. \nThe riser height is supposed to be equal for all steps of a stair or stair flight." ; + IFC4-PSD:definitionAlias "踏板之间的垂直高度。\n楼梯或梯段所有梯级的踢板高度应当一致。"@zh-CN , "German-description-4"@de-DE , "Hauteur de la contremarche, supposée homogène pour toutes les marches de l'escalier ou de la volée de marches."@fr-FR , "踏面と踏面の垂直方向の距離。この蹴上げ高さ値は、一連の階段において同じ値と仮定する。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5af15a00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "RiserHeight" ; + IFC4-PSD:nameAlias "Riser Height"@en , "踢板高度"@zh-CN , "Steigung"@de-DE , "HauteurContreMarche"@fr-FR , "蹴上げ高さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfRiser a rdf:Property ; + rdfs:seeAlso :p4f059800d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfRiser . + +:p6c3a6680d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Horizontal distance from the front of the tread to the riser underneath. It is the overhang of the tread." ; + rdfs:label "NosingLength" ; + IFC4-PSD:definition "Horizontal distance from the front of the tread to the riser underneath. It is the overhang of the tread." ; + IFC4-PSD:definitionAlias ""@en , "German-description-6"@de-DE , "踏板前边沿到下级踢板的水平距离,即踏板悬挑部分的长度。"@zh-CN , "Longueur du nez de marche."@fr-FR ; + IFC4-PSD:ifdguid "6c3a6680d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "NosingLength" ; + IFC4-PSD:nameAlias "Überstand"@de-DE , "LongueurNez"@fr-FR , "Nosing Length"@en , "踏板前缘长度"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:NumberOfTreads a rdf:Property ; + rdfs:seeAlso :p54fb7900d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfTreads . + +:Pset_StairFlightCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcStairFlight." ; + rdfs:label "Pset_StairFlightCommon" ; + IFC4-PSD:applicableClass IFC4:IfcStairFlight ; + IFC4-PSD:applicableTypeValue "IfcStairFlight" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcStairFlight." ; + IFC4-PSD:definitionAlias ""@en , "所有IfcStairFlight实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcStairFlight"@fr-FR , "IfcStairFlightオブジェクトに関する共通プロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_StairFlightCommon" ; + IFC4-PSD:propertyDef :p63499500d20d11e1800000215ad4efdf , :p9429ca00d20d11e1800000215ad4efdf , :p8411ea80d20d11e1800000215ad4efdf , :p401ee580d20d11e1800000215ad4efdf , :p4f059800d20d11e1800000215ad4efdf , :p5af15a00d20d11e1800000215ad4efdf , :p7197b100d20d11e1800000215ad4efdf , :p8bd18f00d20d11e1800000215ad4efdf , :p54fb7900d20d11e1800000215ad4efdf , :p6c3a6680d20d11e1800000215ad4efdf , :p7b211900d20d11e1800000215ad4efdf , :p39906e00d20d11e1800000215ad4efdf . + +:p401ee580d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "401ee580d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Status"@de-DE , "状態"@ja-JP , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p54fb7900d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total number of treads included in the stair flight." ; + rdfs:label "NumberOfTreads" ; + IFC4-PSD:definition "Total number of treads included in the stair flight." ; + IFC4-PSD:definitionAlias "階段の踏面数。"@ja-JP , "German-description-3"@de-DE , "Nombre total de girons de l'escalier"@fr-FR , ""@en , "该梯段所包含的踏板总数。"@zh-CN ; + IFC4-PSD:ifdguid "54fb7900d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfTreads" ; + IFC4-PSD:nameAlias "踏面数"@ja-JP , "Number Of Treads"@en , "踏板数"@zh-CN , "NombreGirons"@fr-FR , "Anzahl der Auftritte"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_StructuralSurfaceMemberVaryingThickness.ttl b/converter/src/main/resources/pset/Pset_StructuralSurfaceMemberVaryingThickness.ttl new file mode 100644 index 00000000..f7bfc8c5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_StructuralSurfaceMemberVaryingThickness.ttl @@ -0,0 +1,178 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Location1Local a rdf:Property ; + rdfs:seeAlso :pbd40a90463654cfb9cd64f425f027504 ; + rdfs:subPropertyOf IFC4-PSD:Location1Local . + +:Location1Global a rdf:Property ; + rdfs:seeAlso :p1f2c5ae6f4a44733969aeffb41892a77 ; + rdfs:subPropertyOf IFC4-PSD:Location1Global . + +:Thickness3 a rdf:Property ; + rdfs:seeAlso :p27d5c5a613ac4c96a769fb075fde8178 ; + rdfs:subPropertyOf IFC4-PSD:Thickness3 . + +:Location2Local a rdf:Property ; + rdfs:seeAlso :p058e4602830c41f4862b1d1c7338a7b0 ; + rdfs:subPropertyOf IFC4-PSD:Location2Local . + +:p054660e647994621a6bdad29616d79b0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Second thickness parameter of a surface member with varying thickness" ; + rdfs:label "Thickness2" ; + IFC4-PSD:definition "Second thickness parameter of a surface member with varying thickness" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "054660e647994621a6bdad29616d79b0" ; + IFC4-PSD:name "Thickness2" ; + IFC4-PSD:nameAlias "Thickness2"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Location3Global a rdf:Property ; + rdfs:seeAlso :p8fa1dfe751894b6a96e071431b39e282 ; + rdfs:subPropertyOf IFC4-PSD:Location3Global . + +:Thickness2 a rdf:Property ; + rdfs:seeAlso :p054660e647994621a6bdad29616d79b0 ; + rdfs:subPropertyOf IFC4-PSD:Thickness2 . + +:pb96886be793e4099b0a28924bfd23b83 + a IFC4-PSD:PropertyDef ; + rdfs:comment "First thickness parameter of a surface member with varying thickness" ; + rdfs:label "Thickness1" ; + IFC4-PSD:definition "First thickness parameter of a surface member with varying thickness" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "b96886be793e4099b0a28924bfd23b83" ; + IFC4-PSD:name "Thickness1" ; + IFC4-PSD:nameAlias "Thickness1"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Thickness1 a rdf:Property ; + rdfs:seeAlso :pb96886be793e4099b0a28924bfd23b83 ; + rdfs:subPropertyOf IFC4-PSD:Thickness1 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pbd40a90463654cfb9cd64f425f027504 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Local x,y coordinates of the point in which Thickness1 is given" ; + rdfs:label "Location1Local" ; + IFC4-PSD:definition "Local x,y coordinates of the point in which Thickness1 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "bd40a90463654cfb9cd64f425f027504" ; + IFC4-PSD:name "Location1Local" ; + IFC4-PSD:nameAlias "Location1 Local"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:Location3Local a rdf:Property ; + rdfs:seeAlso :p441117ba47724c3e946eac44f07c39da ; + rdfs:subPropertyOf IFC4-PSD:Location3Local . + +:p058e4602830c41f4862b1d1c7338a7b0 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Local x,y coordinates of the point in which Thickness2 is given" ; + rdfs:label "Location2Local" ; + IFC4-PSD:definition "Local x,y coordinates of the point in which Thickness2 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "058e4602830c41f4862b1d1c7338a7b0" ; + IFC4-PSD:name "Location2Local" ; + IFC4-PSD:nameAlias "Location2 Local"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p27d5c5a613ac4c96a769fb075fde8178 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Third thickness parameter of a surface member with varying thickness" ; + rdfs:label "Thickness3" ; + IFC4-PSD:definition "Third thickness parameter of a surface member with varying thickness" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "27d5c5a613ac4c96a769fb075fde8178" ; + IFC4-PSD:name "Thickness3" ; + IFC4-PSD:nameAlias "Thickness3"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8fa1dfe751894b6a96e071431b39e282 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness3 is given" ; + rdfs:label "Location3Global" ; + IFC4-PSD:definition "Global X,Y,Z coordinates of the point in which Thickness3 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8fa1dfe751894b6a96e071431b39e282" ; + IFC4-PSD:name "Location3Global" ; + IFC4-PSD:nameAlias "Location3 Global"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:p441117ba47724c3e946eac44f07c39da + a IFC4-PSD:PropertyDef ; + rdfs:comment "Local x,y coordinates of the point in which Thickness3 is given" ; + rdfs:label "Location3Local" ; + IFC4-PSD:definition "Local x,y coordinates of the point in which Thickness3 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "441117ba47724c3e946eac44f07c39da" ; + IFC4-PSD:name "Location3Local" ; + IFC4-PSD:nameAlias "Location3 Local"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:pcffbd577c8ae4ae3b9c7f17891e8b4d8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness2 is given" ; + rdfs:label "Location2Global" ; + IFC4-PSD:definition "Global X,Y,Z coordinates of the point in which Thickness2 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "cffbd577c8ae4ae3b9c7f17891e8b4d8" ; + IFC4-PSD:name "Location2Global" ; + IFC4-PSD:nameAlias "Location2 Global"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:Location2Global a rdf:Property ; + rdfs:seeAlso :pcffbd577c8ae4ae3b9c7f17891e8b4d8 ; + rdfs:subPropertyOf IFC4-PSD:Location2Global . + +:Pset_StructuralSurfaceMemberVaryingThickness + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Thickness parameters of a surface member (structural analysis item) with varying thickness, particularly with linearly varying thickness. The thickness is interpolated/ extrapolated from three points. The locations of these points are given either in local x,y coordinates of the surface member or in global X,Y,Z coordinates. Either way, these points are required to be located within the face or at the bounds of the face of the surface member, and they must not be located on a common line. Local and global coordinates shall not be mixed within the same property set instance." ; + rdfs:label "Pset_StructuralSurfaceMemberVaryingThickness" ; + IFC4-PSD:applicableClass IFC4:IfcStructuralSurfaceMemberVarying ; + IFC4-PSD:applicableTypeValue "IfcStructuralSurfaceMemberVarying" ; + IFC4-PSD:definition "Thickness parameters of a surface member (structural analysis item) with varying thickness, particularly with linearly varying thickness. The thickness is interpolated/ extrapolated from three points. The locations of these points are given either in local x,y coordinates of the surface member or in global X,Y,Z coordinates. Either way, these points are required to be located within the face or at the bounds of the face of the surface member, and they must not be located on a common line. Local and global coordinates shall not be mixed within the same property set instance." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_StructuralSurfaceMemberVaryingThickness" ; + IFC4-PSD:propertyDef :p8fa1dfe751894b6a96e071431b39e282 , :p27d5c5a613ac4c96a769fb075fde8178 , :pbd40a90463654cfb9cd64f425f027504 , :p054660e647994621a6bdad29616d79b0 , :p441117ba47724c3e946eac44f07c39da , :pcffbd577c8ae4ae3b9c7f17891e8b4d8 , :p058e4602830c41f4862b1d1c7338a7b0 , :p1f2c5ae6f4a44733969aeffb41892a77 , :pb96886be793e4099b0a28924bfd23b83 . + +:p1f2c5ae6f4a44733969aeffb41892a77 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness1 is given" ; + rdfs:label "Location1Global" ; + IFC4-PSD:definition "Global X,Y,Z coordinates of the point in which Thickness1 is given" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1f2c5ae6f4a44733969aeffb41892a77" ; + IFC4-PSD:name "Location1Global" ; + IFC4-PSD:nameAlias "Location1 Global"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyListValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeCommon.ttl new file mode 100644 index 00000000..e2a9648d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeCommon.ttl @@ -0,0 +1,162 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pe2d76400d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the setpoint and label. For toggle switches, there are two positions, 0 for off and 1 for on. For dimmer switches, the values may indicate the fully-off and full-on positions, where missing integer values in between are interpolated. For selector switches, the range indicates the available positions. \nAn IfcTable may be attached (using IfcMetric and IfcPropertyConstraintRelationship) containing columns of the specified header names and types:\n'Position' (IfcInteger): The discrete setpoint level.\n'Sink' (IfcLabel): The Name of the switched input port (IfcDistributionPort with FlowDirection=SINK).\n'Source' (IfcLabel): The Name of the switched output port (IfcDistributionPort with FlowDirection=SOURCE).\n'Ratio' (IfcNormalizedRatioMeasure): The ratio of power at the setpoint where 0.0 is off and 1.0 is fully on." ; + rdfs:label "SetPoint" ; + IFC4-PSD:definition "Indicates the setpoint and label. For toggle switches, there are two positions, 0 for off and 1 for on. For dimmer switches, the values may indicate the fully-off and full-on positions, where missing integer values in between are interpolated. For selector switches, the range indicates the available positions. \nAn IfcTable may be attached (using IfcMetric and IfcPropertyConstraintRelationship) containing columns of the specified header names and types:\n'Position' (IfcInteger): The discrete setpoint level.\n'Sink' (IfcLabel): The Name of the switched input port (IfcDistributionPort with FlowDirection=SINK).\n'Source' (IfcLabel): The Name of the switched output port (IfcDistributionPort with FlowDirection=SOURCE).\n'Ratio' (IfcNormalizedRatioMeasure): The ratio of power at the setpoint where 0.0 is off and 1.0 is fully on." ; + IFC4-PSD:definitionAlias "設定ポイントと範囲を示す。トグルスイッチは2つのポジションがある:0 は オフ(OFF)、1 は オン(ON)。ディマースイッチは、全閉(fully-off) または 全開(fully-on) の他に、その間で取得可能な値をオプションで示す。選択型スイッチは選択可能なポジションの範囲を示す。"@ja-JP , "입력 포트 이름 (IfcDistributionPort 및 FlowDirection = SINK), Maps SetPoint 위치. 회로가 어떤 경로를 추적할지를 나타낸다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "e2d76400d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "SetPoint" ; + IFC4-PSD:nameAlias "設定ポイント"@ja-JP , "스위치 포트 싱크"@ko-KR , "Set Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcInteger + ] . + +:SetPoint a rdf:Property ; + rdfs:seeAlso :pe2d76400d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPoint . + +:pdb17bf80d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A text inscribed or applied to the switch as a legend to indicate purpose or function." ; + rdfs:label "Legend" ; + IFC4-PSD:definition "A text inscribed or applied to the switch as a legend to indicate purpose or function." ; + IFC4-PSD:definitionAlias "目的または機能を示す凡例など、スイッチに適用されるテキスト。"@ja-JP , "목적이나 기능을 나타내는 범례와 같은 스위치에 적용되는 텍스트입니다."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "db17bf80d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Legend" ; + IFC4-PSD:nameAlias "범례"@ko-KR , "凡例"@ja-JP , "Legend"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pcd623a00d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether a switching device has a key operated lock (=TRUE) or not (= FALSE)." ; + rdfs:label "HasLock" ; + IFC4-PSD:definition "Indication of whether a switching device has a key operated lock (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "스위치 장치가 키 조작으로 잠글 경우 (TRUE), 그렇지 않은 경우 (FALSE)을 나타낸다."@ko-KR , "スイッチ装置がキー操作でロックする場合は(TRUE)、そうでない場合は(FALSE)を表す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cd623a00d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "HasLock" ; + IFC4-PSD:nameAlias "Has Lock"@en , "ロックの可否"@ja-JP , "잠금여부"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pa9065d80d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a9065d80d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SwitchingDeviceTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A switching device is a device designed to make or break the current in one or more electric circuits." ; + rdfs:label "Pset_SwitchingDeviceTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSwitchingDevice ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice" ; + IFC4-PSD:definition "A switching device is a device designed to make or break the current in one or more electric circuits." ; + IFC4-PSD:definitionAlias ""@en , "IEC 441-14-01の定義: \n切換装置は、1つ以上の電気回路で電流を遮断するように設計された装置です。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeCommon" ; + IFC4-PSD:propertyDef :pa277e600d20d11e1800000215ad4efdf , :pcd623a00d20d11e1800000215ad4efdf , :pe2d76400d20d11e1800000215ad4efdf , :pa9065d80d20d11e1800000215ad4efdf , :pb885a680d20d11e1800000215ad4efdf , :pdb17bf80d20d11e1800000215ad4efdf , :pd4894800d20d11e1800000215ad4efdf , :pbde2f100d20d11e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :pa9065d80d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:HasLock a rdf:Property ; + rdfs:seeAlso :pcd623a00d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasLock . + +:pb885a680d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of gangs/buttons on this switch." ; + rdfs:label "NumberOfGangs" ; + IFC4-PSD:definition "Number of gangs/buttons on this switch." ; + IFC4-PSD:definitionAlias "스위치 버튼 수"@ko-KR , ""@en , "スイッチのボタン数"@ja-JP ; + IFC4-PSD:ifdguid "b885a680d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfGangs" ; + IFC4-PSD:nameAlias "Number Of Gangs"@en , "ボタン数"@ja-JP , "버튼 수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:SwitchFunction a rdf:Property ; + rdfs:seeAlso :pbde2f100d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchFunction . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa277e600d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "이 프로젝트 (예 : 'A-1'유형 등) 지정된 참조 ID. 인정 분류 체계의 분류 참조가없는 경우에 적용된다."@ko-KR , "このプロジェクト (例. 'A-1' タイプなど)で指定された参照ID。認められた分類体系の分類参照が存在しない場合に適用される。"@ja-JP ; + IFC4-PSD:ifdguid "a277e600d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "참조"@ko-KR , "参照"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:pbde2f100d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates types of switches which differs in functionality." ; + rdfs:label "SwitchFunction" ; + IFC4-PSD:definition "Indicates types of switches which differs in functionality." ; + IFC4-PSD:definitionAlias ""@en , "機能ごとに異なるスイッチのタイプを示す"@ja-JP , "기능마다 다른 스위치 타입을 나타낸다."@ko-KR ; + IFC4-PSD:ifdguid "bde2f100d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchFunction" ; + IFC4-PSD:nameAlias "Switch Function"@en , "스위치 유형"@ko-KR , "スイッチタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ONOFFSWITCH" , "INTERMEDIATESWITCH" , "DOUBLETHROWSWITCH" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IsIlluminated a rdf:Property ; + rdfs:seeAlso :pd4894800d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsIlluminated . + +:pd4894800d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication of whether there is an illuminated indicator to show that the switch is on (=TRUE) or not (= FALSE)." ; + rdfs:label "IsIlluminated" ; + IFC4-PSD:definition "An indication of whether there is an illuminated indicator to show that the switch is on (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "일루미 네이션 형 (자조 형) 표시기 스위치를 켜거나 (TRUE) 또는 오프 (FALSE)를 나타낸다."@ko-KR , "イルミネーション型(自照型)表示機でスイッチのオン(TRUE)やオフ(FALSE)を示す。"@ja-JP ; + IFC4-PSD:ifdguid "d4894800d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "IsIlluminated" ; + IFC4-PSD:nameAlias "스위치 조명표시기"@ko-KR , "自照型"@ja-JP , "Is Illuminated"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa277e600d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:Legend a rdf:Property ; + rdfs:seeAlso :pdb17bf80d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Legend . + +:NumberOfGangs a rdf:Property ; + rdfs:seeAlso :pb885a680d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfGangs . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeContactor.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeContactor.ttl new file mode 100644 index 00000000..f0fb53bd --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeContactor.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pf7b3f780d20d11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of contactor from which that required may be selected where:\n\nCapacitorSwitching: for switching 3 phase single or multi-step capacitor banks.\nLowCurrent: requires the use of low resistance contacts.\nMagneticLatching: enables the contactor to remain in the on position when the coil is no longer energized.\nMechanicalLatching: requires that the contactor is mechanically retained in the on position.\nModular: are totally enclosed and self contained.\nReversing: has a double set of contactors that are prewired.\nStandard: is a generic device that controls the flow of power in a circuit on or off." ; + rdfs:label "ContactorType" ; + IFC4-PSD:definition "A list of the available types of contactor from which that required may be selected where:\n\nCapacitorSwitching: for switching 3 phase single or multi-step capacitor banks.\nLowCurrent: requires the use of low resistance contacts.\nMagneticLatching: enables the contactor to remain in the on position when the coil is no longer energized.\nMechanicalLatching: requires that the contactor is mechanically retained in the on position.\nModular: are totally enclosed and self contained.\nReversing: has a double set of contactors that are prewired.\nStandard: is a generic device that controls the flow of power in a circuit on or off." ; + IFC4-PSD:definitionAlias ""@en , "以下より選択が必要となる、接触器の一覧リスト:\n\nコンデンサスイッチ:3つのシングルフェーズまたは複数のコンデンサバンクで切り替える。\n低流:低い抵抗接触の使用が必要\nマグネット式:コイルのエネルギーが無くなった時に切替をONポジションにして有効にする\nMechanicalLatching:切替器がONポジションを維持するために機械的な仕組みが必要。\nモジュール式:閉鎖されている自働型切替器。\nリバース:2つの切替器をワイヤーで接続したもの。\n標準:回路で電力潮流をオンまたはオフでコントロールする一般的な装置。"@ja-JP , "다음에서 선택이 필요하다, 접촉기 목록 : 콘덴서 스위치 : 3 개의 단일 위상 이상의 커패시터 뱅크를 전환합니다. 낮은여 : 낮은 저항 접촉 사용해야 마그네틱 : 코일의 에너지가 분실된 때 전환을 ON 위치로하여 사용 MechanicalLatching : 판을 ON 위치를 유지하기 위해 기계적인 구조가 필요합니다. 모듈형 : 폐쇄되어있는 자신 동형 판. 리버스 : 두 판을 와이어로 연결한 것. 표준 : 회로에서 전력 조류를 켜지거나 꺼지지 컨트롤하는 일반적인 장치"@ko-KR ; + IFC4-PSD:ifdguid "f7b3f780d20d11e1800000215ad4efdf" ; + IFC4-PSD:name "ContactorType" ; + IFC4-PSD:nameAlias "접촉기 유형"@ko-KR , "Contactor Type"@en , "接触器タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CAPACITORSWITCHING" , "MODULAR" , "MAGNETICLATCHING" , "REVERSING" , "MECHANICALLATCHING" , "OTHER" , "UNSET" , "LOWCURRENT" , "NOTKNOWN" , "STANDARD" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ContactorType a rdf:Property ; + rdfs:seeAlso :pf7b3f780d20d11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ContactorType . + +:Pset_SwitchingDeviceTypeContactor + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An electrical device used to control the flow of power in a circuit on or off." ; + rdfs:label "Pset_SwitchingDeviceTypeContactor" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/CONTACTOR" ; + IFC4-PSD:definition "An electrical device used to control the flow of power in a circuit on or off." ; + IFC4-PSD:definitionAlias ""@en , "電力機器の起動・停止のために、電力回路を開閉する電力機器。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeContactor" ; + IFC4-PSD:propertyDef :pf7b3f780d20d11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeDimmerSwitch.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeDimmerSwitch.ttl new file mode 100644 index 00000000..d7f82611 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeDimmerSwitch.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:DimmerType a rdf:Property ; + rdfs:seeAlso :p11edd580d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DimmerType . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p11edd580d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of dimmer switch from which that required may be selected." ; + rdfs:label "DimmerType" ; + IFC4-PSD:definition "A list of the available types of dimmer switch from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択が必要となる、ディマースイッチの一覧リスト。"@ja-JP , "선택이 필요한 조광기 스위치 목록"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "11edd580d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "DimmerType" ; + IFC4-PSD:nameAlias "Dimmer Type"@en , "ディマータイプ"@ja-JP , "조광기 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ROCKER" , "SELECTOR" , "TWIST" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SwitchingDeviceTypeDimmerSwitch + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A dimmer switch is a switch that adjusts electrical power through a variable position level action. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SwitchingDeviceTypeDimmerSwitch" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/DIMMERSWITCH" ; + IFC4-PSD:definition "A dimmer switch is a switch that adjusts electrical power through a variable position level action. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "各レベルの動作で電力を調整するディマースイッチ。\n履歴:IFC2x4へ追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeDimmerSwitch" ; + IFC4-PSD:propertyDef :p11edd580d20e11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeEmergencyStop.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeEmergencyStop.ttl new file mode 100644 index 00000000..5e1c424d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeEmergencyStop.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SwitchOperation a rdf:Property ; + rdfs:seeAlso :p25993c00d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchOperation . + +:Pset_SwitchingDeviceTypeEmergencyStop + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An emergency stop device acts to remove as quickly as possible any danger that may have arisen unexpectedly." ; + rdfs:label "Pset_SwitchingDeviceTypeEmergencyStop" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/EMERGENCYSTOP" ; + IFC4-PSD:definition "An emergency stop device acts to remove as quickly as possible any danger that may have arisen unexpectedly." ; + IFC4-PSD:definitionAlias "IEC 826-08-03の定義: \n緊急停止スイッチは予期せずして起こるさまざまな危険を可能な限り迅速に取り除くように動作する装置である。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeEmergencyStop" ; + IFC4-PSD:propertyDef :p25993c00d20e11e1800000215ad4efdf . + +:p25993c00d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates operation of emergency stop switch." ; + rdfs:label "SwitchOperation" ; + IFC4-PSD:definition "Indicates operation of emergency stop switch." ; + IFC4-PSD:definitionAlias "비상 정지 스위치의 조작을 보여준다."@ko-KR , "緊急停止スイッチの操作を示す。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "25993c00d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchOperation" ; + IFC4-PSD:nameAlias "スイッチ操作"@ja-JP , "스위치 조작"@ko-KR , "Switch Operation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MUSHROOM" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeKeypad.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeKeypad.ttl new file mode 100644 index 00000000..48d58810 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeKeypad.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p38137580d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of keypad switch from which that required may be selected." ; + rdfs:label "KeypadType" ; + IFC4-PSD:definition "A list of the available types of keypad switch from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "選択が必要となる、キーパッドスイッチの一覧リスト。"@ja-JP , "선택이 필요한 키패드 스위치 목록"@ko-KR ; + IFC4-PSD:ifdguid "38137580d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "KeypadType" ; + IFC4-PSD:nameAlias "키패드 유형"@ko-KR , "キーパッドタイプ"@ja-JP , "Keypad Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BUTTONS" , "TOUCHSCREEN" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_SwitchingDeviceTypeKeypad + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A keypad is a switch supporting multiple functions. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SwitchingDeviceTypeKeypad" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/KEYPAD" ; + IFC4-PSD:definition "A keypad is a switch supporting multiple functions. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "キーパッドは複数の機能をサポートするスイッチ。\n履歴: IFC4に追加。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeKeypad" ; + IFC4-PSD:propertyDef :p38137580d20e11e1800000215ad4efdf . + +:KeypadType a rdf:Property ; + rdfs:seeAlso :p38137580d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:KeypadType . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeMomentarySwitch.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeMomentarySwitch.ttl new file mode 100644 index 00000000..4b56f8c5 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeMomentarySwitch.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SwitchingDeviceTypeMomentarySwitch + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A momentary switch is a switch that does not hold state. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SwitchingDeviceTypeMomentarySwitch" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/MOMENTARYSWITCH" ; + IFC4-PSD:definition "A momentary switch is a switch that does not hold state. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "瞬時スイッチ(モーメンタリスイッチ)は状態を保持しないタイプのスイッチ。\n履歴: IFC4に追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeMomentarySwitch" ; + IFC4-PSD:propertyDef :p4c577280d20e11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p4c577280d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of momentary switch from which that required may be selected." ; + rdfs:label "MomentaryType" ; + IFC4-PSD:definition "A list of the available types of momentary switch from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "선택이 필요한 자동 복귀 스위치 목록"@ko-KR , "選択が必要となる、自動復帰スイッチの一覧リスト。"@ja-JP ; + IFC4-PSD:ifdguid "4c577280d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "MomentaryType" ; + IFC4-PSD:nameAlias "Momentary Type"@en , "瞬時スイッチタイプ"@ja-JP , "순간스위치 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BUTTON" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MomentaryType a rdf:Property ; + rdfs:seeAlso :p4c577280d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MomentaryType . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypePHistory.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypePHistory.ttl new file mode 100644 index 00000000..db5c1682 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypePHistory.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5b3e2500d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the switch position over time according to Pset_SwitchingDeviceTypeCommon.SetPoint." ; + rdfs:label "SetPoint" ; + IFC4-PSD:definition "Indicates the switch position over time according to Pset_SwitchingDeviceTypeCommon.SetPoint." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5b3e2500d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SetPoint" ; + IFC4-PSD:nameAlias "Set Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:SetPoint a rdf:Property ; + rdfs:seeAlso :p5b3e2500d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPoint . + +:Pset_SwitchingDeviceTypePHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Indicates switch positions or levels over time, such as for energy management or surveillance." ; + rdfs:label "Pset_SwitchingDeviceTypePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcSwitchingDevice ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice" ; + IFC4-PSD:definition "Indicates switch positions or levels over time, such as for energy management or surveillance." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypePHistory" ; + IFC4-PSD:propertyDef :p5b3e2500d20e11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSelectorSwitch.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSelectorSwitch.ttl new file mode 100644 index 00000000..daa7172e --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSelectorSwitch.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_SwitchingDeviceTypeSelectorSwitch + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A selector switch is a switch that adjusts electrical power through a multi-position action. HISTORY: Added in IFC4." ; + rdfs:label "Pset_SwitchingDeviceTypeSelectorSwitch" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/SELECTORSWITCH" ; + IFC4-PSD:definition "A selector switch is a switch that adjusts electrical power through a multi-position action. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias "切替えスイッチは複数のポジションに合わせることで電力を調整するスイッチである。\n履歴: IFC4に追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeSelectorSwitch" ; + IFC4-PSD:propertyDef :p80cb2e80d20e11e1800000215ad4efdf , :p701ab880d20e11e1800000215ad4efdf , :p63966000d20e11e1800000215ad4efdf . + +:p701ab880d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available usages for selector switches from which that required may be selected." ; + rdfs:label "SwitchUsage" ; + IFC4-PSD:definition "A list of the available usages for selector switches from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "전환스위치 사용 목록"@ko-KR , "選択が必要となる、切替えスイッチの使用法の一覧リスト。"@ja-JP ; + IFC4-PSD:ifdguid "701ab880d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchUsage" ; + IFC4-PSD:nameAlias "スイッチの使用法"@ja-JP , "스위치 사용"@ko-KR , "Switch Usage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "EMERGENCY" , "GUARD" , "LIMIT" , "START" , "STOP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SelectorType a rdf:Property ; + rdfs:seeAlso :p63966000d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SelectorType . + +:p80cb2e80d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available activations for selector switches from which that required may be selected." ; + rdfs:label "SwitchActivation" ; + IFC4-PSD:definition "A list of the available activations for selector switches from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "스위치 부팅방식의 목록"@ko-KR , "選択が必要となる、切替えスイッチの起動方式の一覧リスト。"@ja-JP ; + IFC4-PSD:ifdguid "80cb2e80d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchActivation" ; + IFC4-PSD:nameAlias "기동 방식"@ko-KR , "Switch Activation"@en , "起動方式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ACTUATOR" , "HAND" , "FOOT" , "SOUND" , "OTHER" , "TWOHAND" , "UNSET" , "WIRE" , "PROXIMITY" , "NOTKNOWN" + ] . + +:SwitchActivation a rdf:Property ; + rdfs:seeAlso :p80cb2e80d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchActivation . + +:SwitchUsage a rdf:Property ; + rdfs:seeAlso :p701ab880d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchUsage . + +:p63966000d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of selector switch from which that required may be selected." ; + rdfs:label "SelectorType" ; + IFC4-PSD:definition "A list of the available types of selector switch from which that required may be selected." ; + IFC4-PSD:definitionAlias "전환스위치 목록"@ko-KR , "選択が必要となる、切替えスイッチの一覧リスト。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "63966000d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SelectorType" ; + IFC4-PSD:nameAlias "セレクター(スイッチ)タイプ"@ja-JP , "Selector Type"@en , "스위치 타입"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "ROCKER" , "SELECTOR" , "TWIST" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeStarter.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeStarter.ttl new file mode 100644 index 00000000..9bc6abf2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeStarter.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:StarterType a rdf:Property ; + rdfs:seeAlso :p99d3df80d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StarterType . + +:p99d3df80d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of starter from which that required may be selected where:\n\nAutoTransformer: A starter for an induction motor which uses for starting one or more reduced voltages derived from an auto transformer. (IEC 441-14-45)\nManual: A starter in which the force for closing the main contacts is provided exclusively by manual energy. (IEC 441-14-39)\nDirectOnLine: A starter which connects the line voltage across the motor terminals in one step. (IEC 441-14-40)\nFrequency: A starter in which the frequency of the power supply is progressively increased until the normal operation frequency is attained.\nnStep: A starter in which there are (n-1) intermediate accelerating positions between the off and full on positions. (IEC 441-14-41)\nRheostatic: A starter using one or several resistors for obtaining, during starting, stated motor torque characteristics and for limiting the current. (IEC 441-14-425)\nStarDelta: A starter for a 3 phase induction motor such that in the starting position the stator windings are connected in star and in the final running position they are connected in delta. (IEC 441-14-44)" ; + rdfs:label "StarterType" ; + IFC4-PSD:definition "A list of the available types of starter from which that required may be selected where:\n\nAutoTransformer: A starter for an induction motor which uses for starting one or more reduced voltages derived from an auto transformer. (IEC 441-14-45)\nManual: A starter in which the force for closing the main contacts is provided exclusively by manual energy. (IEC 441-14-39)\nDirectOnLine: A starter which connects the line voltage across the motor terminals in one step. (IEC 441-14-40)\nFrequency: A starter in which the frequency of the power supply is progressively increased until the normal operation frequency is attained.\nnStep: A starter in which there are (n-1) intermediate accelerating positions between the off and full on positions. (IEC 441-14-41)\nRheostatic: A starter using one or several resistors for obtaining, during starting, stated motor torque characteristics and for limiting the current. (IEC 441-14-425)\nStarDelta: A starter for a 3 phase induction motor such that in the starting position the stator windings are connected in star and in the final running position they are connected in delta. (IEC 441-14-44)" ; + IFC4-PSD:definitionAlias "以下より選択が必要となる、始動の一覧リスト:\n\n自動: 自動トランスから引き出された1つ以上の低下した電圧でスタートするために使用する誘導電動機用のスターター (IEC 441-14-45)\n手動: メインのコンタクトから強制的に分離されたところにあり、手動によりエネルギーが供給される (IEC 441-14-39)\nじか入れ: ワンステップでモーター・ターミナル間の線間電圧をつなぐスターター (IEC 441-14-40)\n振動:電源の振動数が通常の操作振動まで次第に増大して行くスターター\nnStep: オフ(OFF)とオン(ON)の間で、(n-1)の中間の加速度的な位置であるスターター。 (IEC 441-14-41)\n抵抗:モータのトルク特性の取得、開始、そして安定する間に、電流を制限するために 1 つまたはいくつかの抵抗を利用したスターター (IEC 441-14-425) \nスターデルタ:開始位置では固定小巻線(スターターワインディング)が星状で接続され、その後、最終の実行状態ではデルタ状に接続されるという3相誘導モーター用のスターター。(IEC 441-14-44)"@ja-JP , "아래에서 선택이 필요한 시동 목록 목록 : 자동 : 자동 트랜스에서 가져온 하나 이상의 저하 전압으로 시작하는 데 사용하는 유도 전동기의 스타터 (IEC 441-14-45) 수동 : 기본 연락처에서 강제로 격리된 거리에 있으며, 수동으로 에너지가 공급되는 (IEC 441-14-39) 글자 하나 입력 : 한 번에 모터 터미널 사이의 선간 전압을 연결 스타터 (IEC 441-14-40) 진동 : 전원의 진동수가 정상 작동 진동까지 점차 증대 해가는 스타터 nStep : 꺼짐 (OFF)과 켜짐 (ON) 사이에서 (n-1) 사이의 가속도적인 위치이다 스타터. (IEC 441-14-41) 저항 : 모터의 토크 특성 가져오기 시작, 그리고 안정 사이에 전류를 제한하기 위해 하나 또는 몇 가지 저항을 이용한 스타터 (IEC 441-14-425) 스타 델타 : 시작 위치는 고정 小巻 선 (초보 와인)이 소행성에 연결된 후, 최종 상태에서는 델타 모양으로 연결된다 3 상 유도 모터의 스타터. (IEC 441-14-44)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "99d3df80d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "StarterType" ; + IFC4-PSD:nameAlias "Starter Type"@en , "始動タイプ"@ja-JP , "시작 유형"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "OTHER" , "DIRECTONLINE" , "STARDELTA" , "AUTOTRANSFORMER" , "FREQUENCY" , "NOTKNOWN" , "MANUAL" , "RHEOSTATIC" , "NSTEP" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SwitchingDeviceTypeStarter + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A starter is a switch which in the closed position controls the application of power to an electrical device." ; + rdfs:label "Pset_SwitchingDeviceTypeStarter" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/STARTER" ; + IFC4-PSD:definition "A starter is a switch which in the closed position controls the application of power to an electrical device." ; + IFC4-PSD:definitionAlias "スタータースイッチは閉じた状態の位置から、電気装置に対し電力の利用を制御する装置。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeStarter" ; + IFC4-PSD:propertyDef :p99d3df80d20e11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSwitchDisconnector.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSwitchDisconnector.ttl new file mode 100644 index 00000000..574b99e3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeSwitchDisconnector.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb3752700d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of switch disconnector from which that required may be selected where:\n\nCenterBreak: A disconnector in which both contacts of each pole are movable and engage at a point substantially midway between their supports. (IEC 441-14-08)\nDividedSupport: A disconnector in which the fixed and moving contacts of each pole are not supported by a common base or frame. (IEC 441-14-06)\nDoubleBreak: A disconnector that opens a circuit at two points. (IEC 441-14-09)\nEarthingSwitch: A disconnector in which the fixed and moving contacts of each pole are not supported by a common base or frame. (IEC 441-14-07)\nIsolator: A disconnector which in the open position satisfies isolating requirements. (IEC 441-14-12)" ; + rdfs:label "SwitchDisconnectorType" ; + IFC4-PSD:definition "A list of the available types of switch disconnector from which that required may be selected where:\n\nCenterBreak: A disconnector in which both contacts of each pole are movable and engage at a point substantially midway between their supports. (IEC 441-14-08)\nDividedSupport: A disconnector in which the fixed and moving contacts of each pole are not supported by a common base or frame. (IEC 441-14-06)\nDoubleBreak: A disconnector that opens a circuit at two points. (IEC 441-14-09)\nEarthingSwitch: A disconnector in which the fixed and moving contacts of each pole are not supported by a common base or frame. (IEC 441-14-07)\nIsolator: A disconnector which in the open position satisfies isolating requirements. (IEC 441-14-12)" ; + IFC4-PSD:definitionAlias ""@en , "아래에서 선택이 필요한 스위치 단로 기의 목록 목록 : 센터 브레이크 : 각 국의 두 접점은 가동 식에서 실질적으로 중간 부근을 유지 단로기. (IEC 441-14-08) DividedSupport : 각 국의 고정 측과 ​​이동 측의 접점이 공통 기반 또는 프레임이 지원되지 않는 단로기. (IEC 441-14-06) 두가지 끄고 단로기 : 2 점 회로를 열 단로기 (IEC 441-14-09) 접지 개폐기 : 각 국의 고정 측과 ​​이동 측의 접점이 공통 기반 또는 프레임이 지원되지 않는 단로기. (IEC 441-14-07) 단로기 : 해제 위치 격리 요구 사항을 충족 단로기. (IEC 441-14-12)"@ko-KR , "以下より選択が必要となる、スイッチ断路機の一覧リスト:\n\nセンターブレイク: 各極の両方の接点は可動式で、実質的に中間付近を保持する断路器。 (IEC 441-14-08)\nDividedSupport: 各極の固定側と移動側接点が、共通のベースまたはフレームではサポートされない断路器。(IEC 441-14-06)\n二点切り断路器: 2点で回路を開く断路器 (IEC 441-14-09)\n接地開閉器 : 各極の固定側と移動側接点が、共通のベースまたはフレームではサポートされない断路器。(IEC 441-14-07)\n断路器: 解放位置の分離要件を満たす、断路器。(IEC 441-14-12)"@ja-JP ; + IFC4-PSD:ifdguid "b3752700d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchDisconnectorType" ; + IFC4-PSD:nameAlias "Switch Disconnector Type"@en , "고압차단기 유형"@ko-KR , "高圧遮断機タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CENTERBREAK" , "DIVIDEDSUPPORT" , "DOUBLEBREAK" , "EARTHINGSWITCH" , "ISOLATOR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:LoadDisconnectionType + a rdf:Property ; + rdfs:seeAlso :pc5ef6080d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadDisconnectionType . + +:Pset_SwitchingDeviceTypeSwitchDisconnector + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A switch disconnector is a switch which in the open position satisfies the isolating requirements specified for a disconnector.\n\nHistory: Property 'HasVisualIndication' changed to 'IsIlluminated' to conform with property name for toggle switch" ; + rdfs:label "Pset_SwitchingDeviceTypeSwitchDisconnector" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/SWITCHDISCONNECTOR" ; + IFC4-PSD:definition "A switch disconnector is a switch which in the open position satisfies the isolating requirements specified for a disconnector.\n\nHistory: Property 'HasVisualIndication' changed to 'IsIlluminated' to conform with property name for toggle switch" ; + IFC4-PSD:definitionAlias "IEC 441-14-12の定義:\n高圧開閉器は開閉器のために孤立した状態である必要条件を満たす、開いた位置にあるスイッチ。\n\n履歴:\n属性 'HasVisualIndication' を トグルスイッチのプロパティ名に対応するよう、'IsIlluminated' へ変更。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeSwitchDisconnector" ; + IFC4-PSD:propertyDef :pb3752700d20e11e1800000215ad4efdf , :pc5ef6080d20e11e1800000215ad4efdf . + +:SwitchDisconnectorType + a rdf:Property ; + rdfs:seeAlso :pb3752700d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchDisconnectorType . + +:pc5ef6080d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of load disconnection from which that required may be selected." ; + rdfs:label "LoadDisconnectionType" ; + IFC4-PSD:definition "A list of the available types of load disconnection from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択が必要となる、負荷開閉器タイプの一覧リスト。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c5ef6080d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "LoadDisconnectionType" ; + IFC4-PSD:nameAlias "切断タイプ"@ja-JP , "Load Disconnection Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "OFFLOAD" , "ONLOAD" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeToggleSwitch.ttl b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeToggleSwitch.ttl new file mode 100644 index 00000000..d01ff95c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SwitchingDeviceTypeToggleSwitch.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SwitchUsage a rdf:Property ; + rdfs:seeAlso :peddec400d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchUsage . + +:peddec400d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available usages for toggle switches from which that required may be selected." ; + rdfs:label "SwitchUsage" ; + IFC4-PSD:definition "A list of the available usages for toggle switches from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en , "선택이 필요한 토글 스위치 사용목록"@ko-KR , "選択が必要となる、トグルスイッチの使用法の一覧リスト。"@ja-JP ; + IFC4-PSD:ifdguid "eddec400d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchUsage" ; + IFC4-PSD:nameAlias "Switch Usage"@en , "스위치 사용"@ko-KR , "スイッチの使用法"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "EMERGENCY" , "GUARD" , "LIMIT" , "START" , "STOP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:ToggleSwitchType a rdf:Property ; + rdfs:seeAlso :pd9023080d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ToggleSwitchType . + +:Pset_SwitchingDeviceTypeToggleSwitch + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A toggle switch is a switch that enables or isolates electrical power through a two position on/off action. HISTORY: SetPoint added in IFC4." ; + rdfs:label "Pset_SwitchingDeviceTypeToggleSwitch" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSwitchingDevice/TOGGLESWITCH" ; + IFC4-PSD:definition "A toggle switch is a switch that enables or isolates electrical power through a two position on/off action. HISTORY: SetPoint added in IFC4." ; + IFC4-PSD:definitionAlias "トグルスイッチとはON、OFFの2つのポジションの動作で、電力を接続したり遮断したりするスイッチである。 \n履歴: IFC4 に SetPoint を追加。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SwitchingDeviceTypeToggleSwitch" ; + IFC4-PSD:propertyDef :peddec400d20e11e1800000215ad4efdf , :pfdf6a380d20e11e1800000215ad4efdf , :pd9023080d20e11e1800000215ad4efdf . + +:pd9023080d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available types of toggle switch from which that required may be selected." ; + rdfs:label "ToggleSwitchType" ; + IFC4-PSD:definition "A list of the available types of toggle switch from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択が必要となる、トグルスイッチの一覧リスト。"@ja-JP , ""@en , "선택이 필요한 토글 스위치 목록"@ko-KR ; + IFC4-PSD:ifdguid "d9023080d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "ToggleSwitchType" ; + IFC4-PSD:nameAlias "레버스위치 유형"@ko-KR , "Toggle Switch Type"@en , "レバースイッチタイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SELECTOR" , "CHANGEOVER" , "MANUALPULL" , "PULLCORD" , "ROCKER" , "KEYOPERATED" , "UNSET" , "OTHER" , "NOTKNOWN" , "PUSHBUTTON" , "BREAKGLASS" , "TWIST" + ] . + +:pfdf6a380d20e11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the available activations for toggle switches from which that required may be selected." ; + rdfs:label "SwitchActivation" ; + IFC4-PSD:definition "A list of the available activations for toggle switches from which that required may be selected." ; + IFC4-PSD:definitionAlias "選択が必要となる、トグルスイッチの起動方式の一覧リスト。"@ja-JP , "선택이 필요한 토글 스위치 부팅 방식의 목록"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "fdf6a380d20e11e1800000215ad4efdf" ; + IFC4-PSD:name "SwitchActivation" ; + IFC4-PSD:nameAlias "기동 방식"@ko-KR , "Switch Activation"@en , "起動方式"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "PROXIMITY" , "HAND" , "WIRE" , "ACTUATOR" , "UNSET" , "FOOT" , "NOTKNOWN" , "TWOHAND" , "OTHER" , "SOUND" + ] . + +:SwitchActivation a rdf:Property ; + rdfs:seeAlso :pfdf6a380d20e11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SwitchActivation . diff --git a/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeCommon.ttl b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeCommon.ttl new file mode 100644 index 00000000..a4ff3027 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeCommon.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p1d8dcc00d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "e.g. panels, worksurfaces, storage, etc." ; + rdfs:label "GroupCode" ; + IFC4-PSD:definition "e.g. panels, worksurfaces, storage, etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1d8dcc00d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "GroupCode" ; + IFC4-PSD:nameAlias "Group Code"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p2d0d1500d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal height of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "The nominal height of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2d0d1500d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "Nominal Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalWidth a rdf:Property ; + rdfs:seeAlso :p24b4da00d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidth . + +:p24b4da00d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + rdfs:label "NominalWidth" ; + IFC4-PSD:definition "The nominal width of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "24b4da00d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidth" ; + IFC4-PSD:nameAlias "Nominal Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:GroupCode a rdf:Property ; + rdfs:seeAlso :p1d8dcc00d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GroupCode . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SystemFurnitureElementTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for all systems furniture (I.e. modular furniture) element types (e.g. vertical panels, work surfaces, and storage). HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FurnitureElementCommon" ; + rdfs:label "Pset_SystemFurnitureElementTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcSystemFurnitureElement ; + IFC4-PSD:applicableTypeValue "IfcSystemFurnitureElement" ; + IFC4-PSD:definition "Common properties for all systems furniture (I.e. modular furniture) element types (e.g. vertical panels, work surfaces, and storage). HISTORY: First issued in IFC Release R1.5. Renamed from Pset_FurnitureElementCommon" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SystemFurnitureElementTypeCommon" ; + IFC4-PSD:propertyDef :p16ff5480d20f11e1800000215ad4efdf , :p1d8dcc00d20f11e1800000215ad4efdf , :p24b4da00d20f11e1800000215ad4efdf , :p35655000d20f11e1800000215ad4efdf , :p2d0d1500d20f11e1800000215ad4efdf . + +:Finishing a rdf:Property ; + rdfs:seeAlso :p35655000d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Finishing . + +:p35655000d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The finishing applied to system furniture elements of this type e.g. walnut, fabric." ; + rdfs:label "Finishing" ; + IFC4-PSD:definition "The finishing applied to system furniture elements of this type e.g. walnut, fabric." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "35655000d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "Finishing" ; + IFC4-PSD:nameAlias "Finishing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p16ff5480d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the element is being used in a workstation (= TRUE) or not.(= FALSE)." ; + rdfs:label "IsUsed" ; + IFC4-PSD:definition "Indicates whether the element is being used in a workstation (= TRUE) or not.(= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "16ff5480d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "IsUsed" ; + IFC4-PSD:nameAlias "Is Used"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:IsUsed a rdf:Property ; + rdfs:seeAlso :p16ff5480d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsUsed . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p2d0d1500d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . diff --git a/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypePanel.ttl b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypePanel.ttl new file mode 100644 index 00000000..be26617b --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypePanel.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FurniturePanelType a rdf:Property ; + rdfs:seeAlso :p4a41e380d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FurniturePanelType . + +:p5e85e080d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal thickness of the panel." ; + rdfs:label "NominalThickness" ; + IFC4-PSD:definition "The nominal thickness of the panel." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "5e85e080d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalThickness" ; + IFC4-PSD:nameAlias "Nominal Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p4a41e380d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Available panel types from which that required may be selected." ; + rdfs:label "FurniturePanelType" ; + IFC4-PSD:definition "Available panel types from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "4a41e380d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "FurniturePanelType" ; + IFC4-PSD:nameAlias "Furniture Panel Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "UNSET" , "NOTKNOWN" , "HORZ_SEG" , "GLAZED" , "ENDS" , "OTHER" , "ACOUSTICAL" , "OPEN" , "DOOR" , "MONOLITHIC" , "SCREEN" + ] . + +:p43b36c00d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "indicates whether the panel has an opening (= TRUE) or not (= FALSE)." ; + rdfs:label "HasOpening" ; + IFC4-PSD:definition "indicates whether the panel has an opening (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "43b36c00d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "HasOpening" ; + IFC4-PSD:nameAlias "Has Opening"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_SystemFurnitureElementTypePanel + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of specific properties for vertical panels that assembly workstations.. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Panel" ; + rdfs:label "Pset_SystemFurnitureElementTypePanel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSystemFurnitureElement/PANEL" ; + IFC4-PSD:definition "A set of specific properties for vertical panels that assembly workstations.. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Panel" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SystemFurnitureElementTypePanel" ; + IFC4-PSD:propertyDef :p5e85e080d20f11e1800000215ad4efdf , :p43b36c00d20f11e1800000215ad4efdf , :p4a41e380d20f11e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasOpening a rdf:Property ; + rdfs:seeAlso :p43b36c00d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasOpening . + +:NominalThickness a rdf:Property ; + rdfs:seeAlso :p5e85e080d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalThickness . diff --git a/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeWorkSurface.ttl b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeWorkSurface.ttl new file mode 100644 index 00000000..69401b46 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_SystemFurnitureElementTypeWorkSurface.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalThickness a rdf:Property ; + rdfs:seeAlso :p8a08cb00d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalThickness . + +:SupportType a rdf:Property ; + rdfs:seeAlso :p73fb0a80d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SupportType . + +:ShapeDescription a rdf:Property ; + rdfs:seeAlso :p92610600d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShapeDescription . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_SystemFurnitureElementTypeWorkSurface + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A set of specific properties for work surfaces used in workstations. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Worksurface" ; + rdfs:label "Pset_SystemFurnitureElementTypeWorkSurface" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcSystemFurnitureElement/WORKSURFACE" ; + IFC4-PSD:definition "A set of specific properties for work surfaces used in workstations. HISTORY: First issued in IFC Release R1.5. Renamed from Pset_Worksurface" ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_SystemFurnitureElementTypeWorkSurface" ; + IFC4-PSD:propertyDef :p807f6300d20f11e1800000215ad4efdf , :p6cd3fc80d20f11e1800000215ad4efdf , :p92610600d20f11e1800000215ad4efdf , :p8a08cb00d20f11e1800000215ad4efdf , :p73fb0a80d20f11e1800000215ad4efdf . + +:p6cd3fc80d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The principal purpose for which the work surface is intended to be used e.g. writing/reading, computer, meeting, printer, reference files, etc." ; + rdfs:label "UsePurpose" ; + IFC4-PSD:definition "The principal purpose for which the work surface is intended to be used e.g. writing/reading, computer, meeting, printer, reference files, etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "6cd3fc80d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "UsePurpose" ; + IFC4-PSD:nameAlias "Use Purpose"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:HangingHeight a rdf:Property ; + rdfs:seeAlso :p807f6300d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HangingHeight . + +:p73fb0a80d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Available support types from which that required may be selected." ; + rdfs:label "SupportType" ; + IFC4-PSD:definition "Available support types from which that required may be selected." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "73fb0a80d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "SupportType" ; + IFC4-PSD:nameAlias "Support Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HORZ_SEG" , "ACOUSTICAL" , "ENDS" , "GLAZED" , "NOTKNOWN" , "OPEN" , "UNSET" , "SCREEN" , "MONOLITHIC" , "OTHER" , "DOOR" + ] . + +:p807f6300d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The hanging height of the worksurface." ; + rdfs:label "HangingHeight" ; + IFC4-PSD:definition "The hanging height of the worksurface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "807f6300d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "HangingHeight" ; + IFC4-PSD:nameAlias "Hanging Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8a08cb00d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal thickness of the work surface." ; + rdfs:label "NominalThickness" ; + IFC4-PSD:definition "The nominal thickness of the work surface." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "8a08cb00d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalThickness" ; + IFC4-PSD:nameAlias "Nominal Thickness"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:UsePurpose a rdf:Property ; + rdfs:seeAlso :p6cd3fc80d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UsePurpose . + +:p92610600d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A description of the shape of the work surface e.g. corner square, rectangle, etc." ; + rdfs:label "ShapeDescription" ; + IFC4-PSD:definition "A description of the shape of the work surface e.g. corner square, rectangle, etc." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "92610600d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "ShapeDescription" ; + IFC4-PSD:nameAlias "Shape Description"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . diff --git a/converter/src/main/resources/pset/Pset_TankOccurrence.ttl b/converter/src/main/resources/pset/Pset_TankOccurrence.ttl new file mode 100644 index 00000000..3202c004 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankOccurrence.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pb3c1f200d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the tank is provided with a visual indicator (set TRUE) that shows the water level in the tank. If no visual indicator is provided then value is set FALSE." ; + rdfs:label "HasVisualIndicator" ; + IFC4-PSD:definition "Indication of whether the tank is provided with a visual indicator (set TRUE) that shows the water level in the tank. If no visual indicator is provided then value is set FALSE." ; + IFC4-PSD:definitionAlias "タンクの水位を示す目視型表示器(TRUEに設定)が備えつけられているかどうかの表示。もし目視型表示器が備えつけられていなければ、値はFALSEと設定される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b3c1f200d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "HasVisualIndicator" ; + IFC4-PSD:nameAlias "Has Visual Indicator"@en , "目視型表示器有り"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa0af2200d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the level of element composition where.\n\nCOMPLEX: A set of elementary units aggregated together to fulfill the overall required purpose.\nELEMENT: A single elementary unit that may exist of itself or as an aggregation of partial units..\nPARTIAL: A partial elementary unit." ; + rdfs:label "TankComposition" ; + IFC4-PSD:definition "Defines the level of element composition where.\n\nCOMPLEX: A set of elementary units aggregated together to fulfill the overall required purpose.\nELEMENT: A single elementary unit that may exist of itself or as an aggregation of partial units..\nPARTIAL: A partial elementary unit." ; + IFC4-PSD:definitionAlias "定義 構成要素のレベル                       複合:A 全般的に要求された目的を達成するために集められた基本ユニットのセット                              要素:A それ自身あるいは部分的ユニットの集まりとしてある単一基本ユニット                                部分的:A 部分的な基本単位"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a0af2200d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "TankComposition" ; + IFC4-PSD:nameAlias "Tank Composition"@en , "水槽構成"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COMPLEX" , "ELEMENT" , "PARTIAL" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:pad337a80d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the tank is provided with a ladder (set TRUE) for access to the top. If no ladder is provided then value is set FALSE.\n\nNote: No indication is given of the type of ladder (gooseneck etc.)" ; + rdfs:label "HasLadder" ; + IFC4-PSD:definition "Indication of whether the tank is provided with a ladder (set TRUE) for access to the top. If no ladder is provided then value is set FALSE.\n\nNote: No indication is given of the type of ladder (gooseneck etc.)" ; + IFC4-PSD:definitionAlias "上部を点検するための梯子(TRUEに設定)をタンクに備えているかどうかの表示 もし、梯子が備え付けられていなければ値はFALSEと設定される。  注:表示がない場合は梯子のタイプが与えられる(グースネック他)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ad337a80d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "HasLadder" ; + IFC4-PSD:nameAlias "Has Ladder"@en , "梯子有り"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:TankComposition a rdf:Property ; + rdfs:seeAlso :pa0af2200d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TankComposition . + +:HasLadder a rdf:Property ; + rdfs:seeAlso :pad337a80d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasLadder . + +:HasVisualIndicator a rdf:Property ; + rdfs:seeAlso :pb3c1f200d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasVisualIndicator . + +:Pset_TankOccurrence a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties that relate to a tank. Note that a partial tank may be considered as a compartment within a compartmentalized tank." ; + rdfs:label "Pset_TankOccurrence" ; + IFC4-PSD:applicableClass IFC4:IfcTank ; + IFC4-PSD:applicableTypeValue "IfcTank" ; + IFC4-PSD:definition "Properties that relate to a tank. Note that a partial tank may be considered as a compartment within a compartmentalized tank." ; + IFC4-PSD:definitionAlias "水槽関連のプロパティ  部分的な水槽は仕切られた水槽内の区分として考慮されることに注意"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankOccurrence" ; + IFC4-PSD:propertyDef :pb3c1f200d20f11e1800000215ad4efdf , :pa0af2200d20f11e1800000215ad4efdf , :pad337a80d20f11e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_TankTypeCommon.ttl b/converter/src/main/resources/pset/Pset_TankTypeCommon.ttl new file mode 100644 index 00000000..31150e79 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankTypeCommon.ttl @@ -0,0 +1,283 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NumberOfSections a rdf:Property ; + rdfs:seeAlso :p3cd92900d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSections . + +:NominalLengthOrDiameter + a rdf:Property ; + rdfs:seeAlso :peff55280d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalLengthOrDiameter . + +:pd2c08400d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of access (or cover) to a tank that may be specified.\n\nNote that covers are generally specified for rectangular tanks. For cylindrical tanks, access will normally be via a manhole." ; + rdfs:label "AccessType" ; + IFC4-PSD:definition "Defines the types of access (or cover) to a tank that may be specified.\n\nNote that covers are generally specified for rectangular tanks. For cylindrical tanks, access will normally be via a manhole." ; + IFC4-PSD:definitionAlias "タンクの点検口(又はカバー)のタイプの定義は明示される。カバーは一般的に矩形タンクについて明示されていることに注意。円筒形タンクの点検は通常のマンホールを通る"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d2c08400d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "AccessType" ; + IFC4-PSD:nameAlias "点検タイプ"@ja-JP , "Access Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "LOOSECOVER" , "MANHOLE" , "SECUREDCOVER" , "SECUREDCOVERWITHMANHOLE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_TankTypeCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of a tank type." ; + rdfs:label "Pset_TankTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcTank ; + IFC4-PSD:applicableTypeValue "IfcTank" ; + IFC4-PSD:definition "Common attributes of a tank type." ; + IFC4-PSD:definitionAlias ""@en , "水槽タイプ共通属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankTypeCommon" ; + IFC4-PSD:propertyDef :p069ba980d21011e1800000215ad4efdf , :pf7b4f700d20f11e1800000215ad4efdf , :p0ac7c700d21011e1800000215ad4efdf , :p0f8c7b00d21011e1800000215ad4efdf , :pc0464a80d20f11e1800000215ad4efdf , :pe0760980d20f11e1800000215ad4efdf , :p14512f00d21011e1800000215ad4efdf , :pfedc0500d20f11e1800000215ad4efdf , :pc5a39500d20f11e1800000215ad4efdf , :peff55280d20f11e1800000215ad4efdf , :p3480ee00d21011e1800000215ad4efdf , :pd2c08400d20f11e1800000215ad4efdf , :p1f0bc400d21011e1800000215ad4efdf , :p2cc14980d21011e1800000215ad4efdf , :p3cd92900d21011e1800000215ad4efdf . + +:pfedc0500d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal depth of the tank.\n\nNote: Not required for a horizontal cylindrical tank." ; + rdfs:label "NominalDepth" ; + IFC4-PSD:definition "The nominal depth of the tank.\n\nNote: Not required for a horizontal cylindrical tank." ; + IFC4-PSD:definitionAlias ""@en , "タンクの公称深さ  注:水平円筒形タンクに対しては必須ではない"@ja-JP ; + IFC4-PSD:ifdguid "fedc0500d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDepth" ; + IFC4-PSD:nameAlias "Nominal Depth"@en , "公称深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p14512f00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of pattern (or shape of a tank that may be specified." ; + rdfs:label "PatternType" ; + IFC4-PSD:definition "Defines the types of pattern (or shape of a tank that may be specified." ; + IFC4-PSD:definitionAlias ""@en , "定義 パターンのタイプ(又はタンクの形状)が明示される"@ja-JP ; + IFC4-PSD:ifdguid "14512f00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "PatternType" ; + IFC4-PSD:nameAlias "パターンタイプ"@ja-JP , "Pattern Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HORIZONTALCYLINDER" , "VERTICALCYLINDER" , "RECTANGULAR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SecondCurvatureRadius + a rdf:Property ; + rdfs:seeAlso :p3480ee00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondCurvatureRadius . + +:p3cd92900d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of sections used in the construction of the tank. Default is 1.\n\nNote: All sections assumed to be the same size." ; + rdfs:label "NumberOfSections" ; + IFC4-PSD:definition "Number of sections used in the construction of the tank. Default is 1.\n\nNote: All sections assumed to be the same size." ; + IFC4-PSD:definitionAlias "タンクの製作に使用されているセクションの数 既定は1つ  注:全てのセクションは同サイズと考える"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3cd92900d21011e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfSections" ; + IFC4-PSD:nameAlias "Number Of Sections"@en , "セクションの数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:FirstCurvatureRadius + a rdf:Property ; + rdfs:seeAlso :p2cc14980d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FirstCurvatureRadius . + +:p0f8c7b00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Operating weight of the tank including all of its contents." ; + rdfs:label "OperatingWeight" ; + IFC4-PSD:definition "Operating weight of the tank including all of its contents." ; + IFC4-PSD:definitionAlias "中身全部を含んだタンクの運転重量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0f8c7b00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "OperatingWeight" ; + IFC4-PSD:nameAlias "運転重量"@ja-JP , "Operating Weight"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:pc5a39500d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c5a39500d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:NominalDepth a rdf:Property ; + rdfs:seeAlso :pfedc0500d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDepth . + +:PatternType a rdf:Property ; + rdfs:seeAlso :p14512f00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PatternType . + +:p069ba980d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total nominal or design volumetric capacity of the tank." ; + rdfs:label "NominalCapacity" ; + IFC4-PSD:definition "The total nominal or design volumetric capacity of the tank." ; + IFC4-PSD:definitionAlias ""@en , "タンクの総公称又は設計容量"@ja-JP ; + IFC4-PSD:ifdguid "069ba980d21011e1800000215ad4efdf" ; + IFC4-PSD:name "NominalCapacity" ; + IFC4-PSD:nameAlias "Nominal Capacity"@en , "公称容量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:pe0760980d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the general material category intended to be stored." ; + rdfs:label "StorageType" ; + IFC4-PSD:definition "Defines the general material category intended to be stored." ; + IFC4-PSD:definitionAlias ""@en , "一般的な材料種別が格納される"@ja-JP ; + IFC4-PSD:ifdguid "e0760980d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "StorageType" ; + IFC4-PSD:nameAlias "Storage Type"@en , "貯蔵タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "RAINWATER" , "NOTKNOWN" , "OTHER" , "POTABLEWATER" , "FUEL" , "UNSET" , "ICE" , "OIL" , "WATER" , "WASTEWATER" + ] . + +:StorageType a rdf:Property ; + rdfs:seeAlso :pe0760980d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StorageType . + +:pc0464a80d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c0464a80d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p3480ee00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "SecondCurvatureRadius should be defined as the top or right side radius of curvature value." ; + rdfs:label "SecondCurvatureRadius" ; + IFC4-PSD:definition "SecondCurvatureRadius should be defined as the top or right side radius of curvature value." ; + IFC4-PSD:definitionAlias ""@en , "2番目の曲率半径は、曲率の値の先頭又は右側の半径として定義する必要があります。"@ja-JP ; + IFC4-PSD:ifdguid "3480ee00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "SecondCurvatureRadius" ; + IFC4-PSD:nameAlias "2番目の曲率半径"@ja-JP , "Second Curvature Radius"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p1f0bc400d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." ; + rdfs:label "EndShapeType" ; + IFC4-PSD:definition "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." ; + IFC4-PSD:definitionAlias "定義 予めタンクに使用することができる端形状の種類を示す。これらの列挙された値を読み取るための規則は、垂直円筒に関しては、最初の値はベースです、そして、2番目は先端です。水平円筒に関しては、値は左から右に読む必要があります。球形タンクの場合、値はUNSETを使用する必要があります。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1f0bc400d21011e1800000215ad4efdf" ; + IFC4-PSD:name "EndShapeType" ; + IFC4-PSD:nameAlias "End Shape Type"@en , "末端形状タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONCAVECONVEX" , "FLATCONVEX" , "CONVEXCONVEX" , "CONCAVEFLAT" , "FLATFLAT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:OperatingWeight a rdf:Property ; + rdfs:seeAlso :p0f8c7b00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OperatingWeight . + +:EffectiveCapacity a rdf:Property ; + rdfs:seeAlso :p0ac7c700d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EffectiveCapacity . + +:NominalWidthOrDiameter + a rdf:Property ; + rdfs:seeAlso :pf7b4f700d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalWidthOrDiameter . + +:EndShapeType a rdf:Property ; + rdfs:seeAlso :p1f0bc400d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EndShapeType . + +:p0ac7c700d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The total effective or actual volumetric capacity of the tank." ; + rdfs:label "EffectiveCapacity" ; + IFC4-PSD:definition "The total effective or actual volumetric capacity of the tank." ; + IFC4-PSD:definitionAlias "タンクの総有効又は実容量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0ac7c700d21011e1800000215ad4efdf" ; + IFC4-PSD:name "EffectiveCapacity" ; + IFC4-PSD:nameAlias "Effective Capacity"@en , "有効容量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:NominalCapacity a rdf:Property ; + rdfs:seeAlso :p069ba980d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalCapacity . + +:pf7b4f700d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal width or, in the case of a horizontal cylindrical tank, the nominal diameter of the tank.\n\nNote: Not required for a vertical cylindrical tank." ; + rdfs:label "NominalWidthOrDiameter" ; + IFC4-PSD:definition "The nominal width or, in the case of a horizontal cylindrical tank, the nominal diameter of the tank.\n\nNote: Not required for a vertical cylindrical tank." ; + IFC4-PSD:definitionAlias ""@en , "公称幅又は水平円筒形タンクの場合、タンクの公称直径     注:垂直円筒形タンクに対しては必須ではない"@ja-JP ; + IFC4-PSD:ifdguid "f7b4f700d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalWidthOrDiameter" ; + IFC4-PSD:nameAlias "Nominal Width Or Diameter"@en , "公称幅又は直径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:AccessType a rdf:Property ; + rdfs:seeAlso :pd2c08400d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AccessType . + +:Reference a rdf:Property ; + rdfs:seeAlso :pc0464a80d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:peff55280d20f11e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The nominal length or, in the case of a vertical cylindrical tank, the nominal diameter of the tank." ; + rdfs:label "NominalLengthOrDiameter" ; + IFC4-PSD:definition "The nominal length or, in the case of a vertical cylindrical tank, the nominal diameter of the tank." ; + IFC4-PSD:definitionAlias "公称長さ又は垂直円筒形タンクの場合、タンクの公称直径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "eff55280d20f11e1800000215ad4efdf" ; + IFC4-PSD:name "NominalLengthOrDiameter" ; + IFC4-PSD:nameAlias "Nominal Length Or Diameter"@en , "公称長さ又は直径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p2cc14980d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "FirstCurvatureRadius should be defined as the base or left side radius of curvature value." ; + rdfs:label "FirstCurvatureRadius" ; + IFC4-PSD:definition "FirstCurvatureRadius should be defined as the base or left side radius of curvature value." ; + IFC4-PSD:definitionAlias "最初の曲率半径は、基本又は曲率の値の左側の半径として定義する必要があります。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2cc14980d21011e1800000215ad4efdf" ; + IFC4-PSD:name "FirstCurvatureRadius" ; + IFC4-PSD:nameAlias "最初の曲率半径"@ja-JP , "First Curvature Radius"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pc5a39500d20f11e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . diff --git a/converter/src/main/resources/pset/Pset_TankTypeExpansion.ttl b/converter/src/main/resources/pset/Pset_TankTypeExpansion.ttl new file mode 100644 index 00000000..b36c84bf --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankTypeExpansion.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:ReliefValveSetting a rdf:Property ; + rdfs:seeAlso :p5f6b4200d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReliefValveSetting . + +:p5a0df780d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure that is automatically maintained in the tank." ; + rdfs:label "PressureRegulatorSetting" ; + IFC4-PSD:definition "Pressure that is automatically maintained in the tank." ; + IFC4-PSD:definitionAlias "タンク内で自動的に維持される圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5a0df780d21011e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRegulatorSetting" ; + IFC4-PSD:nameAlias "圧力調整設定"@ja-JP , "Pressure Regulator Setting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:Pset_TankTypeExpansion + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of an expansion type tank." ; + rdfs:label "Pset_TankTypeExpansion" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTank/EXPANSION" ; + IFC4-PSD:definition "Common attributes of an expansion type tank." ; + IFC4-PSD:definitionAlias "膨張タンクの共通属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankTypeExpansion" ; + IFC4-PSD:propertyDef :p5f6b4200d21011e1800000215ad4efdf , :p48c4eb00d21011e1800000215ad4efdf , :p5a0df780d21011e1800000215ad4efdf . + +:p5f6b4200d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure at which the relief valve activates." ; + rdfs:label "ReliefValveSetting" ; + IFC4-PSD:definition "Pressure at which the relief valve activates." ; + IFC4-PSD:definitionAlias ""@en , "安全弁が作動する圧力"@ja-JP ; + IFC4-PSD:ifdguid "5f6b4200d21011e1800000215ad4efdf" ; + IFC4-PSD:name "ReliefValveSetting" ; + IFC4-PSD:nameAlias "Relief Valve Setting"@en , "安全弁設定"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p48c4eb00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or design operating pressure of the tank." ; + rdfs:label "ChargePressure" ; + IFC4-PSD:definition "Nominal or design operating pressure of the tank." ; + IFC4-PSD:definitionAlias "タンクの公称又は設計運転圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "48c4eb00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "ChargePressure" ; + IFC4-PSD:nameAlias "Charge Pressure"@en , "加圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:PressureRegulatorSetting + a rdf:Property ; + rdfs:seeAlso :p5a0df780d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRegulatorSetting . + +:ChargePressure a rdf:Property ; + rdfs:seeAlso :p48c4eb00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChargePressure . diff --git a/converter/src/main/resources/pset/Pset_TankTypePreformed.ttl b/converter/src/main/resources/pset/Pset_TankTypePreformed.ttl new file mode 100644 index 00000000..d44ba738 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankTypePreformed.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FirstCurvatureRadius + a rdf:Property ; + rdfs:seeAlso :p89246900d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FirstCurvatureRadius . + +:EndShapeType a rdf:Property ; + rdfs:seeAlso :p7873f300d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:EndShapeType . + +:PatternType a rdf:Property ; + rdfs:seeAlso :p6b570400d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PatternType . + +:Pset_TankTypePreformed + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fixed vessel manufactured as a single unit with one or more compartments for storing a liquid.\n\nPset renamed from Pset_TankTypePreformedTank to Pset_TankTypePreformed in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_TankTypePreformed" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTank/PREFORMED" ; + IFC4-PSD:definition "Fixed vessel manufactured as a single unit with one or more compartments for storing a liquid.\n\nPset renamed from Pset_TankTypePreformedTank to Pset_TankTypePreformed in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias "液体を貯蔵するために一つ以上の区画を持ち単体として製造された固定された容器                           PsetはIFC2x2 Pset AddendumでPset_TankTypePreformedTankからPsetまで_をTankTypePreformedに改名しました。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankTypePreformed" ; + IFC4-PSD:propertyDef :p7873f300d21011e1800000215ad4efdf , :p92add100d21011e1800000215ad4efdf , :p6b570400d21011e1800000215ad4efdf , :p89246900d21011e1800000215ad4efdf . + +:p6b570400d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of pattern (or shape of a tank that may be specified." ; + rdfs:label "PatternType" ; + IFC4-PSD:definition "Defines the types of pattern (or shape of a tank that may be specified." ; + IFC4-PSD:definitionAlias "定義 パターンのタイプ(又はタンクの形状)が明示される。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6b570400d21011e1800000215ad4efdf" ; + IFC4-PSD:name "PatternType" ; + IFC4-PSD:nameAlias "パターンタイプ"@ja-JP , "Pattern Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "HORIZONTALCYLINDER" , "VERTICALCYLINDER" , "RECTANGULAR" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p89246900d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "FirstCurvatureRadius should be defined as the base or left side radius of curvature value." ; + rdfs:label "FirstCurvatureRadius" ; + IFC4-PSD:definition "FirstCurvatureRadius should be defined as the base or left side radius of curvature value." ; + IFC4-PSD:definitionAlias ""@en , "最初の曲率半径は、基本又は曲率の値の左側の半径として定義する必要があります。"@ja-JP ; + IFC4-PSD:ifdguid "89246900d21011e1800000215ad4efdf" ; + IFC4-PSD:name "FirstCurvatureRadius" ; + IFC4-PSD:nameAlias "First Curvature Radius"@en , "最初の曲率半径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p7873f300d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." ; + rdfs:label "EndShapeType" ; + IFC4-PSD:definition "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." ; + IFC4-PSD:definitionAlias ""@en , "定義 予めタンクに使用することができる端形状の種類を示す。これらの列挙された値を読み取るための規則は、垂直円筒に関しては、最初の値はベースです、そして、2番目は先端です。水平円筒に関しては、値は左から右に読む必要があります。球形タンクの場合、値はUNSETを使用する必要があります。"@ja-JP ; + IFC4-PSD:ifdguid "7873f300d21011e1800000215ad4efdf" ; + IFC4-PSD:name "EndShapeType" ; + IFC4-PSD:nameAlias "末端形状タイプ"@ja-JP , "End Shape Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CONCAVECONVEX" , "FLATCONVEX" , "CONVEXCONVEX" , "CONCAVEFLAT" , "FLATFLAT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p92add100d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "SecondCurvatureRadius should be defined as the top or right side radius of curvature value." ; + rdfs:label "SecondCurvatureRadius" ; + IFC4-PSD:definition "SecondCurvatureRadius should be defined as the top or right side radius of curvature value." ; + IFC4-PSD:definitionAlias ""@en , "2番目の曲率半径は、曲率の値の先頭又は右側の半径として定義する必要があります。"@ja-JP ; + IFC4-PSD:ifdguid "92add100d21011e1800000215ad4efdf" ; + IFC4-PSD:name "SecondCurvatureRadius" ; + IFC4-PSD:nameAlias "2番目の曲率半径"@ja-JP , "Second Curvature Radius"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SecondCurvatureRadius + a rdf:Property ; + rdfs:seeAlso :p92add100d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondCurvatureRadius . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_TankTypePressureVessel.ttl b/converter/src/main/resources/pset/Pset_TankTypePressureVessel.ttl new file mode 100644 index 00000000..a6f481c6 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankTypePressureVessel.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pa9ecbe80d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure that is automatically maintained in the tank." ; + rdfs:label "PressureRegulatorSetting" ; + IFC4-PSD:definition "Pressure that is automatically maintained in the tank." ; + IFC4-PSD:definitionAlias ""@en , "タンク内で自動的に維持される圧力"@ja-JP ; + IFC4-PSD:ifdguid "a9ecbe80d21011e1800000215ad4efdf" ; + IFC4-PSD:name "PressureRegulatorSetting" ; + IFC4-PSD:nameAlias "圧力調整設定"@ja-JP , "Pressure Regulator Setting"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ReliefValveSetting a rdf:Property ; + rdfs:seeAlso :pb07b3600d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReliefValveSetting . + +:PressureRegulatorSetting + a rdf:Property ; + rdfs:seeAlso :pa9ecbe80d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PressureRegulatorSetting . + +:Pset_TankTypePressureVessel + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common attributes of a pressure vessel." ; + rdfs:label "Pset_TankTypePressureVessel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTank/PRESSUREVESSEL" ; + IFC4-PSD:definition "Common attributes of a pressure vessel." ; + IFC4-PSD:definitionAlias "圧力容器の共通属性"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankTypePressureVessel" ; + IFC4-PSD:propertyDef :pa2c5b080d21011e1800000215ad4efdf , :pa9ecbe80d21011e1800000215ad4efdf , :pb07b3600d21011e1800000215ad4efdf . + +:pa2c5b080d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or design operating pressure of the tank." ; + rdfs:label "ChargePressure" ; + IFC4-PSD:definition "Nominal or design operating pressure of the tank." ; + IFC4-PSD:definitionAlias ""@en , "タンクの公称又は設計運転圧力"@ja-JP ; + IFC4-PSD:ifdguid "a2c5b080d21011e1800000215ad4efdf" ; + IFC4-PSD:name "ChargePressure" ; + IFC4-PSD:nameAlias "Charge Pressure"@en , "加圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:pb07b3600d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Pressure at which the relief valve activates." ; + rdfs:label "ReliefValveSetting" ; + IFC4-PSD:definition "Pressure at which the relief valve activates." ; + IFC4-PSD:definitionAlias "安全弁が作動する圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b07b3600d21011e1800000215ad4efdf" ; + IFC4-PSD:name "ReliefValveSetting" ; + IFC4-PSD:nameAlias "Relief Valve Setting"@en , "安全弁設定"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:ChargePressure a rdf:Property ; + rdfs:seeAlso :pa2c5b080d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ChargePressure . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_TankTypeSectional.ttl b/converter/src/main/resources/pset/Pset_TankTypeSectional.ttl new file mode 100644 index 00000000..ad0f9b93 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TankTypeSectional.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SectionLength a rdf:Property ; + rdfs:seeAlso :pc4269c80d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SectionLength . + +:NumberOfSections a rdf:Property ; + rdfs:seeAlso :pbd982500d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfSections . + +:pc4269c80d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length of a section used in the construction of the tank." ; + rdfs:label "SectionLength" ; + IFC4-PSD:definition "The length of a section used in the construction of the tank." ; + IFC4-PSD:definitionAlias "タンクの製作に使用されているセクションの長さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c4269c80d21011e1800000215ad4efdf" ; + IFC4-PSD:name "SectionLength" ; + IFC4-PSD:nameAlias "Section Length"@en , "セクションの長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pbd982500d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of sections used in the construction of the tank\n\nNote: All sections assumed to be the same size." ; + rdfs:label "NumberOfSections" ; + IFC4-PSD:definition "Number of sections used in the construction of the tank\n\nNote: All sections assumed to be the same size." ; + IFC4-PSD:definitionAlias "タンクの製作に使用されているセクションの数\n注:全てのセクションは同サイズと考える"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "bd982500d21011e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfSections" ; + IFC4-PSD:nameAlias "Number Of Sections"@en , "セクションの数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:Pset_TankTypeSectional + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Fixed vessel constructed from sectional parts with one or more compartments for storing a liquid.\n\nNote (1): All sectional construction tanks are considered to be rectangular by default.\nNote (2): Generally, it is not expected that sectional construction tanks will be used for the purposes of gas storage.\n\nPset renamed from Pset_TankTypeSectionalTank to Pset_TankTypeSectional in IFC2x2 Pset Addendum." ; + rdfs:label "Pset_TankTypeSectional" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTank/SECTIONAL" ; + IFC4-PSD:definition "Fixed vessel constructed from sectional parts with one or more compartments for storing a liquid.\n\nNote (1): All sectional construction tanks are considered to be rectangular by default.\nNote (2): Generally, it is not expected that sectional construction tanks will be used for the purposes of gas storage.\n\nPset renamed from Pset_TankTypeSectionalTank to Pset_TankTypeSectional in IFC2x2 Pset Addendum." ; + IFC4-PSD:definitionAlias ""@en , "液体を貯蔵するために一つ以上の区画を持ち組立部品から造られている固定された容器  注(1):全ての組立式タンクは矩形をデフォルトと考えられている。注(2):一般的に、組立式タンクは気体を貯蔵する目的のために使用されることは考えていない。                                      PsetはIFC2x2 Pset AddendumでPset_TankTypeSectionalTankからPsetまで_をTankTypeSectionalに改名しました。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TankTypeSectional" ; + IFC4-PSD:propertyDef :pc4269c80d21011e1800000215ad4efdf , :pbd982500d21011e1800000215ad4efdf , :pcd176e00d21011e1800000215ad4efdf . + +:pcd176e00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The width of a section used in the construction of the tank." ; + rdfs:label "SectionWidth" ; + IFC4-PSD:definition "The width of a section used in the construction of the tank." ; + IFC4-PSD:definitionAlias "タンクの製作に使用されているセクションの幅"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cd176e00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "SectionWidth" ; + IFC4-PSD:nameAlias "セクションの幅"@ja-JP , "Section Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:SectionWidth a rdf:Property ; + rdfs:seeAlso :pcd176e00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SectionWidth . diff --git a/converter/src/main/resources/pset/Pset_ThermalLoadAggregate.ttl b/converter/src/main/resources/pset/Pset_ThermalLoadAggregate.ttl new file mode 100644 index 00000000..10102978 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ThermalLoadAggregate.ttl @@ -0,0 +1,146 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p064fde00d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Load safety factor." ; + rdfs:label "LoadSafetyFactor" ; + IFC4-PSD:definition "Load safety factor." ; + IFC4-PSD:definitionAlias "空調負荷計算用の安全率(割増係数)。"@ja-JP , ""@en , "공조 부하 계산을위한 안전율 (할증 계수)."@ko-KR ; + IFC4-PSD:ifdguid "064fde00d21111e1800000215ad4efdf" ; + IFC4-PSD:name "LoadSafetyFactor" ; + IFC4-PSD:nameAlias "負荷の安全率"@ja-JP , "Load Safety Factor"@en , "부하의 안전율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pf9cb8580d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity factor for Winter infiltration." ; + rdfs:label "InfiltrationDiversityWinter" ; + IFC4-PSD:definition "Diversity factor for Winter infiltration." ; + IFC4-PSD:definitionAlias "冬期すき間換気率。"@ja-JP , ""@en , "겨울철 틈새 환기 비율."@ko-KR ; + IFC4-PSD:ifdguid "f9cb8580d21011e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationDiversityWinter" ; + IFC4-PSD:nameAlias "冬期すき間換気率"@ja-JP , "Infiltration Diversity Winter"@en , "겨울철 틈새 환기비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:InfiltrationDiversityWinter + a rdf:Property ; + rdfs:seeAlso :pf9cb8580d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationDiversityWinter . + +:ApplianceDiversity a rdf:Property ; + rdfs:seeAlso :p0059fd00d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ApplianceDiversity . + +:pdf91a780d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The peak total cooling load for the building, zone or space." ; + rdfs:label "TotalCoolingLoad" ; + IFC4-PSD:definition "The peak total cooling load for the building, zone or space." ; + IFC4-PSD:definitionAlias ""@en , "건물 영역 방 피크 냉방 부하."@ko-KR , "建物、ゾーン、部屋のピーク時の冷房負荷。"@ja-JP ; + IFC4-PSD:ifdguid "df91a780d21011e1800000215ad4efdf" ; + IFC4-PSD:name "TotalCoolingLoad" ; + IFC4-PSD:nameAlias "냉방부하"@ko-KR , "冷房負荷"@ja-JP , "Total Cooling Load"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:TotalHeatingLoad a rdf:Property ; + rdfs:seeAlso :pe4eef200d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalHeatingLoad . + +:LightingDiversity a rdf:Property ; + rdfs:seeAlso :peae4d300d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightingDiversity . + +:peae4d300d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Lighting diversity." ; + rdfs:label "LightingDiversity" ; + IFC4-PSD:definition "Lighting diversity." ; + IFC4-PSD:definitionAlias "조명 부하 계수."@ko-KR , ""@en , "照明負荷係数。"@ja-JP ; + IFC4-PSD:ifdguid "eae4d300d21011e1800000215ad4efdf" ; + IFC4-PSD:name "LightingDiversity" ; + IFC4-PSD:nameAlias "照明負荷係数"@ja-JP , "Lighting Diversity"@en , "조명 부하계수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:TotalCoolingLoad a rdf:Property ; + rdfs:seeAlso :pdf91a780d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TotalCoolingLoad . + +:Pset_ThermalLoadAggregate + a IFC4-PSD:PropertySetDef ; + rdfs:comment "The aggregated thermal loads experienced by one or many spaces, zones, or buildings. This aggregate thermal load information is typically addressed by a system or plant. HISTORY: New property set in IFC Release 1.0 (Pset_AggregateLoadInformation); renamed Pset_ThermalLoadAggregate in IFC2x2." ; + rdfs:label "Pset_ThermalLoadAggregate" ; + IFC4-PSD:applicableClass IFC4:IfcSpatialElement ; + IFC4-PSD:applicableTypeValue "IfcSpatialElement" ; + IFC4-PSD:definition "The aggregated thermal loads experienced by one or many spaces, zones, or buildings. This aggregate thermal load information is typically addressed by a system or plant. HISTORY: New property set in IFC Release 1.0 (Pset_AggregateLoadInformation); renamed Pset_ThermalLoadAggregate in IFC2x2." ; + IFC4-PSD:definitionAlias "戸別或いは複数の部屋、ゾーン、建物の熱負荷の集計。この集計した熱負荷情報は一般にシステムあるいはプラントによって扱われる。履歴:IFC1.0の新PropertySet(Pset_AggregateLoadInformation)、:IFC2x2に新たにPset_ThermalLoadAggregateと定義された。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ThermalLoadAggregate" ; + IFC4-PSD:propertyDef :pf9cb8580d21011e1800000215ad4efdf , :pf33d0e00d21011e1800000215ad4efdf , :p0059fd00d21111e1800000215ad4efdf , :peae4d300d21011e1800000215ad4efdf , :p064fde00d21111e1800000215ad4efdf , :pe4eef200d21011e1800000215ad4efdf , :pdf91a780d21011e1800000215ad4efdf . + +:LoadSafetyFactor a rdf:Property ; + rdfs:seeAlso :p064fde00d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadSafetyFactor . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0059fd00d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity of appliance load." ; + rdfs:label "ApplianceDiversity" ; + IFC4-PSD:definition "Diversity of appliance load." ; + IFC4-PSD:definitionAlias ""@en , "機器の負荷率。"@ja-JP , "기기의 부하율."@ko-KR ; + IFC4-PSD:ifdguid "0059fd00d21111e1800000215ad4efdf" ; + IFC4-PSD:name "ApplianceDiversity" ; + IFC4-PSD:nameAlias "Appliance Diversity"@en , "機器の負荷率"@ja-JP , "기기의 부하율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pf33d0e00d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity factor for Summer infiltration." ; + rdfs:label "InfiltrationDiversitySummer" ; + IFC4-PSD:definition "Diversity factor for Summer infiltration." ; + IFC4-PSD:definitionAlias ""@en , "夏期すき間換気率。"@ja-JP , "여름 틈새 환기 비율."@ko-KR ; + IFC4-PSD:ifdguid "f33d0e00d21011e1800000215ad4efdf" ; + IFC4-PSD:name "InfiltrationDiversitySummer" ; + IFC4-PSD:nameAlias "Infiltration Diversity Summer"@en , "夏期すき間換気率"@ja-JP , "여름 틈새 환기 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:pe4eef200d21011e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The peak total heating load for the building, zone or space." ; + rdfs:label "TotalHeatingLoad" ; + IFC4-PSD:definition "The peak total heating load for the building, zone or space." ; + IFC4-PSD:definitionAlias "建物、ゾーン、部屋のピーク時の暖房負荷。"@ja-JP , ""@en , "건물 영역 방 최대 난방 부하."@ko-KR ; + IFC4-PSD:ifdguid "e4eef200d21011e1800000215ad4efdf" ; + IFC4-PSD:name "TotalHeatingLoad" ; + IFC4-PSD:nameAlias "Total Heating Load"@en , "난방 부하"@ko-KR , "暖房負荷"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:InfiltrationDiversitySummer + a rdf:Property ; + rdfs:seeAlso :pf33d0e00d21011e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InfiltrationDiversitySummer . diff --git a/converter/src/main/resources/pset/Pset_ThermalLoadDesignCriteria.ttl b/converter/src/main/resources/pset/Pset_ThermalLoadDesignCriteria.ttl new file mode 100644 index 00000000..2415f822 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ThermalLoadDesignCriteria.ttl @@ -0,0 +1,131 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:LightingLoadIntensity + a rdf:Property ; + rdfs:seeAlso :p313a3200d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightingLoadIntensity . + +:p24b5d980d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Average power use intensity of appliances and other non-HVAC equipment in the space per unit area.(PowerMeasure/IfcAreaMeasure)." ; + rdfs:label "ReceptacleLoadIntensity" ; + IFC4-PSD:definition "Average power use intensity of appliances and other non-HVAC equipment in the space per unit area.(PowerMeasure/IfcAreaMeasure)." ; + IFC4-PSD:definitionAlias "단위 면적 당 사무 기기 등 비 공조 설비의 평균 전력 소비. (PowerMeasure / IfcAreaMeasure)"@ko-KR , ""@en , "単位面積あたり事務機器など非空調設備の平均電力消費量。\n(PowerMeasure/IfcAreaMeasure)"@ja-JP ; + IFC4-PSD:ifdguid "24b5d980d21111e1800000215ad4efdf" ; + IFC4-PSD:name "ReceptacleLoadIntensity" ; + IFC4-PSD:nameAlias "단위면적 당 사무기기 평균 전력 소비량"@ko-KR , "単位面積あたり事務機器の平均電力消費量"@ja-JP , "Receptacle Load Intensity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p2aabba80d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Percent of sensible load to radiant heat." ; + rdfs:label "AppliancePercentLoadToRadiant" ; + IFC4-PSD:definition "Percent of sensible load to radiant heat." ; + IFC4-PSD:definitionAlias "복사열 중 현열 분 부하의 비율."@ko-KR , ""@en , "放射熱のうち顕熱分負荷の割合。"@ja-JP ; + IFC4-PSD:ifdguid "2aabba80d21111e1800000215ad4efdf" ; + IFC4-PSD:name "AppliancePercentLoadToRadiant" ; + IFC4-PSD:nameAlias "복사열 중 현열 분의 비율"@ko-KR , "Appliance Percent Load To Radiant"@en , "放射熱のうち顕熱分の割合"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p18ca1780d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Diversity factor that may be applied to the number of people in the space." ; + rdfs:label "OccupancyDiversity" ; + IFC4-PSD:definition "Diversity factor that may be applied to the number of people in the space." ; + IFC4-PSD:definitionAlias ""@en , "室内居住者の在室率。"@ja-JP , "실내 거주자의 재실 비율."@ko-KR ; + IFC4-PSD:ifdguid "18ca1780d21111e1800000215ad4efdf" ; + IFC4-PSD:name "OccupancyDiversity" ; + IFC4-PSD:nameAlias "居住者の在室率"@ja-JP , "Occupancy Diversity"@en , "거주자의 재실 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:ReceptacleLoadIntensity + a rdf:Property ; + rdfs:seeAlso :p24b5d980d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReceptacleLoadIntensity . + +:OutsideAirPerPerson a rdf:Property ; + rdfs:seeAlso :p1ebff880d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutsideAirPerPerson . + +:AppliancePercentLoadToRadiant + a rdf:Property ; + rdfs:seeAlso :p2aabba80d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AppliancePercentLoadToRadiant . + +:LightingPercentLoadToReturnAir + a rdf:Property ; + rdfs:seeAlso :p37c8a980d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LightingPercentLoadToReturnAir . + +:OccupancyDiversity a rdf:Property ; + rdfs:seeAlso :p18ca1780d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OccupancyDiversity . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p1ebff880d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Design quantity of outside air to be provided per person in the space." ; + rdfs:label "OutsideAirPerPerson" ; + IFC4-PSD:definition "Design quantity of outside air to be provided per person in the space." ; + IFC4-PSD:definitionAlias "1人あたりの外気量の設計値。"@ja-JP , ""@en , "당 외기 량의 설계 값."@ko-KR ; + IFC4-PSD:ifdguid "1ebff880d21111e1800000215ad4efdf" ; + IFC4-PSD:name "OutsideAirPerPerson" ; + IFC4-PSD:nameAlias "1人あたりの外気量"@ja-JP , "Outside Air Per Person"@en , "당 외기량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Pset_ThermalLoadDesignCriteria + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Building thermal load design data that are used for calculating thermal loads in a space or building. HISTORY: New property set in IFC Release 1.0 (Pset_LoadDesignCriteria); renamed Pset_ThermalLoadDesignCriteria in IFC2x2." ; + rdfs:label "Pset_ThermalLoadDesignCriteria" ; + IFC4-PSD:applicableClass IFC4:IfcSpatialElement ; + IFC4-PSD:applicableTypeValue "IfcSpatialElement" ; + IFC4-PSD:definition "Building thermal load design data that are used for calculating thermal loads in a space or building. HISTORY: New property set in IFC Release 1.0 (Pset_LoadDesignCriteria); renamed Pset_ThermalLoadDesignCriteria in IFC2x2." ; + IFC4-PSD:definitionAlias "部屋や建物の熱負荷の計算のために使用される建物の熱負荷設計データ。履歴:IFC1.0の新PropertySet(Pset_LoadDesignCriteria)、:IFC2x2に新たにPset_ThermalLoadDesignCriteriaと定義された。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ThermalLoadDesignCriteria" ; + IFC4-PSD:propertyDef :p313a3200d21111e1800000215ad4efdf , :p18ca1780d21111e1800000215ad4efdf , :p24b5d980d21111e1800000215ad4efdf , :p2aabba80d21111e1800000215ad4efdf , :p1ebff880d21111e1800000215ad4efdf , :p37c8a980d21111e1800000215ad4efdf . + +:p313a3200d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Average lighting load intensity in the space per unit area (PowerMeasure/IfcAreaMeasure)." ; + rdfs:label "LightingLoadIntensity" ; + IFC4-PSD:definition "Average lighting load intensity in the space per unit area (PowerMeasure/IfcAreaMeasure)." ; + IFC4-PSD:definitionAlias "単位面積あたり照明機器の平均電力消費量。\n(PowerMeasure/IfcAreaMeasure)"@ja-JP , "단위 면적 당 조명의 평균 전력 소비. (PowerMeasure / IfcAreaMeasure)"@ko-KR , ""@en ; + IFC4-PSD:ifdguid "313a3200d21111e1800000215ad4efdf" ; + IFC4-PSD:name "LightingLoadIntensity" ; + IFC4-PSD:nameAlias "照明負荷率"@ja-JP , "조명 부하율"@ko-KR , "Lighting Load Intensity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p37c8a980d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Percent of lighting load to the return air plenum." ; + rdfs:label "LightingPercentLoadToReturnAir" ; + IFC4-PSD:definition "Percent of lighting load to the return air plenum." ; + IFC4-PSD:definitionAlias "조명 기기에서 폴리탄 공기 (천장)의 방열 속도."@ko-KR , ""@en , "照明機器からリタン空気(天井裏)への放熱率。"@ja-JP ; + IFC4-PSD:ifdguid "37c8a980d21111e1800000215ad4efdf" ; + IFC4-PSD:name "LightingPercentLoadToReturnAir" ; + IFC4-PSD:nameAlias "리탄 공기에 조명 기기의 방열 비율"@ko-KR , "リタン空気への照明機器の放熱率"@ja-JP , "Lighting Percent Load To Return Air"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_TransformerTypeCommon.ttl b/converter/src/main/resources/pset/Pset_TransformerTypeCommon.ttl new file mode 100644 index 00000000..3df01b7f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TransformerTypeCommon.ttl @@ -0,0 +1,339 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p95580b0800334fb180f4ce1d5048a707 + a IFC4-PSD:PropertyDef ; + rdfs:comment "List of the possible vector groups for the transformer from which that required may be set. Values in the enumeration list follow a standard international code where the first letter describes how the primary windings are connected,\nthe second letter describes how the secondary windings are connected, and the numbers describe the rotation of voltages and currents from the primary to the secondary side in multiples of 30 degrees.\n\nD: means that the windings are delta-connected.\nY: means that the windings are star-connected. \nZ: means that the windings are zig-zag connected (a special start-connected providing low reactance of the transformer); \nThe connectivity is only relevant for three-phase transformers." ; + rdfs:label "TransformerVectorGroup" ; + IFC4-PSD:definition "List of the possible vector groups for the transformer from which that required may be set. Values in the enumeration list follow a standard international code where the first letter describes how the primary windings are connected,\nthe second letter describes how the secondary windings are connected, and the numbers describe the rotation of voltages and currents from the primary to the secondary side in multiples of 30 degrees.\n\nD: means that the windings are delta-connected.\nY: means that the windings are star-connected. \nZ: means that the windings are zig-zag connected (a special start-connected providing low reactance of the transformer); \nThe connectivity is only relevant for three-phase transformers." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "95580b0800334fb180f4ce1d5048a707" ; + IFC4-PSD:name "TransformerVectorGroup" ; + IFC4-PSD:nameAlias "Transformer Vector Group"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "YY0" , "YZ11" , "DD0" , "DY11" , "YD5" , "YY6" , "DD6" , "DZ0" , "DZ6" , "OTHER" , "UNSET" , "YD11" , "DY5" , "NOTKNOWN" , "YZ5" + ] . + +:ShortCircuitVoltage a rdf:Property ; + rdfs:seeAlso :pa0b02180d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ShortCircuitVoltage . + +:PrimaryFrequency a rdf:Property ; + rdfs:seeAlso :p778f9100d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryFrequency . + +:p7e1e0880d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The frequency that has been transformed and is running out of the transformer on the secondary side." ; + rdfs:label "SecondaryFrequency" ; + IFC4-PSD:definition "The frequency that has been transformed and is running out of the transformer on the secondary side." ; + IFC4-PSD:definitionAlias "変圧器の2次側に出力される周波数。"@ja-JP , ""@en , "변압기 2 차 측에 전송되는 주파수."@ko-KR ; + IFC4-PSD:ifdguid "7e1e0880d21111e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryFrequency" ; + IFC4-PSD:nameAlias "第2周波数"@ja-JP , "Secondary Frequency"@en , "제 2 주파수"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:SecondaryApparentPower + a rdf:Property ; + rdfs:seeAlso :p89713400d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryApparentPower . + +:PrimaryApparentPower + a rdf:Property ; + rdfs:seeAlso :p837b5300d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryApparentPower . + +:p837b5300d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The power in VA (volt ampere) that has been transformed and that runs into the transformer on the primary side." ; + rdfs:label "PrimaryApparentPower" ; + IFC4-PSD:definition "The power in VA (volt ampere) that has been transformed and that runs into the transformer on the primary side." ; + IFC4-PSD:definitionAlias "변압기 1 차 측에 전송되는 전력 (VA : 암페어)."@ko-KR , "変圧器の1次側に伝送される電力(VA: アンペア)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "837b5300d21111e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryApparentPower" ; + IFC4-PSD:nameAlias "Primary Apparent Power"@en , "제 1 전력"@ko-KR , "第1電力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:IsNeutralSecondaryTerminalAvailable + a rdf:Property ; + rdfs:seeAlso :pd94ffb00d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsNeutralSecondaryTerminalAvailable . + +:PrimaryCurrent a rdf:Property ; + rdfs:seeAlso :p6a72a200d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryCurrent . + +:MaximumApparentPower + a rdf:Property ; + rdfs:seeAlso :p8f671500d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumApparentPower . + +:p6a72a200d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current that is going to be transformed and that runs into the transformer on the primary side." ; + rdfs:label "PrimaryCurrent" ; + IFC4-PSD:definition "The current that is going to be transformed and that runs into the transformer on the primary side." ; + IFC4-PSD:definitionAlias "변압기 1 차 측에 전송되는 전류."@ko-KR , "変圧器の1次側に伝送される電流。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6a72a200d21111e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryCurrent" ; + IFC4-PSD:nameAlias "제 1 전류"@ko-KR , "第1電流"@ja-JP , "Primary Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:pa0b02180d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A complex number that specifies the real and imaginary parts of the short-circuit voltage at rated current of a transformer given in %." ; + rdfs:label "ShortCircuitVoltage" ; + IFC4-PSD:definition "A complex number that specifies the real and imaginary parts of the short-circuit voltage at rated current of a transformer given in %." ; + IFC4-PSD:definitionAlias "%에서 주어진 변압기 정격 전류의 단락 전압의 실수와 허수를 정의하는 복소수."@ko-KR , ""@en , "%で与えられる変圧器の定格電流における短絡電圧の実数と虚数を定義する複素数。"@ja-JP ; + IFC4-PSD:ifdguid "a0b02180d21111e1800000215ad4efdf" ; + IFC4-PSD:name "ShortCircuitVoltage" ; + IFC4-PSD:nameAlias "단락 전압"@ko-KR , "Short Circuit Voltage"@en , "短絡電圧"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcComplexNumber + ] . + +:PrimaryVoltage a rdf:Property ; + rdfs:seeAlso :p5dee4980d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PrimaryVoltage . + +:p634b9400d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage that has been transformed and is running out of the transformer on the secondary side." ; + rdfs:label "SecondaryVoltage" ; + IFC4-PSD:definition "The voltage that has been transformed and is running out of the transformer on the secondary side." ; + IFC4-PSD:definitionAlias "変圧器の2次側へ出力される電圧。"@ja-JP , "변압기 2 차 측에 전송되는 전압."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "634b9400d21111e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryVoltage" ; + IFC4-PSD:nameAlias "Secondary Voltage"@en , "第2電圧"@ja-JP , "두번째 전압"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p94c45f80d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "A list of the secondary current types that can result from transformer output." ; + rdfs:label "SecondaryCurrentType" ; + IFC4-PSD:definition "A list of the secondary current types that can result from transformer output." ; + IFC4-PSD:definitionAlias "변압기에서 출력되는 제 2 전류의 종류 목록입니다."@ko-KR , "変圧器より出力される第2電流の種類の一覧。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "94c45f80d21111e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryCurrentType" ; + IFC4-PSD:nameAlias "第2電流タイプ"@ja-JP , "제 2 전류 타입"@ko-KR , "Secondary Current Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "AC" , "DC" , "NOTKNOWN" , "UNSET" + ] . + +:p89713400d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The power in VA (volt ampere) that has been transformed and is running out of the transformer on the secondary side." ; + rdfs:label "SecondaryApparentPower" ; + IFC4-PSD:definition "The power in VA (volt ampere) that has been transformed and is running out of the transformer on the secondary side." ; + IFC4-PSD:definitionAlias "변압기 2 차측으로 출력되는 전력 (VA : 암페어)."@ko-KR , "変圧器の2次側へ出力される電力(VA: アンペア)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "89713400d21111e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryApparentPower" ; + IFC4-PSD:nameAlias "Secondary Apparent Power"@en , "第2電力"@ja-JP , "제 2 전원"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p444d0200d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:SecondaryFrequency a rdf:Property ; + rdfs:seeAlso :p7e1e0880d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryFrequency . + +:Status a rdf:Property ; + rdfs:seeAlso :p4b741000d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:IsNeutralPrimaryTerminalAvailable + a rdf:Property ; + rdfs:seeAlso :pd228ed00d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsNeutralPrimaryTerminalAvailable . + +:pd94ffb00d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication of whether the neutral point of the secondary winding is available as a terminal (=TRUE) or not (= FALSE)." ; + rdfs:label "IsNeutralSecondaryTerminalAvailable" ; + IFC4-PSD:definition "An indication of whether the neutral point of the secondary winding is available as a terminal (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "2 차 코일의 중성점 터미널의 경우 (= TRUE), 다른 경우는 (= FALSE)로 표시"@ko-KR , ""@en , "二次巻線の中性点がターミナルの場合は(=TRUE)、違う場合は(= FALSE)として表示する"@ja-JP ; + IFC4-PSD:ifdguid "d94ffb00d21111e1800000215ad4efdf" ; + IFC4-PSD:name "IsNeutralSecondaryTerminalAvailable" ; + IFC4-PSD:nameAlias "Is Neutral Secondary Terminal Available"@en , "중성점 제 2 터미널 여부"@ko-KR , "中性点第2ターミナルがあるかどうか"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:SecondaryCurrentType + a rdf:Property ; + rdfs:seeAlso :p94c45f80d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryCurrentType . + +:p444d0200d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "이 프로젝트 (예 : 'A-1'유형 등) 지정된 참조 ID. 인정 분류 체계의 분류 참조가없는 경우에 적용된다."@ko-KR , "このプロジェクト (例. 'A-1' タイプなど)で指定された参照ID。認められた分類体系の分類参照が存在しない場合に適用される。"@ja-JP ; + IFC4-PSD:ifdguid "444d0200d21111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "참조"@ko-KR , "参照"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:RealImpedanceRatio a rdf:Property ; + rdfs:seeAlso :pa6a60280d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:RealImpedanceRatio . + +:SecondaryCurrent a rdf:Property ; + rdfs:seeAlso :p71011980d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryCurrent . + +:p778f9100d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The frequency that is going to be transformed and that runs into the transformer on the primary side." ; + rdfs:label "PrimaryFrequency" ; + IFC4-PSD:definition "The frequency that is going to be transformed and that runs into the transformer on the primary side." ; + IFC4-PSD:definitionAlias "변압기 1 차 측에 전송되는 주파수."@ko-KR , "変圧器の1次側に伝送される周波数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "778f9100d21111e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryFrequency" ; + IFC4-PSD:nameAlias "第1周波数"@ja-JP , "제 1 주파수"@ko-KR , "Primary Frequency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcFrequencyMeasure + ] . + +:pac9be380d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio between the imaginary part of the zero sequence impedance and the imaginary part of the positive impedance (i.e. imaginary part of the short-circuit voltage) of the transformer.\nUsed for three-phase transformer which includes a N-conductor." ; + rdfs:label "ImaginaryImpedanceRatio" ; + IFC4-PSD:definition "The ratio between the imaginary part of the zero sequence impedance and the imaginary part of the positive impedance (i.e. imaginary part of the short-circuit voltage) of the transformer.\nUsed for three-phase transformer which includes a N-conductor." ; + IFC4-PSD:definitionAlias "영 상 임피던스와 양의 상 임피던스 (예 : 단락 전압 국소 부) 사이의 비율. N-지휘자를 포함 삼상 변압기에 사용됩니다."@ko-KR , ""@en , "零相インピーダンスと正相インピーダンス(例.短絡電圧の虚部)の間の比率。N-コンダクターを含む三相トランスのために使用。"@ja-JP ; + IFC4-PSD:ifdguid "ac9be380d21111e1800000215ad4efdf" ; + IFC4-PSD:name "ImaginaryImpedanceRatio" ; + IFC4-PSD:nameAlias "Imaginary Impedance Ratio"@en , "インピーダンス虚部比率"@ja-JP , "임피던스 허수 부 비율"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:p5dee4980d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The voltage that is going to be transformed and that runs into the transformer on the primary side." ; + rdfs:label "PrimaryVoltage" ; + IFC4-PSD:definition "The voltage that is going to be transformed and that runs into the transformer on the primary side." ; + IFC4-PSD:definitionAlias ""@en , "変圧器の1次側に伝送される電圧。"@ja-JP , "변압기 1 차 측에 전송되는 전압."@ko-KR ; + IFC4-PSD:ifdguid "5dee4980d21111e1800000215ad4efdf" ; + IFC4-PSD:name "PrimaryVoltage" ; + IFC4-PSD:nameAlias "제 1 전압"@ko-KR , "第1電圧"@ja-JP , "Primary Voltage"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricVoltageMeasure + ] . + +:p4b741000d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "4b741000d21111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SecondaryVoltage a rdf:Property ; + rdfs:seeAlso :p634b9400d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecondaryVoltage . + +:ImaginaryImpedanceRatio + a rdf:Property ; + rdfs:seeAlso :pac9be380d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ImaginaryImpedanceRatio . + +:TransformerVectorGroup + a rdf:Property ; + rdfs:seeAlso :p95580b0800334fb180f4ce1d5048a707 ; + rdfs:subPropertyOf IFC4-PSD:TransformerVectorGroup . + +:pd228ed00d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "An indication of whether the neutral point of the primary winding is available as a terminal (=TRUE) or not (= FALSE)." ; + rdfs:label "IsNeutralPrimaryTerminalAvailable" ; + IFC4-PSD:definition "An indication of whether the neutral point of the primary winding is available as a terminal (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "一次巻線の中性点がターミナルの場合は(=TRUE)、違う場合は(= FALSE)として表示する"@ja-JP , "1차 권선의 중성점 터미널의 경우 (= TRUE), 다른 경우는 (= FALSE)로 표시"@ko-KR ; + IFC4-PSD:ifdguid "d228ed00d21111e1800000215ad4efdf" ; + IFC4-PSD:name "IsNeutralPrimaryTerminalAvailable" ; + IFC4-PSD:nameAlias "中性点第1ターミナルがあるかどうか"@ja-JP , "Is Neutral Primary Terminal Available"@en , "중성점 제 1 터미널 여부"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pa6a60280d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio between the real part of the zero sequence impedance and the real part of the positive impedance (i.e. real part of the short-circuit voltage) of the transformer.\nUsed for three-phase transformer which includes a N-conductor." ; + rdfs:label "RealImpedanceRatio" ; + IFC4-PSD:definition "The ratio between the real part of the zero sequence impedance and the real part of the positive impedance (i.e. real part of the short-circuit voltage) of the transformer.\nUsed for three-phase transformer which includes a N-conductor." ; + IFC4-PSD:definitionAlias ""@en , "零相インピーダンスと正相インピーダンス(例.短絡電圧の実部)の間の比率。N-コンダクターを含む三相トランスのために使用。"@ja-JP , "영 상 임피던스와 양의 상 임피던스 (예 : 단락 전압의 실제 부분) 사이의 비율. N-지휘자를 포함 삼상 변압기에 사용됩니다."@ko-KR ; + IFC4-PSD:ifdguid "a6a60280d21111e1800000215ad4efdf" ; + IFC4-PSD:name "RealImpedanceRatio" ; + IFC4-PSD:nameAlias "Real Impedance Ratio"@en , "임피던스 실수 부 비율"@ko-KR , "インピーダンス実部比率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:p71011980d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The current that has been transformed and is running out of the transformer on the secondary side." ; + rdfs:label "SecondaryCurrent" ; + IFC4-PSD:definition "The current that has been transformed and is running out of the transformer on the secondary side." ; + IFC4-PSD:definitionAlias "変圧器の2次側へ出力される電流。"@ja-JP , ""@en , "변압기 2 차 측에 전송되는 전류."@ko-KR ; + IFC4-PSD:ifdguid "71011980d21111e1800000215ad4efdf" ; + IFC4-PSD:name "SecondaryCurrent" ; + IFC4-PSD:nameAlias "第2電流"@ja-JP , "제 2 전류"@ko-KR , "Secondary Current"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcElectricCurrentMeasure + ] . + +:Pset_TransformerTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "An inductive stationary device that transfers electrical energy from one circuit to another." ; + rdfs:label "Pset_TransformerTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcTransformer ; + IFC4-PSD:applicableTypeValue "IfcTransformer" ; + IFC4-PSD:definition "An inductive stationary device that transfers electrical energy from one circuit to another." ; + IFC4-PSD:definitionAlias ""@en , "1つの回路からもう一つへ電気エネルギーを移す電磁誘導装置。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TransformerTypeCommon" ; + IFC4-PSD:propertyDef :p444d0200d21111e1800000215ad4efdf , :pac9be380d21111e1800000215ad4efdf , :pd228ed00d21111e1800000215ad4efdf , :p8f671500d21111e1800000215ad4efdf , :p89713400d21111e1800000215ad4efdf , :p4b741000d21111e1800000215ad4efdf , :p5dee4980d21111e1800000215ad4efdf , :p94c45f80d21111e1800000215ad4efdf , :pd94ffb00d21111e1800000215ad4efdf , :p95580b0800334fb180f4ce1d5048a707 , :p837b5300d21111e1800000215ad4efdf , :pa0b02180d21111e1800000215ad4efdf , :p634b9400d21111e1800000215ad4efdf , :pa6a60280d21111e1800000215ad4efdf , :p71011980d21111e1800000215ad4efdf , :p7e1e0880d21111e1800000215ad4efdf , :p6a72a200d21111e1800000215ad4efdf , :p778f9100d21111e1800000215ad4efdf . + +:p8f671500d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Maximum apparent power/capacity in VA (volt ampere)." ; + rdfs:label "MaximumApparentPower" ; + IFC4-PSD:definition "Maximum apparent power/capacity in VA (volt ampere)." ; + IFC4-PSD:definitionAlias "皮相電力/容量 の最大値 (VA:アンペア)。"@ja-JP , "피상 전력 / 용량 최대 (VA : 암페어)."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "8f671500d21111e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumApparentPower" ; + IFC4-PSD:nameAlias "Maximum Apparent Power"@en , "최대 전력"@ko-KR , "最大電力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_TransportElementCommon.ttl b/converter/src/main/resources/pset/Pset_TransportElementCommon.ttl index dd8518b0..94be0708 100644 --- a/converter/src/main/resources/pset/Pset_TransportElementCommon.ttl +++ b/converter/src/main/resources/pset/Pset_TransportElementCommon.ttl @@ -1,78 +1,110 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . +@prefix IFC4: . -:_000e3180d21211e1800000215ad4efdf +:CapacityPeople a rdf:Property ; + rdfs:seeAlso :p000e3180d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapacityPeople . + +:Reference a rdf:Property ; + rdfs:seeAlso :pe967da80d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:CapacityWeight a rdf:Property ; + rdfs:seeAlso :p056b7c00d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CapacityWeight . + +:Status a rdf:Property ; + rdfs:seeAlso :peff65200d21111e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:peff65200d21111e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Capacity of the transportation element measured in numbers of person." ; - IFC4-PSD:definitionAlias ""@en , "搬送要素の人数に関する容量。"@ja-JP , "Kapazität nach Anzahl der Personen, die maximal befördert werden können."@de-DE , "Capacité de transport de l'élément mesurée en nombre de personnes."@fr-FR ; - IFC4-PSD:ifdguid "000e3180d21211e1800000215ad4efdf" ; - IFC4-PSD:name "CapacityPeople" ; - IFC4-PSD:nameAlias "搭乗人数定員"@ja-JP , "Personenkapazität"@de-DE , "Capacity People"@en , "Capacité en nombre de personnes"@fr-FR ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcCountMeasure + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "eff65200d21111e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@de-DE , "状態"@ja-JP , "Status"@en , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" ] . -:_e967da80d21111e1800000215ad4efdf +:p0c928a00d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Komponenten zu einem Komponententyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE , ""@en , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , "参照するID番号。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR ; - IFC4-PSD:ifdguid "e967da80d21111e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "참조 ID"@ko-KR , "Komponententyp"@de-DE , "参照記号"@ja-JP , "Reference"@fr-FR , "Reference"@en ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the transport element (in case of e.g., a lift) is designed to serve as a fire exit, e.g., for fire escape purposes." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the transport element (in case of e.g., a lift) is designed to serve as a fire exit, e.g., for fire escape purposes." ; + IFC4-PSD:definitionAlias "避難出口(TRUE)か、通常の出口(FALSE)かを示すフラグ。"@ja-JP , "이 물체가 화재의 경우 출구로 사용되도록 설계되었는지 여부를 나타내는 부울 값입니다. 여기에 공간 (예 복도), 예를 들면 화재 피난 목적을 위해 출구 공간으로 사용하도록 설계되었는지 여부"@ko-KR , "Angabe ob dieses Transportelement als Rettungsweg im Brandfall zulässig ist (WAHR) oder nicht (FALSCH)."@de-DE , ""@en , "Indication si l'objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Cas d'un élément de transport comme un ascenseur conçu pour l'évacuation en cas d'incendie."@fr-FR ; + IFC4-PSD:ifdguid "0c928a00d21211e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "화재 출구 (피난 출구)"@ko-KR , "Fire Exit"@en , "避難出口"@ja-JP , "SortieSecours"@fr-FR , "Rettungsweg"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier + IFC4-PSD:dataType IFC4:IfcBoolean ] . -<> a owl:Ontology ; - owl:imports ; + + a owl:Ontology ; + owl:imports ; owl:versionInfo "Created with BIM-Bots PSD Repository" . -:_056b7c00d21211e1800000215ad4efdf +:p056b7c00d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Capacity of the transport element measured by weight." ; + rdfs:label "CapacityWeight" ; IFC4-PSD:definition "Capacity of the transport element measured by weight." ; - IFC4-PSD:definitionAlias "Capacité de transport de l'élément mesurée par le poids."@fr-FR , ""@en , "Kapazität nach Gewicht, das maximal befördert werden kann."@de-DE , "搬送要素の重さに関する容量。"@ja-JP ; + IFC4-PSD:definitionAlias "Kapazität nach Gewicht, das maximal befördert werden kann."@de-DE , "搬送要素の重さに関する容量。"@ja-JP , "Capacité de transport de l'élément mesurée par le poids."@fr-FR , ""@en ; IFC4-PSD:ifdguid "056b7c00d21211e1800000215ad4efdf" ; IFC4-PSD:name "CapacityWeight" ; - IFC4-PSD:nameAlias "Lastkapazität"@de-DE , "Capacity Weight"@en , "Capacité en poids"@fr-FR , "搭載重量"@ja-JP ; + IFC4-PSD:nameAlias "Capacity Weight"@en , "Lastkapazität"@de-DE , "Capacité en poids"@fr-FR , "搭載重量"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcMassMeasure ] . -:_eff65200d21111e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en ; - IFC4-PSD:ifdguid "eff65200d21111e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE , "Status"@en , "状態"@ja-JP , "Statut"@fr-FR ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "UNSET" , "NOTKNOWN" , "OTHER" , "TEMPORARY" , "DEMOLISH" , "EXISTING" , "NEW" - ] . +:FireExit a rdf:Property ; + rdfs:seeAlso :p0c928a00d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . :Pset_TransportElementCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcTransportElement or IfcTransportElementType" ; + rdfs:label "Pset_TransportElementCommon" ; IFC4-PSD:applicableClass IFC4:IfcTransportElement ; IFC4-PSD:applicableTypeValue "IfcTransportElement" ; IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcTransportElement or IfcTransportElementType" ; - IFC4-PSD:definitionAlias ""@en , "交通要素共通事項。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcTransportElement"@fr-FR , "Property Set Definition in German"@de-DE ; + IFC4-PSD:definitionAlias "Property Set Definition in German"@de-DE , "交通要素共通事項。"@ja-JP , ""@en , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcTransportElement"@fr-FR ; IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; IFC4-PSD:version "IFC4" ] ; IFC4-PSD:name "Pset_TransportElementCommon" ; - IFC4-PSD:propertyDef :_0c928a00d21211e1800000215ad4efdf , :_056b7c00d21211e1800000215ad4efdf , :_000e3180d21211e1800000215ad4efdf , :_e967da80d21111e1800000215ad4efdf , :_eff65200d21111e1800000215ad4efdf . + IFC4-PSD:propertyDef :p056b7c00d21211e1800000215ad4efdf , :pe967da80d21111e1800000215ad4efdf , :p0c928a00d21211e1800000215ad4efdf , :p000e3180d21211e1800000215ad4efdf , :peff65200d21111e1800000215ad4efdf . -:_0c928a00d21211e1800000215ad4efdf +:p000e3180d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE).\nHere whether the transport element (in case of e.g., a lift) is designed to serve as a fire exit, e.g., for fire escape purposes." ; - IFC4-PSD:definitionAlias "避難出口(TRUE)か、通常の出口(FALSE)かを示すフラグ。"@ja-JP , "Angabe ob dieses Transportelement als Rettungsweg im Brandfall zulässig ist (WAHR) oder nicht (FALSCH)."@de-DE , ""@en , "이 물체가 화재의 경우 출구로 사용되도록 설계되었는지 여부를 나타내는 부울 값입니다. 여기에 공간 (예 복도), 예를 들면 화재 피난 목적을 위해 출구 공간으로 사용하도록 설계되었는지 여부"@ko-KR , "Indication si l'objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Cas d'un élément de transport comme un ascenseur conçu pour l'évacuation en cas d'incendie."@fr-FR ; - IFC4-PSD:ifdguid "0c928a00d21211e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Fire Exit"@en , "화재 출구 (피난 출구)"@ko-KR , "SortieSecours"@fr-FR , "避難出口"@ja-JP , "Rettungsweg"@de-DE ; + rdfs:comment "Capacity of the transportation element measured in numbers of person." ; + rdfs:label "CapacityPeople" ; + IFC4-PSD:definition "Capacity of the transportation element measured in numbers of person." ; + IFC4-PSD:definitionAlias "Kapazität nach Anzahl der Personen, die maximal befördert werden können."@de-DE , "搬送要素の人数に関する容量。"@ja-JP , ""@en , "Capacité de transport de l'élément mesurée en nombre de personnes."@fr-FR ; + IFC4-PSD:ifdguid "000e3180d21211e1800000215ad4efdf" ; + IFC4-PSD:name "CapacityPeople" ; + IFC4-PSD:nameAlias "Capacité en nombre de personnes"@fr-FR , "Capacity People"@en , "Personenkapazität"@de-DE , "搭乗人数定員"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean + IFC4-PSD:dataType IFC4:IfcCountMeasure + ] . + +:pe967da80d21111e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal construction type." ; + IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR , "参照するID番号。"@ja-JP , ""@en , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , "Bezeichnung zur Zusammenfassung gleichartiger Komponenten zu einem Komponententyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "e967da80d21111e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "Reference"@fr-FR , "参照記号"@ja-JP , "참조 ID"@ko-KR , "Komponententyp"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier ] . diff --git a/converter/src/main/resources/pset/Pset_TransportElementElevator.ttl b/converter/src/main/resources/pset/Pset_TransportElementElevator.ttl index 7420ff16..fe6b5690 100644 --- a/converter/src/main/resources/pset/Pset_TransportElementElevator.ttl +++ b/converter/src/main/resources/pset/Pset_TransportElementElevator.ttl @@ -1,67 +1,93 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . +@prefix IFC4: . -:_29c75880d21211e1800000215ad4efdf +:p29c75880d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear depth of the object (elevator). It indicates the distance from the inner surface of the elevator door to the opposite surface of the elevator car. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "ClearDepth" ; IFC4-PSD:definition "Clear depth of the object (elevator). It indicates the distance from the inner surface of the elevator door to the opposite surface of the elevator car. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; - IFC4-PSD:definitionAlias "オブジェクト(エレベータ)の奥行き。エレベータドアの内部表面から、反対側の表面までの距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , "Profondeur de l'ascenseur. Elle indique la distance entre la face intérieure de la porte et la face opposée de la cabine de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en ; + IFC4-PSD:definitionAlias "Profondeur de l'ascenseur. Elle indique la distance entre la face intérieure de la porte et la face opposée de la cabine de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "オブジェクト(エレベータ)の奥行き。エレベータドアの内部表面から、反対側の表面までの距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , ""@en ; IFC4-PSD:ifdguid "29c75880d21211e1800000215ad4efdf" ; IFC4-PSD:name "ClearDepth" ; - IFC4-PSD:nameAlias "Clear Depth"@en , "奥行き"@ja-JP , "Profondeur de passage"@fr-FR ; + IFC4-PSD:nameAlias "Profondeur de passage"@fr-FR , "奥行き"@ja-JP , "Clear Depth"@en ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ] . -:_321f9380d21211e1800000215ad4efdf +:ClearHeight a rdf:Property ; + rdfs:seeAlso :p321f9380d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearHeight . + +:ClearWidth a rdf:Property ; + rdfs:seeAlso :p20d68700d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearWidth . + +:Pset_TransportElementElevator + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcTransportElement with the predefined type =\"ELEVATOR\"" ; + rdfs:label "Pset_TransportElementElevator" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTransportElement/ELEVATOR" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcTransportElement with the predefined type =\"ELEVATOR\"" ; + IFC4-PSD:definitionAlias ""@en , "タイプが既定義の\"ELEVATOR\"であるIfcTransportElementすべてに共通な属性の定義。"@ja-JP , "Property Set Definition in German"@de-DE , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcTransportElement de type ELEVATOR."@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TransportElementElevator" ; + IFC4-PSD:propertyDef :p1a480f80d21211e1800000215ad4efdf , :p321f9380d21211e1800000215ad4efdf , :p20d68700d21211e1800000215ad4efdf , :p29c75880d21211e1800000215ad4efdf . + +:p321f9380d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear height of the object (elevator). \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "ClearHeight" ; IFC4-PSD:definition "Clear height of the object (elevator). \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; - IFC4-PSD:definitionAlias "オブジェクト(エレベータ)の高さ。エレベータドアの内部の床面から天井までの距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , "Hauteur du passage de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , ""@en ; + IFC4-PSD:definitionAlias "Hauteur du passage de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "オブジェクト(エレベータ)の高さ。エレベータドアの内部の床面から天井までの距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , ""@en ; IFC4-PSD:ifdguid "321f9380d21211e1800000215ad4efdf" ; IFC4-PSD:name "ClearHeight" ; - IFC4-PSD:nameAlias "高さ"@ja-JP , "Hauteur de passage"@fr-FR , "Clear Height"@en ; + IFC4-PSD:nameAlias "Clear Height"@en , "高さ"@ja-JP , "Hauteur de passage"@fr-FR ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ] . -:_20d68700d21211e1800000215ad4efdf + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p20d68700d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Clear width of the object (elevator). It indicates the distance from the inner surfaces of the elevator car left and right from the elevator door. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; + rdfs:label "ClearWidth" ; IFC4-PSD:definition "Clear width of the object (elevator). It indicates the distance from the inner surfaces of the elevator car left and right from the elevator door. \nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." ; - IFC4-PSD:definitionAlias "オブジェクト(エレベータ)の幅。エレベータ昇降機内部表面の左から右の距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , ""@en , "Largeur du passage de l'ascenseur. Elle indique la distance entre les surfaces intérieures gauche et droite de la cabine depuis la porte de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR ; + IFC4-PSD:definitionAlias "Largeur du passage de l'ascenseur. Elle indique la distance entre les surfaces intérieures gauche et droite de la cabine depuis la porte de l'ascenseur. Cette propriété est donnée en complément de la représentation de la forme de l'élément et des paramètres géométriques qui la déterminent. En cas d'incohérence entre ces paramètres géométriques et cette propriété, ce sont les paramètres géométriques qui priment."@fr-FR , "オブジェクト(エレベータ)の幅。エレベータ昇降機内部表面の左から右の距離を示す。\n形状表現は、Shape representation(IFCの幾何形状表現)およびそこで設定されている幾何形状パラメータにより与えられる。もし、幾何形状パラメータと形状プロパティ情報が一致しない場合は、形状パラメータの値を優先する。"@ja-JP , ""@en ; IFC4-PSD:ifdguid "20d68700d21211e1800000215ad4efdf" ; IFC4-PSD:name "ClearWidth" ; - IFC4-PSD:nameAlias "幅員"@ja-JP , "Clear Width"@en , "Largeur du passage"@fr-FR ; + IFC4-PSD:nameAlias "Largeur du passage"@fr-FR , "Clear Width"@en , "幅員"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure ] . -<> a owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" . - -:Pset_TransportElementElevator - a IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass ; - IFC4-PSD:applicableTypeValue "IfcTransportElement/ELEVATOR" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcTransportElement with the predefined type =\"ELEVATOR\"" ; - IFC4-PSD:definitionAlias "タイプが既定義の\"ELEVATOR\"であるIfcTransportElementすべてに共通な属性の定義。"@ja-JP , ""@en , "Property Set Definition in German"@de-DE , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcTransportElement de type ELEVATOR."@fr-FR ; - IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; - IFC4-PSD:version "IFC4" - ] ; - IFC4-PSD:name "Pset_TransportElementElevator" ; - IFC4-PSD:propertyDef :_321f9380d21211e1800000215ad4efdf , :_1a480f80d21211e1800000215ad4efdf , :_29c75880d21211e1800000215ad4efdf , :_20d68700d21211e1800000215ad4efdf . +:ClearDepth a rdf:Property ; + rdfs:seeAlso :p29c75880d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ClearDepth . -:_1a480f80d21211e1800000215ad4efdf +:p1a480f80d21211e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the elevator is designed to serve as a fire fighting lift the case of fire (TRUE) or not (FALSE). A fire fighting lift is used by fire fighters to access the location of fire and to evacuate people." ; + rdfs:label "FireFightingLift" ; IFC4-PSD:definition "Indication whether the elevator is designed to serve as a fire fighting lift the case of fire (TRUE) or not (FALSE). A fire fighting lift is used by fire fighters to access the location of fire and to evacuate people." ; - IFC4-PSD:definitionAlias "Indique si l'ascenseur est conçu pour servir d'ascenseur pompier (VRAI) ou non (FAUX). Un ascenseur pompier est utilisé par les pompiers pour accéder à l'endroit du feu et évacuer les personnes."@fr-FR , "Angabe, ob der Aufzug als ein Feuerwerksaufzug vorgesehen ist (WAHR) oder nicht (FALSCH). Ein Feuerwehraufzug ist ein besonders abgesicherter Aufzug der der Feuerwehr im Branfall ein Erreichen der Branetage ermöglicht."@de-DE , ""@en , "火災時に消防エレベーターとしての利用を想定して設計されているかどうかを示す。消防エレベーターは火災現場へ消防士を運んだり人を避難させるために使われる。"@ja-JP ; + IFC4-PSD:definitionAlias ""@en , "火災時に消防エレベーターとしての利用を想定して設計されているかどうかを示す。消防エレベーターは火災現場へ消防士を運んだり人を避難させるために使われる。"@ja-JP , "Indique si l'ascenseur est conçu pour servir d'ascenseur pompier (VRAI) ou non (FAUX). Un ascenseur pompier est utilisé par les pompiers pour accéder à l'endroit du feu et évacuer les personnes."@fr-FR , "Angabe, ob der Aufzug als ein Feuerwerksaufzug vorgesehen ist (WAHR) oder nicht (FALSCH). Ein Feuerwehraufzug ist ein besonders abgesicherter Aufzug der der Feuerwehr im Branfall ein Erreichen der Branetage ermöglicht."@de-DE ; IFC4-PSD:ifdguid "1a480f80d21211e1800000215ad4efdf" ; IFC4-PSD:name "FireFightingLift" ; - IFC4-PSD:nameAlias "Feuerwehraufzug"@de-DE , "LargeurPassage"@fr-FR , "Fire Fighting Lift"@en , "消防エレベーター"@ja-JP ; + IFC4-PSD:nameAlias "Fire Fighting Lift"@en , "LargeurPassage"@fr-FR , "消防エレベーター"@ja-JP , "Feuerwehraufzug"@de-DE ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcBoolean ] . + +:FireFightingLift a rdf:Property ; + rdfs:seeAlso :p1a480f80d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireFightingLift . diff --git a/converter/src/main/resources/pset/Pset_TubeBundleTypeCommon.ttl b/converter/src/main/resources/pset/Pset_TubeBundleTypeCommon.ttl new file mode 100644 index 00000000..6e7c00ff --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TubeBundleTypeCommon.ttl @@ -0,0 +1,297 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalDiameter a rdf:Property ; + rdfs:seeAlso :p8e82b300d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDiameter . + +:InsideDiameter a rdf:Property ; + rdfs:seeAlso :p9f332900d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InsideDiameter . + +:p672be600d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "In-line tube row spacing." ; + rdfs:label "InLineRowSpacing" ; + IFC4-PSD:definition "In-line tube row spacing." ; + IFC4-PSD:definitionAlias "インラインチューブ列間隔"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "672be600d21211e1800000215ad4efdf" ; + IFC4-PSD:name "InLineRowSpacing" ; + IFC4-PSD:nameAlias "インライン列間隔"@ja-JP , "In Line Row Spacing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p96daee00d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual outside diameter of the tube in the tube bundle." ; + rdfs:label "OutsideDiameter" ; + IFC4-PSD:definition "Actual outside diameter of the tube in the tube bundle." ; + IFC4-PSD:definitionAlias "チューブ束内のチューブ実外径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "96daee00d21211e1800000215ad4efdf" ; + IFC4-PSD:name "OutsideDiameter" ; + IFC4-PSD:nameAlias "外径"@ja-JP , "Outside Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pb07c3580d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Vertical spacing between tubes in the tube bundle." ; + rdfs:label "VerticalSpacing" ; + IFC4-PSD:definition "Vertical spacing between tubes in the tube bundle." ; + IFC4-PSD:definitionAlias "チューブ束内のチューブ間垂直間隔"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "b07c3580d21211e1800000215ad4efdf" ; + IFC4-PSD:name "VerticalSpacing" ; + IFC4-PSD:nameAlias "Vertical Spacing"@en , "垂直間隔"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8e82b300d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal diameter or width of the tubes in the tube bundle." ; + rdfs:label "NominalDiameter" ; + IFC4-PSD:definition "Nominal diameter or width of the tubes in the tube bundle." ; + IFC4-PSD:definitionAlias ""@en , "チューブ束内のチューブ公称直径又は幅"@ja-JP ; + IFC4-PSD:ifdguid "8e82b300d21211e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDiameter" ; + IFC4-PSD:nameAlias "公称直径"@ja-JP , "Nominal Diameter"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OutsideDiameter a rdf:Property ; + rdfs:seeAlso :p96daee00d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutsideDiameter . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p42377300d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "42377300d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_TubeBundleTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Tube bundle type common attributes." ; + rdfs:label "Pset_TubeBundleTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcTubeBundle ; + IFC4-PSD:applicableTypeValue "IfcTubeBundle" ; + IFC4-PSD:definition "Tube bundle type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "チューブ束タイプ共通プロパティ属性設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TubeBundleTypeCommon" ; + IFC4-PSD:propertyDef :p7ad74c80d21211e1800000215ad4efdf , :p96daee00d21211e1800000215ad4efdf , :p48c5ea80d21211e1800000215ad4efdf , :p672be600d21211e1800000215ad4efdf , :p42377300d21211e1800000215ad4efdf , :pb07c3580d21211e1800000215ad4efdf , :pb8d47080d21211e1800000215ad4efdf , :p58453380d21211e1800000215ad4efdf , :p89256880d21211e1800000215ad4efdf , :p5ed3ab00d21211e1800000215ad4efdf , :pa78b6400d21211e1800000215ad4efdf , :p757a0200d21211e1800000215ad4efdf , :p701cb780d21211e1800000215ad4efdf , :p9f332900d21211e1800000215ad4efdf , :p80349700d21211e1800000215ad4efdf , :p8e82b300d21211e1800000215ad4efdf . + +:p48c5ea80d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "48c5ea80d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p757a0200d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fouling factor of the tubes in the tube bundle." ; + rdfs:label "FoulingFactor" ; + IFC4-PSD:definition "Fouling factor of the tubes in the tube bundle." ; + IFC4-PSD:definitionAlias ""@en , "チューブ束のチューブ汚れ係数"@ja-JP ; + IFC4-PSD:ifdguid "757a0200d21211e1800000215ad4efdf" ; + IFC4-PSD:name "FoulingFactor" ; + IFC4-PSD:nameAlias "汚れ係数"@ja-JP , "Fouling Factor"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalResistanceMeasure + ] . + +:ThermalConductivity a rdf:Property ; + rdfs:seeAlso :p7ad74c80d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalConductivity . + +:p89256880d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Total volume of fluid in the tubes and their headers." ; + rdfs:label "Volume" ; + IFC4-PSD:definition "Total volume of fluid in the tubes and their headers." ; + IFC4-PSD:definitionAlias ""@en , "チューブとヘッダー内の総流量"@ja-JP ; + IFC4-PSD:ifdguid "89256880d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Volume" ; + IFC4-PSD:nameAlias "流量"@ja-JP , "Volume"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumeMeasure + ] . + +:VerticalSpacing a rdf:Property ; + rdfs:seeAlso :pb07c3580d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VerticalSpacing . + +:p58453380d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of tube rows in the tube bundle assembly." ; + rdfs:label "NumberOfRows" ; + IFC4-PSD:definition "Number of tube rows in the tube bundle assembly." ; + IFC4-PSD:definitionAlias "チューブの集合の組立におけるチューブ列数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "58453380d21211e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfRows" ; + IFC4-PSD:nameAlias "Number Of Rows"@en , "列数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:p9f332900d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual inner diameter of the tube in the tube bundle." ; + rdfs:label "InsideDiameter" ; + IFC4-PSD:definition "Actual inner diameter of the tube in the tube bundle." ; + IFC4-PSD:definitionAlias ""@en , "チューブ束内のチューブ実内径"@ja-JP ; + IFC4-PSD:ifdguid "9f332900d21211e1800000215ad4efdf" ; + IFC4-PSD:name "InsideDiameter" ; + IFC4-PSD:nameAlias "Inside Diameter"@en , "内径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NumberOfRows a rdf:Property ; + rdfs:seeAlso :p58453380d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfRows . + +:p701cb780d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Number of parallel fluid tube circuits." ; + rdfs:label "NumberOfCircuits" ; + IFC4-PSD:definition "Number of parallel fluid tube circuits." ; + IFC4-PSD:definitionAlias "平行流チューブ回路数"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "701cb780d21211e1800000215ad4efdf" ; + IFC4-PSD:name "NumberOfCircuits" ; + IFC4-PSD:nameAlias "Number Of Circuits"@en , "平行流回路数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcInteger + ] . + +:InLineRowSpacing a rdf:Property ; + rdfs:seeAlso :p672be600d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InLineRowSpacing . + +:p5ed3ab00d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Staggered tube row spacing." ; + rdfs:label "StaggeredRowSpacing" ; + IFC4-PSD:definition "Staggered tube row spacing." ; + IFC4-PSD:definitionAlias "互い違いのチューブ列間隔"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5ed3ab00d21211e1800000215ad4efdf" ; + IFC4-PSD:name "StaggeredRowSpacing" ; + IFC4-PSD:nameAlias "互い違いの列間隔"@ja-JP , "Staggered Row Spacing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :p48c5ea80d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pa78b6400d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Horizontal spacing between tubes in the tube bundle." ; + rdfs:label "HorizontalSpacing" ; + IFC4-PSD:definition "Horizontal spacing between tubes in the tube bundle." ; + IFC4-PSD:definitionAlias "チューブ束内のチューブ間水平間隔"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "a78b6400d21211e1800000215ad4efdf" ; + IFC4-PSD:name "HorizontalSpacing" ; + IFC4-PSD:nameAlias "Horizontal Spacing"@en , "水平間隔"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Length a rdf:Property ; + rdfs:seeAlso :p80349700d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Length . + +:NumberOfCircuits a rdf:Property ; + rdfs:seeAlso :p701cb780d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NumberOfCircuits . + +:HorizontalSpacing a rdf:Property ; + rdfs:seeAlso :pa78b6400d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HorizontalSpacing . + +:StaggeredRowSpacing a rdf:Property ; + rdfs:seeAlso :p5ed3ab00d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:StaggeredRowSpacing . + +:FoulingFactor a rdf:Property ; + rdfs:seeAlso :p757a0200d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FoulingFactor . + +:p80349700d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of the tubes in the tube bundle." ; + rdfs:label "Length" ; + IFC4-PSD:definition "Length of the tubes in the tube bundle." ; + IFC4-PSD:definitionAlias ""@en , "チューブ束のチューブ長さ"@ja-JP ; + IFC4-PSD:ifdguid "80349700d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Length" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:HasTurbulator a rdf:Property ; + rdfs:seeAlso :pb8d47080d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasTurbulator . + +:Reference a rdf:Property ; + rdfs:seeAlso :p42377300d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pb8d47080d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the tube has a turbulator, FALSE if it does not." ; + rdfs:label "HasTurbulator" ; + IFC4-PSD:definition "TRUE if the tube has a turbulator, FALSE if it does not." ; + IFC4-PSD:definitionAlias ""@en , "かくはん器有りの時 TRUE、無しの時 FALSE"@ja-JP ; + IFC4-PSD:ifdguid "b8d47080d21211e1800000215ad4efdf" ; + IFC4-PSD:name "HasTurbulator" ; + IFC4-PSD:nameAlias "Has Turbulator"@en , "かくはん器有り"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p7ad74c80d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thermal conductivity of the tube." ; + rdfs:label "ThermalConductivity" ; + IFC4-PSD:definition "The thermal conductivity of the tube." ; + IFC4-PSD:definitionAlias ""@en , "チューブの熱伝導率"@ja-JP ; + IFC4-PSD:ifdguid "7ad74c80d21211e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalConductivity" ; + IFC4-PSD:nameAlias "熱伝導率"@ja-JP , "Thermal Conductivity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalConductivityMeasure + ] . + +:Volume a rdf:Property ; + rdfs:seeAlso :p89256880d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Volume . diff --git a/converter/src/main/resources/pset/Pset_TubeBundleTypeFinned.ttl b/converter/src/main/resources/pset/Pset_TubeBundleTypeFinned.ttl new file mode 100644 index 00000000..1afda429 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_TubeBundleTypeFinned.ttl @@ -0,0 +1,161 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Spacing a rdf:Property ; + rdfs:seeAlso :pc8ec5000d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Spacing . + +:pe9b4a580d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of the fin as measured perpendicular to the direction of airflow." ; + rdfs:label "Height" ; + IFC4-PSD:definition "Length of the fin as measured perpendicular to the direction of airflow." ; + IFC4-PSD:definitionAlias ""@en , "気流方向に垂直に計られたフィンの長さ"@ja-JP ; + IFC4-PSD:ifdguid "e9b4a580d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Height" ; + IFC4-PSD:nameAlias "Height"@en , "高さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Diameter a rdf:Property ; + rdfs:seeAlso :pf33e0d80d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Diameter . + +:Thickness a rdf:Property ; + rdfs:seeAlso :pd1dd2180d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Thickness . + +:pe15c6a80d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Length of the fin as measured parallel to the direction of airflow." ; + rdfs:label "Length" ; + IFC4-PSD:definition "Length of the fin as measured parallel to the direction of airflow." ; + IFC4-PSD:definitionAlias "気流方向に平行に計られたフィンの長さ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e15c6a80d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Length" ; + IFC4-PSD:nameAlias "長さ"@ja-JP , "Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Height a rdf:Property ; + rdfs:seeAlso :pe9b4a580d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Height . + +:Pset_TubeBundleTypeFinned + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Finned tube bundle type attributes.\nContains the attributes related to the fins attached to a tube in a finned tube bundle such as is commonly found in coils." ; + rdfs:label "Pset_TubeBundleTypeFinned" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcTubeBundle/FINNED" ; + IFC4-PSD:definition "Finned tube bundle type attributes.\nContains the attributes related to the fins attached to a tube in a finned tube bundle such as is commonly found in coils." ; + IFC4-PSD:definitionAlias "フィンタイプチューブ束属性.一般にコイルに見られるように、フィンチューブ束内のチューブに付いているフィンに関する属性を含む"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_TubeBundleTypeFinned" ; + IFC4-PSD:propertyDef :p0355ed00d21311e1800000215ad4efdf , :pe15c6a80d21211e1800000215ad4efdf , :pc8ec5000d21211e1800000215ad4efdf , :pfc2edf00d21211e1800000215ad4efdf , :pe9b4a580d21211e1800000215ad4efdf , :pd1dd2180d21211e1800000215ad4efdf , :pdb668980d21211e1800000215ad4efdf , :pf33e0d80d21211e1800000215ad4efdf . + +:p0355ed00d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "TRUE if the fin has a coating, FALSE if it does not." ; + rdfs:label "HasCoating" ; + IFC4-PSD:definition "TRUE if the fin has a coating, FALSE if it does not." ; + IFC4-PSD:definitionAlias ""@en , "フィンがコーティング有りの場合 TRUE、無しの場合FALSE"@ja-JP ; + IFC4-PSD:ifdguid "0355ed00d21311e1800000215ad4efdf" ; + IFC4-PSD:name "HasCoating" ; + IFC4-PSD:nameAlias "Has Coating"@en , "コーティング有り"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf33e0d80d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Actual diameter of a fin for circular fins only." ; + rdfs:label "Diameter" ; + IFC4-PSD:definition "Actual diameter of a fin for circular fins only." ; + IFC4-PSD:definitionAlias "円形フィンのみ、フィンの実直径"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f33e0d80d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Diameter" ; + IFC4-PSD:nameAlias "Diameter"@en , "直径"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Length a rdf:Property ; + rdfs:seeAlso :pe15c6a80d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Length . + +:HasCoating a rdf:Property ; + rdfs:seeAlso :p0355ed00d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasCoating . + +:FinCorrugatedType a rdf:Property ; + rdfs:seeAlso :pfc2edf00d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FinCorrugatedType . + +:pd1dd2180d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thickness of the fin." ; + rdfs:label "Thickness" ; + IFC4-PSD:definition "Thickness of the fin." ; + IFC4-PSD:definitionAlias ""@en , "フィンの厚さ"@ja-JP ; + IFC4-PSD:ifdguid "d1dd2180d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Thickness" ; + IFC4-PSD:nameAlias "Thickness"@en , "厚さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pc8ec5000d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Distance between fins on a tube in the tube bundle." ; + rdfs:label "Spacing" ; + IFC4-PSD:definition "Distance between fins on a tube in the tube bundle." ; + IFC4-PSD:definitionAlias "チューブ束内のフィン間の距離"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c8ec5000d21211e1800000215ad4efdf" ; + IFC4-PSD:name "Spacing" ; + IFC4-PSD:nameAlias "間隔"@ja-JP , "Spacing"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pdb668980d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The thermal conductivity of the fin." ; + rdfs:label "ThermalConductivity" ; + IFC4-PSD:definition "The thermal conductivity of the fin." ; + IFC4-PSD:definitionAlias "フィンの熱伝導率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "db668980d21211e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalConductivity" ; + IFC4-PSD:nameAlias "Thermal Conductivity"@en , "熱伝導率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalConductivityMeasure + ] . + +:pfc2edf00d21211e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of a fin corrugated type." ; + rdfs:label "FinCorrugatedType" ; + IFC4-PSD:definition "Description of a fin corrugated type." ; + IFC4-PSD:definitionAlias ""@en , "コルゲートタイプフィンの実直径"@ja-JP ; + IFC4-PSD:ifdguid "fc2edf00d21211e1800000215ad4efdf" ; + IFC4-PSD:name "FinCorrugatedType" ; + IFC4-PSD:nameAlias "Fin Corrugated Type"@en , "コルゲートタイプフィン"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:ThermalConductivity a rdf:Property ; + rdfs:seeAlso :pdb668980d21211e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalConductivity . diff --git a/converter/src/main/resources/pset/Pset_UnitaryControlElementPHistory.ttl b/converter/src/main/resources/pset/Pset_UnitaryControlElementPHistory.ttl new file mode 100644 index 00000000..8d68b422 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryControlElementPHistory.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:SetPoint a rdf:Property ; + rdfs:seeAlso :p1a94da80d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SetPoint . + +:Mode a rdf:Property ; + rdfs:seeAlso :p136dcc80d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mode . + +:Temperature a rdf:Property ; + rdfs:seeAlso :p1072dc00d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Temperature . + +:p1a94da80d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the temperature setpoint. For thermostats with setbacks or separate high and low setpoints, then the time series may contain a pair of values at each entry where the first value is the heating setpoint (low) and the second value is the cooling setpoint (high)." ; + rdfs:label "SetPoint" ; + IFC4-PSD:definition "Indicates the temperature setpoint. For thermostats with setbacks or separate high and low setpoints, then the time series may contain a pair of values at each entry where the first value is the heating setpoint (low) and the second value is the cooling setpoint (high)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1a94da80d21311e1800000215ad4efdf" ; + IFC4-PSD:name "SetPoint" ; + IFC4-PSD:nameAlias "Set Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p17015380d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates fan operation where True is on, False is off, and Unknown is automatic." ; + rdfs:label "Fan" ; + IFC4-PSD:definition "Indicates fan operation where True is on, False is off, and Unknown is automatic." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "17015380d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Fan" ; + IFC4-PSD:nameAlias "Fan"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Pset_UnitaryControlElementPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties for history and operating schedules of thermostats. HISTORY: Added in IFC4." ; + rdfs:label "Pset_UnitaryControlElementPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcUnitaryControlElement ; + IFC4-PSD:applicableTypeValue "IfcUnitaryControlElement" ; + IFC4-PSD:definition "Properties for history and operating schedules of thermostats. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryControlElementPHistory" ; + IFC4-PSD:propertyDef :p17015380d21311e1800000215ad4efdf , :p1a94da80d21311e1800000215ad4efdf , :p1072dc00d21311e1800000215ad4efdf , :p136dcc80d21311e1800000215ad4efdf . + +:p1072dc00d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates the current measured temperature." ; + rdfs:label "Temperature" ; + IFC4-PSD:definition "Indicates the current measured temperature." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "1072dc00d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Temperature" ; + IFC4-PSD:nameAlias "Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p136dcc80d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates operation mode corresponding to Pset_UnitaryControlTypeCommon.Mode. For example, 'HEAT', 'COOL', 'AUTO'." ; + rdfs:label "Mode" ; + IFC4-PSD:definition "Indicates operation mode corresponding to Pset_UnitaryControlTypeCommon.Mode. For example, 'HEAT', 'COOL', 'AUTO'." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "136dcc80d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Mode" ; + IFC4-PSD:nameAlias "Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Fan a rdf:Property ; + rdfs:seeAlso :p17015380d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Fan . diff --git a/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeCommon.ttl b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeCommon.ttl new file mode 100644 index 00000000..f1386949 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeCommon.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p241e4280d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias ""@en , "해당 프로젝트에서 사용이 유형에 대한 참조 ID (예 : 'A-1') ※ 기본이있는 경우 그 기호를 사용"@ko-KR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "241e4280d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP , "참조 ID"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Mode a rdf:Property ; + rdfs:seeAlso :p3ac49980d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Mode . + +:Status a rdf:Property ; + rdfs:seeAlso :p2a142380d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p2a142380d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "2a142380d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p3ac49980d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Table mapping operation mode identifiers to descriptive labels, which may be used for interpreting Pset_UnitaryControlElementPHistory.Mode." ; + rdfs:label "Mode" ; + IFC4-PSD:definition "Table mapping operation mode identifiers to descriptive labels, which may be used for interpreting Pset_UnitaryControlElementPHistory.Mode." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "3ac49980d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Mode" ; + IFC4-PSD:nameAlias "Mode"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyTableValue ; + IFC4-PSD:definedValue IFC4:IfcLabel ; + IFC4-PSD:definingValue IFC4:IfcIdentifier + ] . + +:Pset_UnitaryControlElementTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Unitary control element type common attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_UnitaryControlElementTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcUnitaryControlElement ; + IFC4-PSD:applicableTypeValue "IfcUnitaryControlElement" ; + IFC4-PSD:definition "Unitary control element type common attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en , "単一のコントロール要素の共通属性。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryControlElementTypeCommon" ; + IFC4-PSD:propertyDef :p2a142380d21311e1800000215ad4efdf , :p3ac49980d21311e1800000215ad4efdf , :p241e4280d21311e1800000215ad4efdf . + +:Reference a rdf:Property ; + rdfs:seeAlso :p241e4280d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeIndicatorPanel.ttl b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeIndicatorPanel.ttl new file mode 100644 index 00000000..fe865790 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeIndicatorPanel.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_UnitaryControlElementTypeIndicatorPanel + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Unitary control element type indicator panel attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_UnitaryControlElementTypeIndicatorPanel" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcUnitaryControlElement/INDICATORPANEL" ; + IFC4-PSD:definition "Unitary control element type indicator panel attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryControlElementTypeIndicatorPanel" ; + IFC4-PSD:propertyDef :pa214298bc8bc4c2d91e02d20124d29f8 . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pa214298bc8bc4c2d91e02d20124d29f8 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The application of the unitary control element." ; + rdfs:label "Application" ; + IFC4-PSD:definition "The application of the unitary control element." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "a214298bc8bc4c2d91e02d20124d29f8" ; + IFC4-PSD:name "Application" ; + IFC4-PSD:nameAlias "Application"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LIFTCARDIRECTIONLANTERN" , "LIFTPOSITIONINDICATOR" , "LIFTFIRESYSTEMSPORT" , "NOTKNOWN" , "UNSET" , "LIFTHALLLANTERN" , "OTHER" , "LIFTARRIVALGONG" , "LIFTVOICEANNOUNCER" + ] . + +:Application a rdf:Property ; + rdfs:seeAlso :pa214298bc8bc4c2d91e02d20124d29f8 ; + rdfs:subPropertyOf IFC4-PSD:Application . diff --git a/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeThermostat.ttl b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeThermostat.ttl new file mode 100644 index 00000000..ab38e5c3 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryControlElementTypeThermostat.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:TemperatureSetPoint a rdf:Property ; + rdfs:seeAlso :p41d7fa5a1d4b4dbf9733687435d62493 ; + rdfs:subPropertyOf IFC4-PSD:TemperatureSetPoint . + +:p41d7fa5a1d4b4dbf9733687435d62493 + a IFC4-PSD:PropertyDef ; + rdfs:comment "The temperature setpoint range and default setpoint." ; + rdfs:label "TemperatureSetPoint" ; + IFC4-PSD:definition "The temperature setpoint range and default setpoint." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "41d7fa5a1d4b4dbf9733687435d62493" ; + IFC4-PSD:name "TemperatureSetPoint" ; + IFC4-PSD:nameAlias "Temperature Set Point"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyBoundedValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_UnitaryControlElementTypeThermostat + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Unitary control element type thermostat attributes. HISTORY: Added in IFC4." ; + rdfs:label "Pset_UnitaryControlElementTypeThermostat" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcUnitaryControlElement/THERMOSTAT" ; + IFC4-PSD:definition "Unitary control element type thermostat attributes. HISTORY: Added in IFC4." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryControlElementTypeThermostat" ; + IFC4-PSD:propertyDef :p41d7fa5a1d4b4dbf9733687435d62493 . diff --git a/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirConditioningUnit.ttl b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirConditioningUnit.ttl new file mode 100644 index 00000000..af3edc58 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirConditioningUnit.ttl @@ -0,0 +1,182 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HeatingEfficiency a rdf:Property ; + rdfs:seeAlso :p88410680d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingEfficiency . + +:p88410680d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heating efficiency under full load heating conditions." ; + rdfs:label "HeatingEfficiency" ; + IFC4-PSD:definition "Heating efficiency under full load heating conditions." ; + IFC4-PSD:definitionAlias "全負荷加熱状態での熱効率"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "88410680d21311e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingEfficiency" ; + IFC4-PSD:nameAlias "加熱効率"@ja-JP , "Heating Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:CondenserLeavingTemperature + a rdf:Property ; + rdfs:seeAlso :p9b53d680d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CondenserLeavingTemperature . + +:HeatingCapacity a rdf:Property ; + rdfs:seeAlso :p824b2580d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HeatingCapacity . + +:CondenserEnteringTemperature + a rdf:Property ; + rdfs:seeAlso :p93943200d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CondenserEnteringTemperature . + +:p7bbcae00d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Coefficient of Performance: Ratio of cooling energy output to energy input under full load operating conditions." ; + rdfs:label "CoolingEfficiency" ; + IFC4-PSD:definition "Coefficient of Performance: Ratio of cooling energy output to energy input under full load operating conditions." ; + IFC4-PSD:definitionAlias ""@en , "性能係数全負荷運転状態でのエネルギー入力に対する冷却エネルギー出力の割合"@ja-JP ; + IFC4-PSD:ifdguid "7bbcae00d21311e1800000215ad4efdf" ; + IFC4-PSD:name "CoolingEfficiency" ; + IFC4-PSD:nameAlias "冷却効率"@ja-JP , "Cooling Efficiency"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:Pset_UnitaryEquipmentTypeAirConditioningUnit + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air conditioning unit equipment type attributes.\nNote that these attributes were formely Pset_PackagedACUnit prior to IFC2x2.\nHeatingEnergySource attribute deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead." ; + rdfs:label "Pset_UnitaryEquipmentTypeAirConditioningUnit" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcUnitaryEquipment/AIRCONDITIONINGUNIT" ; + IFC4-PSD:definition "Air conditioning unit equipment type attributes.\nNote that these attributes were formely Pset_PackagedACUnit prior to IFC2x2.\nHeatingEnergySource attribute deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead." ; + IFC4-PSD:definitionAlias ""@en , "エアコンユニット"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryEquipmentTypeAirConditioningUnit" ; + IFC4-PSD:propertyDef :p5a5bc200d21311e1800000215ad4efdf , :p7bbcae00d21311e1800000215ad4efdf , :p9b53d680d21311e1800000215ad4efdf , :pa149b780d21311e1800000215ad4efdf , :p88410680d21311e1800000215ad4efdf , :p93943200d21311e1800000215ad4efdf , :p75c6cd00d21311e1800000215ad4efdf , :p824b2580d21311e1800000215ad4efdf , :p8d9e5100d21311e1800000215ad4efdf . + +:p8d9e5100d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flow rate of fluid through the condenser." ; + rdfs:label "CondenserFlowrate" ; + IFC4-PSD:definition "Flow rate of fluid through the condenser." ; + IFC4-PSD:definitionAlias "凝縮器を通る流体の流量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8d9e5100d21311e1800000215ad4efdf" ; + IFC4-PSD:name "CondenserFlowrate" ; + IFC4-PSD:nameAlias "凝縮器流量"@ja-JP , "Condenser Flowrate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:CondenserFlowrate a rdf:Property ; + rdfs:seeAlso :p8d9e5100d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CondenserFlowrate . + +:p5a5bc200d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Sensible cooling capacity." ; + rdfs:label "SensibleCoolingCapacity" ; + IFC4-PSD:definition "Sensible cooling capacity." ; + IFC4-PSD:definitionAlias ""@en , "顕熱冷却能力"@ja-JP ; + IFC4-PSD:ifdguid "5a5bc200d21311e1800000215ad4efdf" ; + IFC4-PSD:name "SensibleCoolingCapacity" ; + IFC4-PSD:nameAlias "Sensible Cooling Capacity"@en , "顕熱冷却能力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:SensibleCoolingCapacity + a rdf:Property ; + rdfs:seeAlso :p5a5bc200d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SensibleCoolingCapacity . + +:pa149b780d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flow rate of outside air entering the unit." ; + rdfs:label "OutsideAirFlowrate" ; + IFC4-PSD:definition "Flow rate of outside air entering the unit." ; + IFC4-PSD:definitionAlias ""@en , "ユニットに入る外気流量"@ja-JP ; + IFC4-PSD:ifdguid "a149b780d21311e1800000215ad4efdf" ; + IFC4-PSD:name "OutsideAirFlowrate" ; + IFC4-PSD:nameAlias "外気流量"@ja-JP , "Outside Air Flowrate"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:LatentCoolingCapacity + a rdf:Property ; + rdfs:seeAlso :p75c6cd00d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LatentCoolingCapacity . + +:CoolingEfficiency a rdf:Property ; + rdfs:seeAlso :p7bbcae00d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoolingEfficiency . + +:p75c6cd00d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Latent cooling capacity." ; + rdfs:label "LatentCoolingCapacity" ; + IFC4-PSD:definition "Latent cooling capacity." ; + IFC4-PSD:definitionAlias "潜熱冷却能力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "75c6cd00d21311e1800000215ad4efdf" ; + IFC4-PSD:name "LatentCoolingCapacity" ; + IFC4-PSD:nameAlias "潜熱冷却能力"@ja-JP , "Latent Cooling Capacity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p9b53d680d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Termperature of fluid leaving condenser." ; + rdfs:label "CondenserLeavingTemperature" ; + IFC4-PSD:definition "Termperature of fluid leaving condenser." ; + IFC4-PSD:definitionAlias "凝縮器出口流体温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9b53d680d21311e1800000215ad4efdf" ; + IFC4-PSD:name "CondenserLeavingTemperature" ; + IFC4-PSD:nameAlias "Condenser Leaving Temperature"@en , "凝縮器出口温度"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + +:p824b2580d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Heating capacity." ; + rdfs:label "HeatingCapacity" ; + IFC4-PSD:definition "Heating capacity." ; + IFC4-PSD:definitionAlias "加熱容量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "824b2580d21311e1800000215ad4efdf" ; + IFC4-PSD:name "HeatingCapacity" ; + IFC4-PSD:nameAlias "Heating Capacity"@en , "加熱容量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPowerMeasure + ] . + +:p93943200d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Temperature of fluid entering condenser." ; + rdfs:label "CondenserEnteringTemperature" ; + IFC4-PSD:definition "Temperature of fluid entering condenser." ; + IFC4-PSD:definitionAlias "凝縮器入口流体温度"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "93943200d21311e1800000215ad4efdf" ; + IFC4-PSD:name "CondenserEnteringTemperature" ; + IFC4-PSD:nameAlias "凝縮器入口温度"@ja-JP , "Condenser Entering Temperature"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermodynamicTemperatureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:OutsideAirFlowrate a rdf:Property ; + rdfs:seeAlso :pa149b780d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutsideAirFlowrate . diff --git a/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirHandler.ttl b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirHandler.ttl new file mode 100644 index 00000000..6092db1a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeAirHandler.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:pc6d6c100d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Does the AirHandler have a dual deck? TRUE = Yes, FALSE = No." ; + rdfs:label "DualDeck" ; + IFC4-PSD:definition "Does the AirHandler have a dual deck? TRUE = Yes, FALSE = No." ; + IFC4-PSD:definitionAlias "空調機は2層になっているか\nTRUE=はい、FALSE=Iいいえ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "c6d6c100d21311e1800000215ad4efdf" ; + IFC4-PSD:name "DualDeck" ; + IFC4-PSD:nameAlias "Dual Deck"@en , "2層"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:padce1000d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining how the air handler might be fabricated." ; + rdfs:label "AirHandlerConstruction" ; + IFC4-PSD:definition "Enumeration defining how the air handler might be fabricated." ; + IFC4-PSD:definitionAlias "空調機の組立方法の定義の列挙"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "adce1000d21311e1800000215ad4efdf" ; + IFC4-PSD:name "AirHandlerConstruction" ; + IFC4-PSD:nameAlias "空調機製造"@ja-JP , "Air Handler Construction"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MANUFACTUREDITEM" , "CONSTRUCTEDONSITE" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:AirHandlerFanCoilArrangement + a rdf:Property ; + rdfs:seeAlso :pbaeaff00d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirHandlerFanCoilArrangement . + +:AirHandlerConstruction + a rdf:Property ; + rdfs:seeAlso :padce1000d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AirHandlerConstruction . + +:pbaeaff00d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Enumeration defining the arrangement of the supply air fan and the cooling coil." ; + rdfs:label "AirHandlerFanCoilArrangement" ; + IFC4-PSD:definition "Enumeration defining the arrangement of the supply air fan and the cooling coil." ; + IFC4-PSD:definitionAlias ""@en , "給気ファンと冷却コイルの配置の定義列挙"@ja-JP ; + IFC4-PSD:ifdguid "baeaff00d21311e1800000215ad4efdf" ; + IFC4-PSD:name "AirHandlerFanCoilArrangement" ; + IFC4-PSD:nameAlias "Air Handler Fan Coil Arrangement"@en , "空調機ファン・コイル配列"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "BLOWTHROUGH" , "DRAWTHROUGH" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:DualDeck a rdf:Property ; + rdfs:seeAlso :pc6d6c100d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DualDeck . + +:Pset_UnitaryEquipmentTypeAirHandler + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Air handler unitary equipment type attributes.\nNote that these attributes were formerly Pset_AirHandler prior to IFC2x2." ; + rdfs:label "Pset_UnitaryEquipmentTypeAirHandler" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcUnitaryEquipment/AIRHANDLER" ; + IFC4-PSD:definition "Air handler unitary equipment type attributes.\nNote that these attributes were formerly Pset_AirHandler prior to IFC2x2." ; + IFC4-PSD:definitionAlias "エアハンドリングユニットのプロパティ属性設定。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryEquipmentTypeAirHandler" ; + IFC4-PSD:propertyDef :pbaeaff00d21311e1800000215ad4efdf , :pc6d6c100d21311e1800000215ad4efdf , :padce1000d21311e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeCommon.ttl b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeCommon.ttl new file mode 100644 index 00000000..f4aec836 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UnitaryEquipmentTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :pd950fa80d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pd2c28300d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "d2c28300d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Pset_UnitaryEquipmentTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Unitary equipment type common attributes." ; + rdfs:label "Pset_UnitaryEquipmentTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcUnitaryEquipment ; + IFC4-PSD:applicableTypeValue "IfcUnitaryEquipment" ; + IFC4-PSD:definition "Unitary equipment type common attributes." ; + IFC4-PSD:definitionAlias "機器共通"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UnitaryEquipmentTypeCommon" ; + IFC4-PSD:propertyDef :pd950fa80d21311e1800000215ad4efdf , :pd2c28300d21311e1800000215ad4efdf . + +:pd950fa80d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d950fa80d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :pd2c28300d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_UtilityConsumptionPHistory.ttl b/converter/src/main/resources/pset/Pset_UtilityConsumptionPHistory.ttl new file mode 100644 index 00000000..5e4e5214 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_UtilityConsumptionPHistory.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:peec62480d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of heat energy consumed during the period specified in the time series." ; + rdfs:label "Heat" ; + IFC4-PSD:definition "The amount of heat energy consumed during the period specified in the time series." ; + IFC4-PSD:definitionAlias ""@en , "특정 기간 동안의 열 소비."@ko-KR ; + IFC4-PSD:ifdguid "eec62480d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Heat" ; + IFC4-PSD:nameAlias "Heat"@en , "열 소비량"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Heat a rdf:Property ; + rdfs:seeAlso :peec62480d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Heat . + +:Steam a rdf:Property ; + rdfs:seeAlso :pfab1e680d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Steam . + +:Electricity a rdf:Property ; + rdfs:seeAlso :pf1c11500d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Electricity . + +:Fuel a rdf:Property ; + rdfs:seeAlso :pf7b6f600d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Fuel . + +:pf1c11500d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of electricity consumed during the period specified in the time series." ; + rdfs:label "Electricity" ; + IFC4-PSD:definition "The amount of electricity consumed during the period specified in the time series." ; + IFC4-PSD:definitionAlias ""@en , "특정 기간 동안의 전력 소비."@ko-KR ; + IFC4-PSD:ifdguid "f1c11500d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Electricity" ; + IFC4-PSD:nameAlias "전력 소비량"@ko-KR , "Electricity"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pf7b6f600d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of fuel consumed during the period specified in the time series." ; + rdfs:label "Fuel" ; + IFC4-PSD:definition "The amount of fuel consumed during the period specified in the time series." ; + IFC4-PSD:definitionAlias ""@en , "특정 기간 동안의 연료 소비."@ko-KR ; + IFC4-PSD:ifdguid "f7b6f600d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Fuel" ; + IFC4-PSD:nameAlias "연료 소비량"@ko-KR , "Fuel"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:pf4bc0580d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of water consumed during the period specified in the time series." ; + rdfs:label "Water" ; + IFC4-PSD:definition "The amount of water consumed during the period specified in the time series." ; + IFC4-PSD:definitionAlias "특정 기간 동안 물 소비."@ko-KR , ""@en ; + IFC4-PSD:ifdguid "f4bc0580d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Water" ; + IFC4-PSD:nameAlias "물소비"@ko-KR , "Water"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:Water a rdf:Property ; + rdfs:seeAlso :pf4bc0580d21311e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Water . + +:Pset_UtilityConsumptionPHistory + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Consumption of utility resources, typically applied to the IfcBuilding instance, used to identify how much was consumed on I.e., a monthly basis." ; + rdfs:label "Pset_UtilityConsumptionPHistory" ; + IFC4-PSD:applicableClass IFC4:IfcBuilding ; + IFC4-PSD:applicableTypeValue "IfcBuilding" ; + IFC4-PSD:definition "Consumption of utility resources, typically applied to the IfcBuilding instance, used to identify how much was consumed on I.e., a monthly basis." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_UtilityConsumptionPHistory" ; + IFC4-PSD:propertyDef :pf7b6f600d21311e1800000215ad4efdf , :pfab1e680d21311e1800000215ad4efdf , :peec62480d21311e1800000215ad4efdf , :pf1c11500d21311e1800000215ad4efdf , :pf4bc0580d21311e1800000215ad4efdf . + +:pfab1e680d21311e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The amount of steam consumed during the period specified in the time series." ; + rdfs:label "Steam" ; + IFC4-PSD:definition "The amount of steam consumed during the period specified in the time series." ; + IFC4-PSD:definitionAlias ""@en , "특정 기간 동안 증기 소비."@ko-KR ; + IFC4-PSD:ifdguid "fab1e680d21311e1800000215ad4efdf" ; + IFC4-PSD:name "Steam" ; + IFC4-PSD:nameAlias "증기소비량"@ko-KR , "Steam"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_ValvePHistory.ttl b/converter/src/main/resources/pset/Pset_ValvePHistory.ttl new file mode 100644 index 00000000..636e2865 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValvePHistory.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:PercentageOpen a rdf:Property ; + rdfs:seeAlso :p03a2b800d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PercentageOpen . + +:Pset_ValvePHistory a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve performance history common attributes of a typical 2 port pattern type valve." ; + rdfs:label "Pset_ValvePHistory" ; + IFC4-PSD:applicableClass IFC4:IfcValve ; + IFC4-PSD:applicableTypeValue "IfcValve" ; + IFC4-PSD:definition "Valve performance history common attributes of a typical 2 port pattern type valve." ; + IFC4-PSD:definitionAlias "バルブの履歴"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValvePHistory" ; + IFC4-PSD:propertyDef :p0ac9c600d21411e1800000215ad4efdf , :p03a2b800d21411e1800000215ad4efdf , :p069da880d21411e1800000215ad4efdf . + +:MeasuredFlowRate a rdf:Property ; + rdfs:seeAlso :p069da880d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MeasuredFlowRate . + +:MeasuredPressureDrop + a rdf:Property ; + rdfs:seeAlso :p0ac9c600d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MeasuredPressureDrop . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p0ac9c600d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The actual pressure drop in the fluid measured across the valve." ; + rdfs:label "MeasuredPressureDrop" ; + IFC4-PSD:definition "The actual pressure drop in the fluid measured across the valve." ; + IFC4-PSD:definitionAlias ""@en , "バルブを通過する際の計測された圧力降下"@ja-JP ; + IFC4-PSD:ifdguid "0ac9c600d21411e1800000215ad4efdf" ; + IFC4-PSD:name "MeasuredPressureDrop" ; + IFC4-PSD:nameAlias "計測圧力降下"@ja-JP , "Measured Pressure Drop"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p069da880d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The rate of flow of a fluid measured across the valve." ; + rdfs:label "MeasuredFlowRate" ; + IFC4-PSD:definition "The rate of flow of a fluid measured across the valve." ; + IFC4-PSD:definitionAlias ""@en , "バルブを通過する流体の計測された流量"@ja-JP ; + IFC4-PSD:ifdguid "069da880d21411e1800000215ad4efdf" ; + IFC4-PSD:name "MeasuredFlowRate" ; + IFC4-PSD:nameAlias "Measured Flow Rate"@en , "計測流量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . + +:p03a2b800d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The ratio between the amount that the valve is open to the full open position of the valve." ; + rdfs:label "PercentageOpen" ; + IFC4-PSD:definition "The ratio between the amount that the valve is open to the full open position of the valve." ; + IFC4-PSD:definitionAlias ""@en , "全開時に対する開度量の比率。"@ja-JP ; + IFC4-PSD:ifdguid "03a2b800d21411e1800000215ad4efdf" ; + IFC4-PSD:name "PercentageOpen" ; + IFC4-PSD:nameAlias "パーセント開度"@ja-JP , "Percentage Open"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcTimeSeries + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeAirRelease.ttl b/converter/src/main/resources/pset/Pset_ValveTypeAirRelease.ttl new file mode 100644 index 00000000..e461082c --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeAirRelease.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ValveTypeAirRelease + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve used to release air from a pipe or fitting. \nNote that an air release valve is constrained to have a single port pattern" ; + rdfs:label "Pset_ValveTypeAirRelease" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/AIRRELEASE" ; + IFC4-PSD:definition "Valve used to release air from a pipe or fitting. \nNote that an air release valve is constrained to have a single port pattern" ; + IFC4-PSD:definitionAlias ""@en , "弁タイプ空気抜き弁"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeAirRelease" ; + IFC4-PSD:propertyDef :p161cf180d21411e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsAutomatic a rdf:Property ; + rdfs:seeAlso :p161cf180d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsAutomatic . + +:p161cf180d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the valve is automatically operated (TRUE) or manually operated (FALSE)." ; + rdfs:label "IsAutomatic" ; + IFC4-PSD:definition "Indication of whether the valve is automatically operated (TRUE) or manually operated (FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "弁が自動(TRUE)で操作されるか手動(FALSE)で操作されるかの表示"@ja-JP ; + IFC4-PSD:ifdguid "161cf180d21411e1800000215ad4efdf" ; + IFC4-PSD:name "IsAutomatic" ; + IFC4-PSD:nameAlias "Is Automatic"@en , "自動"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeCommon.ttl b/converter/src/main/resources/pset/Pset_ValveTypeCommon.ttl new file mode 100644 index 00000000..ad609dc4 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeCommon.ttl @@ -0,0 +1,191 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Status a rdf:Property ; + rdfs:seeAlso :p103808cf5fe64d589e7317c7493147b5 ; + rdfs:subPropertyOf IFC4-PSD:Status . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p8a579500d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Close off rating." ; + rdfs:label "CloseOffRating" ; + IFC4-PSD:definition "Close off rating." ; + IFC4-PSD:definitionAlias ""@en , "クローズオフレーティング"@ja-JP ; + IFC4-PSD:ifdguid "8a579500d21411e1800000215ad4efdf" ; + IFC4-PSD:name "CloseOffRating" ; + IFC4-PSD:nameAlias "クローズオフレーティング"@ja-JP , "Close Off Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:TestPressure a rdf:Property ; + rdfs:seeAlso :p7875f200d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TestPressure . + +:p7e6bd300d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The normally expected maximum working pressure of the valve." ; + rdfs:label "WorkingPressure" ; + IFC4-PSD:definition "The normally expected maximum working pressure of the valve." ; + IFC4-PSD:definitionAlias "バルブの通常予想される最高運転圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7e6bd300d21411e1800000215ad4efdf" ; + IFC4-PSD:name "WorkingPressure" ; + IFC4-PSD:nameAlias "Working Pressure"@en , "運転圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p51b7bb80d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The mechanism by which the valve function is achieved where:\n\nBALL: Valve that has a ported ball that can be turned relative to the body seat ports.\nBUTTERFLY: Valve in which a streamlined disc pivots about a diametric axis.\nCONFIGUREDGATE: Screwdown valve in which the closing gate is shaped in a configured manner to have a more precise control of pressure and flow change across the valve.\nGLAND: Valve with a tapered seating, in which a rotatable plug is retained by means of a gland and gland packing.\nGLOBE: Screwdown valve that has a spherical body.\nLUBRICATEDPLUG: Plug valve in which a lubricant is injected under pressure between the plug face and the body.\nNEEDLE: Valve for regulating the flow in or from a pipe, in which a slender cone moves along the axis of flow to close against a fixed conical seat.\nPARALLELSLIDE: Screwdown valve that has a machined plate that slides in formed grooves to form a seal.\nPLUG: Valve that has a ported plug that can be turned relative to the body seat ports.\nWEDGEGATE: Screwdown valve that has a wedge shaped plate fitting into tapered guides to form a seal." ; + rdfs:label "ValveMechanism" ; + IFC4-PSD:definition "The mechanism by which the valve function is achieved where:\n\nBALL: Valve that has a ported ball that can be turned relative to the body seat ports.\nBUTTERFLY: Valve in which a streamlined disc pivots about a diametric axis.\nCONFIGUREDGATE: Screwdown valve in which the closing gate is shaped in a configured manner to have a more precise control of pressure and flow change across the valve.\nGLAND: Valve with a tapered seating, in which a rotatable plug is retained by means of a gland and gland packing.\nGLOBE: Screwdown valve that has a spherical body.\nLUBRICATEDPLUG: Plug valve in which a lubricant is injected under pressure between the plug face and the body.\nNEEDLE: Valve for regulating the flow in or from a pipe, in which a slender cone moves along the axis of flow to close against a fixed conical seat.\nPARALLELSLIDE: Screwdown valve that has a machined plate that slides in formed grooves to form a seal.\nPLUG: Valve that has a ported plug that can be turned relative to the body seat ports.\nWEDGEGATE: Screwdown valve that has a wedge shaped plate fitting into tapered guides to form a seal." ; + IFC4-PSD:definitionAlias "機構により可能な弁機能は以下の通り:\nボール弁(BALL valve)=本体のシートポートに関連して回転できるポートボールを持つ弁 バタフライ弁(BUTTERFLY valve)=直径軸あたりに流線型の円板の旋回軸のある弁 CONFIGUREDスクリュー弁(CONFIGUREDGATE Screwdown valve)=閉鎖ゲートを持つねじ回し式弁。その弁は、弁を通過する時圧力と流量変更をより正確に制御できる方法で形づけられている グランド弁(GLAND Valve)=テーパーのついたシートを持った弁。その中に回転プラグがグランドとグランドパッキンによって保持されている グローブスクリュー弁(GLOBE Screwdown valve)= 球形の本体を持つねじ回し式弁 滑プラグ弁(LUBRICATEDPLUG Plug valve)=プラグ表面と本体との間の圧力を下げるために潤滑油が注入された弁 ニードル弁(NEEDLE Valve)=管内外の流量を調節する弁。その中に固定した円錐形のシートを閉止ために、流れの軸に沿って動く細長いコーンを持っている 平行スライドスクリュー弁(PARALLELSLIDE Screwdown valve)=機械加工されたプレートを持つねじ回し式弁。そのプレートはシールを形成するために溝の中を滑る プラグ弁(PLUG Valve)=本体のシートポートと関連して回転できる、ポートしたプラグを持つ弁 くさびゲートスクリュー弁(WEDGEGATE Screwdown valve)=シールを形成するためにテーパーの付いたガイドの中をくさび状の板部品を持つねじ回し式弁"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "51b7bb80d21411e1800000215ad4efdf" ; + IFC4-PSD:name "ValveMechanism" ; + IFC4-PSD:nameAlias "Valve Mechanism"@en , "弁機構"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "WEDGEGATE" , "BUTTERFLY" , "CONFIGUREDGATE" , "PLUG" , "BALL" , "OTHER" , "NEEDLE" , "PARALLELSLIDE" , "GLAND" , "NOTKNOWN" , "LUBRICATEDPLUG" , "GLOBE" , "UNSET" + ] . + +:p38167400d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The method of valve operation where:\n\nDROPWEIGHT: A valve that is closed by the action of a weighted lever being released, the weight normally being prevented from dropping by being held by a wire, the closure normally being made by the action of heat on a fusible link in the wire\nFLOAT: A valve that is opened and closed by the action of a float that rises and falls with water level. The float may be a ball attached to a lever or other mechanism\nHYDRAULIC: A valve that is opened and closed by hydraulic actuation\nLEVER: A valve that is opened and closed by the action of a lever rotating the gate within the valve.\nLOCKSHIELD: A valve that requires the use of a special lockshield key for opening and closing, the operating mechanism being protected by a shroud during normal operation.\nMOTORIZED: A valve that is opened and closed by the action of an electric motor on an actuator\nPNEUMATIC: A valve that is opened and closed by pneumatic actuation\nSOLENOID: A valve that is normally held open by a magnetic field in a coil acting on the gate but that is closed immediately if the electrical current generating the magnetic field is removed. \nSPRING: A valve that is normally held in position by the pressure of a spring on a plate but that may be caused to open if the pressure of the fluid is sufficient to overcome the spring pressure. \nTHERMOSTATIC: A valve in which the ports are opened or closed to maintain a required predetermined temperature.\nWHEEL: A valve that is opened and closed by the action of a wheel moving the gate within the valve." ; + rdfs:label "ValveOperation" ; + IFC4-PSD:definition "The method of valve operation where:\n\nDROPWEIGHT: A valve that is closed by the action of a weighted lever being released, the weight normally being prevented from dropping by being held by a wire, the closure normally being made by the action of heat on a fusible link in the wire\nFLOAT: A valve that is opened and closed by the action of a float that rises and falls with water level. The float may be a ball attached to a lever or other mechanism\nHYDRAULIC: A valve that is opened and closed by hydraulic actuation\nLEVER: A valve that is opened and closed by the action of a lever rotating the gate within the valve.\nLOCKSHIELD: A valve that requires the use of a special lockshield key for opening and closing, the operating mechanism being protected by a shroud during normal operation.\nMOTORIZED: A valve that is opened and closed by the action of an electric motor on an actuator\nPNEUMATIC: A valve that is opened and closed by pneumatic actuation\nSOLENOID: A valve that is normally held open by a magnetic field in a coil acting on the gate but that is closed immediately if the electrical current generating the magnetic field is removed. \nSPRING: A valve that is normally held in position by the pressure of a spring on a plate but that may be caused to open if the pressure of the fluid is sufficient to overcome the spring pressure. \nTHERMOSTATIC: A valve in which the ports are opened or closed to maintain a required predetermined temperature.\nWHEEL: A valve that is opened and closed by the action of a wheel moving the gate within the valve." ; + IFC4-PSD:definitionAlias ""@en , "The method of valve operation where:弁操作方法は以下の通り:\nおもり(DROPWEIGHT)=おもりを付けられたレバーが外される動作で閉まる弁 浮き(FLOAT)=水位と共に上下する浮きの動作で開閉する弁。浮きはレバーに付けたボール又は他の機構 水力(HYDRAULIC)=水力アクチュエータで開閉する弁 レバー(LEVER)=弁内のゲートを回転させるレバーの動作で開閉する弁 ロックシールド(LOCKSHIELD)=開閉のために特別のロックシールドキーの使用を要求する弁。操作機構は通常の操作の間は覆いで保護されている 電動化(MOTORIZED)=アクチュエータに付けられた電動モータの動作で開閉する弁 空気圧(PNEUMATIC)=圧縮空気で動くアクチュエータで開閉する弁 筒型コイル(SOLENOID)=ゲートに付けられ作動しているコイルの磁界で通常は開に保たれている弁。しかし、もし磁界を発生している電流が消されたらただちに閉まる ばね(SPRING)=板に付けられたばねの圧力で、通常は位置を保たれている弁。しかし、もし流体の圧力が、ばねの圧力より十分大きければ開いてしまう。 自動温度調節(THERMOSTATIC)=前もって決められた要求温度を維持するために、中のポートが開閉する弁 ハンドル(WHEEL)=弁内のゲートを動かすハンドルの動作で開閉する弁"@ja-JP ; + IFC4-PSD:ifdguid "38167400d21411e1800000215ad4efdf" ; + IFC4-PSD:name "ValveOperation" ; + IFC4-PSD:nameAlias "Valve Operation"@en , "弁操作"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SOLENOID" , "FLOAT" , "LEVER" , "NOTKNOWN" , "DROPWEIGHT" , "SPRING" , "HYDRAULIC" , "LOCKSHIELD" , "UNSET" , "MOTORIZED" , "WHEEL" , "THERMOSTATIC" , "OTHER" , "PNEUMATIC" + ] . + +:ValveOperation a rdf:Property ; + rdfs:seeAlso :p38167400d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ValveOperation . + +:p103808cf5fe64d589e7317c7493147b5 + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "103808cf5fe64d589e7317c7493147b5" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:FlowCoefficient a rdf:Property ; + rdfs:seeAlso :p8461b400d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlowCoefficient . + +:WorkingPressure a rdf:Property ; + rdfs:seeAlso :p7e6bd300d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkingPressure . + +:p2208b380d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2208b380d21411e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p2208b380d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:ValveMechanism a rdf:Property ; + rdfs:seeAlso :p51b7bb80d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ValveMechanism . + +:p27fe9480d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The configuration of the ports of a valve according to either the linear route taken by a fluid flowing through the valve or by the number of ports where:\n\nSINGLEPORT: Valve that has a single entry port from the system that it serves, the exit port being to the surrounding environment.\nANGLED_2_PORT: Valve in which the direction of flow is changed through 90 degrees.\nSTRAIGHT_2_PORT: Valve in which the flow is straight through.\nSTRAIGHT_3_PORT: Valve with three separate ports.\nCROSSOVER_4_PORT: Valve with 4 separate ports." ; + rdfs:label "ValvePattern" ; + IFC4-PSD:definition "The configuration of the ports of a valve according to either the linear route taken by a fluid flowing through the valve or by the number of ports where:\n\nSINGLEPORT: Valve that has a single entry port from the system that it serves, the exit port being to the surrounding environment.\nANGLED_2_PORT: Valve in which the direction of flow is changed through 90 degrees.\nSTRAIGHT_2_PORT: Valve in which the flow is straight through.\nSTRAIGHT_3_PORT: Valve with three separate ports.\nCROSSOVER_4_PORT: Valve with 4 separate ports." ; + IFC4-PSD:definitionAlias ""@en , "単一ポートSINGLEPORT()=システムで単一入口ポートを持ち、出口ポートは周囲環境である 2ポート直角型(ANGLED_2_PORT)=中で流れ方向が完全に90度変わる弁 2ポート直行型(STRAIGHT_2_PORT)=中で流れが真っ直ぐな弁 3ポート直行型(STRAIGHT_3_PORT)=3つの別々のポートを持つ 4ポート交差型(CROSSOVER_4_PORT)=4つの別々のポートを持つ"@ja-JP ; + IFC4-PSD:ifdguid "27fe9480d21411e1800000215ad4efdf" ; + IFC4-PSD:name "ValvePattern" ; + IFC4-PSD:nameAlias "Valve Pattern"@en , "弁の形"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "SINGLEPORT" , "ANGLED_2_PORT" , "STRAIGHT_2_PORT" , "STRAIGHT_3_PORT" , "CROSSOVER_4_PORT" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:CloseOffRating a rdf:Property ; + rdfs:seeAlso :p8a579500d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CloseOffRating . + +:Pset_ValveTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve type common attributes." ; + rdfs:label "Pset_ValveTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcValve ; + IFC4-PSD:applicableTypeValue "IfcValve" ; + IFC4-PSD:definition "Valve type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "弁タイプ共通プロパティ属性設定。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeCommon" ; + IFC4-PSD:propertyDef :p2208b380d21411e1800000215ad4efdf , :p6a27d600d21411e1800000215ad4efdf , :p51b7bb80d21411e1800000215ad4efdf , :p7875f200d21411e1800000215ad4efdf , :p7e6bd300d21411e1800000215ad4efdf , :p8461b400d21411e1800000215ad4efdf , :p27fe9480d21411e1800000215ad4efdf , :p38167400d21411e1800000215ad4efdf , :p103808cf5fe64d589e7317c7493147b5 , :p8a579500d21411e1800000215ad4efdf . + +:ValvePattern a rdf:Property ; + rdfs:seeAlso :p27fe9480d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ValvePattern . + +:Size a rdf:Property ; + rdfs:seeAlso :p6a27d600d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Size . + +:p8461b400d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Flow coefficient (the quantity of fluid that passes through a fully open valve at unit pressure drop), typically expressed as the Kv or Cv value for the valve." ; + rdfs:label "FlowCoefficient" ; + IFC4-PSD:definition "Flow coefficient (the quantity of fluid that passes through a fully open valve at unit pressure drop), typically expressed as the Kv or Cv value for the valve." ; + IFC4-PSD:definitionAlias ""@en , "流出係数(全開のバルブを通過する単位圧力損失当たりの流体の量)一般的にバルブのKv又はCv値で表される"@ja-JP ; + IFC4-PSD:ifdguid "8461b400d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FlowCoefficient" ; + IFC4-PSD:nameAlias "Flow Coefficient"@en , "流出係数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcReal + ] . + +:p7875f200d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum pressure to which the valve has been subjected under test." ; + rdfs:label "TestPressure" ; + IFC4-PSD:definition "The maximum pressure to which the valve has been subjected under test." ; + IFC4-PSD:definitionAlias ""@en , "試験の時、掛けられる最高圧力"@ja-JP ; + IFC4-PSD:ifdguid "7875f200d21411e1800000215ad4efdf" ; + IFC4-PSD:name "TestPressure" ; + IFC4-PSD:nameAlias "Test Pressure"@en , "試験圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:p6a27d600d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the connection to the valve (or to each connection for faucets, mixing valves, etc.)." ; + rdfs:label "Size" ; + IFC4-PSD:definition "The size of the connection to the valve (or to each connection for faucets, mixing valves, etc.)." ; + IFC4-PSD:definitionAlias ""@en , "弁(又は、水栓、混合弁等の接続)接続サイズ"@ja-JP ; + IFC4-PSD:ifdguid "6a27d600d21411e1800000215ad4efdf" ; + IFC4-PSD:name "Size" ; + IFC4-PSD:nameAlias "サイズ"@ja-JP , "Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeDrawOffCock.ttl b/converter/src/main/resources/pset/Pset_ValveTypeDrawOffCock.ttl new file mode 100644 index 00000000..f0ed38c2 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeDrawOffCock.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:HasHoseUnion a rdf:Property ; + rdfs:seeAlso :p96dbed80d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasHoseUnion . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ValveTypeDrawOffCock + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A small diameter valve, used to drain water from a cistern or water filled system." ; + rdfs:label "Pset_ValveTypeDrawOffCock" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/DRAWOFFCOCK" ; + IFC4-PSD:definition "A small diameter valve, used to drain water from a cistern or water filled system." ; + IFC4-PSD:definitionAlias ""@en , "弁タイプ排水コック"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeDrawOffCock" ; + IFC4-PSD:propertyDef :p96dbed80d21411e1800000215ad4efdf . + +:p96dbed80d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the drawoff cock is fitted with a hose union connection (= TRUE) or not (= FALSE)." ; + rdfs:label "HasHoseUnion" ; + IFC4-PSD:definition "Indicates whether the drawoff cock is fitted with a hose union connection (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "排水コックにホースユニオン継手が付いているかの表示.付き(= TRUE)無し (= FALSE)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "96dbed80d21411e1800000215ad4efdf" ; + IFC4-PSD:name "HasHoseUnion" ; + IFC4-PSD:nameAlias "ホースユニオン付き"@ja-JP , "Has Hose Union"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeFaucet.ttl b/converter/src/main/resources/pset/Pset_ValveTypeFaucet.ttl new file mode 100644 index 00000000..b1797863 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeFaucet.ttl @@ -0,0 +1,111 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:FaucetFunction a rdf:Property ; + rdfs:seeAlso :pcbe84000d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaucetFunction . + +:FaucetType a rdf:Property ; + rdfs:seeAlso :pa3f8dc80d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaucetType . + +:FaucetTopDescription + a rdf:Property ; + rdfs:seeAlso :pe02c3d00d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaucetTopDescription . + +:pb70bac80d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the range of ways in which a faucet can be operated that may be specified where:\n\nCeramicDisc: Quick action faucet with a ceramic seal to open or close the orifice\n.\nLeverHandle: Quick action faucet that is operated by a lever handle\n.\nNonConcussiveSelfClosing:\t Self closing faucet that does not induce surge pressure\n.\nQuarterTurn: Quick action faucet that can be fully opened or shut by turning the operating mechanism through 90 degrees.\nQuickAction: Faucet that can be opened or closed fully with a single small movement of the operating mechanism\n.\nScrewDown: Faucet in which a plate or disc is moved, by the rotation of a screwed spindle, to close or open the orifice.\nSelfClosing: Faucet that is opened by pressure of the top of an operating spindle and is closed under the action of a spring or weight when the pressure is released.\nTimedSelfClosing: \tSelf closing faucet that discharges for a predetermined period of time\n." ; + rdfs:label "FaucetOperation" ; + IFC4-PSD:definition "Defines the range of ways in which a faucet can be operated that may be specified where:\n\nCeramicDisc: Quick action faucet with a ceramic seal to open or close the orifice\n.\nLeverHandle: Quick action faucet that is operated by a lever handle\n.\nNonConcussiveSelfClosing:\t Self closing faucet that does not induce surge pressure\n.\nQuarterTurn: Quick action faucet that can be fully opened or shut by turning the operating mechanism through 90 degrees.\nQuickAction: Faucet that can be opened or closed fully with a single small movement of the operating mechanism\n.\nScrewDown: Faucet in which a plate or disc is moved, by the rotation of a screwed spindle, to close or open the orifice.\nSelfClosing: Faucet that is opened by pressure of the top of an operating spindle and is closed under the action of a spring or weight when the pressure is released.\nTimedSelfClosing: \tSelf closing faucet that discharges for a predetermined period of time\n." ; + IFC4-PSD:definitionAlias ""@en , "水栓の操作方法の範囲をここで明確に定義する:\nCeramicDisc = 口を開閉するセラミックシールを持った急操作水栓 LeverHandle = レバーハンドルで操作される急操作水栓 SelfClosing =サージ圧をもたらさない自閉水栓 QuarterTurn =90度、操作機構を回すことで全開又は全閉できる急操作水栓 QuickAction =操作機構の一つの小さな動きで全開又は全閉できる水栓 ScrewDown =口を開閉するためにねじの主軸を回して中の板又は円板を動かす水栓 SelfClosing = 操作主軸の頂部の圧力で開けられ、圧力が開放された時は、ばね又は錘の動作で閉められる水栓 TimedSelfClosing =前もって決められた時間、吐出する自閉水栓"@ja-JP ; + IFC4-PSD:ifdguid "b70bac80d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FaucetOperation" ; + IFC4-PSD:nameAlias "Faucet Operation"@en , "水栓操作"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "CERAMICDISC" , "SELFCLOSING" , "LEVERHANDLE" , "QUICKACTION" , "OTHER" , "QUARTERTURN" , "NONCONCUSSIVESELFCLOSING" , "TIMEDSELFCLOSING" , "SCREWDOWN" , "UNSET" , "NOTKNOWN" + ] . + +:pa3f8dc80d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the range of faucet types that may be specified where:\n\nBib:\t Faucet with a horizontal inlet and a nozzle that discharges downwards.\nGlobe:\t Faucet fitted through the end of a bath, with a horizontal inlet, a partially spherical body and a vertical nozzle.\nDiverter: \tCombination faucet assembly with a valve to enable the flow of mixed water to be transferred to a showerhead.\nDividedFlowCombination:\t Combination faucet assembly in which hot and cold water are kept separate until emerging from a common nozzle\n.\nPillar:\t Faucet that has a vertical inlet and a nozzle that discharges downwards\n.\nSingleOutletCombination =\t Combination faucet assembly in which hot and cold water mix before emerging from a common nozzle\n.\nSpray:\t Faucet with a spray outlet\n.\nSprayMixing:\t Spray faucet connected to hot and cold water supplies that delivers water at a temperature determined during use." ; + rdfs:label "FaucetType" ; + IFC4-PSD:definition "Defines the range of faucet types that may be specified where:\n\nBib:\t Faucet with a horizontal inlet and a nozzle that discharges downwards.\nGlobe:\t Faucet fitted through the end of a bath, with a horizontal inlet, a partially spherical body and a vertical nozzle.\nDiverter: \tCombination faucet assembly with a valve to enable the flow of mixed water to be transferred to a showerhead.\nDividedFlowCombination:\t Combination faucet assembly in which hot and cold water are kept separate until emerging from a common nozzle\n.\nPillar:\t Faucet that has a vertical inlet and a nozzle that discharges downwards\n.\nSingleOutletCombination =\t Combination faucet assembly in which hot and cold water mix before emerging from a common nozzle\n.\nSpray:\t Faucet with a spray outlet\n.\nSprayMixing:\t Spray faucet connected to hot and cold water supplies that delivers water at a temperature determined during use." ; + IFC4-PSD:definitionAlias ""@en , "水栓タイプの範囲をここに明確に定義する\nBib = 入口が水平で、下に吐出するノズルの水栓 Globe =浴槽の端に付けられ、入口が水平で、本体が部分的に球形で、ノズルが垂直な水栓 Diverter =シャワーヘッドへの混合水の流れを変えられる弁を持った組合せ水栓 DividedFlowCombination = 共通のノズルから出るまで水と湯が分かれたままになっている組合せ水栓 Pillar =垂直な入口と下へ吐出するノズルを持った水栓 SingleOutletCombination =共通のノズルから出る前に水と湯が混合する組合せ水栓 Spray =スプレー状の吐出口を持った水栓 SprayMixing =使用中決められた温度で供給する給水と給湯に接続されたスプレー水栓"@ja-JP ; + IFC4-PSD:ifdguid "a3f8dc80d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FaucetType" ; + IFC4-PSD:nameAlias "Faucet Type"@en , "水栓タイプ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NOTKNOWN" , "SPRAY" , "UNSET" , "DIVERTER" , "BIB" , "OTHER" , "SPRAYMIXING" , "SINGLEOUTLETCOMBINATION" , "PILLAR" , "DIVIDEDFLOWCOMBINATION" , "GLOBE" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pe02c3d00d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the operating mechanism/top of the faucet." ; + rdfs:label "FaucetTopDescription" ; + IFC4-PSD:definition "Description of the operating mechanism/top of the faucet." ; + IFC4-PSD:definitionAlias "操作機構/水栓の頂部の説明"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e02c3d00d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FaucetTopDescription" ; + IFC4-PSD:nameAlias "Faucet Top Description"@en , "水栓の頂部"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:Pset_ValveTypeFaucet + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A small diameter valve, with a free outlet, from which water is drawn." ; + rdfs:label "Pset_ValveTypeFaucet" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/FAUCET" ; + IFC4-PSD:definition "A small diameter valve, with a free outlet, from which water is drawn." ; + IFC4-PSD:definitionAlias "弁タイプ水栓"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeFaucet" ; + IFC4-PSD:propertyDef :pb70bac80d21411e1800000215ad4efdf , :pcbe84000d21411e1800000215ad4efdf , :pa3f8dc80d21411e1800000215ad4efdf , :pda365c00d21411e1800000215ad4efdf , :pe02c3d00d21411e1800000215ad4efdf . + +:pda365c00d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Description of the finish applied to the faucet." ; + rdfs:label "Finish" ; + IFC4-PSD:definition "Description of the finish applied to the faucet." ; + IFC4-PSD:definitionAlias ""@en , "水栓に適用される仕上げの説明"@ja-JP ; + IFC4-PSD:ifdguid "da365c00d21411e1800000215ad4efdf" ; + IFC4-PSD:name "Finish" ; + IFC4-PSD:nameAlias "Finish"@en , "仕上げ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:FaucetOperation a rdf:Property ; + rdfs:seeAlso :pb70bac80d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FaucetOperation . + +:Finish a rdf:Property ; + rdfs:seeAlso :pda365c00d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Finish . + +:pcbe84000d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the operating temperature of a faucet that may be specified." ; + rdfs:label "FaucetFunction" ; + IFC4-PSD:definition "Defines the operating temperature of a faucet that may be specified." ; + IFC4-PSD:definitionAlias ""@en , "水栓の作動温度を明確に定義する。"@ja-JP ; + IFC4-PSD:ifdguid "cbe84000d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FaucetFunction" ; + IFC4-PSD:nameAlias "Faucet Function"@en , "水栓機能"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "COLD" , "HOT" , "MIXED" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeFlushing.ttl b/converter/src/main/resources/pset/Pset_ValveTypeFlushing.ttl new file mode 100644 index 00000000..abf542d8 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeFlushing.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:IsHighPressure a rdf:Property ; + rdfs:seeAlso :pf89c5780d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsHighPressure . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasIntegralShutOffDevice + a rdf:Property ; + rdfs:seeAlso :pf20de000d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasIntegralShutOffDevice . + +:Pset_ValveTypeFlushing + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve that flushes a predetermined quantity of water to cleanse a WC, urinal or slop hopper.\nNote that a flushing valve is constrained to have a 2 port pattern." ; + rdfs:label "Pset_ValveTypeFlushing" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/FLUSHING" ; + IFC4-PSD:definition "Valve that flushes a predetermined quantity of water to cleanse a WC, urinal or slop hopper.\nNote that a flushing valve is constrained to have a 2 port pattern." ; + IFC4-PSD:definitionAlias "弁タイプフラッシュ"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeFlushing" ; + IFC4-PSD:propertyDef :pf20de000d21411e1800000215ad4efdf , :pec17ff00d21411e1800000215ad4efdf , :pf89c5780d21411e1800000215ad4efdf . + +:FlushingRate a rdf:Property ; + rdfs:seeAlso :pec17ff00d21411e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FlushingRate . + +:pf89c5780d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the flushing valve is suitable for use on a high pressure water main (set TRUE) or not (set FALSE)." ; + rdfs:label "IsHighPressure" ; + IFC4-PSD:definition "Indication of whether the flushing valve is suitable for use on a high pressure water main (set TRUE) or not (set FALSE)." ; + IFC4-PSD:definitionAlias "フラッシュ弁の高圧給水主管への使用が適当かどうかの表示(適 TRUE)又は(不適 FALSE)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f89c5780d21411e1800000215ad4efdf" ; + IFC4-PSD:name "IsHighPressure" ; + IFC4-PSD:nameAlias "高圧給水の有無"@ja-JP , "Is High Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pec17ff00d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The predetermined quantity of water to be flushed." ; + rdfs:label "FlushingRate" ; + IFC4-PSD:definition "The predetermined quantity of water to be flushed." ; + IFC4-PSD:definitionAlias "予め決められた流される水量"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ec17ff00d21411e1800000215ad4efdf" ; + IFC4-PSD:name "FlushingRate" ; + IFC4-PSD:nameAlias "Flushing Rate"@en , "フラッシュ率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:pf20de000d21411e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether the flushing valve has an integral shut off device fitted (set TRUE) or not (set FALSE)." ; + rdfs:label "HasIntegralShutOffDevice" ; + IFC4-PSD:definition "Indication of whether the flushing valve has an integral shut off device fitted (set TRUE) or not (set FALSE)." ; + IFC4-PSD:definitionAlias "フラッシュ弁に全体閉止装置がついているかどうかの表示(付きTRUE)又は(無しFALSE)"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f20de000d21411e1800000215ad4efdf" ; + IFC4-PSD:name "HasIntegralShutOffDevice" ; + IFC4-PSD:nameAlias "全体閉止装置がついているかどうか"@ja-JP , "Has Integral Shut Off Device"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeGasTap.ttl b/converter/src/main/resources/pset/Pset_ValveTypeGasTap.ttl new file mode 100644 index 00000000..50d9d436 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeGasTap.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p0651dd00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the gas tap is fitted with a hose union connection (= TRUE) or not (= FALSE)." ; + rdfs:label "HasHoseUnion" ; + IFC4-PSD:definition "Indicates whether the gas tap is fitted with a hose union connection (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "排水コックにホースユニオン継手が付いているかの表示.付き\n(= TRUE)無し (= FALSE)"@ja-JP ; + IFC4-PSD:ifdguid "0651dd00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "HasHoseUnion" ; + IFC4-PSD:nameAlias "ホースユニオン付き"@ja-JP , "Has Hose Union"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_ValveTypeGasTap + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A small diameter valve, used to discharge gas from a system." ; + rdfs:label "Pset_ValveTypeGasTap" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/GASTAP" ; + IFC4-PSD:definition "A small diameter valve, used to discharge gas from a system." ; + IFC4-PSD:definitionAlias "弁タイプ排水コック"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeGasTap" ; + IFC4-PSD:propertyDef :p0651dd00d21511e1800000215ad4efdf . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:HasHoseUnion a rdf:Property ; + rdfs:seeAlso :p0651dd00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasHoseUnion . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeIsolating.ttl b/converter/src/main/resources/pset/Pset_ValveTypeIsolating.ttl new file mode 100644 index 00000000..f02cd613 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeIsolating.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p12d63580d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "If TRUE, the valve is normally open. If FALSE is is normally closed." ; + rdfs:label "IsNormallyOpen" ; + IFC4-PSD:definition "If TRUE, the valve is normally open. If FALSE is is normally closed." ; + IFC4-PSD:definitionAlias ""@en , "もし、TRUEなら弁はノーマルオープン、もし、FALSEならノーマルクローズ"@ja-JP ; + IFC4-PSD:ifdguid "12d63580d21511e1800000215ad4efdf" ; + IFC4-PSD:name "IsNormallyOpen" ; + IFC4-PSD:nameAlias "ノーマルオープン"@ja-JP , "Is Normally Open"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:IsNormallyOpen a rdf:Property ; + rdfs:seeAlso :p12d63580d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsNormallyOpen . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:IsolatingPurpose a rdf:Property ; + rdfs:seeAlso :p1a95da00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsolatingPurpose . + +:p1a95da00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the purpose for which the isolating valve is used since the way in which the valve is identified as an isolating valve may be in the context of its use. Note that unless there is a contextual name for the isolating valve (as in the case of a Landing Valve on a rising fire main), then the value assigned shoulkd be UNSET." ; + rdfs:label "IsolatingPurpose" ; + IFC4-PSD:definition "Defines the purpose for which the isolating valve is used since the way in which the valve is identified as an isolating valve may be in the context of its use. Note that unless there is a contextual name for the isolating valve (as in the case of a Landing Valve on a rising fire main), then the value assigned shoulkd be UNSET." ; + IFC4-PSD:definitionAlias ""@en , "その使用の前後関係から遮断弁として使われる弁があるようであれば、遮断弁が使われている理由を定義します。\n注:燃え上がる火の上のランディング弁のように、遮断弁に前後関係から別な名前がつく場合は別です。このようなとき値は定まらない。"@ja-JP ; + IFC4-PSD:ifdguid "1a95da00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "IsolatingPurpose" ; + IFC4-PSD:nameAlias "Isolating Purpose"@en , "遮断目的"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "LANDING" , "LANDINGWITHPRESSUREREGULATION" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:Pset_ValveTypeIsolating + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve that is used to isolate system components.\nNote that an isolating valve is constrained to have a 2 port pattern." ; + rdfs:label "Pset_ValveTypeIsolating" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/ISOLATING" ; + IFC4-PSD:definition "Valve that is used to isolate system components.\nNote that an isolating valve is constrained to have a 2 port pattern." ; + IFC4-PSD:definitionAlias ""@en , "弁タイプ遮断弁"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeIsolating" ; + IFC4-PSD:propertyDef :p12d63580d21511e1800000215ad4efdf , :p1a95da00d21511e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_ValveTypeMixing.ttl b/converter/src/main/resources/pset/Pset_ValveTypeMixing.ttl new file mode 100644 index 00000000..bd3e9c01 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypeMixing.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2c777d00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Defines the form of control of the mixing valve." ; + rdfs:label "MixerControl" ; + IFC4-PSD:definition "Defines the form of control of the mixing valve." ; + IFC4-PSD:definitionAlias ""@en , "混合弁の制御形式の定義"@ja-JP ; + IFC4-PSD:ifdguid "2c777d00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "MixerControl" ; + IFC4-PSD:nameAlias "Mixer Control"@en , "混合制御"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "MANUAL" , "PREDEFINED" , "THERMOSTATIC" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:MixerControl a rdf:Property ; + rdfs:seeAlso :p2c777d00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MixerControl . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Pset_ValveTypeMixing + a IFC4-PSD:PropertySetDef ; + rdfs:comment "A valve where typically the temperature of the outlet is determined by mixing hot and cold water inlet flows." ; + rdfs:label "Pset_ValveTypeMixing" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/MIXING" ; + IFC4-PSD:definition "A valve where typically the temperature of the outlet is determined by mixing hot and cold water inlet flows." ; + IFC4-PSD:definitionAlias "混合弁"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypeMixing" ; + IFC4-PSD:propertyDef :p2c777d00d21511e1800000215ad4efdf , :p49ac4b80d21511e1800000215ad4efdf . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p49ac4b80d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:p49ac4b80d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The size of the pipework connection from the mixing valve." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "The size of the pipework connection from the mixing valve." ; + IFC4-PSD:definitionAlias "混合弁の配管接続サイズ"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "49ac4b80d21511e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "出力側接続口径"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypePressureReducing.ttl b/converter/src/main/resources/pset/Pset_ValveTypePressureReducing.ttl new file mode 100644 index 00000000..dd57bdf7 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypePressureReducing.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ValveTypePressureReducing + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Valve that reduces the pressure of a fluid immediately downstream of its position in a pipeline to a preselected value or by a predetermined ratio.\nNote that a pressure reducing valve is constrained to have a 2 port pattern." ; + rdfs:label "Pset_ValveTypePressureReducing" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/PRESSUREREDUCING" ; + IFC4-PSD:definition "Valve that reduces the pressure of a fluid immediately downstream of its position in a pipeline to a preselected value or by a predetermined ratio.\nNote that a pressure reducing valve is constrained to have a 2 port pattern." ; + IFC4-PSD:definitionAlias ""@en , "減圧弁"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypePressureReducing" ; + IFC4-PSD:propertyDef :p5fba0c00d21511e1800000215ad4efdf , :p59c42b00d21511e1800000215ad4efdf . + +:p59c42b00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The operating pressure of the fluid upstream of the pressure reducing valve." ; + rdfs:label "UpstreamPressure" ; + IFC4-PSD:definition "The operating pressure of the fluid upstream of the pressure reducing valve." ; + IFC4-PSD:definitionAlias ""@en , "減圧弁の上流の流体運転圧力"@ja-JP ; + IFC4-PSD:ifdguid "59c42b00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "UpstreamPressure" ; + IFC4-PSD:nameAlias "Upstream Pressure"@en , "上流圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + +:DownstreamPressure a rdf:Property ; + rdfs:seeAlso :p5fba0c00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DownstreamPressure . + +:UpstreamPressure a rdf:Property ; + rdfs:seeAlso :p59c42b00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:UpstreamPressure . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p5fba0c00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The operating pressure of the fluid downstream of the pressure reducing valve." ; + rdfs:label "DownstreamPressure" ; + IFC4-PSD:definition "The operating pressure of the fluid downstream of the pressure reducing valve." ; + IFC4-PSD:definitionAlias "減圧弁の下流の流体運転圧力"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5fba0c00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "DownstreamPressure" ; + IFC4-PSD:nameAlias "下流圧力"@ja-JP , "Downstream Pressure"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_ValveTypePressureRelief.ttl b/converter/src/main/resources/pset/Pset_ValveTypePressureRelief.ttl new file mode 100644 index 00000000..030818df --- /dev/null +++ b/converter/src/main/resources/pset/Pset_ValveTypePressureRelief.ttl @@ -0,0 +1,42 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_ValveTypePressureRelief + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Spring or weight loaded valve that automatically discharges to a safe place fluid that has built up to excessive pressure in pipes or fittings.\nNote that a pressure relief valve is constrained to have a single port pattern." ; + rdfs:label "Pset_ValveTypePressureRelief" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcValve/PRESSURERELIEF" ; + IFC4-PSD:definition "Spring or weight loaded valve that automatically discharges to a safe place fluid that has built up to excessive pressure in pipes or fittings.\nNote that a pressure relief valve is constrained to have a single port pattern." ; + IFC4-PSD:definitionAlias "リリーフ弁(逃がし弁)"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_ValveTypePressureRelief" ; + IFC4-PSD:propertyDef :p6cd6fb00d21511e1800000215ad4efdf . + +:ReliefPressure a rdf:Property ; + rdfs:seeAlso :p6cd6fb00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ReliefPressure . + +:p6cd6fb00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The pressure at which the spring or weight in the valve is set to discharge fluid." ; + rdfs:label "ReliefPressure" ; + IFC4-PSD:definition "The pressure at which the spring or weight in the valve is set to discharge fluid." ; + IFC4-PSD:definitionAlias ""@en , "バルブのバネやおもりが流体を放出する作動するときの圧力。"@ja-JP ; + IFC4-PSD:ifdguid "6cd6fb00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "ReliefPressure" ; + IFC4-PSD:nameAlias "Relief Pressure"@en , "リリーフ圧力"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPressureMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_VibrationIsolatorTypeCommon.ttl b/converter/src/main/resources/pset/Pset_VibrationIsolatorTypeCommon.ttl new file mode 100644 index 00000000..07c03800 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_VibrationIsolatorTypeCommon.ttl @@ -0,0 +1,144 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p9132d780d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Height of the vibration isolator before the application of load." ; + rdfs:label "NominalHeight" ; + IFC4-PSD:definition "Height of the vibration isolator before the application of load." ; + IFC4-PSD:definitionAlias ""@en , "負荷を掛ける前の振動絶縁材の高さ"@ja-JP ; + IFC4-PSD:ifdguid "9132d780d21511e1800000215ad4efdf" ; + IFC4-PSD:name "NominalHeight" ; + IFC4-PSD:nameAlias "高さ"@ja-JP , "Height"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:IsolatorCompressibility + a rdf:Property ; + rdfs:seeAlso :p8b3cf680d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsolatorCompressibility . + +:Status a rdf:Property ; + rdfs:seeAlso :p1a989eee042c4402833bb2453e382388 ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p998b1280d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The maximum weight that can be carried by the vibration isolator." ; + rdfs:label "MaximumSupportedWeight" ; + IFC4-PSD:definition "The maximum weight that can be carried by the vibration isolator." ; + IFC4-PSD:definitionAlias ""@en , "振動絶縁材で支えられる最高重量"@ja-JP ; + IFC4-PSD:ifdguid "998b1280d21511e1800000215ad4efdf" ; + IFC4-PSD:name "MaximumSupportedWeight" ; + IFC4-PSD:nameAlias "Maximum Supported Weight"@en , "最高支持重量"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcMassMeasure + ] . + +:p1a989eee042c4402833bb2453e382388 + a IFC4-PSD:PropertyDef ; + rdfs:label "Status" ; + IFC4-PSD:ifdguid "1a989eee042c4402833bb2453e382388" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:MaximumSupportedWeight + a rdf:Property ; + rdfs:seeAlso :p998b1280d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:MaximumSupportedWeight . + +:Pset_VibrationIsolatorTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Vibration isolator type common attributes." ; + rdfs:label "Pset_VibrationIsolatorTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcVibrationIsolator ; + IFC4-PSD:applicableTypeValue "IfcVibrationIsolator" ; + IFC4-PSD:definition "Vibration isolator type common attributes." ; + IFC4-PSD:definitionAlias ""@en , "振動絶縁体の共通属性"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_VibrationIsolatorTypeCommon" ; + IFC4-PSD:propertyDef :p795b5380d21511e1800000215ad4efdf , :p7f513480d21511e1800000215ad4efdf , :p998b1280d21511e1800000215ad4efdf , :p9132d780d21511e1800000215ad4efdf , :p1a989eee042c4402833bb2453e382388 , :p85dfac00d21511e1800000215ad4efdf , :p8b3cf680d21511e1800000215ad4efdf . + +:p7f513480d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The vibration transmissibility percentage." ; + rdfs:label "VibrationTransmissibility" ; + IFC4-PSD:definition "The vibration transmissibility percentage." ; + IFC4-PSD:definitionAlias ""@en , "振動伝達割合"@ja-JP ; + IFC4-PSD:ifdguid "7f513480d21511e1800000215ad4efdf" ; + IFC4-PSD:name "VibrationTransmissibility" ; + IFC4-PSD:nameAlias "振動伝達"@ja-JP , "Vibration Transmissibility"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:p8b3cf680d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The compressibility of the vibration isolator." ; + rdfs:label "IsolatorCompressibility" ; + IFC4-PSD:definition "The compressibility of the vibration isolator." ; + IFC4-PSD:definitionAlias ""@en , "振動絶縁材の圧縮率の圧縮率"@ja-JP ; + IFC4-PSD:ifdguid "8b3cf680d21511e1800000215ad4efdf" ; + IFC4-PSD:name "IsolatorCompressibility" ; + IFC4-PSD:nameAlias "振動絶縁材の圧縮率"@ja-JP , "Isolator Compressibility"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcRatioMeasure + ] . + +:NominalHeight a rdf:Property ; + rdfs:seeAlso :p9132d780d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalHeight . + +:VibrationTransmissibility + a rdf:Property ; + rdfs:seeAlso :p7f513480d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:VibrationTransmissibility . + +:p85dfac00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Static deflection of the vibration isolator." ; + rdfs:label "IsolatorStaticDeflection" ; + IFC4-PSD:definition "Static deflection of the vibration isolator." ; + IFC4-PSD:definitionAlias ""@en , "振動絶縁材の静的たわみ"@ja-JP ; + IFC4-PSD:ifdguid "85dfac00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "IsolatorStaticDeflection" ; + IFC4-PSD:nameAlias "振動絶縁材静的たわみ"@ja-JP , "Isolator Static Deflection"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLengthMeasure + ] . + +:Reference a rdf:Property ; + rdfs:seeAlso :p795b5380d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:p795b5380d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1')." ; + IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "795b5380d21511e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:IsolatorStaticDeflection + a rdf:Property ; + rdfs:seeAlso :p85dfac00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsolatorStaticDeflection . diff --git a/converter/src/main/resources/pset/Pset_WallCommon.ttl b/converter/src/main/resources/pset/Pset_WallCommon.ttl index 20ebbbdd..96c1afb0 100644 --- a/converter/src/main/resources/pset/Pset_WallCommon.ttl +++ b/converter/src/main/resources/pset/Pset_WallCommon.ttl @@ -1,239 +1,213 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_WallCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; -. -:Pset_WallCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcWall ; - IFC4-PSD:applicableTypeValue "IfcWall" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcWall and IfcWallStandardCase." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances des classes IfcWall et IfcWallStandardCase"@fr-FR ; - IFC4-PSD:definitionAlias "IfcWall(壁)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有IfcWall和IfcWallStandardCase实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_WallCommon" ; - IFC4-PSD:propertyDef :_aa3b8880d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b0ca0000d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c17a7600d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c93a1a80d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cfc89200d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d6570980d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_de16ae00d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e2db6200d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_ea027000d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f1c21480d21511e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f981b900d21511e1800000215ad4efdf ; -. -:_aa3b8880d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "aa3b8880d21511e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier ; - ] ; -. -:_b0ca0000d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "b0ca0000d21511e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_c17a7600d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "c17a7600d21511e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_c93a1a80d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Fire rating given according to the national fire safety classification." ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "c93a1a80d21511e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_cfc89200d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否由可燃材料制成。"@zh-CN ; - IFC4-PSD:ifdguid "cfc89200d21511e1800000215ad4efdf" ; - IFC4-PSD:name "Combustible" ; - IFC4-PSD:nameAlias "Brennbares Material"@de-DE ; - IFC4-PSD:nameAlias "Combustible"@fr-FR ; - IFC4-PSD:nameAlias "可燃性区分"@ja-JP ; - IFC4-PSD:nameAlias "是否可燃"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_d6570980d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Indication on how the flames spread around the surface, -It is given according to the national building code that governs the fire behaviour for materials.""" ; - IFC4-PSD:definitionAlias "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR ; - IFC4-PSD:ifdguid "d6570980d21511e1800000215ad4efdf" ; - IFC4-PSD:name "SurfaceSpreadOfFlame" ; - IFC4-PSD:nameAlias "Brandverhalten"@de-DE ; - IFC4-PSD:nameAlias "SurfacePropagationFlamme"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_de16ae00d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -Here the total thermal transmittance coefficient through the wall (including all materials).""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le mur (tous matériaux inclus)."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient der Wand (für alle Schichten)."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -表示该墙在传热方向上的整体导热系数(包括所有材料)。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここでは壁を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "de16ae00d21511e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. -:_e2db6200d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "e2db6200d21511e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_ea027000d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object extend to the structure above (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe , ob diese Wand raumhoch ist (WAHR), oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet s'étend à la structure au-dessus (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:ifdguid "ea027000d21511e1800000215ad4efdf" ; - IFC4-PSD:name "ExtendToStructure" ; - IFC4-PSD:nameAlias "ExtensionStructure"@fr-FR ; - IFC4-PSD:nameAlias "Raumhohe Wand"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_f1c21480d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est supposé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该对象是否需要承重。"@zh-CN ; - IFC4-PSD:ifdguid "f1c21480d21511e1800000215ad4efdf" ; - IFC4-PSD:name "LoadBearing" ; - IFC4-PSD:nameAlias "Porteur"@fr-FR ; - IFC4-PSD:nameAlias "Tragendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "是否承重"@zh-CN ; - IFC4-PSD:nameAlias "耐力部材"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_f981b900d21511e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen Brandabschnitt begrenzt (WAHR), oder nicht (FALSCH)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'objet est conçu pour assurer un compartimentage contre l'incendie (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:definitionAlias "防火区画を考慮した部材かどうかを示すブーリアン値"@ja-JP ; - IFC4-PSD:ifdguid "f981b900d21511e1800000215ad4efdf" ; - IFC4-PSD:name "Compartmentation" ; - IFC4-PSD:nameAlias "Brandabschnittsdefinierendes Bauteil"@de-DE ; - IFC4-PSD:nameAlias "Compartimentage"@fr-FR ; - IFC4-PSD:nameAlias "防火区画"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pd6570980d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + rdfs:label "SurfaceSpreadOfFlame" ; + IFC4-PSD:definition "Indication on how the flames spread around the surface,\nIt is given according to the national building code that governs the fire behaviour for materials." ; + IFC4-PSD:definitionAlias ""@en , "Indique comment les flammes se propagent sur une surface. Indication donnée selon le Code National du Bâtiment régissant le comportement au feu des matériaux."@fr-FR , "Beschreibung des Brandverhaltens des Bauteils gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "d6570980d21511e1800000215ad4efdf" ; + IFC4-PSD:name "SurfaceSpreadOfFlame" ; + IFC4-PSD:nameAlias "Surface Spread Of Flame"@en , "Brandverhalten"@de-DE , "SurfacePropagationFlamme"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:FireRating a rdf:Property ; + rdfs:seeAlso :pc93a1a80d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :paa3b8880d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:pcfc89200d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + rdfs:label "Combustible" ; + IFC4-PSD:definition "Indication whether the object is made from combustible material (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si l'objet est réalisé à partir de matériau combustible (VRAI) ou non (FAUX)."@fr-FR , ""@en , "表示该构件是否由可燃材料制成。"@zh-CN , "Angabe ob das Bauteil brennbares Material enthält (WAHR) oder nicht (FALSCH)."@de-DE , "この部材が可燃性物質で作られているかどうかを示すブーリアン値。"@ja-JP ; + IFC4-PSD:ifdguid "cfc89200d21511e1800000215ad4efdf" ; + IFC4-PSD:name "Combustible" ; + IFC4-PSD:nameAlias "Combustible"@en , "可燃性区分"@ja-JP , "Combustible"@fr-FR , "Brennbares Material"@de-DE , "是否可燃"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pea027000d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object extend to the structure above (TRUE) or not (FALSE)." ; + rdfs:label "ExtendToStructure" ; + IFC4-PSD:definition "Indicates whether the object extend to the structure above (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "Indique si l'objet s'étend à la structure au-dessus (VRAI) ou non (FAUX)."@fr-FR , "Angabe , ob diese Wand raumhoch ist (WAHR), oder nicht (FALSCH)."@de-DE ; + IFC4-PSD:ifdguid "ea027000d21511e1800000215ad4efdf" ; + IFC4-PSD:name "ExtendToStructure" ; + IFC4-PSD:nameAlias "Raumhohe Wand"@de-DE , "Extend To Structure"@en , "ExtensionStructure"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf981b900d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; + rdfs:label "Compartmentation" ; + IFC4-PSD:definition "Indication whether the object is designed to serve as a fire compartmentation (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si l'objet est conçu pour assurer un compartimentage contre l'incendie (VRAI) ou non (FAUX)."@fr-FR , "Angabe, ob dieses Bauteil einen Brandabschnitt begrenzt (WAHR), oder nicht (FALSCH)."@de-DE , ""@en , "防火区画を考慮した部材かどうかを示すブーリアン値"@ja-JP ; + IFC4-PSD:ifdguid "f981b900d21511e1800000215ad4efdf" ; + IFC4-PSD:name "Compartmentation" ; + IFC4-PSD:nameAlias "Compartimentage"@fr-FR , "Brandabschnittsdefinierendes Bauteil"@de-DE , "防火区画"@ja-JP , "Compartmentation"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pe2db6200d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; + IFC4-PSD:ifdguid "e2db6200d21511e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "是否外部构件"@zh-CN , "EstExterieur"@fr-FR , "外部区分"@ja-JP , "Außenbauteil"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:LoadBearing a rdf:Property ; + rdfs:seeAlso :pf1c21480d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:LoadBearing . + +:pde16ae00d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the wall (including all materials)." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nHere the total thermal transmittance coefficient through the wall (including all materials)." ; + IFC4-PSD:definitionAlias "熱貫流率U値。ここでは壁を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , "Coefficient de transmission thermique surfacique (U). C'est le coefficient global de transmission thermique à travers le mur (tous matériaux inclus)."@fr-FR , "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient der Wand (für alle Schichten)."@de-DE , "材料的导热系数(U值)。\n表示该墙在传热方向上的整体导热系数(包括所有材料)。"@zh-CN , ""@en ; + IFC4-PSD:ifdguid "de16ae00d21511e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "熱貫流率"@ja-JP , "TransmissionThermique"@fr-FR , "U-Wert"@de-DE , "导热系数"@zh-CN , "Thermal Transmittance"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:ExtendToStructure a rdf:Property ; + rdfs:seeAlso :pea027000d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ExtendToStructure . + +:Status a rdf:Property ; + rdfs:seeAlso :pb0ca0000d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pc17a7600d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias ""@en , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; + IFC4-PSD:ifdguid "c17a7600d21511e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE , "隔音等级"@zh-CN , "IsolationAcoustique"@fr-FR , "遮音等級"@ja-JP , "Acoustic Rating"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pde16ae00d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:pf1c21480d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + rdfs:label "LoadBearing" ; + IFC4-PSD:definition "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "荷重に関係している部材かどうかを示すブーリアン値。"@ja-JP , "表示该对象是否需要承重。"@zh-CN , "Angabe, ob dieses Bauteil tragend ist (JA) oder nichttragend (NEIN)"@de-DE , ""@en , "Indique si l'objet est supposé porter des charges (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "f1c21480d21511e1800000215ad4efdf" ; + IFC4-PSD:name "LoadBearing" ; + IFC4-PSD:nameAlias "是否承重"@zh-CN , "Tragendes Bauteil"@de-DE , "Porteur"@fr-FR , "Load Bearing"@en , "耐力部材"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Combustible a rdf:Property ; + rdfs:seeAlso :pcfc89200d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Combustible . + +:pc93a1a80d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , ""@en , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:ifdguid "c93a1a80d21511e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "Fire Rating"@en , "Feuerwiderstandsklasse"@de-DE , "耐火等級"@ja-JP , "防火等级"@zh-CN , "ResistanceAuFeu"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Compartmentation a rdf:Property ; + rdfs:seeAlso :pf981b900d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Compartmentation . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :pc17a7600d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . + +:Pset_WallCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcWall and IfcWallStandardCase." ; + rdfs:label "Pset_WallCommon" ; + IFC4-PSD:applicableClass IFC4:IfcWall ; + IFC4-PSD:applicableTypeValue "IfcWall" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcWall and IfcWallStandardCase." ; + IFC4-PSD:definitionAlias ""@en , "所有IfcWall和IfcWallStandardCase实例的定义中通用的属性。"@zh-CN , "IfcWall(壁)オブジェクトに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances des classes IfcWall et IfcWallStandardCase"@fr-FR ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WallCommon" ; + IFC4-PSD:propertyDef :pc93a1a80d21511e1800000215ad4efdf , :pb0ca0000d21511e1800000215ad4efdf , :pe2db6200d21511e1800000215ad4efdf , :pcfc89200d21511e1800000215ad4efdf , :pd6570980d21511e1800000215ad4efdf , :pf981b900d21511e1800000215ad4efdf , :pea027000d21511e1800000215ad4efdf , :pc17a7600d21511e1800000215ad4efdf , :paa3b8880d21511e1800000215ad4efdf , :pde16ae00d21511e1800000215ad4efdf , :pf1c21480d21511e1800000215ad4efdf . + +:paa3b8880d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "aa3b8880d21511e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Bauteiltyp"@de-DE , "参照記号"@ja-JP , "参考号"@zh-CN , "Reference"@en , "Reference"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pe2db6200d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:pb0ca0000d21511e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , ""@en , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; + IFC4-PSD:ifdguid "b0ca0000d21511e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "Status"@en , "Status"@de-DE , "Statut"@fr-FR , "状態"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SurfaceSpreadOfFlame + a rdf:Property ; + rdfs:seeAlso :pd6570980d21511e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SurfaceSpreadOfFlame . diff --git a/converter/src/main/resources/pset/Pset_Warranty.ttl b/converter/src/main/resources/pset/Pset_Warranty.ttl new file mode 100644 index 00000000..615b79d1 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_Warranty.ttl @@ -0,0 +1,160 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p2a61ee00d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The content of the warranty." ; + rdfs:label "WarrantyContent" ; + IFC4-PSD:definition "The content of the warranty." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2a61ee00d21611e1800000215ad4efdf" ; + IFC4-PSD:name "WarrantyContent" ; + IFC4-PSD:nameAlias "Warranty Content"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:WarrantyPeriod a rdf:Property ; + rdfs:seeAlso :p20d88600d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarrantyPeriod . + +:p14542d80d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The date on which the warranty expires." ; + rdfs:label "WarrantyEndDate" ; + IFC4-PSD:definition "The date on which the warranty expires." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "14542d80d21611e1800000215ad4efdf" ; + IFC4-PSD:name "WarrantyEndDate" ; + IFC4-PSD:nameAlias "Warranty End Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + +:WarrantyEndDate a rdf:Property ; + rdfs:seeAlso :p14542d80d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarrantyEndDate . + +:p08686b80d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The identifier assigned to a warranty." ; + rdfs:label "WarrantyIdentifier" ; + IFC4-PSD:definition "The identifier assigned to a warranty." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "08686b80d21611e1800000215ad4efdf" ; + IFC4-PSD:name "WarrantyIdentifier" ; + IFC4-PSD:nameAlias "Warranty Identifier"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:p20d88600d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The time duration during which a manufacturer or supplier guarantees or warrants the performance of an artefact." ; + rdfs:label "WarrantyPeriod" ; + IFC4-PSD:definition "The time duration during which a manufacturer or supplier guarantees or warrants the performance of an artefact." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "20d88600d21611e1800000215ad4efdf" ; + IFC4-PSD:name "WarrantyPeriod" ; + IFC4-PSD:nameAlias "Warranty Period"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:WarrantyContent a rdf:Property ; + rdfs:seeAlso :p2a61ee00d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarrantyContent . + +:IsExtendedWarranty a rdf:Property ; + rdfs:seeAlso :p19b17800d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExtendedWarranty . + +:p2635d080d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The organization that should be contacted for action under the terms of the warranty. Note that the role of the organization (manufacturer, supplier, installer etc.) is determined by the IfcActorRole attribute of IfcOrganization." ; + rdfs:label "PointOfContact" ; + IFC4-PSD:definition "The organization that should be contacted for action under the terms of the warranty. Note that the role of the organization (manufacturer, supplier, installer etc.) is determined by the IfcActorRole attribute of IfcOrganization." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "2635d080d21611e1800000215ad4efdf" ; + IFC4-PSD:name "PointOfContact" ; + IFC4-PSD:nameAlias "Point Of Contact"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:WarrantyIdentifier a rdf:Property ; + rdfs:seeAlso :p08686b80d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarrantyIdentifier . + +:p0ef6e300d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The date on which the warranty commences." ; + rdfs:label "WarrantyStartDate" ; + IFC4-PSD:definition "The date on which the warranty commences." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "0ef6e300d21611e1800000215ad4efdf" ; + IFC4-PSD:name "WarrantyStartDate" ; + IFC4-PSD:nameAlias "Warranty Start Date"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDate + ] . + +:WarrantyStartDate a rdf:Property ; + rdfs:seeAlso :p0ef6e300d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WarrantyStartDate . + +:p30f06580d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Items, conditions or actions that may be excluded from the warranty or that may cause the warranty to become void." ; + rdfs:label "Exclusions" ; + IFC4-PSD:definition "Items, conditions or actions that may be excluded from the warranty or that may cause the warranty to become void." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "30f06580d21611e1800000215ad4efdf" ; + IFC4-PSD:name "Exclusions" ; + IFC4-PSD:nameAlias "Exclusions"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcText + ] . + +:Exclusions a rdf:Property ; + rdfs:seeAlso :p30f06580d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Exclusions . + +:Pset_Warranty a IFC4-PSD:PropertySetDef ; + rdfs:comment "An assurance given by the seller or provider of an artefact that the artefact is without defects and will operate as described for a defined period of time without failure and that if a defect does arise during that time, that it will be corrected by the seller or provider." ; + rdfs:label "Pset_Warranty" ; + IFC4-PSD:applicableClass IFC4:IfcElement ; + IFC4-PSD:applicableTypeValue "IfcElement" ; + IFC4-PSD:definition "An assurance given by the seller or provider of an artefact that the artefact is without defects and will operate as described for a defined period of time without failure and that if a defect does arise during that time, that it will be corrected by the seller or provider." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_Warranty" ; + IFC4-PSD:propertyDef :p2a61ee00d21611e1800000215ad4efdf , :p0ef6e300d21611e1800000215ad4efdf , :p2635d080d21611e1800000215ad4efdf , :p19b17800d21611e1800000215ad4efdf , :p08686b80d21611e1800000215ad4efdf , :p20d88600d21611e1800000215ad4efdf , :p14542d80d21611e1800000215ad4efdf , :p30f06580d21611e1800000215ad4efdf . + +:p19b17800d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication of whether this is an extended warranty whose duration is greater than that normally assigned to an artefact (=TRUE) or not (= FALSE)." ; + rdfs:label "IsExtendedWarranty" ; + IFC4-PSD:definition "Indication of whether this is an extended warranty whose duration is greater than that normally assigned to an artefact (=TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "19b17800d21611e1800000215ad4efdf" ; + IFC4-PSD:name "IsExtendedWarranty" ; + IFC4-PSD:nameAlias "Is Extended Warranty"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:PointOfContact a rdf:Property ; + rdfs:seeAlso :p2635d080d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PointOfContact . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeCommon.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeCommon.ttl new file mode 100644 index 00000000..9c6e7173 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeCommon.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_WasteTerminalTypeCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Common properties for waste terminals." ; + rdfs:label "Pset_WasteTerminalTypeCommon" ; + IFC4-PSD:applicableClass IFC4:IfcWasteTerminal ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal" ; + IFC4-PSD:definition "Common properties for waste terminals." ; + IFC4-PSD:definitionAlias "廃棄接続口への共通プロパティー。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeCommon" ; + IFC4-PSD:propertyDef :p42d20880d21611e1800000215ad4efdf , :p3c439100d21611e1800000215ad4efdf . + +:Status a rdf:Property ; + rdfs:seeAlso :p42d20880d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:p42d20880d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "42d20880d21611e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p3c439100d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." ; + IFC4-PSD:definitionAlias "この規格(例、A-1)で特定のタイプの参照IDが割り当てられ、等級がなければ等級システムを使って割り当てられます。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3c439100d21611e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "Reference"@en , "参照記号"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:Reference a rdf:Property ; + rdfs:seeAlso :p3c439100d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorTrap.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorTrap.ttl new file mode 100644 index 00000000..eb517b8f --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorTrap.ttl @@ -0,0 +1,247 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p5aa98c80d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the chamber of the trap." ; + rdfs:label "NominalBodyLength" ; + IFC4-PSD:definition "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the chamber of the trap." ; + IFC4-PSD:definitionAlias "防臭弁の区画の半径か局所座標系のX軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "5aa98c80d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyLength" ; + IFC4-PSD:nameAlias "呼称躯体長"@ja-JP , "Nominal Body Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverMaterial a rdf:Property ; + rdfs:seeAlso :pdf94a600d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverMaterial . + +:SpilloverLevel a rdf:Property ; + rdfs:seeAlso :p7ca30f00d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SpilloverLevel . + +:pcdb30300d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the trap." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the trap." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のX軸に沿うか、半径(円状の形の場合)で測定された防臭弁カバーの長さ。"@ja-JP ; + IFC4-PSD:ifdguid "cdb30300d21611e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "カバー長さ"@ja-JP , "Cover Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p95132980d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the gully trap has a strainer (= TRUE) or not (= FALSE)." ; + rdfs:label "HasStrainer" ; + IFC4-PSD:definition "Indicates whether the gully trap has a strainer (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias ""@en , "溝の防臭弁がろ過装置を備えているかどうか指示する。"@ja-JP ; + IFC4-PSD:ifdguid "95132980d21611e1800000215ad4efdf" ; + IFC4-PSD:name "HasStrainer" ; + IFC4-PSD:nameAlias "ろ過装置"@ja-JP , "Has Strainer"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:p6bf29900d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the chamber of the trap." ; + rdfs:label "NominalBodyDepth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the z-axis in the local coordinate system of the chamber of the trap." ; + IFC4-PSD:definitionAlias "防臭弁の区画の半径か局所座標系のZ軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6bf29900d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyDepth" ; + IFC4-PSD:nameAlias "呼称躯体深さ"@ja-JP , "Nominal Body Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :pd6a3d480d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :pc4299b00d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . + +:pc4299b00d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + IFC4-PSD:definitionAlias ""@en , "吸気口接続口のサイズ\n\n注意:同サイズの吸気口接続口がないものとする。"@ja-JP ; + IFC4-PSD:ifdguid "c4299b00d21611e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "吸気口サイズ"@ja-JP , "Inlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :pcdb30300d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . + +:pd6a3d480d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the trap." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the y-axis in the local coordinate system of the cover of the trap." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のY軸で測定された防臭弁カバーの長さ。"@ja-JP ; + IFC4-PSD:ifdguid "d6a3d480d21611e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "カバー幅"@ja-JP , "Cover Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:TrapType a rdf:Property ; + rdfs:seeAlso :p8593e080d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrapType . + +:p639a5e00d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the chamber of the trap." ; + rdfs:label "NominalBodyWidth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the y-axis in the local coordinate system of the chamber of the trap." ; + IFC4-PSD:definitionAlias "防臭弁の区画の半径か局所座標系のY軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "639a5e00d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyWidth" ; + IFC4-PSD:nameAlias "呼称躯体幅"@ja-JP , "Nominal Body Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalBodyDepth a rdf:Property ; + rdfs:seeAlso :p6bf29900d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyDepth . + +:HasStrainer a rdf:Property ; + rdfs:seeAlso :p95132980d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasStrainer . + +:p757c0100d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates if the purpose of the floor trap is to receive sullage water, or if that is amongst its purposes (= TRUE), or not (= FALSE). Note that if TRUE, it is expected that an upstand or kerb will be placed around the floor trap to prevent the ingress of surface water runoff; the provision of the upstand or kerb is not dealt with in this property set." ; + rdfs:label "IsForSullageWater" ; + IFC4-PSD:definition "Indicates if the purpose of the floor trap is to receive sullage water, or if that is amongst its purposes (= TRUE), or not (= FALSE). Note that if TRUE, it is expected that an upstand or kerb will be placed around the floor trap to prevent the ingress of surface water runoff; the provision of the upstand or kerb is not dealt with in this property set." ; + IFC4-PSD:definitionAlias ""@en , "床排水防臭弁の目的が、汚水を受けることの可(=true)否(=false)を示す。\n注意:TRUEの場合、水の流入を防ぐための床防臭弁の周りに直立壁か縁石が配置され、このプロパティセットにおいては直立壁や縁石の提供は処理されない。"@ja-JP ; + IFC4-PSD:ifdguid "757c0100d21611e1800000215ad4efdf" ; + IFC4-PSD:name "IsForSullageWater" ; + IFC4-PSD:nameAlias "汚水用"@ja-JP , "Is For Sullage Water"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_WasteTerminalTypeFloorTrap + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting, set into the floor, that retains liquid to prevent the passage of foul air." ; + rdfs:label "Pset_WasteTerminalTypeFloorTrap" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/FLOORTRAP" ; + IFC4-PSD:definition "Pipe fitting, set into the floor, that retains liquid to prevent the passage of foul air." ; + IFC4-PSD:definitionAlias ""@en , "液体を溜めて汚れた空気の通過を防ぐために床に据えられる配管。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeFloorTrap" ; + IFC4-PSD:propertyDef :pcdb30300d21611e1800000215ad4efdf , :p7ca30f00d21611e1800000215ad4efdf , :p757c0100d21611e1800000215ad4efdf , :p95132980d21611e1800000215ad4efdf , :pc4299b00d21611e1800000215ad4efdf , :p9c3a3780d21611e1800000215ad4efdf , :p5aa98c80d21611e1800000215ad4efdf , :p639a5e00d21611e1800000215ad4efdf , :p6bf29900d21611e1800000215ad4efdf , :pa65c3600d21611e1800000215ad4efdf , :p8593e080d21611e1800000215ad4efdf , :pdf94a600d21611e1800000215ad4efdf , :pd6a3d480d21611e1800000215ad4efdf . + +:p9c3a3780d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素からの接続口口径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "9c3a3780d21611e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "接続口口径"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p8593e080d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of waste trap used in combination with the floor trap from which the type required may be set." ; + rdfs:label "TrapType" ; + IFC4-PSD:definition "Identifies the predefined types of waste trap used in combination with the floor trap from which the type required may be set." ; + IFC4-PSD:definitionAlias "セットされる予定の床の防臭弁と組み合わせて使われる廃棄物の防臭弁のあらかじめ定義されたタイプの識別情報。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "8593e080d21611e1800000215ad4efdf" ; + IFC4-PSD:name "TrapType" ; + IFC4-PSD:nameAlias "Trap Type"@en , "防臭弁の種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "P_TRAP" , "Q_TRAP" , "S_TRAP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:IsForSullageWater a rdf:Property ; + rdfs:seeAlso :p757c0100d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsForSullageWater . + +:InletPatternType a rdf:Property ; + rdfs:seeAlso :pa65c3600d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletPatternType . + +:NominalBodyWidth a rdf:Property ; + rdfs:seeAlso :p639a5e00d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyWidth . + +:pdf94a600d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Material from which the cover or grating is constructed." ; + rdfs:label "CoverMaterial" ; + IFC4-PSD:definition "Material from which the cover or grating is constructed." ; + IFC4-PSD:definitionAlias ""@en , "カバーか格子の材質。"@ja-JP ; + IFC4-PSD:ifdguid "df94a600d21611e1800000215ad4efdf" ; + IFC4-PSD:name "CoverMaterial" ; + IFC4-PSD:nameAlias "Cover Material"@en , "カバー材質"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyReferenceValue ; + IFC4-PSD:reftype IFC4:IfcMaterialDefinition + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p9c3a3780d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:pa65c3600d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the pattern of inlet connections to a trap.\n\nA trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south)." ; + rdfs:label "InletPatternType" ; + IFC4-PSD:definition "Identifies the pattern of inlet connections to a trap.\n\nA trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south)." ; + IFC4-PSD:definitionAlias ""@en , "防臭弁の吸気口接続口の識別情報。\n\n一つの防臭弁に0.1.2.3.4.の吸気口接続口とパターンがあるときは変化する可能性があります。羅列されるとき、接続口が垂直である様子か、防臭弁の底(南)におかれます。位置1は左(西)に、位置2は上方(北)に、位置3は右(東)に、位置4は下方(南)になる。"@ja-JP ; + IFC4-PSD:ifdguid "a65c3600d21611e1800000215ad4efdf" ; + IFC4-PSD:name "InletPatternType" ; + IFC4-PSD:nameAlias "Inlet Pattern Type"@en , "吸気口種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "124" , "13" , "134" , "2" , "234" , "14" , "3" , "23" , "4" , "24" , "1234" , "NONE" , "12" , "123" , "34" , "1" + ] . + +:p7ca30f00d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The level at which water spills out of the terminal." ; + rdfs:label "SpilloverLevel" ; + IFC4-PSD:definition "The level at which water spills out of the terminal." ; + IFC4-PSD:definitionAlias "継手からの水位。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "7ca30f00d21611e1800000215ad4efdf" ; + IFC4-PSD:name "SpilloverLevel" ; + IFC4-PSD:nameAlias "Spillover Level"@en , "水位"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalBodyLength a rdf:Property ; + rdfs:seeAlso :p5aa98c80d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyLength . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorWaste.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorWaste.ttl new file mode 100644 index 00000000..169e2b61 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeFloorWaste.ttl @@ -0,0 +1,128 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p03f08280d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:NominalBodyWidth a rdf:Property ; + rdfs:seeAlso :pf20edf80d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyWidth . + +:NominalBodyDepth a rdf:Property ; + rdfs:seeAlso :pfaffb100d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyDepth . + +:pf20edf80d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the waste." ; + rdfs:label "NominalBodyWidth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the y-axis in the local coordinate system of the waste." ; + IFC4-PSD:definitionAlias "廃棄物の半径か局所座標系のY軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "f20edf80d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyWidth" ; + IFC4-PSD:nameAlias "Nominal Body Width"@en , "呼称躯体幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pe8857780d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the waste." ; + rdfs:label "NominalBodyLength" ; + IFC4-PSD:definition "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the waste." ; + IFC4-PSD:definitionAlias "廃棄物の区画の半径か局所座標系のX軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "e8857780d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyLength" ; + IFC4-PSD:nameAlias "Nominal Body Length"@en , "呼称躯体長"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p17035280d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the waste." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the y-axis in the local coordinate system of the cover of the waste." ; + IFC4-PSD:definitionAlias "局所座標系のY軸で測定された防臭弁カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "17035280d21711e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "カバー幅"@ja-JP , "Cover Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p0d79ea80d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the waste." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the waste." ; + IFC4-PSD:definitionAlias "局所座標系のX軸に沿うか、半径(円状の形の場合)で測定された防臭弁カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "0d79ea80d21711e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "カバー長さ"@ja-JP , "Cover Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :p17035280d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:p03f08280d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素からの排気口サイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "03f08280d21711e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "排気口サイズ"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pfaffb100d21611e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the waste." ; + rdfs:label "NominalBodyDepth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the z-axis in the local coordinate system of the waste." ; + IFC4-PSD:definitionAlias "廃棄物の半径か局所座標系のZ軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "faffb100d21611e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyDepth" ; + IFC4-PSD:nameAlias "呼称躯体深さ"@ja-JP , "Nominal Body Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :p0d79ea80d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . + +:NominalBodyLength a rdf:Property ; + rdfs:seeAlso :pe8857780d21611e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyLength . + +:Pset_WasteTerminalTypeFloorWaste + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting, set into the floor, that collects waste water and discharges it to a separate trap." ; + rdfs:label "Pset_WasteTerminalTypeFloorWaste" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/FLOORWASTE" ; + IFC4-PSD:definition "Pipe fitting, set into the floor, that collects waste water and discharges it to a separate trap." ; + IFC4-PSD:definitionAlias "廃水や廃水を集めて分離する防臭弁を持つ、床に据え付けられた配管。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeFloorWaste" ; + IFC4-PSD:propertyDef :p0d79ea80d21711e1800000215ad4efdf , :pfaffb100d21611e1800000215ad4efdf , :pe8857780d21611e1800000215ad4efdf , :pf20edf80d21611e1800000215ad4efdf , :p03f08280d21711e1800000215ad4efdf , :p17035280d21711e1800000215ad4efdf . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullySump.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullySump.ttl new file mode 100644 index 00000000..f04befea --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullySump.ttl @@ -0,0 +1,197 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:NominalSumpDepth a rdf:Property ; + rdfs:seeAlso :p38643e80d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSumpDepth . + +:p503bc280d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of trap from which the type required may be set." ; + rdfs:label "TrapType" ; + IFC4-PSD:definition "Identifies the predefined types of trap from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "必要とされるタイプがセットされる防臭弁の定義されたタイプを確認してください。"@ja-JP ; + IFC4-PSD:ifdguid "503bc280d21711e1800000215ad4efdf" ; + IFC4-PSD:name "TrapType" ; + IFC4-PSD:nameAlias "防臭弁種類"@ja-JP , "Trap Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "P_TRAP" , "Q_TRAP" , "S_TRAP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :p9abd3f00d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:BackInletPatternType + a rdf:Property ; + rdfs:seeAlso :p69dd0a00d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BackInletPatternType . + +:GullyType a rdf:Property ; + rdfs:seeAlso :p431ed380d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GullyType . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :p87aa6f00d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . + +:p26829b80d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the sump." ; + rdfs:label "NominalSumpLength" ; + IFC4-PSD:definition "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the sump." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のX軸に沿うか半径(円状の形の場合)で測定された、汚水槽の長さ。"@ja-JP ; + IFC4-PSD:ifdguid "26829b80d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSumpLength" ; + IFC4-PSD:nameAlias "Nominal Sump Length"@en , "汚水槽長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p909b4080d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the gully trap." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the gully trap." ; + IFC4-PSD:definitionAlias "局所座標系のX軸に沿うか、半径(円状の形の場合)で測定された溝防臭弁カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "909b4080d21711e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "Cover Length"@en , "カバーの長さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p9abd3f00d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the gully trap." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the y-axis in the local coordinate system of the cover of the gully trap." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のY軸で測定された溝防臭弁カバーの長さ。"@ja-JP ; + IFC4-PSD:ifdguid "9abd3f00d21711e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "Cover Width"@en , "カバーの幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p6053a200d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:p69dd0a00d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the pattern of inlet connections to a gully trap.\n\nA gulley trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the gully trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south).\n\n 2\n |\n ----------------\n ! |\n1-| |-3\n ! |\n ----------------\n |\n 4" ; + rdfs:label "BackInletPatternType" ; + IFC4-PSD:definition "Identifies the pattern of inlet connections to a gully trap.\n\nA gulley trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the gully trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south).\n\n 2\n |\n ----------------\n ! |\n1-| |-3\n ! |\n ----------------\n |\n 4" ; + IFC4-PSD:definitionAlias "溝防臭弁の吸気口パターンを確認してください。\n\n一つの溝防臭弁に0.1.2.3.4.の吸気口接続口とパターンがあるときは変化する可能性があります。表記されるときは、接続口が垂直である様子か、防臭弁の底(南)におかれます。位置1は左(西)に、位置2は上方(北)に、位置3は右(東)に、位置4は下方(南)になります。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "69dd0a00d21711e1800000215ad4efdf" ; + IFC4-PSD:name "BackInletPatternType" ; + IFC4-PSD:nameAlias "Back Inlet Pattern Type"@en , "背部接続口種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "1234" , "124" , "3" , "14" , "123" , "2" , "13" , "NONE" , "4" , "1" , "24" , "234" , "34" , "23" , "134" , "12" + ] . + +:NominalSumpLength a rdf:Property ; + rdfs:seeAlso :p26829b80d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSumpLength . + +:TrapType a rdf:Property ; + rdfs:seeAlso :p503bc280d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrapType . + +:p431ed380d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of gully from which the type required may be set." ; + rdfs:label "GullyType" ; + IFC4-PSD:definition "Identifies the predefined types of gully from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "必要とされるタイプがセットされる溝の定義されたタイプを確認してください。"@ja-JP ; + IFC4-PSD:ifdguid "431ed380d21711e1800000215ad4efdf" ; + IFC4-PSD:name "GullyType" ; + IFC4-PSD:nameAlias "Gully Type"@en , "溝種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "VERTICAL" , "BACKINLET" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p87aa6f00d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + IFC4-PSD:definitionAlias "吸気口接続口のサイズ。\n\n注意:同サイズの吸気口接続口がないものとします。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "87aa6f00d21711e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "Inlet Connection Size"@en , "吸気口接続口サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p6053a200d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "要素からの排気口接続口のサイズ。"@ja-JP ; + IFC4-PSD:ifdguid "6053a200d21711e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "Outlet Connection Size"@en , "排気口接続口"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :p909b4080d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . + +:p38643e80d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the sump." ; + rdfs:label "NominalSumpDepth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the z-axis in the local coordinate system of the sump." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のZ軸に沿う形で測定され汚水槽の長さ。"@ja-JP ; + IFC4-PSD:ifdguid "38643e80d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSumpDepth" ; + IFC4-PSD:nameAlias "汚水槽深さ"@ja-JP , "Nominal Sump Depth"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:Pset_WasteTerminalTypeGullySump + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover." ; + rdfs:label "Pset_WasteTerminalTypeGullySump" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/GULLYSUMP" ; + IFC4-PSD:definition "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover." ; + IFC4-PSD:definitionAlias "地表水や廃水を受けるためのグレーチングシールカバーに取り付けられる、取付器具や配管。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeGullySump" ; + IFC4-PSD:propertyDef :p9abd3f00d21711e1800000215ad4efdf , :p6053a200d21711e1800000215ad4efdf , :p26829b80d21711e1800000215ad4efdf , :p87aa6f00d21711e1800000215ad4efdf , :p300c0380d21711e1800000215ad4efdf , :p69dd0a00d21711e1800000215ad4efdf , :p909b4080d21711e1800000215ad4efdf , :p503bc280d21711e1800000215ad4efdf , :p38643e80d21711e1800000215ad4efdf , :p431ed380d21711e1800000215ad4efdf . + +:p300c0380d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the sump." ; + rdfs:label "NominalSumpWidth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the y-axis in the local coordinate system of the sump." ; + IFC4-PSD:definitionAlias "局所座標系のY軸に沿う形で測定され汚水槽の長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "300c0380d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalSumpWidth" ; + IFC4-PSD:nameAlias "汚水槽幅"@ja-JP , "Nominal Sump Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalSumpWidth a rdf:Property ; + rdfs:seeAlso :p300c0380d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalSumpWidth . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullyTrap.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullyTrap.ttl new file mode 100644 index 00000000..d5100b4d --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeGullyTrap.ttl @@ -0,0 +1,214 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :pec65c980d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:pdd7f1700d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of trap from which the type required may be set." ; + rdfs:label "TrapType" ; + IFC4-PSD:definition "Identifies the predefined types of trap from which the type required may be set." ; + IFC4-PSD:definitionAlias "セットされる予定の防臭弁のあらかじめ定義されたタイプを確認します。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "dd7f1700d21711e1800000215ad4efdf" ; + IFC4-PSD:name "TrapType" ; + IFC4-PSD:nameAlias "Trap Type"@en , "防臭弁の種類"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "P_TRAP" , "Q_TRAP" , "S_TRAP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :p21721c00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:pbe808500d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the chamber of the gully trap." ; + rdfs:label "NominalBodyDepth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the z-axis in the local coordinate system of the chamber of the gully trap." ; + IFC4-PSD:definitionAlias "溝防臭弁の半径か局所座標系のZ軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "be808500d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyDepth" ; + IFC4-PSD:nameAlias "Nominal Body Depth"@en , "呼称躯体深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p1919e100d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the gully trap." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the gully trap." ; + IFC4-PSD:definitionAlias ""@en , "局所座標系のX軸に沿うか、半径(円状の形の場合)で測定された溝防臭弁カバーの長さ。"@ja-JP ; + IFC4-PSD:ifdguid "1919e100d21811e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "カバーの長さ"@ja-JP , "Cover Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :p1919e100d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pb45e8680d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the chamber of the gully trap." ; + rdfs:label "NominalBodyWidth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the y-axis in the local coordinate system of the chamber of the gully trap." ; + IFC4-PSD:definitionAlias ""@en , "溝防臭弁の半径か局所座標系のY軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP ; + IFC4-PSD:ifdguid "b45e8680d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyWidth" ; + IFC4-PSD:nameAlias "Nominal Body Width"@en , "呼称躯体幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalBodyLength a rdf:Property ; + rdfs:seeAlso :paad51e80d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyLength . + +:TrapType a rdf:Property ; + rdfs:seeAlso :pdd7f1700d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:TrapType . + +:paad51e80d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the chamber of the gully trap." ; + rdfs:label "NominalBodyLength" ; + IFC4-PSD:definition "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the chamber of the gully trap." ; + IFC4-PSD:definitionAlias "溝防臭弁の半径か局所座標系のX軸に沿って測定された呼称もしくは積算された長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "aad51e80d21711e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyLength" ; + IFC4-PSD:nameAlias "Nominal Body Length"@en , "呼称躯体長"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :p10290f80d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . + +:p10290f80d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + IFC4-PSD:definitionAlias "吸気口接続口のサイズ。\n\n注意:同サイズの吸気接続口がないものとします。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "10290f80d21811e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "Inlet Connection Size"@en , "吸気口接続口サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:pc809ed00d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of gully from which the type required may be set." ; + rdfs:label "GullyType" ; + IFC4-PSD:definition "Identifies the predefined types of gully from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "設置する予定の溝をあらかじめ定義でタイプを確認します。"@ja-JP ; + IFC4-PSD:ifdguid "c809ed00d21711e1800000215ad4efdf" ; + IFC4-PSD:name "GullyType" ; + IFC4-PSD:nameAlias "防臭弁の種類"@ja-JP , "Gully Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "VERTICAL" , "BACKINLET" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p21721c00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the gully trap." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the y-axis in the local coordinate system of the cover of the gully trap." ; + IFC4-PSD:definitionAlias "局所座標系のY軸で測定された溝防臭弁カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "21721c00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "Cover Width"@en , "カバーの幅"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalBodyWidth a rdf:Property ; + rdfs:seeAlso :pb45e8680d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyWidth . + +:BackInletPatternType + a rdf:Property ; + rdfs:seeAlso :pf4be0480d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:BackInletPatternType . + +:GullyType a rdf:Property ; + rdfs:seeAlso :pc809ed00d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GullyType . + +:HasStrainer a rdf:Property ; + rdfs:seeAlso :pd5bf7280d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasStrainer . + +:pf4be0480d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the pattern of inlet connections to a gully trap.\n\nA gulley trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the gully trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south)." ; + rdfs:label "BackInletPatternType" ; + IFC4-PSD:definition "Identifies the pattern of inlet connections to a gully trap.\n\nA gulley trap may have 0,1,2,3 or 4 inlet connections and the pattern of their arrangement may vary. The enumeration makes the convention that an outlet is either vertical or is placed at the bottom (south side) of the gully trap (when viewed in plan). Position 1 is to the left (west), position 2 is to the top (north), position 3 is to the right (east) and position 4 is to the bottom (south)." ; + IFC4-PSD:definitionAlias ""@en ; + IFC4-PSD:ifdguid "f4be0480d21711e1800000215ad4efdf" ; + IFC4-PSD:name "BackInletPatternType" ; + IFC4-PSD:nameAlias "Back Inlet Pattern Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "23" , "1" , "134" , "3" , "123" , "34" , "24" , "NONE" , "234" , "13" , "1234" , "4" , "124" , "2" , "12" , "14" + ] . + +:NominalBodyDepth a rdf:Property ; + rdfs:seeAlso :pbe808500d21711e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyDepth . + +:Pset_WasteTerminalTypeGullyTrap + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover and discharging through a trap (BS6100 330 3504 modified)" ; + rdfs:label "Pset_WasteTerminalTypeGullyTrap" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/GULLYTRAP" ; + IFC4-PSD:definition "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover and discharging through a trap (BS6100 330 3504 modified)" ; + IFC4-PSD:definitionAlias "表面水や廃水を受けるために取り付けられる、取付器具や配管(BS6100 330 3504)グレーチングや防臭弁を通して排出されるよう取り付けられる。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeGullyTrap" ; + IFC4-PSD:propertyDef :p1919e100d21811e1800000215ad4efdf , :paad51e80d21711e1800000215ad4efdf , :pb45e8680d21711e1800000215ad4efdf , :pc809ed00d21711e1800000215ad4efdf , :pec65c980d21711e1800000215ad4efdf , :pbe808500d21711e1800000215ad4efdf , :p21721c00d21811e1800000215ad4efdf , :pf4be0480d21711e1800000215ad4efdf , :pdd7f1700d21711e1800000215ad4efdf , :pd5bf7280d21711e1800000215ad4efdf , :p10290f80d21811e1800000215ad4efdf . + +:pd5bf7280d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indicates whether the gully trap has a strainer (= TRUE) or not (= FALSE)." ; + rdfs:label "HasStrainer" ; + IFC4-PSD:definition "Indicates whether the gully trap has a strainer (= TRUE) or not (= FALSE)." ; + IFC4-PSD:definitionAlias "溝の防臭弁がろ過装置を備えているかどうかの指示。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "d5bf7280d21711e1800000215ad4efdf" ; + IFC4-PSD:name "HasStrainer" ; + IFC4-PSD:nameAlias "Has Strainer"@en , "ろ過装置"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pec65c980d21711e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素からの接続口サイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "ec65c980d21711e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "Outlet Connection Size"@en , "排気口接続口サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeRoofDrain.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeRoofDrain.ttl new file mode 100644 index 00000000..bcbc582a --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeRoofDrain.ttl @@ -0,0 +1,128 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p364eaf80d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the drain." ; + rdfs:label "NominalBodyWidth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the y-axis in the local coordinate system of the drain." ; + IFC4-PSD:definitionAlias ""@en , "半径か局所座標系のY軸に沿って測定された呼称もしくは積算された配管の長さ。"@ja-JP ; + IFC4-PSD:ifdguid "364eaf80d21811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyWidth" ; + IFC4-PSD:nameAlias "呼称躯体幅"@ja-JP , "Nominal Body Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p3e0e5400d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the drain." ; + rdfs:label "NominalBodyDepth" ; + IFC4-PSD:definition "Nominal or quoted length measured along the z-axis in the local coordinate system of the drain." ; + IFC4-PSD:definitionAlias "半径か局所座標系のZ軸に沿って測定された呼称もしくは積算された配管の長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "3e0e5400d21811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyDepth" ; + IFC4-PSD:nameAlias "Nominal Body Depth"@en , "呼称躯体深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p2df67480d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the drain." ; + rdfs:label "NominalBodyLength" ; + IFC4-PSD:definition "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the drain." ; + IFC4-PSD:definitionAlias "半径か局所座標系のX軸に沿って測定された呼称もしくは積算された配管の長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "2df67480d21811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalBodyLength" ; + IFC4-PSD:nameAlias "呼称躯体長"@ja-JP , "Nominal Body Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:p4ebeca00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the drain." ; + rdfs:label "CoverLength" ; + IFC4-PSD:definition "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the drain." ; + IFC4-PSD:definitionAlias "局所座標系のX軸に沿うか、半径(円状の形の場合)で測定された配管カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "4ebeca00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "CoverLength" ; + IFC4-PSD:nameAlias "カバーの長さ"@ja-JP , "Cover Length"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p46668f00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:p46668f00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias "要素からの接続口口径。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "46668f00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "排気口接続口サイズ"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:NominalBodyWidth a rdf:Property ; + rdfs:seeAlso :p364eaf80d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyWidth . + +:p57170500d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the drain." ; + rdfs:label "CoverWidth" ; + IFC4-PSD:definition "The length measured along the y-axis in the local coordinate system of the cover of the drain." ; + IFC4-PSD:definitionAlias "局所座標系のY軸で測定された配管カバーの長さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "57170500d21811e1800000215ad4efdf" ; + IFC4-PSD:name "CoverWidth" ; + IFC4-PSD:nameAlias "カバーの幅"@ja-JP , "Cover Width"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:CoverWidth a rdf:Property ; + rdfs:seeAlso :p57170500d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverWidth . + +:NominalBodyDepth a rdf:Property ; + rdfs:seeAlso :p3e0e5400d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyDepth . + +:Pset_WasteTerminalTypeRoofDrain + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting, set into the roof, that collects rainwater for discharge into the rainwater system." ; + rdfs:label "Pset_WasteTerminalTypeRoofDrain" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/ROOFDRAIN" ; + IFC4-PSD:definition "Pipe fitting, set into the roof, that collects rainwater for discharge into the rainwater system." ; + IFC4-PSD:definitionAlias ""@en , "雨水排出設備に排出されるように雨水を集めるために屋根に設置される配管。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeRoofDrain" ; + IFC4-PSD:propertyDef :p4ebeca00d21811e1800000215ad4efdf , :p364eaf80d21811e1800000215ad4efdf , :p2df67480d21811e1800000215ad4efdf , :p3e0e5400d21811e1800000215ad4efdf , :p46668f00d21811e1800000215ad4efdf , :p57170500d21811e1800000215ad4efdf . + +:NominalBodyLength a rdf:Property ; + rdfs:seeAlso :p2df67480d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalBodyLength . + +:CoverLength a rdf:Property ; + rdfs:seeAlso :p4ebeca00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:CoverLength . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteDisposalUnit.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteDisposalUnit.ttl new file mode 100644 index 00000000..91af0d77 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteDisposalUnit.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:Pset_WasteTerminalTypeWasteDisposalUnit + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Electrically operated device that reduces kitchen or other waste into fragments small enough to be flushed into a drainage system." ; + rdfs:label "Pset_WasteTerminalTypeWasteDisposalUnit" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/WASTEDISPOSALUNIT" ; + IFC4-PSD:definition "Electrically operated device that reduces kitchen or other waste into fragments small enough to be flushed into a drainage system." ; + IFC4-PSD:definitionAlias ""@en , "キッチンや他の廃棄において、破片を排水システムで処理されるのに十分な大きさに粉砕するよう、電気的に動作する機器。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeWasteDisposalUnit" ; + IFC4-PSD:propertyDef :p65fdb780d21811e1800000215ad4efdf , :p6e55f280d21811e1800000215ad4efdf , :p76ae2d80d21811e1800000215ad4efdf . + +:p6e55f280d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the waste disposal unit." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the waste disposal unit." ; + IFC4-PSD:definitionAlias "ゴミ処理装置の排出口接続口サイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "6e55f280d21811e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "排出口接続口サイズ"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:NominalDepth a rdf:Property ; + rdfs:seeAlso :p76ae2d80d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:NominalDepth . + +:p76ae2d80d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Nominal or quoted depth of the object measured from the inlet drain connection to the base of the unit." ; + rdfs:label "NominalDepth" ; + IFC4-PSD:definition "Nominal or quoted depth of the object measured from the inlet drain connection to the base of the unit." ; + IFC4-PSD:definitionAlias "装置の基礎に配管吸入口から測定した深さ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "76ae2d80d21811e1800000215ad4efdf" ; + IFC4-PSD:name "NominalDepth" ; + IFC4-PSD:nameAlias "Nominal Depth"@en , "深さ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p6e55f280d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:p65fdb780d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the drain connection inlet to the waste disposal unit." ; + rdfs:label "DrainConnectionSize" ; + IFC4-PSD:definition "Size of the drain connection inlet to the waste disposal unit." ; + IFC4-PSD:definitionAlias "ゴミ処理装置の吸入口配管接続口サイズ。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "65fdb780d21811e1800000215ad4efdf" ; + IFC4-PSD:name "DrainConnectionSize" ; + IFC4-PSD:nameAlias "配管接続口サイズ"@ja-JP , "Drain Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:DrainConnectionSize a rdf:Property ; + rdfs:seeAlso :p65fdb780d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:DrainConnectionSize . diff --git a/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteTrap.ttl b/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteTrap.ttl new file mode 100644 index 00000000..9cf86695 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WasteTerminalTypeWasteTrap.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p83cb1c80d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Identifies the predefined types of trap from which the type required may be set." ; + rdfs:label "WasteTrapType" ; + IFC4-PSD:definition "Identifies the predefined types of trap from which the type required may be set." ; + IFC4-PSD:definitionAlias ""@en , "必要とされるタイプがセットされる防臭弁の定義されたタイプを確認してください。"@ja-JP ; + IFC4-PSD:ifdguid "83cb1c80d21811e1800000215ad4efdf" ; + IFC4-PSD:name "WasteTrapType" ; + IFC4-PSD:nameAlias "廃棄物防臭弁種類"@ja-JP , "Waste Trap Type"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NONE" , "P_TRAP" , "Q_TRAP" , "S_TRAP" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:p904f7500d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the outlet connection from the object." ; + rdfs:label "OutletConnectionSize" ; + IFC4-PSD:definition "Size of the outlet connection from the object." ; + IFC4-PSD:definitionAlias ""@en , "要素からの接続口サイズ。"@ja-JP ; + IFC4-PSD:ifdguid "904f7500d21811e1800000215ad4efdf" ; + IFC4-PSD:name "OutletConnectionSize" ; + IFC4-PSD:nameAlias "排出口接続口サイズ"@ja-JP , "Outlet Connection Size"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . + +:OutletConnectionSize + a rdf:Property ; + rdfs:seeAlso :p904f7500d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:OutletConnectionSize . + +:WasteTrapType a rdf:Property ; + rdfs:seeAlso :p83cb1c80d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WasteTrapType . + +:Pset_WasteTerminalTypeWasteTrap + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Pipe fitting, set adjacent to a sanitary terminal, that retains liquid to prevent the passage of foul air." ; + rdfs:label "Pset_WasteTerminalTypeWasteTrap" ; + IFC4-PSD:applicableClass ; + IFC4-PSD:applicableTypeValue "IfcWasteTerminal/WASTETRAP" ; + IFC4-PSD:definition "Pipe fitting, set adjacent to a sanitary terminal, that retains liquid to prevent the passage of foul air." ; + IFC4-PSD:definitionAlias ""@en , "液体を溜めて汚れた空気の通過を防ぐよう衛生機器に隣接して設置させた配管。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WasteTerminalTypeWasteTrap" ; + IFC4-PSD:propertyDef :p83cb1c80d21811e1800000215ad4efdf , :p904f7500d21811e1800000215ad4efdf , :p980f1980d21811e1800000215ad4efdf . + +:InletConnectionSize a rdf:Property ; + rdfs:seeAlso :p980f1980d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:InletConnectionSize . + +:p980f1980d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + rdfs:label "InletConnectionSize" ; + IFC4-PSD:definition "Size of the inlet connection(s), where used, of the inlet connections.\n\nNote that all inlet connections are assumed to be the same size." ; + IFC4-PSD:definitionAlias ""@en , "吸気口接続口のサイズ。\n\n注意:同サイズの吸気口接続口がないものとします。"@ja-JP ; + IFC4-PSD:ifdguid "980f1980d21811e1800000215ad4efdf" ; + IFC4-PSD:name "InletConnectionSize" ; + IFC4-PSD:nameAlias "Inlet Connection Size"@en , "吸気口接続口サイズ"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveLengthMeasure + ] . diff --git a/converter/src/main/resources/pset/Pset_WindowCommon.ttl b/converter/src/main/resources/pset/Pset_WindowCommon.ttl index fb0a4b19..27f0f3f9 100644 --- a/converter/src/main/resources/pset/Pset_WindowCommon.ttl +++ b/converter/src/main/resources/pset/Pset_WindowCommon.ttl @@ -1,290 +1,310 @@ -# baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC-PSD/Pset_WindowCommon -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD - -@prefix : . -@prefix IFC4: . -@prefix IFC4-PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:imports ; -. -:Pset_WindowCommon - rdf:type IFC4-PSD:PropertySetDef ; - IFC4-PSD:applicableClass IFC4:IfcWindow ; - IFC4-PSD:applicableTypeValue "IfcWindow" ; - IFC4-PSD:definition "Properties common to the definition of all occurrences of Window." ; - IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcWindow"@fr-FR ; - IFC4-PSD:definitionAlias "IfcWindow(窓)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; - IFC4-PSD:definitionAlias "所有窗实例的定义中通用的属性。"@zh-CN ; - IFC4-PSD:ifcVersion [ - rdf:type IFC4-PSD:IfcVersion ; - IFC4-PSD:version "2x4" ; - ] ; - IFC4-PSD:name "Pset_WindowCommon" ; - IFC4-PSD:propertyDef :_005dfb00d21911e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_a6f5cc00d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_acebad00d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_b9700580d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_bffe7d00d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_c68cf480d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_cd1b6c00d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d3114d00d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_d86e9780d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_dd334b80d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_e3c1c300d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_eae8d100d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f2a87580d21811e1800000215ad4efdf ; - IFC4-PSD:propertyDef :_f9cf8380d21811e1800000215ad4efdf ; -. -:_005dfb00d21911e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit window in accordance to the national building code." ; - IFC4-PSD:definitionAlias "Angabe, ob das Fenster ein Notausgang gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR ; - IFC4-PSD:ifdguid "005dfb00d21911e1800000215ad4efdf" ; - IFC4-PSD:name "FireExit" ; - IFC4-PSD:nameAlias "Notausgang"@de-DE ; - IFC4-PSD:nameAlias "Sortie de secours"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_a6f5cc00d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; - IFC4-PSD:definitionAlias "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR ; - IFC4-PSD:definitionAlias "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; - IFC4-PSD:definitionAlias "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN ; - IFC4-PSD:ifdguid "a6f5cc00d21811e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "Bauteiltyp"@de-DE ; - IFC4-PSD:nameAlias "Reference"@fr-FR ; - IFC4-PSD:nameAlias "参照記号"@ja-JP ; - IFC4-PSD:nameAlias "参考号"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier ; - ] ; -. -:_acebad00d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; - IFC4-PSD:definitionAlias "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE ; - IFC4-PSD:definitionAlias "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR ; - IFC4-PSD:definitionAlias "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; - IFC4-PSD:ifdguid "acebad00d21811e1800000215ad4efdf" ; - IFC4-PSD:name "Status" ; - IFC4-PSD:nameAlias "Status"@de-DE ; - IFC4-PSD:nameAlias "Statut"@fr-FR ; - IFC4-PSD:nameAlias "状態"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertyEnumeratedValue ; - IFC4-PSD:enumItem "DEMOLISH" ; - IFC4-PSD:enumItem "EXISTING" ; - IFC4-PSD:enumItem "NEW" ; - IFC4-PSD:enumItem "NOTKNOWN" ; - IFC4-PSD:enumItem "OTHER" ; - IFC4-PSD:enumItem "TEMPORARY" ; - IFC4-PSD:enumItem "UNSET" ; - ] ; -. -:_b9700580d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Acoustic rating for this object. -It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values).""" ; - IFC4-PSD:definitionAlias "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR ; - IFC4-PSD:definitionAlias "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias """该构件的隔音等级。 -该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"""@zh-CN ; - IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP ; - IFC4-PSD:ifdguid "b9700580d21811e1800000215ad4efdf" ; - IFC4-PSD:name "AcousticRating" ; - IFC4-PSD:nameAlias "IsolationAcoustique"@fr-FR ; - IFC4-PSD:nameAlias "Schallschutzklasse"@de-DE ; - IFC4-PSD:nameAlias "遮音等級"@ja-JP ; - IFC4-PSD:nameAlias "隔音等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_bffe7d00d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fire rating for this object. -It is given according to the national fire safety classification.""" ; - IFC4-PSD:definitionAlias "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; - IFC4-PSD:definitionAlias "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE ; - IFC4-PSD:definitionAlias "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP ; - IFC4-PSD:definitionAlias """该构件的防火等级。 -该属性的依据为国家防火安全分级。"""@zh-CN ; - IFC4-PSD:ifdguid "bffe7d00d21811e1800000215ad4efdf" ; - IFC4-PSD:name "FireRating" ; - IFC4-PSD:nameAlias "Feuerwiderstandsklasse"@de-DE ; - IFC4-PSD:nameAlias "ResistanceAuFeu"@fr-FR ; - IFC4-PSD:nameAlias "耐火等級"@ja-JP ; - IFC4-PSD:nameAlias "防火等级"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_c68cf480d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Index based rating system indicating security level. -It is giving according to the national building code.""" ; - IFC4-PSD:definitionAlias "Sicherheitsklasse gemäß der nationalen oder regionalen Gebäudesicherheitsverordnung."@de-DE ; - IFC4-PSD:definitionAlias "Système de classification par indices, indiquant le niveau de sécurité."@fr-FR ; - IFC4-PSD:definitionAlias """表示安全程度的参考性等级。 -该属性的依据为国家建筑规范。"""@zh-CN ; - IFC4-PSD:definitionAlias "防犯等級情報。関連する基準を参照。"@ja-JP ; - IFC4-PSD:ifdguid "c68cf480d21811e1800000215ad4efdf" ; - IFC4-PSD:name "SecurityRating" ; - IFC4-PSD:nameAlias "NiveauSecurite"@fr-FR ; - IFC4-PSD:nameAlias "Sicherheitsklasse"@de-DE ; - IFC4-PSD:nameAlias "安全等级"@zh-CN ; - IFC4-PSD:nameAlias "防犯等級"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcLabel ; - ] ; -. -:_cd1b6c00d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR ; - IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; - IFC4-PSD:definitionAlias "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN ; - IFC4-PSD:ifdguid "cd1b6c00d21811e1800000215ad4efdf" ; - IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Außenbauteil"@de-DE ; - IFC4-PSD:nameAlias "EstExterieur"@fr-FR ; - IFC4-PSD:nameAlias "外部区分"@ja-JP ; - IFC4-PSD:nameAlias "是否外部构件"@zh-CN ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_d3114d00d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; - IFC4-PSD:definitionAlias "Luftaustausch über die Fugen des geschlossenen Fensters (Q-Wert). Gibt die Luftdurchlässigkeit des gesamten Fensters bei einem Luftdruckniveau von 50 Pascal an."@de-DE ; - IFC4-PSD:definitionAlias "Taux d'infiltration de l'air extérieur lorsqu'on soumet la porte à une pression de 50 pascals. Cette valeur sera utilisée si la longueur des joints n'est pas connue."@fr-FR ; - IFC4-PSD:definitionAlias "在50帕斯卡压强下填充物面积上外部空气对填充物的渗透流速。在部分接缝的长度未知时应使用该属性。"@zh-CN ; - IFC4-PSD:definitionAlias "隙間風の流量値。"@ja-JP ; - IFC4-PSD:ifdguid "d3114d00d21811e1800000215ad4efdf" ; - IFC4-PSD:name "Infiltration" ; - IFC4-PSD:nameAlias "Luftdurchlässigkeit"@de-DE ; - IFC4-PSD:nameAlias "TauxInfiltration"@fr-FR ; - IFC4-PSD:nameAlias "渗风量"@zh-CN ; - IFC4-PSD:nameAlias "隙間風"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure ; - ] ; -. -:_d86e9780d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Thermal transmittance coefficient (U-Value) of a material. -It applies to the total door construction.""" ; - IFC4-PSD:definitionAlias "Coefficient de transmission thermique (U) d'un matériau. Il s'applique à l'ensemble de la fenêtre."@fr-FR ; - IFC4-PSD:definitionAlias """Wärmedurchgangskoeffizient (U-Wert) der Materialschichten. -Hier der Gesamtwärmedurchgangskoeffizient des Fensters."""@de-DE ; - IFC4-PSD:definitionAlias """材料的导热系数(U值)。 -适用于窗的整体结构。"""@zh-CN ; - IFC4-PSD:definitionAlias "熱貫流率U値。ここでは窓を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP ; - IFC4-PSD:ifdguid "d86e9780d21811e1800000215ad4efdf" ; - IFC4-PSD:name "ThermalTransmittance" ; - IFC4-PSD:nameAlias "TransmissionThermique"@fr-FR ; - IFC4-PSD:nameAlias "U-Wert"@de-DE ; - IFC4-PSD:nameAlias "导热系数"@zh-CN ; - IFC4-PSD:nameAlias "熱貫流率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure ; - ] ; -. -:_dd334b80d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition """Fraction of the glazing area relative to the total area of the filling element. -It shall be used, if the glazing area is not given separately for all panels within the filling element.""" ; - IFC4-PSD:definitionAlias "Anteil der verglasten Fläche an der Gesamtfläche des Fensters. Es ist der Reziprokwert des Rahmenanteils."@de-DE ; - IFC4-PSD:definitionAlias "Rapport de la surface de vitrage à la surface totale de l'ouverture. Cette propriété sera utilisée si la surface de vitrage n'est pas donnée séparément pour tous les panneaux occupant l'ouverture."@fr-FR ; - IFC4-PSD:definitionAlias """外壁の総面積に対するガラスの面積の比率。 -ガラスの面積が外壁に含まれる全てのパネルと分離されていないときに、使用されます。"""@ja-JP ; - IFC4-PSD:ifdguid "dd334b80d21811e1800000215ad4efdf" ; - IFC4-PSD:name "GlazingAreaFraction" ; - IFC4-PSD:nameAlias "FractionSurfaceVitree"@fr-FR ; - IFC4-PSD:nameAlias "Glasflächenanteil"@de-DE ; - IFC4-PSD:nameAlias "ガラス率"@ja-JP ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure ; - ] ; -. -:_e3c1c300d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the window opening has an external sill (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Fenster mit einer äußeren Fensterbank ausgestattet ist (JA) under nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'ouverture est dotée d'un seuil côté extérieur (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:ifdguid "e3c1c300d21811e1800000215ad4efdf" ; - IFC4-PSD:name "HasSillExternal" ; - IFC4-PSD:nameAlias "Fensterbank aussen"@de-DE ; - IFC4-PSD:nameAlias "Seuil côté extérieur"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_eae8d100d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the window opening has an internal sill (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Fenster mit einer inneren Fensterbank ausgestattet ist (JA) under nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si l'ouverture est dotée d'un seuil côté intérieur (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:ifdguid "eae8d100d21811e1800000215ad4efdf" ; - IFC4-PSD:name "HasSillInternal" ; - IFC4-PSD:nameAlias "Fensterbank innen"@de-DE ; - IFC4-PSD:nameAlias "Seuil côté intérieur"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_f2a87580d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; - IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen automatischen Antrieb zum Öffnen und Schließen besitzt (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si cet objet est doté d'une motorisation (VRAI) ou non (FAUX)."@fr-FR ; - IFC4-PSD:ifdguid "f2a87580d21811e1800000215ad4efdf" ; - IFC4-PSD:name "HasDrive" ; - IFC4-PSD:nameAlias "Antrieb"@de-DE ; - IFC4-PSD:nameAlias "Motorisé"@fr-FR ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. -:_f9cf8380d21811e1800000215ad4efdf - rdf:type IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Angabe, ob das Fenster einen Rauchschutz gemäß der nationalen oder regionalen Brandschutzverordnung gewährleistet (JA) oder nicht (NEIN)."@de-DE ; - IFC4-PSD:definitionAlias "Indique si la porte est conçue pour une fonction coupe-fumée (VRAI) ou non (FAUX)"@fr-FR ; - IFC4-PSD:ifdguid "f9cf8380d21811e1800000215ad4efdf" ; - IFC4-PSD:name "SmokeStop" ; - IFC4-PSD:nameAlias "CoupeFumee"@fr-FR ; - IFC4-PSD:nameAlias "Rauchschutz"@de-DE ; - IFC4-PSD:propertyType [ - rdf:type IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean ; - ] ; -. +@prefix : . +@prefix IFC4-PSD: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix IFC4: . + +:pdd334b80d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fraction of the glazing area relative to the total area of the filling element. \nIt shall be used, if the glazing area is not given separately for all panels within the filling element." ; + rdfs:label "GlazingAreaFraction" ; + IFC4-PSD:definition "Fraction of the glazing area relative to the total area of the filling element. \nIt shall be used, if the glazing area is not given separately for all panels within the filling element." ; + IFC4-PSD:definitionAlias "外壁の総面積に対するガラスの面積の比率。\nガラスの面積が外壁に含まれる全てのパネルと分離されていないときに、使用されます。"@ja-JP , "Rapport de la surface de vitrage à la surface totale de l'ouverture. Cette propriété sera utilisée si la surface de vitrage n'est pas donnée séparément pour tous les panneaux occupant l'ouverture."@fr-FR , ""@en , "Anteil der verglasten Fläche an der Gesamtfläche des Fensters. Es ist der Reziprokwert des Rahmenanteils."@de-DE ; + IFC4-PSD:ifdguid "dd334b80d21811e1800000215ad4efdf" ; + IFC4-PSD:name "GlazingAreaFraction" ; + IFC4-PSD:nameAlias "Glasflächenanteil"@de-DE , "FractionSurfaceVitree"@fr-FR , "Glazing Area Fraction"@en , "ガラス率"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcPositiveRatioMeasure + ] . + +:peae8d100d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the window opening has an internal sill (TRUE) or not (FALSE)." ; + rdfs:label "HasSillInternal" ; + IFC4-PSD:definition "Indication whether the window opening has an internal sill (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Fenster mit einer inneren Fensterbank ausgestattet ist (JA) under nicht (NEIN)."@de-DE , "Indique si l'ouverture est dotée d'un seuil côté intérieur (VRAI) ou non (FAUX)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "eae8d100d21811e1800000215ad4efdf" ; + IFC4-PSD:name "HasSillInternal" ; + IFC4-PSD:nameAlias "Has Sill Internal"@en , "Seuil côté intérieur"@fr-FR , "Fensterbank innen"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:Pset_WindowCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of Window." ; + rdfs:label "Pset_WindowCommon" ; + IFC4-PSD:applicableClass IFC4:IfcWindow ; + IFC4-PSD:applicableTypeValue "IfcWindow" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of Window." ; + IFC4-PSD:definitionAlias ""@en , "所有窗实例的定义中通用的属性。"@zh-CN , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcWindow"@fr-FR , "IfcWindow(窓)オブジェクトに関する共通プロパティセット定義。"@ja-JP ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WindowCommon" ; + IFC4-PSD:propertyDef :pe3c1c300d21811e1800000215ad4efdf , :pcd1b6c00d21811e1800000215ad4efdf , :pf9cf8380d21811e1800000215ad4efdf , :p7db55f9239da4d10830cd420f3a1988c , :p664882a15b8a420087f6f80670cbe20b , :pd3114d00d21811e1800000215ad4efdf , :pacebad00d21811e1800000215ad4efdf , :p005dfb00d21911e1800000215ad4efdf , :pa6f5cc00d21811e1800000215ad4efdf , :peae8d100d21811e1800000215ad4efdf , :pf2a87580d21811e1800000215ad4efdf , :pd86e9780d21811e1800000215ad4efdf , :pe92533f3a7e4416196ad923faee29e96 , :pb9700580d21811e1800000215ad4efdf , :pdd334b80d21811e1800000215ad4efdf , :pbffe7d00d21811e1800000215ad4efdf , :pc68cf480d21811e1800000215ad4efdf . + +:HasSillExternal a rdf:Property ; + rdfs:seeAlso :pe3c1c300d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSillExternal . + +:pa6f5cc00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." ; + IFC4-PSD:definitionAlias ""@en , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\") pour désigner un \"type de construction\". Une alternative au nom d'un objet type lorsque les objets types ne sont pas gérés par le logiciel."@fr-FR , "若未采用已知的分类系统,则该属性为该项目中该类型构件的参考编号(例如,类型A-1)。"@zh-CN , "Bezeichnung zur Zusammenfassung gleichartiger Bauteile zu einem Bauteiltyp (auch Konstruktionstyp genannt). Alternativ zum Namen des \"Typobjekts\", insbesondere wenn die Software keine Typen unterstützt."@de-DE ; + IFC4-PSD:ifdguid "a6f5cc00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "Bauteiltyp"@de-DE , "参考号"@zh-CN ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . + +:IsExternal a rdf:Property ; + rdfs:seeAlso :pcd1b6c00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:pb9700580d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + rdfs:label "AcousticRating" ; + IFC4-PSD:definition "Acoustic rating for this object.\nIt is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." ; + IFC4-PSD:definitionAlias "遮音等級情報。関連する建築基準法を参照。"@ja-JP , "该构件的隔音等级。\n该属性的依据为国家建筑规范。为表示该构件隔音效果的比率(而不是完全吸收声音的值)。"@zh-CN , ""@en , "Classement acoustique de cet objet. Donné selon le Code National du Bâtiment. Il indique la résistance à la transmission du son de cet objet par une valeur de référence (au lieu de fournir les valeurs totales d'absorption du son)."@fr-FR , "Schallschutzklasse gemäß der nationalen oder regionalen Schallschutzverordnung."@de-DE ; + IFC4-PSD:ifdguid "b9700580d21811e1800000215ad4efdf" ; + IFC4-PSD:name "AcousticRating" ; + IFC4-PSD:nameAlias "隔音等级"@zh-CN , "Schallschutzklasse"@de-DE , "IsolationAcoustique"@fr-FR , "Acoustic Rating"@en , "遮音等級"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pbffe7d00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + rdfs:label "FireRating" ; + IFC4-PSD:definition "Fire rating for this object.\nIt is given according to the national fire safety classification." ; + IFC4-PSD:definitionAlias ""@en , "Feuerwiderstandasklasse gemäß der nationalen oder regionalen Brandschutzverordnung."@de-DE , "该构件的防火等级。\n该属性的依据为国家防火安全分级。"@zh-CN , "主要な耐火等級。関連する建築基準法、消防法などの国家基準を参照。"@ja-JP , "Classement au feu de l'élément donné selon la classification nationale de sécurité incendie."@fr-FR ; + IFC4-PSD:ifdguid "bffe7d00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "FireRating" ; + IFC4-PSD:nameAlias "耐火等級"@ja-JP , "Fire Rating"@en , "ResistanceAuFeu"@fr-FR , "防火等级"@zh-CN , "Feuerwiderstandsklasse"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:WindLoadRating a rdf:Property ; + rdfs:seeAlso :p664882a15b8a420087f6f80670cbe20b ; + rdfs:subPropertyOf IFC4-PSD:WindLoadRating . + +:FireRating a rdf:Property ; + rdfs:seeAlso :pbffe7d00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireRating . + +:Reference a rdf:Property ; + rdfs:seeAlso :pa6f5cc00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . + +:GlazingAreaFraction a rdf:Property ; + rdfs:seeAlso :pdd334b80d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:GlazingAreaFraction . + +:HasDrive a rdf:Property ; + rdfs:seeAlso :pf2a87580d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasDrive . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:pcd1b6c00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + rdfs:label "IsExternal" ; + IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." ; + IFC4-PSD:definitionAlias "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "表示该构件是否设计为外部构件。若是,则该构件为外部构件,朝向建筑物的外侧。"@zh-CN , "Angabe, ob dieses Bauteil ein Aussenbauteil ist (JA) oder ein Innenbauteil (NEIN). Als Aussenbauteil grenzt es an den Aussenraum (oder Erdreich, oder Wasser)."@de-DE , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "cd1b6c00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "IsExternal" ; + IFC4-PSD:nameAlias "Is External"@en , "是否外部构件"@zh-CN , "Außenbauteil"@de-DE , "EstExterieur"@fr-FR , "外部区分"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pd86e9780d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + rdfs:label "ThermalTransmittance" ; + IFC4-PSD:definition "Thermal transmittance coefficient (U-Value) of a material.\nIt applies to the total door construction." ; + IFC4-PSD:definitionAlias "Wärmedurchgangskoeffizient (U-Wert) der Materialschichten.\nHier der Gesamtwärmedurchgangskoeffizient des Fensters."@de-DE , "熱貫流率U値。ここでは窓を通した熱移動の方向における全体の熱還流率を示す。"@ja-JP , ""@en , "Coefficient de transmission thermique (U) d'un matériau. Il s'applique à l'ensemble de la fenêtre."@fr-FR , "材料的导热系数(U值)。\n适用于窗的整体结构。"@zh-CN ; + IFC4-PSD:ifdguid "d86e9780d21811e1800000215ad4efdf" ; + IFC4-PSD:name "ThermalTransmittance" ; + IFC4-PSD:nameAlias "U-Wert"@de-DE , "导热系数"@zh-CN , "熱貫流率"@ja-JP , "Thermal Transmittance"@en , "TransmissionThermique"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcThermalTransmittanceMeasure + ] . + +:SecurityRating a rdf:Property ; + rdfs:seeAlso :pc68cf480d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SecurityRating . + +:pd3114d00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; + rdfs:label "Infiltration" ; + IFC4-PSD:definition "Infiltration flowrate of outside air for the filler object based on the area of the filler object at a pressure level of 50 Pascals. It shall be used, if the length of all joints is unknown." ; + IFC4-PSD:definitionAlias "Taux d'infiltration de l'air extérieur lorsqu'on soumet la porte à une pression de 50 pascals. Cette valeur sera utilisée si la longueur des joints n'est pas connue."@fr-FR , ""@en , "在50帕斯卡压强下填充物面积上外部空气对填充物的渗透流速。在部分接缝的长度未知时应使用该属性。"@zh-CN , "Luftaustausch über die Fugen des geschlossenen Fensters (Q-Wert). Gibt die Luftdurchlässigkeit des gesamten Fensters bei einem Luftdruckniveau von 50 Pascal an."@de-DE , "隙間風の流量値。"@ja-JP ; + IFC4-PSD:ifdguid "d3114d00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "Infiltration" ; + IFC4-PSD:nameAlias "隙間風"@ja-JP , "Luftdurchlässigkeit"@de-DE , "渗风量"@zh-CN , "TauxInfiltration"@fr-FR , "Infiltration"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcVolumetricFlowRateMeasure + ] . + +:Status a rdf:Property ; + rdfs:seeAlso :pacebad00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Status . + +:pe3c1c300d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the window opening has an external sill (TRUE) or not (FALSE)." ; + rdfs:label "HasSillExternal" ; + IFC4-PSD:definition "Indication whether the window opening has an external sill (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Fenster mit einer äußeren Fensterbank ausgestattet ist (JA) under nicht (NEIN)."@de-DE , ""@en , "Indique si l'ouverture est dotée d'un seuil côté extérieur (VRAI) ou non (FAUX)."@fr-FR ; + IFC4-PSD:ifdguid "e3c1c300d21811e1800000215ad4efdf" ; + IFC4-PSD:name "HasSillExternal" ; + IFC4-PSD:nameAlias "Seuil côté extérieur"@fr-FR , "Fensterbank aussen"@de-DE , "Has Sill External"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:HasSillInternal a rdf:Property ; + rdfs:seeAlso :peae8d100d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HasSillInternal . + +:p7db55f9239da4d10830cd420f3a1988c + a IFC4-PSD:PropertyDef ; + rdfs:comment "Mechanical load rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "MechanicalLoadRating" ; + IFC4-PSD:definition "Mechanical load rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "7db55f9239da4d10830cd420f3a1988c" ; + IFC4-PSD:name "MechanicalLoadRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:pe92533f3a7e4416196ad923faee29e96 + a IFC4-PSD:PropertyDef ; + rdfs:comment "Water tightness rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "WaterTightnessRating" ; + IFC4-PSD:definition "Water tightness rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "e92533f3a7e4416196ad923faee29e96" ; + IFC4-PSD:name "WaterTightnessRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:p664882a15b8a420087f6f80670cbe20b + a IFC4-PSD:PropertyDef ; + rdfs:comment "Wind load resistance rating for this object.\nIt is provided according to the national building code." ; + rdfs:label "WindLoadRating" ; + IFC4-PSD:definition "Wind load resistance rating for this object.\nIt is provided according to the national building code." ; + IFC4-PSD:ifdguid "664882a15b8a420087f6f80670cbe20b" ; + IFC4-PSD:name "WindLoadRating" ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:WaterTightnessRating + a rdf:Property ; + rdfs:seeAlso :pe92533f3a7e4416196ad923faee29e96 ; + rdfs:subPropertyOf IFC4-PSD:WaterTightnessRating . + +:FireExit a rdf:Property ; + rdfs:seeAlso :p005dfb00d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:FireExit . + +:p005dfb00d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit window in accordance to the national building code." ; + rdfs:label "FireExit" ; + IFC4-PSD:definition "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit window in accordance to the national building code." ; + IFC4-PSD:definitionAlias "Indique si cet objet est conçu pour servir de sortie en cas d'incendie (VRAI) ou non (FAUX). Définition de la sortie de secours selon le Code National."@fr-FR , "Angabe, ob das Fenster ein Notausgang gemäß der nationalen oder regionalen Brandschutzverordnung ist (JA), oder nicht (NEIN)."@de-DE , ""@en ; + IFC4-PSD:ifdguid "005dfb00d21911e1800000215ad4efdf" ; + IFC4-PSD:name "FireExit" ; + IFC4-PSD:nameAlias "Fire Exit"@en , "Notausgang"@de-DE , "Sortie de secours"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pacebad00d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + rdfs:label "Status" ; + IFC4-PSD:definition "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as \"New\" - element designed as new addition, \"Existing\" - element exists and remains, \"Demolish\" - element existed but is to be demolished, \"Temporary\" - element will exists only temporary (like a temporary support structure)." ; + IFC4-PSD:definitionAlias ""@en , "Statut de l'élément, principalement utilisé dans les projets de rénovation et de réhabilitation. Le statut a pour valeur NOUVEAU pour un nouvel élément, EXISTANT pour un élément existant qui est conservé, DEMOLI pour un élément existant à démolir et TEMPORAIRE pour un élément temporaire (comme une structure support provisoire)."@fr-FR , "Status bzw. Phase des Bauteils insbesondere beim Bauen im Bestand. \"Neu\" (new) neues Bauteil als Ergänzung, \"Bestand\" (existing) bestehendes Bauteil, dass erhalten bleibt, \"Abbruch\" (demolish) Bauteil, das abgebrochen wird, \"Temporär\" (temporary) Bauteil und andere Bauelemente, die vorübergehend eingebaut werden (wie Abstützungen, etc.)"@de-DE , "要素(主にリノベーションまたは改修プロジェクトにおいて)の状態。 状態は、「新規(New)」-新しく追加される要素。「既存」-要素は存在し、かつ残りもの。「破壊」-要素は存在したが、廃棄されるもの。「一時的」-一時的に存在する要素(一時的にサポートしている構造のようなもの)。"@ja-JP ; + IFC4-PSD:ifdguid "acebad00d21811e1800000215ad4efdf" ; + IFC4-PSD:name "Status" ; + IFC4-PSD:nameAlias "状態"@ja-JP , "Status"@en , "Status"@de-DE , "Statut"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertyEnumeratedValue ; + IFC4-PSD:enumItem "NEW" , "EXISTING" , "DEMOLISH" , "TEMPORARY" , "OTHER" , "NOTKNOWN" , "UNSET" + ] . + +:SmokeStop a rdf:Property ; + rdfs:seeAlso :pf9cf8380d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:SmokeStop . + +:pf9cf8380d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; + rdfs:label "SmokeStop" ; + IFC4-PSD:definition "Indication whether the object is designed to provide a smoke stop (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "Indique si la porte est conçue pour une fonction coupe-fumée (VRAI) ou non (FAUX)"@fr-FR , "Angabe, ob das Fenster einen Rauchschutz gemäß der nationalen oder regionalen Brandschutzverordnung gewährleistet (JA) oder nicht (NEIN)."@de-DE , ""@en ; + IFC4-PSD:ifdguid "f9cf8380d21811e1800000215ad4efdf" ; + IFC4-PSD:name "SmokeStop" ; + IFC4-PSD:nameAlias "CoupeFumee"@fr-FR , "Smoke Stop"@en , "Rauchschutz"@de-DE ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:pf2a87580d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; + rdfs:label "HasDrive" ; + IFC4-PSD:definition "Indication whether this object has an automatic drive to operate it (TRUE) or no drive (FALSE)" ; + IFC4-PSD:definitionAlias "Angabe, ob dieses Bauteil einen automatischen Antrieb zum Öffnen und Schließen besitzt (JA) oder nicht (NEIN)."@de-DE , "Indique si cet objet est doté d'une motorisation (VRAI) ou non (FAUX)."@fr-FR , ""@en ; + IFC4-PSD:ifdguid "f2a87580d21811e1800000215ad4efdf" ; + IFC4-PSD:name "HasDrive" ; + IFC4-PSD:nameAlias "Motorisé"@fr-FR , "Antrieb"@de-DE , "Has Drive"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcBoolean + ] . + +:MechanicalLoadRating + a rdf:Property ; + rdfs:seeAlso :p7db55f9239da4d10830cd420f3a1988c ; + rdfs:subPropertyOf IFC4-PSD:MechanicalLoadRating . + +:pc68cf480d21811e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Index based rating system indicating security level.\nIt is giving according to the national building code." ; + rdfs:label "SecurityRating" ; + IFC4-PSD:definition "Index based rating system indicating security level.\nIt is giving according to the national building code." ; + IFC4-PSD:definitionAlias "表示安全程度的参考性等级。\n该属性的依据为国家建筑规范。"@zh-CN , ""@en , "Système de classification par indices, indiquant le niveau de sécurité."@fr-FR , "Sicherheitsklasse gemäß der nationalen oder regionalen Gebäudesicherheitsverordnung."@de-DE , "防犯等級情報。関連する基準を参照。"@ja-JP ; + IFC4-PSD:ifdguid "c68cf480d21811e1800000215ad4efdf" ; + IFC4-PSD:name "SecurityRating" ; + IFC4-PSD:nameAlias "安全等级"@zh-CN , "防犯等級"@ja-JP , "Sicherheitsklasse"@de-DE , "Security Rating"@en , "NiveauSecurite"@fr-FR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcLabel + ] . + +:Infiltration a rdf:Property ; + rdfs:seeAlso :pd3114d00d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Infiltration . + +:ThermalTransmittance + a rdf:Property ; + rdfs:seeAlso :pd86e9780d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:ThermalTransmittance . + +:AcousticRating a rdf:Property ; + rdfs:seeAlso :pb9700580d21811e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:AcousticRating . diff --git a/converter/src/main/resources/pset/Pset_WorkControlCommon.ttl b/converter/src/main/resources/pset/Pset_WorkControlCommon.ttl new file mode 100644 index 00000000..5aad7d17 --- /dev/null +++ b/converter/src/main/resources/pset/Pset_WorkControlCommon.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix IFC4-PSD: . +@prefix rdf: . +@prefix owl: . +@prefix rdfs: . +@prefix IFC4: . + +:p12d83480d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The default time of day a task is scheduled to start. For presentation purposes, if the start time of a task matches the WorkStartTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkStartTime." ; + rdfs:label "WorkStartTime" ; + IFC4-PSD:definition "The default time of day a task is scheduled to start. For presentation purposes, if the start time of a task matches the WorkStartTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkStartTime." ; + IFC4-PSD:definitionAlias ""@en , "仕事開始予定のデフォルト時刻。プレゼンテーション目的のために、仕事の開始時間がWorkStartTimeと一致するならば、アプリケーションは日付だけを表示するほうを選ぶことが出来る。逆に、時間を指定することなく日付を入力した際、アプリケーションはWorkStartTimeを自動的に追加することが出来る。"@ja-JP ; + IFC4-PSD:ifdguid "12d83480d21911e1800000215ad4efdf" ; + IFC4-PSD:name "WorkStartTime" ; + IFC4-PSD:nameAlias "作業開始時間"@ja-JP , "Work Start Time"@en ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTime + ] . + +:p1cfa3300d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The elapsed time within a worktime-based day. For presentation purposes, applications may choose to display IfcTask durations in work days where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 24 hours (an elapsed day); if omitted then 8 hours is assumed." ; + rdfs:label "WorkDayDuration" ; + IFC4-PSD:definition "The elapsed time within a worktime-based day. For presentation purposes, applications may choose to display IfcTask durations in work days where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 24 hours (an elapsed day); if omitted then 8 hours is assumed." ; + IFC4-PSD:definitionAlias "作業時間を基にした、経過時間の日数。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "1cfa3300d21911e1800000215ad4efdf" ; + IFC4-PSD:name "WorkDayDuration" ; + IFC4-PSD:nameAlias "Work Day Duration"@en , "作業日数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:WorkMonthDuration a rdf:Property ; + rdfs:seeAlso :p27b4c800d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkMonthDuration . + +:p27b4c800d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The elapsed time within a worktime-based month. For presentation purposes, applications may choose to display IfcTask durations in work months where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 744 hours (an elapsed month of 31 days); if omitted then 160 hours is assumed." ; + rdfs:label "WorkMonthDuration" ; + IFC4-PSD:definition "The elapsed time within a worktime-based month. For presentation purposes, applications may choose to display IfcTask durations in work months where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 744 hours (an elapsed month of 31 days); if omitted then 160 hours is assumed." ; + IFC4-PSD:definitionAlias ""@en , "作業時間を基にした経過時間の週数の月数。"@ja-JP ; + IFC4-PSD:ifdguid "27b4c800d21911e1800000215ad4efdf" ; + IFC4-PSD:name "WorkMonthDuration" ; + IFC4-PSD:nameAlias "Work Month Duration"@en , "作業月数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:WorkDayDuration a rdf:Property ; + rdfs:seeAlso :p1cfa3300d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkDayDuration . + +:WorkStartTime a rdf:Property ; + rdfs:seeAlso :p12d83480d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkStartTime . + +:Pset_WorkControlCommon + a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcWorkPlan and IfcWorkSchedule (subtypes of IfcWorkControl)." ; + rdfs:label "Pset_WorkControlCommon" ; + IFC4-PSD:applicableClass IFC4:IfcWorkControl ; + IFC4-PSD:applicableTypeValue "IfcWorkControl" ; + IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcWorkPlan and IfcWorkSchedule (subtypes of IfcWorkControl)." ; + IFC4-PSD:definitionAlias "IfcWorkPlan およびIfcWorkSchedule オブジェクト(IfcWorkControlオブジェクトのサブクラス)に関する共通プロパティセット定義。"@ja-JP , ""@en ; + IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; + IFC4-PSD:version "IFC4" + ] ; + IFC4-PSD:name "Pset_WorkControlCommon" ; + IFC4-PSD:propertyDef :p22f01400d21911e1800000215ad4efdf , :p179ce880d21911e1800000215ad4efdf , :p1cfa3300d21911e1800000215ad4efdf , :p12d83480d21911e1800000215ad4efdf , :p27b4c800d21911e1800000215ad4efdf . + +:p179ce880d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The default time of day a task is scheduled to finish. For presentation purposes, if the finish time of a task matches the WorkFinishTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkFinishTime." ; + rdfs:label "WorkFinishTime" ; + IFC4-PSD:definition "The default time of day a task is scheduled to finish. For presentation purposes, if the finish time of a task matches the WorkFinishTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkFinishTime." ; + IFC4-PSD:definitionAlias "作業が終了するスケジュールのデフォルト時刻。"@ja-JP , ""@en ; + IFC4-PSD:ifdguid "179ce880d21911e1800000215ad4efdf" ; + IFC4-PSD:name "WorkFinishTime" ; + IFC4-PSD:nameAlias "Work Finish Time"@en , "作業終了時間"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcTime + ] . + +:p22f01400d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "The elapsed time within a worktime-based week. For presentation purposes, applications may choose to display IfcTask durations in work weeks where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 168 hours (an elapsed week); if omitted then 40 hours is assumed." ; + rdfs:label "WorkWeekDuration" ; + IFC4-PSD:definition "The elapsed time within a worktime-based week. For presentation purposes, applications may choose to display IfcTask durations in work weeks where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 168 hours (an elapsed week); if omitted then 40 hours is assumed." ; + IFC4-PSD:definitionAlias ""@en , "作業時間を基にした経過時間の週数。"@ja-JP ; + IFC4-PSD:ifdguid "22f01400d21911e1800000215ad4efdf" ; + IFC4-PSD:name "WorkWeekDuration" ; + IFC4-PSD:nameAlias "Work Week Duration"@en , "作業週数"@ja-JP ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcDuration + ] . + +:WorkFinishTime a rdf:Property ; + rdfs:seeAlso :p179ce880d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkFinishTime . + +:WorkWeekDuration a rdf:Property ; + rdfs:seeAlso :p22f01400d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:WorkWeekDuration . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . diff --git a/converter/src/main/resources/pset/Pset_ZoneCommon.ttl b/converter/src/main/resources/pset/Pset_ZoneCommon.ttl index 373c334b..2817fbe9 100644 --- a/converter/src/main/resources/pset/Pset_ZoneCommon.ttl +++ b/converter/src/main/resources/pset/Pset_ZoneCommon.ttl @@ -1,88 +1,126 @@ -@base . -@prefix : . -@prefix IFC4-PSD: . +@prefix : . +@prefix IFC4-PSD: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix IFC4: . +@prefix IFC4: . -:_28fecb30be2a40c69fb0703be83c5e9f +:HandicapAccessible a rdf:Property ; + rdfs:seeAlso :p516def00d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:HandicapAccessible . + +:p28fecb30be2a40c69fb0703be83c5e9f a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external zone at the outside of the building." ; + rdfs:label "IsExternal" ; IFC4-PSD:definition "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external zone at the outside of the building." ; - IFC4-PSD:definitionAlias ""@en , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP ; + IFC4-PSD:definitionAlias "外部の部材かどうかを示すブーリアン値。もしTRUEの場合、外部の部材で建物の外側に面している。"@ja-JP , "Indique si l'élément est conçu pour être utilisé à l'extérieur (VRAI) ou non (FAUX). Si VRAI, c'est un élément extérieur qui donne sur l'extérieur du bâtiment."@fr-FR , ""@en ; IFC4-PSD:ifdguid "28fecb30be2a40c69fb0703be83c5e9f" ; IFC4-PSD:name "IsExternal" ; - IFC4-PSD:nameAlias "Est extérieur"@fr-FR , "外部区分"@ja-JP , "Is External"@en ; + IFC4-PSD:nameAlias "Est extérieur"@fr-FR , "Is External"@en , "外部区分"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcBoolean ] . -:_4a46e100d21911e1800000215ad4efdf - a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; - IFC4-PSD:definitionAlias "Indique si l'espace (par exemple des toilettes) est conçu pour être un espace accessible au public (TRUE) ou non (FALSE)."@fr-FR , "가능성이 공간이 공공 액세스 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE/ FALSE"@ko-KR , ""@en , "この空間が公共アクセス空間かどうかを示すブーリアン値。例:公共トイレの場合(TRUE)。そうでなければ(FALSE)。"@ja-JP ; - IFC4-PSD:ifdguid "4a46e100d21911e1800000215ad4efdf" ; - IFC4-PSD:name "PubliclyAccessible" ; - IFC4-PSD:nameAlias "공공 액세스 가능성"@ko-KR , "Publicly Accessible"@en , "公共アクセス可能性"@ja-JP , "AccessibleAuPublic"@fr-FR ; - IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcBoolean - ] . +:NetPlannedArea a rdf:Property ; + rdfs:seeAlso :pc0ec9d3bf8f649b9be1a1a3ea965d058 ; + rdfs:subPropertyOf IFC4-PSD:NetPlannedArea . :Pset_ZoneCommon a IFC4-PSD:PropertySetDef ; + rdfs:comment "Properties common to the definition of all occurrences of IfcZone." ; + rdfs:label "Pset_ZoneCommon" ; IFC4-PSD:applicableClass IFC4:IfcZone ; IFC4-PSD:applicableTypeValue "IfcZone" ; IFC4-PSD:definition "Properties common to the definition of all occurrences of IfcZone." ; - IFC4-PSD:definitionAlias "IfcZoneに関する共通プロパティセット定義。"@ja-JP , "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcZone"@fr-FR , ""@en ; + IFC4-PSD:definitionAlias "Définition de l'IAI : propriétés communes à la définition de toutes les instances de la classe IfcZone"@fr-FR , "IfcZoneに関する共通プロパティセット定義。"@ja-JP , ""@en ; IFC4-PSD:ifcVersion [ a IFC4-PSD:IfcVersion ; IFC4-PSD:version "IFC4" ] ; IFC4-PSD:name "Pset_ZoneCommon" ; - IFC4-PSD:propertyDef :_31d6c680d21911e1800000215ad4efdf , :_c0ec9d3bf8f649b9be1a1a3ea965d058 , :_28fecb30be2a40c69fb0703be83c5e9f , :_4a46e100d21911e1800000215ad4efdf , :_516def00d21911e1800000215ad4efdf , :_e46e79127254467fab1435fce14121bf . + IFC4-PSD:propertyDef :p28fecb30be2a40c69fb0703be83c5e9f , :pe46e79127254467fab1435fce14121bf , :p31d6c680d21911e1800000215ad4efdf , :p4a46e100d21911e1800000215ad4efdf , :pc0ec9d3bf8f649b9be1a1a3ea965d058 , :p516def00d21911e1800000215ad4efdf . + +:PubliclyAccessible a rdf:Property ; + rdfs:seeAlso :p4a46e100d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:PubliclyAccessible . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with BIM-Bots PSD Repository" . + +:p31d6c680d21911e1800000215ad4efdf + a IFC4-PSD:PropertyDef ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + rdfs:label "Reference" ; + IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; + IFC4-PSD:definitionAlias ""@en , "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP ; + IFC4-PSD:ifdguid "31d6c680d21911e1800000215ad4efdf" ; + IFC4-PSD:name "Reference" ; + IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@fr-FR , "Reference"@en , "참조 ID"@ko-KR ; + IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; + IFC4-PSD:dataType IFC4:IfcIdentifier + ] . -:_516def00d21911e1800000215ad4efdf +:IsExternal a rdf:Property ; + rdfs:seeAlso :p28fecb30be2a40c69fb0703be83c5e9f ; + rdfs:subPropertyOf IFC4-PSD:IsExternal . + +:GrossPlannedArea a rdf:Property ; + rdfs:seeAlso :pe46e79127254467fab1435fce14121bf ; + rdfs:subPropertyOf IFC4-PSD:GrossPlannedArea . + +:p516def00d21911e1800000215ad4efdf a IFC4-PSD:PropertyDef ; + rdfs:comment "Indication whether this space (in case of e.g., a toilet) is designed to serve as an accessible space for handicapped people, e.g., for a public toilet (TRUE) or not (FALSE). This information is often used to declare the need for access for the disabled and for special design requirements of this space." ; + rdfs:label "HandicapAccessible" ; IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as an accessible space for handicapped people, e.g., for a public toilet (TRUE) or not (FALSE). This information is often used to declare the need for access for the disabled and for special design requirements of this space." ; - IFC4-PSD:definitionAlias "この空間がハンディキャップ者向けの空間かどうかを示す(TRUE)。例:公共トイレの場合。そうでなければ(FALSE)。この情報は、障害者向け利用の必要性や特別なデザインの必要性を示すために利用される。"@ja-JP , ""@en , "공간이 핸디캡을위한 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE. 이 정보는 장애인을위한 이용의 필요성과 특별한 디자인의 필요성을 나타내기 위해 사용된다."@ko-KR , "Indique si l'élément est conçu pour être accessible aux handicapés (VRAI) ou non (FAUX). Cette information est souvent utilisée pour déclarer la nécessité d'un accès pour handicapés ou pour des contraintes spéciales de conception."@fr-FR ; + IFC4-PSD:definitionAlias "この空間がハンディキャップ者向けの空間かどうかを示す(TRUE)。例:公共トイレの場合。そうでなければ(FALSE)。この情報は、障害者向け利用の必要性や特別なデザインの必要性を示すために利用される。"@ja-JP , "Indique si l'élément est conçu pour être accessible aux handicapés (VRAI) ou non (FAUX). Cette information est souvent utilisée pour déclarer la nécessité d'un accès pour handicapés ou pour des contraintes spéciales de conception."@fr-FR , "공간이 핸디캡을위한 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE. 이 정보는 장애인을위한 이용의 필요성과 특별한 디자인의 필요성을 나타내기 위해 사용된다."@ko-KR , ""@en ; IFC4-PSD:ifdguid "516def00d21911e1800000215ad4efdf" ; IFC4-PSD:name "HandicapAccessible" ; - IFC4-PSD:nameAlias "핸디캠 액세스 가능성"@ko-KR , "Handicap Accessible"@en , "AccesHandicapes"@fr-FR , "ハンディキャップアクセス可能性"@ja-JP ; + IFC4-PSD:nameAlias "핸디캠 액세스 가능성"@ko-KR , "AccesHandicapes"@fr-FR , "ハンディキャップアクセス可能性"@ja-JP , "Handicap Accessible"@en ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcBoolean ] . -:_31d6c680d21911e1800000215ad4efdf +:p4a46e100d21911e1800000215ad4efdf a IFC4-PSD:PropertyDef ; - IFC4-PSD:definition "Reference ID for this specified type in this project (e.g. type 'A-1'). Used to store the non-classification driven internal project type." ; - IFC4-PSD:definitionAlias "Référence à l'identifiant d'un type spécifié dans le contexte du projet (exemple : \"type A1\"). Utilisé pour enregistrer un type sans recourir à une classification."@fr-FR , "このプロジェクトにおける参照記号(例:A-1)。分類コードではなく内部で使用されるプロジェクトタイプとして使用されるもの。"@ja-JP , ""@en , "이 프로젝트의 참조 ID (예 : A-1). 분류 코드가 아닌 내부에서 사용되는 프로젝트 형식으로 사용됩니다."@ko-KR ; - IFC4-PSD:ifdguid "31d6c680d21911e1800000215ad4efdf" ; - IFC4-PSD:name "Reference" ; - IFC4-PSD:nameAlias "参照記号"@ja-JP , "Reference"@en , "Reference"@fr-FR , "참조 ID"@ko-KR ; + rdfs:comment "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; + rdfs:label "PubliclyAccessible" ; + IFC4-PSD:definition "Indication whether this space (in case of e.g., a toilet) is designed to serve as a publicly accessible space, e.g., for a public toilet (TRUE) or not (FALSE)." ; + IFC4-PSD:definitionAlias "この空間が公共アクセス空間かどうかを示すブーリアン値。例:公共トイレの場合(TRUE)。そうでなければ(FALSE)。"@ja-JP , ""@en , "Indique si l'espace (par exemple des toilettes) est conçu pour être un espace accessible au public (TRUE) ou non (FALSE)."@fr-FR , "가능성이 공간이 공공 액세스 공간 여부를 나타내는 부울 값입니다. 예 : 공공 화장실의 경우 TRUE/ FALSE"@ko-KR ; + IFC4-PSD:ifdguid "4a46e100d21911e1800000215ad4efdf" ; + IFC4-PSD:name "PubliclyAccessible" ; + IFC4-PSD:nameAlias "공공 액세스 가능성"@ko-KR , "公共アクセス可能性"@ja-JP , "AccessibleAuPublic"@fr-FR , "Publicly Accessible"@en ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; - IFC4-PSD:dataType IFC4:IfcIdentifier + IFC4-PSD:dataType IFC4:IfcBoolean ] . -:_c0ec9d3bf8f649b9be1a1a3ea965d058 +:pc0ec9d3bf8f649b9be1a1a3ea965d058 a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned net area for the zone. Used for programming the zone." ; + rdfs:label "NetPlannedArea" ; IFC4-PSD:definition "Total planned net area for the zone. Used for programming the zone." ; IFC4-PSD:definitionAlias "計画されたネット面積。建物計画に際に使用。(通常は、柱型等を抜いた面積となる)"@ja-JP , "Surface programmée nette totale de la pièce. Telle que définie lors de la programmation."@fr-FR , ""@en ; IFC4-PSD:ifdguid "c0ec9d3bf8f649b9be1a1a3ea965d058" ; IFC4-PSD:name "NetPlannedArea" ; - IFC4-PSD:nameAlias "計画ネット面積"@ja-JP , "Surface programmée nette"@fr-FR , "Net Planned Area"@en ; + IFC4-PSD:nameAlias "計画ネット面積"@ja-JP , "Net Planned Area"@en , "Surface programmée nette"@fr-FR ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcAreaMeasure ] . -:_e46e79127254467fab1435fce14121bf +:pe46e79127254467fab1435fce14121bf a IFC4-PSD:PropertyDef ; + rdfs:comment "Total planned gross area for the zone. Used for programming the zone." ; + rdfs:label "GrossPlannedArea" ; IFC4-PSD:definition "Total planned gross area for the zone. Used for programming the zone." ; IFC4-PSD:definitionAlias "計画されたグロス面積。建物計画に際に使用。"@ja-JP , ""@en , "Surface programmée brute totale de la pièce. Telle que définie lors de la programmation."@fr-FR ; IFC4-PSD:ifdguid "e46e79127254467fab1435fce14121bf" ; IFC4-PSD:name "GrossPlannedArea" ; - IFC4-PSD:nameAlias "Gross Planned Area"@en , "Surface programmée brute"@fr-FR , "計画グロス面積"@ja-JP ; + IFC4-PSD:nameAlias "Surface programmée brute"@fr-FR , "Gross Planned Area"@en , "計画グロス面積"@ja-JP ; IFC4-PSD:propertyType [ a IFC4-PSD:TypePropertySingleValue ; IFC4-PSD:dataType IFC4:IfcAreaMeasure ] . -<> a owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with BIM-Bots PSD Repository" . \ No newline at end of file +:Reference a rdf:Property ; + rdfs:seeAlso :p31d6c680d21911e1800000215ad4efdf ; + rdfs:subPropertyOf IFC4-PSD:Reference . diff --git a/converter/src/main/resources/psetdef.ttl b/converter/src/main/resources/psetdef.ttl index 376351a5..edfb20ad 100644 --- a/converter/src/main/resources/psetdef.ttl +++ b/converter/src/main/resources/psetdef.ttl @@ -1,430 +1,5717 @@ # baseURI: http://www.buildingsmart-tech.org/ifcOWL/IFC4-PSD # imports: http://www.buildingsmart-tech.org/ifcOWL/IFC4 -# prefix: PSD - -@prefix : . -@prefix IFC4: . -@prefix PSD: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - rdf:type owl:Ontology ; - owl:imports ; - owl:versionInfo "Created with TopBraid Composer" ; -. -PSD:IfcVersion - rdf:type owl:Class ; - rdfs:comment "Version information of IFC release and sub schema."@en ; - rdfs:label "IFC version"@en ; - rdfs:subClassOf owl:Thing ; -. -PSD:InformationDeliverySpecification - rdf:type owl:Class ; - rdfs:label "Information delivery specification"@en ; - rdfs:subClassOf owl:Thing ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:name ; - ] ; -. -PSD:PropertyDef - rdf:type owl:Class ; - rdfs:comment "Element of property definition."@en ; - rdfs:label "Property definition"@en ; - rdfs:subClassOf owl:Thing ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:definition ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:name ; - ] ; -. -PSD:PropertySetDef - rdf:type owl:Class ; - rdfs:comment "Top node element of PSD."@en ; - rdfs:label "Property set definition"@en ; - rdfs:subClassOf owl:Thing ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:allValuesFrom IFC4:IfcProduct ; - owl:onProperty PSD:applicableClass ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:definition ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:name ; - ] ; -. -PSD:PropertyType - rdf:type owl:Class ; - rdfs:label "Property type"@en ; - rdfs:subClassOf owl:Thing ; -. -PSD:RequiredPset - rdf:type owl:Class ; - rdfs:label "Required property set" ; - rdfs:subClassOf owl:Thing ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:propertySetDef ; - ] ; -. -PSD:TypeComplexProperty - rdf:type owl:Class ; - rdfs:label "Type property complex property"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:name ; - ] ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertySingleValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. -PSD:TypePropertyBoundedValue - rdf:type owl:Class ; - rdfs:label "Type property bounded value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:dataType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:unitType ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertySingleValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. +# prefix: PSD + +@base . +@prefix : . +@prefix PSD: . +@prefix owl: . +@prefix rdf: . +@prefix xsd: . +@prefix rdfs: . +@prefix IFC4: . + +PSD:InternalRefrigerantVolume + a rdf:Property ; + rdfs:comment "Internal volume of condenser (refrigerant side)."@en ; + rdfs:label "Internal refrigerant volume"@en . + +PSD:FrictionLoss a rdf:Property ; + rdfs:comment "The pressure loss due to friction per unit length. (Data type = PressureMeasure/LengthMeasure)"@en ; + rdfs:label "FrictionLoss"@en . + +PSD:TreadLengthAtOffset + a rdf:Property ; + rdfs:label "Tread length at offset"@en . + +PSD:VentilationAirFlowrate + a rdf:Property ; + rdfs:comment "Ventilation outside air requirement for the space."@en ; + rdfs:label "VentilationAirFlowrate"@en . + +PSD:IntegratedLightingType + a rdf:Property ; + rdfs:comment "Integrated lighting in cooled beam."@en ; + rdfs:label "IntegratedLightingType"@en . + +PSD:RequiredSlope a rdf:Property ; + rdfs:comment "Required sloping angle of the object - relative to horizontal (0.0 degrees).\\nRequired maximum slope for the passageway according to the applicable building code or additional requirements."@en ; + rdfs:label "Required slope"@en . + +PSD:NosingLength a rdf:Property ; + rdfs:label "Nosing length"@en . + +PSD:YearOfLastRefurbishment + a rdf:Property ; + rdfs:label "Year of last refurbishment"@en . + +PSD:Twisting a rdf:Property ; + rdfs:label "Twisting"@en . + +PSD:AccuracyOfFireSensor + a rdf:Property ; + rdfs:comment "The accuracy of the sensor."@en ; + rdfs:label "AccuracyOfFireSensor"@en . + +PSD:ConstructionToleranceClass + a rdf:Property ; + rdfs:label "Construction tolerance class"@en . + +PSD:Headroom a rdf:Property ; + rdfs:comment "Actual headroom clearance for the passageway according to the current design. \\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence."@en ; + rdfs:label "Headroom"@en . + +PSD:Options a rdf:Property ; + rdfs:comment "A statement of the options available in the agreement."@en ; + rdfs:label "Options"@en . + +PSD:UpstreamPressure a rdf:Property ; + rdfs:comment "The operating pressure of the fluid upstream of the pressure reducing valve."@en ; + rdfs:label "UpstreamPressure"@en . + +PSD:SetPointTemperature + a rdf:Property ; + rdfs:comment "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointTemperature"@en . + +PSD:NumberOfCircuits a rdf:Property ; + rdfs:comment "Number of parallel fluid tube circuits."@en ; + rdfs:label "NumberOfCircuits"@en . + +PSD:Position a rdf:Property ; + rdfs:comment "Indicates position of the actuator over time where 0.0 is fully closed and 1.0 is fully open."@en ; + rdfs:label "Position"@en . + +PSD:ConcreteCover a rdf:Property ; + rdfs:label "Concrete cover"@en . + +PSD:IsHighPressure a rdf:Property ; + rdfs:comment "Indication of whether the flushing valve is suitable for use on a high pressure water main (set TRUE) or not (set FALSE)."@en ; + rdfs:label "IsHighPressure"@en . + +PSD:MechanicalEfficiency + a rdf:Property ; + rdfs:comment "Ratio of the work (as measured) delivered to the gas to the work input to the compressor shaft."@en , "The pumps operational mechanical efficiency."@en ; + rdfs:label "MechanicalEfficiency"@en . + +PSD:CoreSetHorizontal + a rdf:Property ; + rdfs:comment "Degree of horizontal (in the X-axis of the LocalPlacement) blade set from the centerline."@en ; + rdfs:label "Core set horizontal"@en . + +PSD:FlowCondition a rdf:Property ; + rdfs:comment "Defines the flow condition as a percentage of the cross-sectional area."@en ; + rdfs:label "FlowCondition"@en . + +PSD:Azimuth a rdf:Property ; + rdfs:comment "The azimuth of the outward normal for the outward or upward facing surface."@en ; + rdfs:label "Azimuth"@en . + +PSD:DynamicViscosity a rdf:Property ; + rdfs:comment "A measure of the viscous resistance of the material."@en ; + rdfs:label "DynamicViscosity"@en . + +PSD:HoseNozzleType a rdf:Property ; + rdfs:comment "Identifies the predefined types of nozzle (in terms of spray pattern) fitted to the end of the hose from which the type required may be set."@en ; + rdfs:label "HoseNozzleType"@en . + +PSD:ModelReference a rdf:Property ; + rdfs:comment "The model number or designator of the product model (or product line) as assigned by the manufacturer of the manufactured item."@en ; + rdfs:label "ModelReference"@en . + +PSD:MarketSubCategory + a rdf:Property ; + rdfs:comment "ubset of category of use e.g. multi-family, 2 bedroom, low rise."@en , "Subset of category of use e.g. multi-family, 2 bedroom, low rise."@en ; + rdfs:label "Market sub category"@en , "MarketSubCategory"@en . + +PSD:PrevailingWindDirection + a rdf:Property ; + rdfs:comment "The prevailing wind angle direction measured from True North (0 degrees) in a clockwise direction."@en ; + rdfs:label "PrevailingWindDirection"@en . + +PSD:Type a rdf:Property ; + rdfs:comment "Defines the allowed values for selection of the flow meter operation type."@en ; + rdfs:label "Type"@en . + +PSD:FreezingPoint a rdf:Property ; + rdfs:comment "The freezing point of the material (fluid)."@en ; + rdfs:label "FreezingPoint"@en . + +PSD:NetPositiveSuctionHead + a rdf:Property ; + rdfs:comment "Minimum liquid pressure at the pump inlet to prevent cavitation."@en ; + rdfs:label "NetPositiveSuctionHead"@en . + +PSD:AssessmentCondition + a rdf:Property ; + rdfs:comment "The overall condition of a product based on an assessment of the contributions to the overall condition made by the various criteria considered. The meanings given to the values of assessed condition should be agreed and documented by local agreements. For instance, is overall condition measured on a scale of 1 - 10 or by assigning names such as Good, OK, Poor."@en ; + rdfs:label "Assessment condition"@en . + +PSD:SpaceRelativeHumidity + a rdf:Property ; + rdfs:comment "The relative humidity of the space."@en ; + rdfs:label "SpaceRelativeHumidity"@en . + +PSD:IsPluggableOutlet + a rdf:Property ; + rdfs:comment "Indication of whether the outlet accepts a loose plug connection (= TRUE) or whether it is directly connected (= FALSE) or whether the form of connection has not yet been determined (= UNKNOWN)."@en ; + rdfs:label "Is pluggable outlet"@en . + +PSD:NumberOfChairs a rdf:Property ; + rdfs:comment "Maximum number of chairs that can fit with the table for normal use."@en ; + rdfs:label "NumberOfChairs"@en . + +PSD:StandardFixingPlateDepth + a rdf:Property ; + rdfs:comment "The depth of the standard fixing plate."@en ; + rdfs:label "StandardFixingPlateDepth"@en . + +PSD:ContributedLuminousFlux + a rdf:Property ; + rdfs:comment "Luminous flux is a photometric measure of radiant flux, i.e. the volume of light emitted from a light source. Luminous flux is measured either for the interior as a whole or for a part of the interior (partial luminous flux for a solid angle). All other photometric parameters are derivatives of luminous flux. Luminous flux is measured in lumens (lm). The luminous flux is given as a nominal value for each lamp."@en ; + rdfs:label "Contributed luminous flux"@en . + +PSD:IsolatingPurpose a rdf:Property ; + rdfs:comment "Defines the purpose for which the isolating valve is used since the way in which the valve is identified as an isolating valve may be in the context of its use. Note that unless there is a contextual name for the isolating valve (as in the case of a Landing Valve on a rising fire main), then the value assigned shoulkd be UNSET."@en ; + rdfs:label "IsolatingPurpose"@en . + +PSD:I2TApplicability a rdf:Property ; + rdfs:comment "The applicability of the time adjustment related to the tripping function."@en ; + rdfs:label "I2TApplicability"@en . + +PSD:SetPointConductance + a rdf:Property ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointConductance"@en . + +PSD:ReinforcementAreaRatio + a rdf:Property ; + rdfs:label "Reinforcement area ratio"@en . + PSD:TypePropertyEnumeratedValue - rdf:type owl:Class ; - rdfs:label "Type property enumerated value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:name ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertySingleValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. -PSD:TypePropertyListValue - rdf:type owl:Class ; - rdfs:label "Type property list value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:dataType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:unitType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:minCardinality "0"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:valueItem ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertySingleValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. -PSD:TypePropertyReferenceValue - rdf:type owl:Class ; - rdfs:label "Type property reference value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:minCardinality "0"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:dataType ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertySingleValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. + a owl:Class ; + rdfs:label "Type property enumerated value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:name + ] ; + owl:disjointWith PSD:TypePropertyTableValue , PSD:TypePropertyReferenceValue , PSD:TypePropertyBoundedValue , PSD:TypePropertyListValue , PSD:TypeComplexProperty , PSD:TypePropertySingleValue . + +PSD:IfNotAccomplished + a rdf:Property ; + rdfs:comment "Comments if the job is not accomplished."@en ; + rdfs:label "IfNotAccomplished"@en . + +PSD:ConvectorType a rdf:Property ; + rdfs:comment "Indicates the type of convector, whether forced air (mechanically driven) or natural (gravity)."@en ; + rdfs:label "ConvectorType"@en . + +PSD:Mode a rdf:Property ; + rdfs:comment "Table mapping operation mode identifiers to descriptive labels, which may be used for interpreting Pset_UnitaryControlElementPHistory.Mode."@en , "Indicates operation mode corresponding to Pset_UnitaryControlTypeCommon.Mode. For example, 'HEAT', 'COOL', 'AUTO'."@en ; + rdfs:label "Mode"@en . + +PSD:Relaxations a rdf:Property ; + rdfs:comment "Measures of decrease in stress over long time intervals resulting from plastic flow. Different relaxation values for different initial stress levels for a material may be given. It describes the time dependent relative relaxation value for a given initial stress level at constant strain.\\nRelating values are the \\\"RelaxationValue\\\". Related values are the \\\"InitialStress\\\""@en ; + rdfs:label "Relaxations"@en . + +PSD:OuterDiameter a rdf:Property ; + rdfs:comment "The actual outer diameter of the pipe."@en ; + rdfs:label "OuterDiameter"@en . + +PSD:VisibleTransmittance + a rdf:Property ; + rdfs:comment "Transmittance at normal incidence (visible). Defines the fraction of the visible spectrum of solar radiation that passes through per unit area, perpendicular to the surface."@en ; + rdfs:label "VisibleTransmittance"@en . + +PSD:ColumnShoeCasingHeight + a rdf:Property ; + rdfs:comment "The height of the column shoe casing."@en ; + rdfs:label "ColumnShoeCasingHeight"@en . + +PSD:PipeConnection a rdf:Property ; + rdfs:comment "The manner in which the pipe connection is made to the cooled beam."@en ; + rdfs:label "PipeConnection"@en . + +PSD:ParticleAbsorptionCurve + a rdf:Property ; + rdfs:comment "Ratio of particles that are removed by the filter. Each entry describes the ratio of particles absorbed greater than equal to the specified size and less than the next specified size. For example, given for 3 significant particle sizes >= 0,1 micro m, >= 1 micro m, >= 5 micro m"@en ; + rdfs:label "ParticleAbsorptionCurve"@en . + +PSD:DesignLocationNumber + a rdf:Property ; + rdfs:label "Design location number"@en . + +PSD:HigherHeatingValue + a rdf:Property ; + rdfs:comment "Higher Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in liquid form in the combustion products."@en ; + rdfs:label "HigherHeatingValue"@en . + +PSD:ThermalConductivity + a rdf:Property ; + rdfs:comment "The thermal conductivity of the fin."@en , "The rate at which thermal energy is transmitted through the material."@en , "The thermal conductivity of the tube."@en ; + rdfs:label "ThermalConductivity"@en . + +PSD:z a rdf:Property ; + rdfs:comment "Measure z according to ISO 2553"@en ; + rdfs:label "z"@en . + +PSD:ClearDepth a rdf:Property ; + rdfs:comment "Clear unobstructed depth available for cable inclusion within the junction box."@en , "The clear depth of the culvert."@en ; + rdfs:label "Clear depth"@en , "ClearDepth"@en . + +PSD:ScrapFactor a rdf:Property ; + rdfs:comment "Sheet metal scrap factor."@en ; + rdfs:label "ScrapFactor"@en . + +PSD:TemperatureFactor + a rdf:Property ; + rdfs:comment "The correction factor (typically measured as %/deg K) for adjusting the thermal current/time to an ambient temperature different from the value given by the defined temperature."@en ; + rdfs:label "TemperatureFactor"@en . + +PSD:DesignName a rdf:Property ; + rdfs:comment "A name for the design values."@en ; + rdfs:label "DesignName"@en . + +PSD:MassDensity a rdf:Property ; + rdfs:label "Mass density"@en . + +PSD:AngleBetweenComponentAxes + a rdf:Property ; + rdfs:label "Angle between component axes"@en . + +PSD:BathType a rdf:Property ; + rdfs:comment "The property enumeration defines the types of bath that may be specified within the property set."@en ; + rdfs:label "BathType"@en . + +PSD:ShipMethod a rdf:Property ; + rdfs:comment "Method of shipping that will be used for goods or services."@en ; + rdfs:label "ShipMethod"@en . + PSD:TypePropertySingleValue - rdf:type owl:Class ; - rdfs:comment "Type of IfcPropertySingleValue."@en ; - rdfs:label "Type property single value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:dataType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:unitType ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertyTableValue ; -. -PSD:TypePropertyTableValue - rdf:type owl:Class ; - rdfs:label "Type property table value"@en ; - rdfs:subClassOf PSD:PropertyType ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:definedValue ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:definingValue ; - ] ; - owl:disjointWith PSD:TypeComplexProperty ; - owl:disjointWith PSD:TypePropertyBoundedValue ; - owl:disjointWith PSD:TypePropertyEnumeratedValue ; - owl:disjointWith PSD:TypePropertyListValue ; - owl:disjointWith PSD:TypePropertyReferenceValue ; - owl:disjointWith PSD:TypePropertySingleValue ; -. -PSD:Value - rdf:type owl:Class ; - rdfs:label "Defining value"@en ; - rdfs:subClassOf owl:Thing ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:cardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:dataType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:unitType ; - ] ; - rdfs:subClassOf [ - rdf:type owl:Restriction ; - owl:minCardinality "0"^^xsd:nonNegativeInteger ; - owl:onProperty PSD:valueItem ; - ] ; -. -PSD:applicability - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:comment "Description of applicability and usecases, i.e., \"IfcDoor entity\", \"Common Pset of Ifc...\""@en ; - rdfs:domain PSD:PropertySetDef ; - rdfs:label "Applicability"@en ; - rdfs:range xsd:string ; -. -PSD:applicableClass - rdf:type owl:ObjectProperty ; - rdfs:comment "Applicable entity type, i.e., \"IfcWallStandardCase\". Multiple value is accepted, and format is: \"ENTYT_TYPE_1, ENTITY_TYPE_2, ...\"."@en ; - rdfs:domain PSD:PropertySetDef ; - rdfs:label "applicable class" ; - rdfs:range owl:Class ; -. -PSD:applicableTypeValue - rdf:type owl:DatatypeProperty ; - rdfs:comment "The format of applicable type value is ENTITY_TYPE/PREDEFINED_TYPE. Multiple value is accepted, and format is: \"TYPE_1 | TYPE_2 ...\"."@en ; - rdfs:domain PSD:PropertySetDef ; - rdfs:label "Applicable type value"@en ; - rdfs:range xsd:string ; -. -PSD:dataType - rdf:type owl:DatatypeProperty ; - rdfs:label "Data type"@en ; - rdfs:range IFC4:IfcValue ; -. -PSD:definedValue - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:TypePropertyTableValue ; - rdfs:label "Defining value"@en ; - rdfs:range PSD:Value ; -. -PSD:definingValue - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:TypePropertyTableValue ; - rdfs:label "Defining value"@en ; - rdfs:range PSD:Value ; -. -PSD:definition - rdf:type owl:DatatypeProperty ; - rdfs:label "Definition"@en ; - rdfs:range xsd:string ; -. -PSD:definitionAlias - rdf:type owl:DatatypeProperty ; - rdfs:comment "Definition alias in local language."@en ; - rdfs:domain [ - rdf:type owl:Class ; - owl:unionOf ( - PSD:PropertySetDef - PSD:PropertyDef - ) ; - ] ; - rdfs:label "Definition alias"@en ; - rdfs:range xsd:string ; -. -PSD:enumItem - rdf:type owl:DatatypeProperty ; - rdfs:comment "Enumeration item in uppercase."@en ; - rdfs:domain PSD:TypePropertyEnumeratedValue ; - rdfs:label "Enumeration item"@en ; - rdfs:range xsd:string ; -. -PSD:expression - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:comment "Information about the expression for the derivation of defined values from the defining values."@en ; - rdfs:domain PSD:TypePropertyTableValue ; - rdfs:label "Expression"@en ; - rdfs:range xsd:string ; -. -PSD:ifcVersion - rdf:type owl:FunctionalProperty ; - rdf:type owl:ObjectProperty ; - rdfs:comment "Version information of IFC release and sub schema."@en ; - rdfs:domain PSD:PropertySetDef ; - rdfs:label "IFC version"@en ; - rdfs:range PSD:IfcVersion ; -. -PSD:ifdguid - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:comment "GUID of IFD."@en ; - rdfs:domain PSD:PropertyDef ; - rdfs:label "IFD GUID"@en ; - rdfs:range xsd:string ; -. -PSD:lowerBoundValue - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:domain PSD:TypePropertyBoundedValue ; - rdfs:label "Lower bound value"@en ; - rdfs:range xsd:string ; -. -PSD:name - rdf:type owl:DatatypeProperty ; - rdfs:label "Name"@en ; - rdfs:range xsd:string ; -. -PSD:nameAlias - rdf:type owl:DatatypeProperty ; - rdfs:comment "Name alias in local language."@en ; - rdfs:domain PSD:PropertyDef ; - rdfs:label "Name alias"@en ; - rdfs:range xsd:string ; -. -PSD:parent - rdf:type owl:FunctionalProperty ; - rdf:type owl:TransitiveProperty ; - rdfs:domain PSD:InformationDeliverySpecification ; - rdfs:label "Parent information delivery specification"@en ; - rdfs:range PSD:InformationDeliverySpecification ; -. -PSD:propertyDef - rdf:type owl:ObjectProperty ; - rdfs:domain [ - rdf:type owl:Class ; - owl:unionOf ( - PSD:PropertySetDef - PSD:TypeComplexProperty - ) ; - ] ; - rdfs:label "Property definition"@en ; - rdfs:range PSD:PropertyDef ; -. -PSD:propertySetDef - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:RequiredPset ; - rdfs:range PSD:PropertySetDef ; -. -PSD:propertyType - rdf:type owl:FunctionalProperty ; - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:PropertyDef ; - rdfs:label "Property type"@en ; - rdfs:range PSD:PropertyType ; -. -PSD:requiredProp - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:RequiredPset ; - rdfs:range PSD:PropertyDef ; -. -PSD:requiredPset - rdf:type owl:ObjectProperty ; - rdfs:domain PSD:InformationDeliverySpecification ; - rdfs:range PSD:RequiredPset ; -. -PSD:schema - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:comment "Sub schema name, i.e., \"IfcSharedBldgElements\"."@en ; - rdfs:domain PSD:IfcVersion ; - rdfs:label "Schema"@en ; - rdfs:range xsd:string ; -. -PSD:unitType - rdf:type owl:DatatypeProperty ; - rdfs:label "Unit type"@en ; - rdfs:range [ - rdf:type owl:Class ; - owl:unionOf ( - IFC4:IfcDerivedUnit - IFC4:IfcNamedUnit - ) ; - ] ; -. -PSD:upperBoundValue - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:domain PSD:TypePropertyBoundedValue ; - rdfs:label "Upper bound value"@en ; - rdfs:range xsd:string ; -. -PSD:valueItem - rdf:type owl:DatatypeProperty ; - rdfs:label "Value item"@en ; - rdfs:range xsd:string ; -. -PSD:version - rdf:type owl:DatatypeProperty ; - rdf:type owl:FunctionalProperty ; - rdfs:comment "Version of IFC, i.e., \"2x3 TC1\", \"IFC4\"."@en ; - rdfs:domain PSD:IfcVersion ; - rdfs:label "Version"@en ; - rdfs:range xsd:string ; -. + a owl:Class ; + rdfs:comment "Type of IfcPropertySingleValue."@en ; + rdfs:label "Type property single value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:dataType + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:unitType + ] ; + owl:disjointWith PSD:TypePropertyBoundedValue , PSD:TypePropertyTableValue , PSD:TypePropertyListValue , PSD:TypeComplexProperty , PSD:TypePropertyReferenceValue , PSD:TypePropertyEnumeratedValue . + +PSD:HeatingCapacity a rdf:Property ; + rdfs:comment "Heating capacity."@en ; + rdfs:label "HeatingCapacity"@en . + +PSD:StemBaseFillet a rdf:Property ; + rdfs:comment "Stem base fillet of the profile."@en ; + rdfs:label "StemBaseFillet"@en . + +PSD:HazardousWastePerUnit + a rdf:Property ; + rdfs:label "Hazardous waste per unit"@en . + +PSD:FanPowerRate a rdf:Property ; + rdfs:comment "Fan power consumption."@en ; + rdfs:label "FanPowerRate"@en . + +PSD:ColumnShoeCasingDepth + a rdf:Property ; + rdfs:comment "The depth of the column shoe casing."@en ; + rdfs:label "ColumnShoeCasingDepth"@en . + +PSD:InternalWaterVolume + a rdf:Property ; + rdfs:comment "Internal volume of condenser (water side)."@en ; + rdfs:label "Internal water volume"@en . + +PSD:BladeEdge a rdf:Property ; + rdfs:comment "Blade edge."@en ; + rdfs:label "BladeEdge"@en . + +PSD:NumberofBlades a rdf:Property ; + rdfs:comment "Number of blades."@en ; + rdfs:label "NumberofBlades"@en . + +PSD:ReleaseTimeI2tStart + a rdf:Property ; + rdfs:comment "The release time in [s] for the start point of the I2t tripping curve of the G-function, if any."@en , "The release time in [s] for the start point of the I2t tripping curve of the S-function, if any"@en ; + rdfs:label "ReleaseTimeI2tStart"@en . + +PSD:TotalHeatingCapacity + a rdf:Property ; + rdfs:comment "Total heating capacity. This includes heating capacity of beam and heating capacity of supply air."@en ; + rdfs:label "TotalHeatingCapacity"@en . + +PSD:TotalHeatGain a rdf:Property ; + rdfs:comment "The total amount of heat or energy gained by the space at the time of the space's peak cooling conditions."@en ; + rdfs:label "TotalHeatGain"@en . + +PSD:PowerState a rdf:Property ; + rdfs:comment "Indicates the power state of the device where True is on and False is off."@en ; + rdfs:label "PowerState"@en . + +PSD:Type2 a rdf:Property ; + rdfs:comment "See Type1."@en ; + rdfs:label "Type2"@en . + +PSD:Description a rdf:Property ; + rdfs:comment "The description of the air side system."@en , "Description of the reinforcement."@en ; + rdfs:label "Description"@en . + +PSD:HoseReelMountingType + a rdf:Property ; + rdfs:comment "Identifies the predefined types of hose reel mounting from which the type required may be set."@en ; + rdfs:label "HoseReelMountingType"@en . + +PSD:AgreementType a rdf:Property ; + rdfs:comment "Identifies the predefined types of property agreement from which the type required may be set."@en ; + rdfs:label "AgreementType"@en . + +PSD:Width a rdf:Property ; + rdfs:comment "The width of the sump."@en , "The requested width (horizontal extension in elevation) of the provision for void, only provided if the Shape property is set to 'rectangle'."@en , "The width of the pit."@en , "The width of the trench."@en ; + rdfs:label "Width"@en . + +PSD:MaximumVelocity a rdf:Property ; + rdfs:comment "The maximum design velocity of the air in the duct or fitting."@en ; + rdfs:label "MaximumVelocity"@en . + +PSD:DesignLevel a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of design level employed."@en ; + rdfs:label "DesignLevel"@en . + +PSD:DefinedTemperature + a rdf:Property ; + rdfs:comment "The ambient temperature at which the thermal current/time-curve associated with this protection device is defined."@en ; + rdfs:label "DefinedTemperature"@en . + +PSD:LiftingStrength a rdf:Property ; + rdfs:label "Lifting strength"@en . + +PSD:Porosity a rdf:Property ; + rdfs:label "Porosity"@en . + +PSD:SecondCurvatureRadius + a rdf:Property ; + rdfs:comment "SecondCurvatureRadius should be defined as the top or right side radius of curvature value."@en ; + rdfs:label "SecondCurvatureRadius"@en . + +PSD:HeatingDesignDay a rdf:Property ; + rdfs:comment "The month, day and time that has been selected for the heating design calculations."@en ; + rdfs:label "HeatingDesignDay"@en . + +PSD:DistanceBetweenComponentAxes + a rdf:Property ; + rdfs:label "Distance between component axes"@en . + +PSD:SeatingHeight a rdf:Property ; + rdfs:comment "The value of seating height if the chair height is not adjustable."@en ; + rdfs:label "SeatingHeight"@en . + +PSD:ShortCircuit3PolePowerFactorMaximumState + a rdf:Property ; + rdfs:comment "Power factor of the maximum 3 pole short circuit current provided at the point of supply."@en ; + rdfs:label "ShortCircuit3PolePowerFactorMaximumState"@en . + +PSD:SupplyAirConnectionType + a rdf:Property ; + rdfs:comment "The manner in which the pipe connection is made to the cooled beam."@en ; + rdfs:label "SupplyAirConnectionType"@en . + +PSD:TimeConstant a rdf:Property ; + rdfs:comment "The time constant of the sensor."@en ; + rdfs:label "TimeConstant"@en . + +PSD:FlangeChamfer a rdf:Property ; + rdfs:comment "Flange chamfer of the profile."@en ; + rdfs:label "FlangeChamfer"@en . + +PSD:ClearHeight a rdf:Property ; + rdfs:label "Clear height"@en . + +PSD:AdjustmentDesignation + a rdf:Property ; + rdfs:comment "The desgnation on the device for the adjustment."@en ; + rdfs:label "AdjustmentDesignation"@en . + +PSD:LandID a rdf:Property ; + rdfs:comment "Identification number assigned by the statutory registration authority to a land parcel."@en ; + rdfs:label "LandID"@en . + +PSD:CorrosionTreatment + a rdf:Property ; + rdfs:comment "Determines corrosion treatment for metal components. This property is provided if the requirement needs to be expressed (a) independently of a material specification and (b) as a mere requirements statement rather than a workshop design/ processing feature."@en ; + rdfs:label "Corrosion treatment"@en . + +PSD:Span a rdf:Property ; + rdfs:label "Span"@en . + +PSD:Style a rdf:Property ; + rdfs:comment "Description of the furniture style."@en ; + rdfs:label "Style"@en . + +PSD:Operation a rdf:Property ; + rdfs:comment "The operational mechanism for the damper operation."@en ; + rdfs:label "Operation"@en . + +PSD:SolarTransmittance + a rdf:Property ; + rdfs:comment "Transmittance at normal incidence (solar). Defines the fraction of solar radiation that passes through per unit area, perpendicular to the surface."@en ; + rdfs:label "Solar transmittance"@en , "SolarTransmittance"@en . + +PSD:WashersCount a rdf:Property ; + rdfs:comment "Count of washers to be mounted on one bolt"@en ; + rdfs:label "WashersCount"@en . + +PSD:AcidityConcentration + a rdf:Property ; + rdfs:comment "Maximum CaCO3 equivalent that would neutralize the acid."@en ; + rdfs:label "AcidityConcentration"@en . + +PSD:HasGrabHandles a rdf:Property ; + rdfs:comment "Indicates whether the bath is fitted with handles that provide assistance to a bather in entering or leaving the bath."@en ; + rdfs:label "HasGrabHandles"@en . + +PSD:PropertyDef a owl:Class ; + rdfs:comment "Element of property definition."@en ; + rdfs:label "Property definition"@en ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:name + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:definition + ] . + +PSD:InternalWidth a rdf:Property ; + rdfs:comment "The internal width of the culvert."@en ; + rdfs:label "InternalWidth"@en . + +PSD:StemBaseChamfer a rdf:Property ; + rdfs:comment "Stem base chamfer of the profile."@en ; + rdfs:label "StemBaseChamfer"@en . + +PSD:FireSensorSetPoint + a rdf:Property ; + rdfs:comment "The temperature value to be sensed to indicate the presence of fire."@en ; + rdfs:label "FireSensorSetPoint"@en . + +PSD:SetPointSound a rdf:Property ; + rdfs:comment "The sound pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointSound"@en . + +PSD:Compartmentation a rdf:Property ; + rdfs:label "Compartmentation"@en . + +PSD:WaterFilterType a rdf:Property ; + rdfs:comment "Further qualifies the type of water filter. Filtration removes undissolved matter; Purification removes dissolved matter; Softening replaces dissolved matter."@en ; + rdfs:label "WaterFilterType"@en . + +PSD:I4 a rdf:Property ; + rdfs:comment "The lower electromagnetic testing current limit in [x In], indicating that for currents lower than I4, the tripping time shall be longer than the associated tripping time, T5, i.e. the device shall not trip instantaneous."@en ; + rdfs:label "I4"@en . + +PSD:Identifier a rdf:Property ; + rdfs:comment "The identifier assigned to the agreement for the purposes of tracking."@en ; + rdfs:label "Identifier"@en . + +PSD:BuildingID a rdf:Property ; + rdfs:label "Building ID"@en . + +PSD:TotalRadiantLoad a rdf:Property ; + rdfs:comment "Total electromagnetic energy added or removed by emission or absorption. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space."@en ; + rdfs:label "TotalRadiantLoad"@en . + +PSD:IfcVersion a owl:Class ; + rdfs:comment "Version information of IFC release and sub schema."@en ; + rdfs:label "IFC version"@en ; + rdfs:subClassOf owl:Thing . + +PSD:NominalWaterFlowHeating + a rdf:Property ; + rdfs:comment "Nominal water flow (refers to nominal heating capacity)."@en ; + rdfs:label "NominalWaterFlowHeating"@en . + +PSD:MaximumPlenumSensibleLoad + a rdf:Property ; + rdfs:comment "Maximum or Peak sensible thermal load contributed to return air plenum by the light fixture."@en ; + rdfs:label "MaximumPlenumSensibleLoad"@en . + +PSD:EutrophicationPerUnit + a rdf:Property ; + rdfs:label "Eutrophication per unit"@en . + +PSD:LongInsideEndTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long inside end top bar."@en ; + rdfs:label "LongInsideEndTopBarPitch"@en . + +PSD:VaristorType a rdf:Property ; + rdfs:comment "A list of the available types of varistor from which that required may be selected."@en ; + rdfs:label "VaristorType"@en . + +PSD:DischargeDirection + a rdf:Property ; + rdfs:comment "Discharge direction of the air terminal.\\n\\nParallel: discharges parallel to mounting surface designed so that flow attaches to the surface.\\nPerpendicular: discharges away from mounting surface.\\nAdjustable: both parallel and perpendicular discharge."@en ; + rdfs:label "Discharge direction"@en . + +PSD:ActuatorInputPower + a rdf:Property ; + rdfs:comment "Maximum input power requirement."@en ; + rdfs:label "Actuator input power"@en . + +PSD:parent a owl:TransitiveProperty , owl:FunctionalProperty ; + rdfs:domain PSD:InformationDeliverySpecification ; + rdfs:label "Parent information delivery specification"@en ; + rdfs:range PSD:InformationDeliverySpecification . + +PSD:FragilityRating a rdf:Property ; + rdfs:label "Fragility rating"@en . + +PSD:CompressorCondenserHeatGain + a rdf:Property ; + rdfs:comment "Heat gain between condenser inlet to compressor outlet."@en ; + rdfs:label "CompressorCondenserHeatGain"@en . + +PSD:Illuminance a rdf:Property ; + rdfs:comment "Required average illuminance value for this space."@en ; + rdfs:label "Illuminance"@en . + +PSD:SupportDuringTransportDocReference + a rdf:Property ; + rdfs:label "Support during transport doc reference"@en . + +PSD:UserCorrectionFactor + a rdf:Property ; + rdfs:comment "An arbitrary correction factor that may be applied by the user."@en ; + rdfs:label "UserCorrectionFactor"@en . + +PSD:ConstructionMethod + a rdf:Property ; + rdfs:label "Construction method"@en . + +PSD:applicableClass a owl:ObjectProperty ; + rdfs:comment "Applicable entity type, i.e., \"IfcWallStandardCase\". Multiple value is accepted, and format is: \"ENTYT_TYPE_1, ENTITY_TYPE_2, ...\"."@en ; + rdfs:domain PSD:PropertySetDef ; + rdfs:label "applicable class" ; + rdfs:range owl:Class . + +PSD:CoolingDryBulb a rdf:Property ; + rdfs:comment "Inside dry bulb temperature for cooling design."@en , "Outside dry bulb temperature for cooling design."@en ; + rdfs:label "CoolingDryBulb"@en . + +PSD:RegeneratedSoundCurve + a rdf:Property ; + rdfs:comment "Regenerated sound versus air flow rate."@en ; + rdfs:label "RegeneratedSoundCurve"@en . + +PSD:StemTopFillet a rdf:Property ; + rdfs:comment "Stem top fillet of the profile."@en ; + rdfs:label "StemTopFillet"@en . + +PSD:BoltSize a rdf:Property ; + rdfs:comment "Size of the bolts securing the flange."@en ; + rdfs:label "BoltSize"@en . + +PSD:XDirectionLowerBarCount + a rdf:Property ; + rdfs:comment "The number of bars with X direction lower bar."@en ; + rdfs:label "XDirectionLowerBarCount"@en . + +PSD:Manufacturer a rdf:Property ; + rdfs:comment "The organization that manufactured and/or assembled the item."@en ; + rdfs:label "Manufacturer"@en . + +PSD:CoreBaseHeight a rdf:Property ; + rdfs:comment "Core base height of the profile."@en ; + rdfs:label "CoreBaseHeight"@en . + +PSD:VacancyRateInCategoryFuture + a rdf:Property ; + rdfs:comment "Percentage of vacancy found in the particular category expected in the future."@en ; + rdfs:label "Vacancy rate in category future"@en . + +PSD:DualDeck a rdf:Property ; + rdfs:comment "Does the AirHandler have a dual deck? TRUE = Yes, FALSE = No."@en ; + rdfs:label "DualDeck"@en . + +PSD:VideoResolutionHeight + a rdf:Property ; + rdfs:comment "Indicates the number of vertical pixels, e.g. 1080."@en , "Indicates the number of vertical pixels (the largest native video resolution height)."@en ; + rdfs:label "VideoResolutionHeight"@en . + +PSD:CenterCoreBaseWidth + a rdf:Property ; + rdfs:comment "Center core base width of the profile."@en ; + rdfs:label "CenterCoreBaseWidth"@en . + +PSD:CoreMiddleHeight a rdf:Property ; + rdfs:comment "Core middle height of the profile."@en ; + rdfs:label "CoreMiddleHeight"@en . + +PSD:MotorDriveType a rdf:Property ; + rdfs:comment "Motor drive type:\\nDIRECTDRIVE: Direct drive. \\nBELTDRIVE: Belt drive. \\nCOUPLING: Coupling. \\nOTHER: Other type of motor drive. \\nUNKNOWN: Unknown motor drive type."@en ; + rdfs:label "Motor drive type"@en . + +PSD:WorkFinishTime a rdf:Property ; + rdfs:comment "The default time of day a task is scheduled to finish. For presentation purposes, if the finish time of a task matches the WorkFinishTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkFinishTime."@en ; + rdfs:label "Work finish time"@en . + +PSD:NominalSupplyWaterTemperatureHeating + a rdf:Property ; + rdfs:comment "Nominal supply water temperature (refers to nominal heating capacity)."@en ; + rdfs:label "NominalSupplyWaterTemperatureHeating"@en . + +PSD:PropertyName a rdf:Property ; + rdfs:comment "Addressing details of the property as stated within the agreement."@en ; + rdfs:label "PropertyName"@en . + +PSD:MaximumShortCircuitTemperature + a rdf:Property ; + rdfs:comment "The maximum short circuit temperature at which a cable or bus is certified to operate."@en ; + rdfs:label "MaximumShortCircuitTemperature"@en . + +PSD:ThermalIrEmissivityBack + a rdf:Property ; + rdfs:comment "Thermal IR emissivity: back side. Defines the fraction of thermal energy emitted per unit area to 'blackbody' at the same temperature, through the 'back' side of the material."@en ; + rdfs:label "ThermalIrEmissivityBack"@en . + +PSD:JunctionType a rdf:Property ; + rdfs:comment "The type of junction. TEE=3 ports, CROSS = 4 ports."@en ; + rdfs:label "JunctionType"@en . + +PSD:AcquisitionDate a rdf:Property ; + rdfs:comment "The date that the manufactured item was purchased."@en ; + rdfs:label "AcquisitionDate"@en . + +PSD:UpperTime2 a rdf:Property ; + rdfs:comment "The time in [s], indicating the tripping times of the upper time/current curve at the UpperCurrent2."@en ; + rdfs:label "UpperTime2"@en . + +PSD:LongInsideCenterLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long inside center lower bar."@en ; + rdfs:label "LongInsideCenterLowerBarPitch"@en . + +PSD:HoseDiameter a rdf:Property ; + rdfs:comment "Notional diameter (bore) of the hose."@en ; + rdfs:label "HoseDiameter"@en . + +PSD:CompressorSpeed a rdf:Property ; + rdfs:comment "Compressor speed."@en ; + rdfs:label "CompressorSpeed"@en . + +PSD:SolarReflectanceFront + a rdf:Property ; + rdfs:comment "Reflectance at normal incidence (solar): front side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the 'front' side of the other material, perpendicular to the surface. Dependent on material and surface characteristics."@en ; + rdfs:label "SolarReflectanceFront"@en . + +PSD:ExternalAdjusted a rdf:Property ; + rdfs:comment "An indication if the ground fault protection may be adjusted according to an external current coil or not."@en ; + rdfs:label "ExternalAdjusted"@en . + +PSD:SpecialConstruction + a rdf:Property ; + rdfs:comment "Special construction capabilities like self-supporting, flat devidable cable or bus flat non devidable cable or bus supporting elements inside (steal, textile, concentric conductor). Note that materials used should be agreed between exchange participants before use."@en ; + rdfs:label "SpecialConstruction"@en . + +PSD:NominalSurroundingTemperatureCooling + a rdf:Property ; + rdfs:comment "Nominal surrounding temperature (refers to nominal cooling capacity)."@en ; + rdfs:label "NominalSurroundingTemperatureCooling"@en . + +PSD:WireLoopLength a rdf:Property ; + rdfs:comment "The length of the fastening loop part of the wire."@en ; + rdfs:label "WireLoopLength"@en . + +PSD:ReheatType a rdf:Property ; + rdfs:comment "Terminal box reheat type."@en ; + rdfs:label "Reheat type"@en . + +PSD:MaximumCableLength + a rdf:Property ; + rdfs:comment "Maximum cable length based on voltagedrop. NOTE: This value may also be specified as a constraint within an IFC model if required but is included within the property set at this stage pending implementation of the required capabilities within software applications."@en ; + rdfs:label "MaximumCableLength"@en . + +PSD:AmplifierType a rdf:Property ; + rdfs:comment "Indicates the type of amplifier."@en ; + rdfs:label "AmplifierType"@en . + +PSD:ShortInsideEndLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short inside end lower bar."@en ; + rdfs:label "ShortInsideEndLowerBarPitch"@en . + +PSD:CoolingDesignAirflow + a rdf:Property ; + rdfs:comment "The air flowrate required during the peak cooling conditions."@en ; + rdfs:label "CoolingDesignAirflow"@en . + +PSD:LeakageCurve a rdf:Property ; + rdfs:comment "Leakage versus pressure drop; Leakage = f (pressure)."@en , "Leakage per unit length curve versus working pressure. If a scalar is expressed then it represents LeakageClass which is flowrate per unit area at a specified pressure rating (e.g., ASHRAE Fundamentals 2001 34.16.)."@en , "Leakage per unit length curve versus working pressure."@en ; + rdfs:label "LeakageCurve"@en . + +PSD:ElectroMagneticTrippingUnitType + a rdf:Property ; + rdfs:comment "A list of the available types of electric magnetic tripping unit from which that required may be selected. These cover overload, none special, short circuit, motor protection and bi-metal tripping."@en ; + rdfs:label "ElectroMagneticTrippingUnitType"@en . + +PSD:SolarReflectanceBack + a rdf:Property ; + rdfs:comment "Reflectance at normal incidence (solar): back side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the 'back' side of the other material, perpendicular to the surface. Dependent on material and surface characteristics."@en ; + rdfs:label "SolarReflectanceBack"@en . + +PSD:FlowResistanceRange + a rdf:Property ; + rdfs:comment "Allowable range of frictional resistance against which the fluid is being pumped."@en ; + rdfs:label "FlowResistanceRange"@en . + +PSD:StandardFixingPlateThickness + a rdf:Property ; + rdfs:comment "The thickness of the standard fixing plate."@en ; + rdfs:label "StandardFixingPlateThickness"@en . + +PSD:EnergyLoss a rdf:Property ; + rdfs:comment "The sum of energy losses for the spaces served by the system during the peak heating conditions."@en ; + rdfs:label "Energy loss"@en . + +PSD:Temperature a rdf:Property ; + rdfs:comment "The temperature of the fuel."@en , "Temperature of the fluid. For air this value represents the dry bulb temperature."@en , "Indicates the current measured temperature."@en ; + rdfs:label "Temperature"@en . + +PSD:AdjustmentRangeStepValue + a rdf:Property ; + rdfs:comment "Step value of current adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST."@en , "Step value of time adjustment for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST."@en ; + rdfs:label "AdjustmentRangeStepValue"@en . + +PSD:BaseChamfer a rdf:Property ; + rdfs:comment "Base chamfer of the profile."@en ; + rdfs:label "BaseChamfer"@en . + +PSD:SetPoint a rdf:Property ; + rdfs:comment "Indicates the switch position over time according to Pset_SwitchingDeviceTypeCommon.SetPoint."@en , "Indicates the temperature setpoint. For thermostats with setbacks or separate high and low setpoints, then the time series may contain a pair of values at each entry where the first value is the heating setpoint (low) and the second value is the cooling setpoint (high)."@en ; + rdfs:label "SetPoint"@en . + +PSD:RefreshRate a rdf:Property ; + rdfs:comment "Indicates the display refresh frequency."@en ; + rdfs:label "RefreshRate"@en . + +PSD:AtmosphericPressure + a rdf:Property ; + rdfs:comment "Ambient atmospheric pressure."@en ; + rdfs:label "Atmospheric pressure"@en , "AtmosphericPressure"@en . + +PSD:OutsideAirFlowrate + a rdf:Property ; + rdfs:comment "Flow rate of outside air entering the unit."@en ; + rdfs:label "OutsideAirFlowrate"@en . + +PSD:Roll a rdf:Property ; + rdfs:label "Roll"@en . + +PSD:GlassThickness3 a rdf:Property ; + rdfs:label "Glass thickness 3"@en . + +PSD:MomentaryType a rdf:Property ; + rdfs:comment "A list of the available types of momentary switch from which that required may be selected."@en ; + rdfs:label "MomentaryType"@en . + +PSD:SprinklerProtectionAutomatic + a rdf:Property ; + rdfs:label "Sprinkler protection automatic"@en . + +PSD:FullLoadRatio a rdf:Property ; + rdfs:comment "Ratio of actual power to full load power as a quadratic function of part load, at certain condensing and evaporating temperature, FracFullLoadPower = f ( PartLoadRatio)."@en ; + rdfs:label "FullLoadRatio"@en . + +PSD:ReinforcementSpacing + a rdf:Property ; + rdfs:comment "The spacing between reinforcing elements."@en ; + rdfs:label "ReinforcementSpacing"@en . + +PSD:HasIntegralShutOffDevice + a rdf:Property ; + rdfs:comment "Indication of whether the flushing valve has an integral shut off device fitted (set TRUE) or not (set FALSE)."@en ; + rdfs:label "HasIntegralShutOffDevice"@en . + +PSD:ToppingType a rdf:Property ; + rdfs:label "Topping type"@en . + +PSD:WaterFlowControlSystemType + a rdf:Property ; + rdfs:comment "Factory fitted waterflow control system."@en ; + rdfs:label "WaterFlowControlSystemType"@en . + +PSD:SwitchUsage a rdf:Property ; + rdfs:comment "A list of the available usages for toggle switches from which that required may be selected."@en , "A list of the available usages for selector switches from which that required may be selected."@en ; + rdfs:label "SwitchUsage"@en . + +PSD:HighestSeatingHeight + a rdf:Property ; + rdfs:comment "The value of seating height of high level if the chair height is adjustable."@en ; + rdfs:label "HighestSeatingHeight"@en . + +PSD:CornerFixingPlateFlangeWidthInPlaneZ + a rdf:Property ; + rdfs:comment "The flange width of the L-shaped corner plate in plane Z."@en ; + rdfs:label "CornerFixingPlateFlangeWidthInPlaneZ"@en . + +PSD:DownstreamPressure + a rdf:Property ; + rdfs:comment "The operating pressure of the fluid downstream of the pressure reducing valve."@en ; + rdfs:label "DownstreamPressure"@en . + +PSD:NominalMoistureGain + a rdf:Property ; + rdfs:comment "Nominal rate of water vapor added into the airstream."@en ; + rdfs:label "Nominal moisture gain"@en . + +PSD:ActualCost a rdf:Property ; + rdfs:comment "The actual cost on behalf of the resource allocation."@en ; + rdfs:label "ActualCost"@en . + +PSD:upperBoundValue a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:domain PSD:TypePropertyBoundedValue ; + rdfs:label "Upper bound value"@en ; + rdfs:range xsd:string . + +PSD:Location3Local a rdf:Property ; + rdfs:comment "Local x,y coordinates of the point in which Thickness3 is given"@en ; + rdfs:label "Location3Local"@en . + +PSD:MinimumHeight a rdf:Property ; + rdfs:comment "The minimum duct height for rectangular, oval or round duct."@en ; + rdfs:label "MinimumHeight"@en . + +PSD:CoolingTemperatureDelta + a rdf:Property ; + rdfs:comment "Cooling temperature difference for calculating space air flow rates."@en ; + rdfs:label "CoolingTemperatureDelta"@en . + +PSD:HasDeflector a rdf:Property ; + rdfs:comment "Indication of whether the sprinkler has a deflector (baffle) fitted to diffuse the discharge on activation (= TRUE) or not (= FALSE)."@en ; + rdfs:label "HasDeflector"@en . + +PSD:HazardousWaste a rdf:Property ; + rdfs:label "Hazardous waste"@en . + +PSD:EdgeFixingPlateLength + a rdf:Property ; + rdfs:comment "The length of the L-shaped edge plate."@en ; + rdfs:label "EdgeFixingPlateLength"@en . + +PSD:Height a rdf:Property ; + rdfs:comment "Length of the fin as measured perpendicular to the direction of airflow."@en , "Height of the object. It is the upper hight of the railing above the floor or stair.\\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en , "The requested height (vertical extension in elevation) of the provision for void', only provided if the Shape property is set to 'rectangle'."@en ; + rdfs:label "Height"@en . + +PSD:Thickness1 a rdf:Property ; + rdfs:comment "First thickness parameter of a surface member with varying thickness"@en ; + rdfs:label "Thickness1"@en . + +PSD:LeftFlangeWidth a rdf:Property ; + rdfs:comment "Left flange width of the profile."@en ; + rdfs:label "LeftFlangeWidth"@en . + +PSD:LowestSeatingHeight + a rdf:Property ; + rdfs:comment "The value of seating height of low level if the chair height is adjustable."@en ; + rdfs:label "LowestSeatingHeight"@en . + +PSD:HygrothermalRating + a rdf:Property ; + rdfs:label "Hygrothermal rating"@en . + +PSD:TotalEffectivenessTable + a rdf:Property ; + rdfs:comment "Total heat transfer effectiveness curve as a function of the primary and secondary air flow rate."@en ; + rdfs:label "TotalEffectivenessTable"@en . + +PSD:CurrentTolerance1 + a rdf:Property ; + rdfs:comment "The tolerance for the current of time/current-curve in [%]."@en ; + rdfs:label "CurrentTolerance1"@en . + +PSD:BeamHeatingCapacity + a rdf:Property ; + rdfs:comment "Heating capacity of beam. This excludes heating capacity of supply air."@en ; + rdfs:label "BeamHeatingCapacity"@en . + +PSD:TemperatureSetPoint + a rdf:Property ; + rdfs:comment "The temperature setpoint range and default setpoint."@en ; + rdfs:label "TemperatureSetPoint"@en . + +PSD:PressureClass a rdf:Property ; + rdfs:comment "Nominal pressure rating of the system components. (Data type = PressureMeasure)"@en , "The test or rated pressure classification of the fitting."@en , "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)."@en ; + rdfs:label "PressureClass"@en , "Pressure class"@en . + +PSD:SupplyAirTemperatureCooling + a rdf:Property ; + rdfs:comment "Supply air temperature in cooling mode."@en ; + rdfs:label "SupplyAirTemperatureCooling"@en . + +PSD:Status a rdf:Property ; + rdfs:comment "Status of the element, predominately used in renovation or retrofitting projects. The status can be assigned to as 'New' - element designed as new addition, 'Existing' - element exists and remains, 'Demolish' - element existed but is to be demolished, 'Temporary' - element will exists only temporary (like a temporary support structure)."@en , "Indicates an error code or identifier, whose meaning is specific to the particular automation system. Example values include: 'ConfigurationError', 'NotConnected', 'DeviceFailure', 'SensorFailure', 'LastKnown, 'CommunicationsFailure', 'OutOfService'."@en ; + rdfs:label "Status"@en . + +PSD:FaceArea a rdf:Property ; + rdfs:comment "Face area open to the airstream."@en ; + rdfs:label "FaceArea"@en . + +PSD:FlangeThickness a rdf:Property ; + rdfs:comment "Thickness of the material from which the pipe bend is constructed."@en ; + rdfs:label "FlangeThickness"@en . + +PSD:IsSelectable a rdf:Property ; + rdfs:comment "Indication whether the L-function can be switched off or not."@en , "Indication whether the S-function can be switched off or not."@en ; + rdfs:label "IsSelectable"@en . + +PSD:QualityOfComponents + a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the quality of components used."@en ; + rdfs:label "QualityOfComponents"@en . + +PSD:WaterFoulingResistance + a rdf:Property ; + rdfs:comment "Fouling resistance on water/air side."@en ; + rdfs:label "WaterFoulingResistance"@en . + +PSD:MoistureDiffusivity + a rdf:Property ; + rdfs:comment "Moisture diffusivity is a transport property that is frequently used in the hygrothermal analysis of building envelope components."@en ; + rdfs:label "MoistureDiffusivity"@en . + +PSD:HasExteriorInsulation + a rdf:Property ; + rdfs:comment "TRUE if the silencer has exterior insulation. FALSE if it does not."@en ; + rdfs:label "HasExteriorInsulation"@en . + +PSD:Force a rdf:Property ; + rdfs:comment "Indicates the maximum close-off force for the actuator."@en ; + rdfs:label "Force"@en . + +PSD:ReleaseCurrentI2tStart + a rdf:Property ; + rdfs:comment "The release current in [x In] for the start point of the I2t tripping curve of the G-function, if any."@en , "The release current in [x In] for the start point of the I2t tripping curve of the S-function, if any."@en ; + rdfs:label "ReleaseCurrentI2tStart"@en . + +PSD:WaterImpermeability + a rdf:Property ; + rdfs:label "Water impermeability"@en . + +PSD:VentilatingPipeSize + a rdf:Property ; + rdfs:comment "Size of the ventilating pipe(s)."@en ; + rdfs:label "VentilatingPipeSize"@en . + +PSD:Activation a rdf:Property ; + rdfs:comment "Identifies the predefined methods of sprinkler activation from which that required may be set."@en ; + rdfs:label "Activation"@en . + +PSD:BarAllocationType + a rdf:Property ; + rdfs:comment "Defines the type of the reinforcement bar allocation."@en ; + rdfs:label "BarAllocationType"@en . + +PSD:a a rdf:Property ; + rdfs:comment "Measure a according to ISO 2553"@en ; + rdfs:label "a"@en . + +PSD:SetPointFrost a rdf:Property ; + rdfs:comment "The detection of frost."@en ; + rdfs:label "SetPointFrost"@en . + +PSD:DuctSizingMethod a rdf:Property ; + rdfs:comment "Enumeration that identifies the methodology to be used to size system components."@en ; + rdfs:label "DuctSizingMethod"@en . + +PSD:SetPointLevel a rdf:Property ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointLevel"@en . + +PSD:EarthFault1PolePowerFactorMinimumState + a rdf:Property ; + rdfs:comment "Power factor of the minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN."@en ; + rdfs:label "EarthFault1PolePowerFactorMinimumState"@en . + +PSD:CurrentForTimeDelay + a rdf:Property ; + rdfs:comment "The tripping current in [x In] at which the time delay is specified. A value for this property should only be asserted for time delay of L-function, and for I2t of the S and G function."@en ; + rdfs:label "CurrentForTimeDelay"@en . + +PSD:NominalBodyWidth a rdf:Property ; + rdfs:comment "Nominal or quoted length measured along the y-axis in the local coordinate system of the drain."@en , "Nominal or quoted length, measured along the y-axis of the local coordinate system of the object, of the body of the object."@en , "Nominal or quoted length measured along the y-axis in the local coordinate system of the waste."@en ; + rdfs:label "NominalBodyWidth"@en . + +PSD:NominalCurrentAdjusted + a rdf:Property ; + rdfs:comment "An indication if the tripping currents of the short time protection is related to the nominal current multiplied with the actual setting of the current adjustment, if any, of the long time protection part of the protective device, or not."@en ; + rdfs:label "NominalCurrentAdjusted"@en . + +PSD:NominalDamperDiameter + a rdf:Property ; + rdfs:comment "Nominal damper diameter."@en ; + rdfs:label "Nominal damper diameter"@en . + +PSD:requiredPset a owl:ObjectProperty ; + rdfs:domain PSD:InformationDeliverySpecification ; + rdfs:range PSD:RequiredPset . + +PSD:Standard a rdf:Property ; + rdfs:comment "The designation of the standard applicable for the definition of the Cable/Bus used."@en , "The designation of the standard applicable for the definition of the core used."@en ; + rdfs:label "Standard"@en . + +PSD:IsNormallyOpen a rdf:Property ; + rdfs:comment "If TRUE, the valve is normally open. If FALSE is is normally closed."@en ; + rdfs:label "IsNormallyOpen"@en . + +PSD:ShortCircuit1PolePowerFactorMaximumState + a rdf:Property ; + rdfs:comment "Power factor of the maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N."@en ; + rdfs:label "ShortCircuit1PolePowerFactorMaximumState"@en . + +PSD:CompressorTotalEfficiency + a rdf:Property ; + rdfs:comment "Ratio of the thermal cooling capacity to electrical input."@en ; + rdfs:label "CompressorTotalEfficiency"@en . + +PSD:ThermometerType a rdf:Property ; + rdfs:comment "Identifies the means by which temperature is displayed."@en ; + rdfs:label "ThermometerType"@en . + +PSD:ShortCircuit1PoleMaximumState + a rdf:Property ; + rdfs:comment "Maximum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N."@en ; + rdfs:label "ShortCircuit1PoleMaximumState"@en . + +PSD:NeckAirVelocity a rdf:Property ; + rdfs:comment "Air velocity at the neck."@en ; + rdfs:label "NeckAirVelocity"@en . + +PSD:Spectrum a rdf:Property ; + rdfs:comment "The spectrum of radiation describes its composition with regard to wavelength. Light, for example, as the portion of electromagnetic radiation that is visible to the human eye, is radiation with wavelengths in the range of approx. 380 to 780 nm (1 nm = 10 m). The corresponding range of colours varies from violet to indigo, blue, green, yellow, orange, and red. These colours form a continuous spectrum, in which the various spectral sectors merge into each other."@en ; + rdfs:label "Spectrum"@en . + +PSD:Surface2 a rdf:Property ; + rdfs:comment "See Surface1."@en ; + rdfs:label "Surface2"@en . + +PSD:BulbLiquidColor a rdf:Property ; + rdfs:comment "The color of the liquid in the bulb for a bulb activated sprinkler. Note that the liquid color varies according to the activation temperature requirement of the sprinkler head. Note also that this property does not need to be asserted for quick response activated sprinklers."@en ; + rdfs:label "BulbLiquidColor"@en . + +PSD:IsMountedFlatCable + a rdf:Property ; + rdfs:comment "Indication of whether the cable occurrences are mounted flat (= TRUE) or in a trefoil pattern (= FALSE)."@en ; + rdfs:label "IsMountedFlatCable"@en . + +PSD:ReasonForChange a rdf:Property ; + rdfs:comment "A description of the problem for why a change is needed."@en ; + rdfs:label "ReasonForChange"@en . + +PSD:Diameter a rdf:Property ; + rdfs:comment "Actual diameter of a fin for circular fins only."@en , "Diameter of the object. It is the diameter of the handrail of the railing.\\nThe size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence.\\nHere the diameter of the hand or guardrail within the railing."@en , "The requested diameter (in elevation) of the provision for void, only provided if the Shape property is set to 'round'."@en ; + rdfs:label "Diameter"@en . + +PSD:ColorTemperature a rdf:Property ; + rdfs:comment "The color temperature of any source of radiation is defined as the temperature (in Kelvin) of a black-body or Planckian radiator whose radiation has the same chromaticity as the source of radiation. Often the values are only approximate color temperatures as the black-body radiator cannot emit radiation of every chromaticity value. The color temperatures of the commonest artificial light sources range from less than 3000K (warm white) to 4000K (intermediate) and over 5000K (daylight)."@en ; + rdfs:label "Color temperature"@en . + +PSD:CondenserMeanVoidFraction + a rdf:Property ; + rdfs:comment "Mean void fraction in condenser."@en ; + rdfs:label "CondenserMeanVoidFraction"@en . + +PSD:VisibleRefractionIndex + a rdf:Property ; + rdfs:comment "Index of refraction (visible) defines the \\\"bending\\\" of the sola! r ray in the visible spectrum when it passes from one medium into another."@en ; + rdfs:label "Visible refraction index"@en . + +PSD:ImpellerDiameter a rdf:Property ; + rdfs:comment "Diameter of compressor impeller - used to scale performance of geometrically similar compressors."@en ; + rdfs:label "Impeller diameter"@en . + +PSD:LoadBearingCapacity + a rdf:Property ; + rdfs:label "Load bearing capacity"@en . + +PSD:PowerLoss a rdf:Property ; + rdfs:comment "Total loss of power across this cable."@en ; + rdfs:label "PowerLoss"@en . + +PSD:EdgeFixingPlateFlangeWidthInPlaneZ + a rdf:Property ; + rdfs:comment "The flange width of the L-shaped edge plate in plane Z."@en ; + rdfs:label "EdgeFixingPlateFlangeWidthInPlaneZ"@en . + +PSD:Species a rdf:Property ; + rdfs:comment "Wood species of a solid wood or laminated wood product."@en ; + rdfs:label "Species"@en . + +PSD:CrossSectionalArea + a rdf:Property ; + rdfs:comment "Cross section area of the phase(s) lead(s)."@en ; + rdfs:label "CrossSectionalArea"@en . + +PSD:ConditionTermination + a rdf:Property ; + rdfs:comment "Condition of property required on termination of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key."@en ; + rdfs:label "ConditionTermination"@en . + +PSD:LadderConfiguration + a rdf:Property ; + rdfs:comment "Description of the configuration of the ladder structure used."@en ; + rdfs:label "LadderConfiguration"@en . + +PSD:RadioactiveWastePerUnit + a rdf:Property ; + rdfs:label "Radioactive waste per unit"@en . + +PSD:applicability a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:comment "Description of applicability and usecases, i.e., \"IfcDoor entity\", \"Common Pset of Ifc...\""@en ; + rdfs:domain PSD:PropertySetDef ; + rdfs:label "Applicability"@en ; + rdfs:range xsd:string . + +PSD:HollowCorePlugging + a rdf:Property ; + rdfs:label "Hollow core plugging"@en . + +PSD:Construction a rdf:Property ; + rdfs:comment "Purpose of informing on how the vonductor is constucted (interwined or solid). I.e. Solid (IEV 461-01-06), stranded (IEV 461-01-07), solid-/finestranded(IEV 461-01-11) (not flexible/flexible)."@en ; + rdfs:label "Construction"@en . + +PSD:FireFightingLift a rdf:Property ; + rdfs:label "Fire fighting lift"@en . + +PSD:SetPointMoisture a rdf:Property ; + rdfs:comment "The moisture value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointMoisture"@en . + +PSD:VisibleReflectanceBack + a rdf:Property ; + rdfs:comment "Reflectance at normal incidence (visible): back side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the 'back' side of the other material, perpendicular to the surface. Dependent on material and surface characteristics."@en ; + rdfs:label "VisibleReflectanceBack"@en . + +PSD:MaximumFlowRate a rdf:Property ; + rdfs:comment "Maximum rate of flow which the meter is expected to pass."@en ; + rdfs:label "MaximumFlowRate"@en . + +PSD:PercentageOpen a rdf:Property ; + rdfs:comment "The ratio between the amount that the valve is open to the full open position of the valve."@en ; + rdfs:label "PercentageOpen"@en . + +PSD:BatterAtEnd a rdf:Property ; + rdfs:label "Batter at end"@en . + +PSD:PropertySetDef a owl:Class ; + rdfs:comment "Top node element of PSD."@en ; + rdfs:label "Property set definition"@en ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:name + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:definition + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:allValuesFrom IFC4:IfcProduct ; + owl:onProperty PSD:applicableClass + ] . + +PSD:Workability a rdf:Property ; + rdfs:label "Workability"@en . + +PSD:TreadLength a rdf:Property ; + rdfs:label "Tread length"@en . + +PSD:BatchReference a rdf:Property ; + rdfs:comment "The identity of the batch reference from which an occurrence of a product is taken."@en ; + rdfs:label "BatchReference"@en . + +PSD:NominalPartLoadRatio + a rdf:Property ; + rdfs:comment "Allowable part load ratio range."@en ; + rdfs:label "Nominal part load ratio"@en . + +PSD:NominalStaticPressure + a rdf:Property ; + rdfs:comment "The static pressure within the air stream that the fan must overcome to insure designed circulation of air."@en ; + rdfs:label "Nominal static pressure"@en . + +PSD:JunctionLeftRadius + a rdf:Property ; + rdfs:comment "The radius of bending for the left junction."@en ; + rdfs:label "JunctionLeftRadius"@en . + +PSD:HasPartWinding a rdf:Property ; + rdfs:comment "Indication of whether the motor is single speed, i.e. has a single winding (= FALSE) or multi-speed i.e.has part winding (= TRUE) ."@en ; + rdfs:label "HasPartWinding"@en . + +PSD:HeatingTemperatureDelta + a rdf:Property ; + rdfs:comment "Heating temperature difference for calculating space air flow rates."@en ; + rdfs:label "Heating temperature delta"@en . + +PSD:NumberOfBoltholes + a rdf:Property ; + rdfs:comment "Number of boltholes in the flange."@en ; + rdfs:label "NumberOfBoltholes"@en . + +PSD:ShortInsideCenterTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short inside center top bar."@en ; + rdfs:label "ShortInsideCenterTopBarPitch"@en . + +PSD:CompressedAirFilterType + a rdf:Property ; + rdfs:comment "ACTIVATEDCARBON: absorbs oil vapor and odor; PARTICLE_FILTER: used to absorb solid particles of medium size; COALESCENSE_FILTER: used to absorb fine solid, oil, and water particles, also called micro filter"@en ; + rdfs:label "CompressedAirFilterType"@en . + +PSD:IsMain a rdf:Property ; + rdfs:comment "Identifies if the current instance is a main distribution point or topmost level in an electrical distribution hierarchy (= TRUE) or a sub-main distribution point (= FALSE)."@en ; + rdfs:label "IsMain"@en . + +PSD:ThreadLength a rdf:Property ; + rdfs:comment "Nominal length of the thread"@en ; + rdfs:label "ThreadLength"@en . + +PSD:ScheduleCost a rdf:Property ; + rdfs:comment "The budgeted cost on behalf of the resource allocation."@en ; + rdfs:label "ScheduleCost"@en . + +PSD:PoissonRatio a rdf:Property ; + rdfs:comment "A measure of the lateral deformations in the elastic range."@en ; + rdfs:label "PoissonRatio"@en . + +PSD:NumberOfPlates a rdf:Property ; + rdfs:comment "Number of plates used by the plate heat exchanger."@en ; + rdfs:label "NumberOfPlates"@en . + +PSD:MaximumPressureLoss + a rdf:Property ; + rdfs:comment "Pressure loss expected across the meter under conditions of maximum flow."@en ; + rdfs:label "MaximumPressureLoss"@en . + +PSD:TunerType a rdf:Property ; + rdfs:comment "Indicates the tuner type."@en ; + rdfs:label "TunerType"@en . + +PSD:AudioVolume a rdf:Property ; + rdfs:comment "Indicates discrete audio volume levels and corresponding sound power offsets, if applicable. Missing values may be interpolated."@en ; + rdfs:label "Audio volume"@en . + +PSD:TotalWattage a rdf:Property ; + rdfs:comment "Wattage on whole lightfitting device with all sources intact."@en ; + rdfs:label "TotalWattage"@en . + +PSD:LampBallastType a rdf:Property ; + rdfs:comment "The type of ballast used to stabilise gas discharge by limiting the current during operation and to deliver the necessary striking voltage for starting. Ballasts are needed to operate Discharge Lamps such as Fluorescent, Compact Fluorescent, High-pressure Mercury, Metal Halide and High-pressure Sodium Lamps. \\nMagnetic ballasts are chokes which limit the current passing through a lamp connected in series on the principle of self-induction. The resultant current and power are decisive for the efficient operation of the lamp. A specially designed ballast is required for every type of lamp to comply with lamp rating in terms of Luminous Flux, Color Appearance and service life. The two types of magnetic ballasts for fluorescent lamps are KVG Conventional (EC-A series) and VVG Low-loss ballasts (EC-B series). Low-loss ballasts have a higher efficiency, which means reduced ballast losses and a lower thermal load. Electronic ballasts are used to run fluorescent lamps at high frequencies (approx. 35 - 40 kHz)."@en ; + rdfs:label "Lamp ballast type"@en . + +PSD:LeakageClass a rdf:Property ; + rdfs:comment "Nominal leakage rating for the system components."@en ; + rdfs:label "LeakageClass"@en . + +PSD:Process a rdf:Property ; + rdfs:comment "Reference number of the welding process according to ISO 4063, an up to three digits long code"@en ; + rdfs:label "Process"@en . + +PSD:VideoCaptionMode a rdf:Property ; + rdfs:comment "Indicates video closed captioning modes."@en , "Indicates closed captioning modes."@en ; + rdfs:label "VideoCaptionMode"@en . + +PSD:ExposureClass a rdf:Property ; + rdfs:label "Exposure class"@en . + +PSD:AirPressureDropCurves + a rdf:Property ; + rdfs:comment "Air pressure drop as function of air flow rate."@en ; + rdfs:label "AirPressureDropCurves"@en . + +PSD:SelfExtinguishing60332_1 + a rdf:Property ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.1."@en ; + rdfs:label "SelfExtinguishing60332_1"@en . + +PSD:definedValue a owl:ObjectProperty ; + rdfs:domain PSD:TypePropertyTableValue ; + rdfs:label "Defining value"@en ; + rdfs:range PSD:Value . + +PSD:ShearModulus a rdf:Property ; + rdfs:comment "A measure of the shear modulus of elasticity of the material."@en ; + rdfs:label "ShearModulus"@en . + +PSD:Shortening a rdf:Property ; + rdfs:label "Shortening"@en . + +PSD:LadderTrussCrossBarSpacing + a rdf:Property ; + rdfs:comment "The spacing between the straight cross-bars."@en ; + rdfs:label "LadderTrussCrossBarSpacing"@en . + +PSD:StirrupBarPitch a rdf:Property ; + rdfs:comment "The pitch length of the stirrup bar."@en ; + rdfs:label "StirrupBarPitch"@en . + +PSD:BoilingPoint a rdf:Property ; + rdfs:comment "The boiling point of the material (fluid)."@en ; + rdfs:label "BoilingPoint"@en . + +PSD:LongInsideEndLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long inside end lower bar."@en ; + rdfs:label "LongInsideEndLowerBarPitch"@en . + +PSD:MaximumCurrent a rdf:Property ; + rdfs:comment "The maximum allowed current that a device is certified to handle."@en ; + rdfs:label "MaximumCurrent"@en . + +PSD:PressureGaugeType + a rdf:Property ; + rdfs:comment "Identifies the means by which pressure is displayed."@en ; + rdfs:label "PressureGaugeType"@en . + +PSD:ExhaustAirFlowrate + a rdf:Property ; + rdfs:comment "Design exhaust air flow rate for the space."@en ; + rdfs:label "ExhaustAirFlowrate"@en . + +PSD:AreaPerOccupant a rdf:Property ; + rdfs:comment "Design occupancy loading for this type of usage assigned to this space."@en ; + rdfs:label "AreaPerOccupant"@en . + +PSD:ThermalIrEmissivityFront + a rdf:Property ; + rdfs:comment "Thermal IR emissivity: front side. Defines the fraction of thermal energy emitted per unit area to 'blackbody' at the same temperature, through the 'front' side of the material."@en ; + rdfs:label "ThermalIrEmissivityFront"@en . + +PSD:PlayerMediaEject a rdf:Property ; + rdfs:comment "Indicates whether the media can be ejected from the player (if physical media)."@en ; + rdfs:label "PlayerMediaEject"@en . + +PSD:ResidualFlowingPressure + a rdf:Property ; + rdfs:comment "The residual flowing pressure in the pipeline at which the discharge flow rate is determined."@en ; + rdfs:label "ResidualFlowingPressure"@en . + +PSD:HasReturnAir a rdf:Property ; + rdfs:comment "Terminal box has return air mixed with supply air from duct work."@en ; + rdfs:label "Has return air"@en . + +PSD:LockedRotorCurrent + a rdf:Property ; + rdfs:comment "Input current when a motor armature is energized but not rotating."@en ; + rdfs:label "LockedRotorCurrent"@en . + +PSD:ManualOverride a rdf:Property ; + rdfs:comment "Identifies whether hand-operated operation is provided as an override (= TRUE) or not (= FALSE). Note that this value should be set to FALSE by default in the case of a Hand Operated Actuator."@en ; + rdfs:label "Manual override"@en . + +PSD:valueItem a owl:DatatypeProperty ; + rdfs:label "Value item"@en ; + rdfs:range xsd:string . + +PSD:Finishing a rdf:Property ; + rdfs:comment "The finishing applied to system furniture elements of this type e.g. walnut, fabric."@en ; + rdfs:label "Finishing"@en . + +PSD:FinishType a rdf:Property ; + rdfs:comment "The type of finish for the air terminal."@en ; + rdfs:label "Finish type"@en . + +PSD:Category a rdf:Property ; + rdfs:comment "Designation of the category into which the actors in the population belong."@en ; + rdfs:label "Category"@en . + +PSD:UACurve a rdf:Property ; + rdfs:comment "UA value as a function of fan speed at certain water flow rate, UA = f ( fan speed)."@en , "UA curve as function of ambient temperature and surface temperature; UA = f (Tambient, Tsurface)"@en ; + rdfs:label "UACurve"@en . + +PSD:OperationTemperatureRange + a rdf:Property ; + rdfs:comment "Allowable operation ambient air temperature range."@en ; + rdfs:label "Operation temperature range"@en . + +PSD:CommencementDate a rdf:Property ; + rdfs:comment "Date on which the agreement commences."@en ; + rdfs:label "CommencementDate"@en . + +PSD:InductionRatio a rdf:Property ; + rdfs:comment "Induction ratio versus distance from the diffuser and its discharge direction; induction ratio (or entrainment ratio) is the ratio of the volumetric flow rate in the jet to the volumetric flow rate at the air terminal."@en ; + rdfs:label "InductionRatio"@en . + +PSD:IsTimeTolerancePositiveOnly + a rdf:Property ; + rdfs:comment "Indication whether the value of TimeTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance."@en ; + rdfs:label "IsTimeTolerancePositiveOnly"@en . + +PSD:ElectricMotorEfficiency + a rdf:Property ; + rdfs:comment "The ratio of output capacity to intake capacity."@en ; + rdfs:label "ElectricMotorEfficiency"@en . + +PSD:AtmosphericAcidification + a rdf:Property ; + rdfs:label "Atmospheric acidification"@en . + +PSD:CountedEfficiency + a rdf:Property ; + rdfs:comment "Filter efficiency based the particle counts concentration before and after filter against particles with certain size distribution."@en ; + rdfs:label "CountedEfficiency"@en . + +PSD:IsFreeHanging a rdf:Property ; + rdfs:comment "Is it free hanging type (not mounted in a false ceiling)?"@en ; + rdfs:label "IsFreeHanging"@en . + +PSD:RemainingCost a rdf:Property ; + rdfs:comment "The remaining cost on behalf of the resource allocation."@en ; + rdfs:label "RemainingCost"@en . + +PSD:ShortCircuit3PoleMaximumState + a rdf:Property ; + rdfs:comment "Maximum 3 pole short circuit current provided at the point of supply."@en ; + rdfs:label "ShortCircuit3PoleMaximumState"@en . + +PSD:SelectorType a rdf:Property ; + rdfs:comment "A list of the available types of selector switch from which that required may be selected."@en ; + rdfs:label "SelectorType"@en . + +PSD:OverallDepth a rdf:Property ; + rdfs:comment "Overall depth of the profile."@en ; + rdfs:label "OverallDepth"@en . + +PSD:InertWastePerUnit + a rdf:Property ; + rdfs:label "Inert waste per unit"@en . + +PSD:PlanningControlStatus + a rdf:Property ; + rdfs:comment "Label of zoning category or class, or planning control category for the site or facility."@en ; + rdfs:label "Planning control status"@en , "PlanningControlStatus"@en . + +PSD:Version a rdf:Property ; + rdfs:comment "The version number of the agreement that is identified."@en ; + rdfs:label "Version"@en . + +PSD:RelativeHumidity a rdf:Property ; + rdfs:comment "Loads from the relative humidity."@en ; + rdfs:label "RelativeHumidity"@en . + +PSD:ParkingUnits a rdf:Property ; + rdfs:comment "Indicates the number of transporation units of the type specified by the property ParkingUse that may be accommodated within the space. Generally, this value should default to 1 unit. However, where the parking space is for motorcycles or bicycles, provision may be made for more than one unit in the space."@en ; + rdfs:label "ParkingUnits"@en . + +PSD:CarrierStackNumber + a rdf:Property ; + rdfs:comment "Number of carrier segments (tray, ladder etc.) that are vertically stacked (vertical is measured as the z-axis of the local coordinate system of the carrier segment)."@en ; + rdfs:label "CarrierStackNumber"@en . + +PSD:KeyShape a rdf:Property ; + rdfs:comment "If applicable, shape of the head's slot, e.g. 'Slot', 'Allen'"@en ; + rdfs:label "KeyShape"@en . + +PSD:LadderTrussBaseBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the base bar."@en ; + rdfs:label "LadderTrussBaseBarDiameter"@en . + +PSD:NonHazardousWastePerUnit + a rdf:Property ; + rdfs:label "Non hazardous waste per unit"@en . + +PSD:SwitchOperation a rdf:Property ; + rdfs:comment "Indicates operation of emergency stop switch."@en ; + rdfs:label "SwitchOperation"@en . + +PSD:WindSensorType a rdf:Property ; + rdfs:comment "Enumeration that Identifies the types of wind sensors that can be specified."@en ; + rdfs:label "WindSensorType"@en . + +PSD:CoreType a rdf:Property ; + rdfs:comment "Identifies the way the core of the AirTerminal is constructed."@en ; + rdfs:label "Core type"@en . + +PSD:StratosphericOzoneLayerDestruction + a rdf:Property ; + rdfs:label "Stratospheric ozone layer destruction"@en . + +PSD:AssetInsuranceType + a rdf:Property ; + rdfs:comment "Identifies the predefined types of insurance rating from which the type required may be set."@en ; + rdfs:label "Asset insurance type"@en . + +PSD:Type1 a rdf:Property ; + rdfs:comment "Type of weld seam according to ISO 2553. Note, combined welds are given by two corresponding symbols in the direction of the normal axis of the coordinate system. For example, an X weld is specified by Type1 = 'V' and Type2 = 'V'."@en ; + rdfs:label "Type1"@en . + +PSD:TiltAngle a rdf:Property ; + rdfs:comment "The angle of tilt defined in the plane perpendicular to the extrusion axis (X-Axis of the local placement). The angle shall be measured from the orientation of the Z-Axis in the local placement."@en ; + rdfs:label "TiltAngle"@en . + +PSD:SecurityRating a rdf:Property ; + rdfs:label "Security rating"@en . + +PSD:StemTopWidth a rdf:Property ; + rdfs:comment "Stem top width of the profile."@en ; + rdfs:label "StemTopWidth"@en . + +PSD:WaterPressureDropCurves + a rdf:Property ; + rdfs:comment "Water pressure drop as function of water flow rate."@en ; + rdfs:label "WaterPressureDropCurves"@en . + +PSD:LossCoefficient a rdf:Property ; + rdfs:comment "Dimensionless loss coefficient used for calculating fluid resistance representing the ratio of total pressure loss to velocity pressure at a referenced cross-section."@en ; + rdfs:label "LossCoefficient"@en . + +PSD:PhotochemicalOzoneFormationPerUnit + a rdf:Property ; + rdfs:label "Photochemical ozone formation per unit"@en . + +PSD:TerminationDate a rdf:Property ; + rdfs:comment "Date on which the agreement terminates."@en ; + rdfs:label "TerminationDate"@en . + +PSD:SprinklerProtection + a rdf:Property ; + rdfs:label "Sprinkler protection"@en . + +PSD:CoilLength a rdf:Property ; + rdfs:comment "Length of coil."@en ; + rdfs:label "CoilLength"@en . + +PSD:CoilWidth a rdf:Property ; + rdfs:comment "Width of coil."@en ; + rdfs:label "CoilWidth"@en . + +PSD:SolarAbsorption a rdf:Property ; + rdfs:label "Solar absorption"@en . + +PSD:NominalInletAirPressure + a rdf:Property ; + rdfs:comment "Nominal airflow inlet static pressure."@en ; + rdfs:label "Nominal inlet air pressure"@en . + +PSD:HousingThickness a rdf:Property ; + rdfs:comment "Air terminal box housing material thickness."@en ; + rdfs:label "Housing thickness"@en . + +PSD:IsAutomatic a rdf:Property ; + rdfs:comment "Indication of whether the valve is automatically operated (TRUE) or manually operated (FALSE)."@en ; + rdfs:label "IsAutomatic"@en . + +PSD:ApplicableStructuralDesignMethod + a rdf:Property ; + rdfs:comment "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design."@en ; + rdfs:label "ApplicableStructuralDesignMethod"@en . + +PSD:ToggleSwitchType a rdf:Property ; + rdfs:comment "A list of the available types of toggle switch from which that required may be selected."@en ; + rdfs:label "ToggleSwitchType"@en . + +PSD:ReleaseTime a rdf:Property ; + rdfs:comment "The release time in [s] for the initial tripping of the relevant part. This time indicates that for current lower than the indicated release current, the tripping time will be longer than the indicated release time. The value is given as a mean value."@en ; + rdfs:label "ReleaseTime"@en . + +PSD:MeasuredPressureDrop + a rdf:Property ; + rdfs:comment "The actual pressure drop in the fluid measured across the valve."@en ; + rdfs:label "MeasuredPressureDrop"@en . + +PSD:WarrantyContent a rdf:Property ; + rdfs:comment "The content of the warranty."@en ; + rdfs:label "WarrantyContent"@en . + +PSD:SaturationEfficiency + a rdf:Property ; + rdfs:comment "Saturation efficiency: Ratio of leaving air absolute humidity to the maximum absolute humidity."@en ; + rdfs:label "SaturationEfficiency"@en . + +PSD:TotalAirflow a rdf:Property ; + rdfs:comment "The total design supply air flowrate required for the system for either heating or cooling conditions, whichever is greater."@en ; + rdfs:label "Total airflow"@en . + +PSD:BeamCoolingCapacity + a rdf:Property ; + rdfs:comment "Cooling capacity of beam. This excludes cooling capacity of supply air."@en ; + rdfs:label "BeamCoolingCapacity"@en . + +PSD:Infiltration a rdf:Property ; + rdfs:label "Infiltration"@en . + +PSD:MaximumPartLoadRatio + a rdf:Property ; + rdfs:comment "Maximum part load ratio as a fraction of nominal capacity."@en ; + rdfs:label "Maximum part load ratio"@en . + +PSD:AirHandlerFanCoilArrangement + a rdf:Property ; + rdfs:comment "Enumeration defining the arrangement of the supply air fan and the cooling coil."@en ; + rdfs:label "AirHandlerFanCoilArrangement"@en . + +PSD:LadderTrussHeight + a rdf:Property ; + rdfs:comment "The overall height of the truss connector."@en ; + rdfs:label "LadderTrussHeight"@en . + +PSD:BladePositionAngle + a rdf:Property ; + rdfs:comment "Blade position angle; angle between the blade and flow direction ( 0 - 90)."@en ; + rdfs:label "BladePositionAngle"@en . + +PSD:ActualWork a rdf:Property ; + rdfs:comment "The actual work on behalf of the resource allocation."@en ; + rdfs:label "ActualWork"@en . + +PSD:SelfTestFunction a rdf:Property ; + rdfs:comment "The type of self test function."@en ; + rdfs:label "SelfTestFunction"@en . + +PSD:ColorCode a rdf:Property ; + rdfs:comment "Name of a color for identifying the connector, if applicable."@en ; + rdfs:label "ColorCode"@en . + +PSD:YoungModulus a rdf:Property ; + rdfs:comment "A measure of the Young's modulus of elasticity of the material."@en ; + rdfs:label "YoungModulus"@en . + +PSD:ShortCircuit2PolePowerFactorMinimumState + a rdf:Property ; + rdfs:comment "Power factor of the minimum 2 pole short circuit current provided at the point of supply."@en ; + rdfs:label "ShortCircuit2PolePowerFactorMinimumState"@en . + +PSD:StartCurrentFactor + a rdf:Property ; + rdfs:comment "IEC. Start current factor defines how large the peak starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and to give the start current."@en , "IEC. Start current factor defines how large the peek starting current will become on the engine. StartCurrentFactor is multiplied to NominalCurrent and we get the start current."@en ; + rdfs:label "StartCurrentFactor"@en . + +PSD:FractionRadiantHeatTransfer + a rdf:Property ; + rdfs:comment "Fraction of the total heat transfer rate as the radiant heat transfer."@en ; + rdfs:label "FractionRadiantHeatTransfer"@en . + +PSD:ConditionCommencement + a rdf:Property ; + rdfs:comment "Condition of property provided on commencement of the agreement e.g. cold shell, warm lit shell, broom clean, turn-key."@en ; + rdfs:label "ConditionCommencement"@en . + +PSD:GasPressure a rdf:Property ; + rdfs:comment "Fill pressure (e.g. for between-pane gas fills): the pressure exerted by a mass of gas confined in a constant volume."@en ; + rdfs:label "Gas pressure"@en . + +PSD:Pressure a rdf:Property ; + rdfs:comment "The pressure of the fuel."@en , "The pressure of the fluid."@en ; + rdfs:label "Pressure"@en . + +PSD:CeilingRAPlenum a rdf:Property ; + rdfs:comment "Ceiling plenum used for return air or not. TRUE = Yes, FALSE = No."@en ; + rdfs:label "CeilingRAPlenum"@en . + +PSD:OpenPressureDrop a rdf:Property ; + rdfs:comment "Total pressure drop across damper."@en ; + rdfs:label "OpenPressureDrop"@en . + +PSD:DesignAmbientTemperature + a rdf:Property ; + rdfs:comment "The highest and lowest local ambient temperature likely to be encountered."@en ; + rdfs:label "DesignAmbientTemperature"@en . + +PSD:definitionAlias a owl:DatatypeProperty ; + rdfs:comment "Definition alias in local language."@en ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( PSD:PropertySetDef PSD:PropertyDef ) + ] ; + rdfs:label "Definition alias"@en ; + rdfs:range xsd:string . + +PSD:RefrigerantFoulingResistance + a rdf:Property ; + rdfs:comment "Fouling resistance on the refrigerant side."@en ; + rdfs:label "RefrigerantFoulingResistance"@en . + +PSD:DuctSealant a rdf:Property ; + rdfs:comment "Type of sealant used on the duct and fittings."@en ; + rdfs:label "DuctSealant"@en . + +PSD:ShortInsideEndTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short inside end top bar."@en ; + rdfs:label "ShortInsideEndTopBarPitch"@en . + +PSD:StandardFixingPlateWidth + a rdf:Property ; + rdfs:comment "The width of the standard fixing plate."@en ; + rdfs:label "StandardFixingPlateWidth"@en . + +PSD:LubricantPumpHeatGain + a rdf:Property ; + rdfs:comment "Lubricant pump heat gain."@en ; + rdfs:label "LubricantPumpHeatGain"@en . + +PSD:Torque a rdf:Property ; + rdfs:comment "Indicates the maximum close-off torque for the actuator."@en ; + rdfs:label "Torque"@en . + +PSD:PressureRange a rdf:Property ; + rdfs:comment "Allowable maximum and minimum working pressure (relative to ambient pressure)."@en ; + rdfs:label "Pressure range"@en , "PressureRange"@en . + +PSD:ThermalExpansionCoefficient + a rdf:Property ; + rdfs:comment "A measure of the expansion coefficient for warming up the material about one Kelvin."@en ; + rdfs:label "ThermalExpansionCoefficient"@en . + +PSD:Effectiveness a rdf:Property ; + rdfs:comment "Ratio of the change in dry bulb temperature of the (primary) air stream to the difference between the entering dry bulb temperature of the (primary) air and the wet-bulb temperature of the (secondary) air."@en , "Ratio of the real heat transfer rate to the maximum possible heat transfer rate."@en ; + rdfs:label "Effectiveness"@en . + +PSD:ReadOutType a rdf:Property ; + rdfs:comment "Indication of the form that readout from the meter takes. In the case of a dial read out, this may comprise multiple dials that give a cumulative reading and/or a mechanical odometer."@en ; + rdfs:label "Read out type"@en . + +PSD:AirFlowConfiguration + a rdf:Property ; + rdfs:comment "Air flow configuration type of cooled beam."@en ; + rdfs:label "AirFlowConfiguration"@en . + +PSD:LowerCurrent2 a rdf:Property ; + rdfs:comment "The current in [x In], indicating the upper current limit of the lower time/current curve of the I2t part of the L-function."@en ; + rdfs:label "LowerCurrent2"@en . + +PSD:MarketSubCategoriesAvailableFuture + a rdf:Property ; + rdfs:comment "A list of the sub categories of property that are expected to be available in the future expressed in terms of IfcLabel."@en ; + rdfs:label "Market sub categories available future"@en . + +PSD:UsePurpose a rdf:Property ; + rdfs:comment "The principal purpose for which the work surface is intended to be used e.g. writing/reading, computer, meeting, printer, reference files, etc."@en ; + rdfs:label "UsePurpose"@en . + +PSD:ApplianceDiversity + a rdf:Property ; + rdfs:comment "Diversity of appliance load."@en ; + rdfs:label "ApplianceDiversity"@en , "Appliance diversity"@en . + +PSD:CompressionEfficiency + a rdf:Property ; + rdfs:comment "Ratio of the work required for isentropic compression of the gas to the work delivered to the gas within the compression volume (as obtained by measurement)."@en ; + rdfs:label "CompressionEfficiency"@en . + +PSD:ShaftPower a rdf:Property ; + rdfs:comment "The actual shaft power input to the compressor."@en ; + rdfs:label "ShaftPower"@en . + +PSD:NominalHeight a rdf:Property ; + rdfs:comment "The nominal height of the duct segment."@en , "The nominal height of the segment."@en , "The nominal height of the furniture of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en , "The nominal height of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en ; + rdfs:label "NominalHeight"@en , "Nominal height"@en . + +PSD:NominalWaterFlowCooling + a rdf:Property ; + rdfs:comment "Nominal water flow (refers to nominal cooling capacity)."@en ; + rdfs:label "NominalWaterFlowCooling"@en . + +PSD:Velocity a rdf:Property ; + rdfs:comment "The velocity of the fluid."@en ; + rdfs:label "Velocity"@en . + +PSD:FixingSocketTypeReference + a rdf:Property ; + rdfs:comment "Type reference for the fixing socket according to local standards."@en ; + rdfs:label "FixingSocketTypeReference"@en . + +PSD:IsOffWhenLfunctionOn + a rdf:Property ; + rdfs:comment "Indication whether the S-function is automatically switched off when the I-function is switched on."@en ; + rdfs:label "IsOffWhenLfunctionOn"@en . + +PSD:MediaSource a rdf:Property ; + rdfs:comment "Indicates media sources and corresponding names of ports (IfcDistributionPort with FlowDirection=SINK and PredefinedType=AUDIOVISUAL) or aggregated audio/video components (IfcAudioVisualAppliance)."@en ; + rdfs:label "MediaSource"@en . + +PSD:ImpuritiesContent + a rdf:Property ; + rdfs:comment "Fraction of impurities such as dust to the total amount of water. This is measured in weight of impurities per weight of water and is therefore unitless."@en ; + rdfs:label "ImpuritiesContent"@en . + +PSD:Fuel a rdf:Property ; + rdfs:comment "The amount of fuel consumed during the period specified in the time series."@en ; + rdfs:label "Fuel"@en . + +PSD:SetPointSpeed a rdf:Property ; + rdfs:comment "The wind speed value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointSpeed"@en . + +PSD:GrossPlannedArea a rdf:Property ; + rdfs:label "Gross planned area"@en . + +PSD:DiagonalTrussLength + a rdf:Property ; + rdfs:comment "The overall length of the truss connector."@en ; + rdfs:label "DiagonalTrussLength"@en . + +PSD:UpperTime1 a rdf:Property ; + rdfs:comment "The time in [s], indicating that tripping times of the upper time/current curve lower than UpperTime1 is determined by the I2t part of the L-function."@en ; + rdfs:label "UpperTime1"@en . + +PSD:EvaporatorMeanVoidFraction + a rdf:Property ; + rdfs:comment "Mean void fraction in evaporator."@en ; + rdfs:label "EvaporatorMeanVoidFraction"@en . + +PSD:Plies a rdf:Property ; + rdfs:comment "Number of plies."@en ; + rdfs:label "Plies"@en . + +PSD:Location a rdf:Property ; + rdfs:comment "Location (a single type of diffuser can be used for multiple locations); high means close to ceiling."@en ; + rdfs:label "Location"@en . + +PSD:ProtectedOpening a rdf:Property ; + rdfs:label "Protected opening"@en . + +PSD:InitialResistance + a rdf:Property ; + rdfs:comment "Initial new filter fluid resistance (i.e., pressure drop at the maximum air flowrate across the filter when the filter is new per ASHRAE Standard 52.1)."@en ; + rdfs:label "Initial resistance"@en . + +PSD:HasCover a rdf:Property ; + rdfs:comment "Indication of whether the cable tray has a cover (=TRUE) or not (= FALSE). By default, this value should be set to FALSE.."@en ; + rdfs:label "HasCover"@en . + +PSD:InputPower a rdf:Property ; + rdfs:comment "Input power to the compressor motor."@en ; + rdfs:label "InputPower"@en . + +PSD:Color a rdf:Property ; + rdfs:comment "Color selection for this object."@en ; + rdfs:label "Color"@en . + +PSD:T2 a rdf:Property ; + rdfs:comment "The (thermal) testing time in [s] associated with the testing currents I1 and I2."@en ; + rdfs:label "T2"@en . + +PSD:DimensionalChangeCoefficient + a rdf:Property ; + rdfs:comment "Weighted dimensional change coefficient, relative to 1% change in moisture content."@en ; + rdfs:label "DimensionalChangeCoefficient"@en . + +PSD:NominalParticleGeometricStandardDeviation + a rdf:Property ; + rdfs:comment "Particle geometric standard deviation associated with nominal efficiency."@en ; + rdfs:label "Nominal particle geometric standard deviation"@en . + +PSD:CondenserFlowrate + a rdf:Property ; + rdfs:comment "Flow rate of fluid through the condenser."@en ; + rdfs:label "CondenserFlowrate"@en . + +PSD:ThermalTransmittanceWinter + a rdf:Property ; + rdfs:label "Thermal transmittance winter"@en . + +PSD:CapacityWeight a rdf:Property ; + rdfs:label "Capacity weight"@en . + +PSD:PlasticStrain a rdf:Property ; + rdfs:comment "A measure of the permanent displacement, as in slip or twinning, which remains after the stress has been removed. Currently applied to a strain of 0.2% proportional stress of the material."@en ; + rdfs:label "Plastic strain"@en . + +PSD:Depth a rdf:Property ; + rdfs:comment "The requested depth or thickness of the provision for void."@en , "The depth of the pit."@en , "The depth of the trench."@en ; + rdfs:label "Depth"@en . + +PSD:OccupancyType a rdf:Property ; + rdfs:comment "Occupancy type for this object. It is defined according to the presiding national building code."@en ; + rdfs:label "OccupancyType"@en , "Occupancy type"@en . + +PSD:NumberOfSlots a rdf:Property ; + rdfs:comment "Number of slots."@en ; + rdfs:label "Number of slots"@en . + +PSD:NominalSupplyWaterTemperatureCooling + a rdf:Property ; + rdfs:comment "Nominal supply water temperature (refers to nominal cooling capacity)."@en ; + rdfs:label "NominalSupplyWaterTemperatureCooling"@en . + +PSD:DishwasherType a rdf:Property ; + rdfs:comment "Type of dishwasher."@en ; + rdfs:label "DishwasherType"@en . + +PSD:HeatingRelativeHumidity + a rdf:Property ; + rdfs:comment "Inside relative humidity for heating design."@en ; + rdfs:label "HeatingRelativeHumidity"@en . + +PSD:InfiltrationDiversityWinter + a rdf:Property ; + rdfs:comment "Diversity factor for Winter infiltration."@en ; + rdfs:label "InfiltrationDiversityWinter"@en , "Infiltration diversity winter"@en . + +PSD:OccupancyNumberPeak + a rdf:Property ; + rdfs:comment "Maximal number of people required for the activity assigned to this space in peak time."@en ; + rdfs:label "OccupancyNumberPeak"@en . + +PSD:NumberOfActors a rdf:Property ; + rdfs:comment "The number of actors that are to be dealt with together in the population."@en ; + rdfs:label "Number of actors"@en . + +PSD:DamperPosition a rdf:Property ; + rdfs:comment "Damper position (0-1); damper position ( 0=closed=90deg position angle, 1=open=0deg position angle."@en , "Control damper position, ranging from 0 to 1."@en ; + rdfs:label "DamperPosition"@en , "Damper position"@en . + +PSD:Ventilation a rdf:Property ; + rdfs:comment "Required outside air ventilation."@en ; + rdfs:label "Ventilation"@en . + +PSD:CurrentToleranceLimit1 + a rdf:Property ; + rdfs:comment "The time limit in [s] limiting the application of CurrentTolerance1, if any. If the value is set to 0, the value of the CurrentTolerance1 is valid for the whole time/current-curve."@en ; + rdfs:label "CurrentToleranceLimit1"@en . + +PSD:SensibleLoadToRadiant + a rdf:Property ; + rdfs:comment "Percent of sensible thermal load to radiant heat."@en ; + rdfs:label "SensibleLoadToRadiant"@en . + +PSD:DischargeFlowRate + a rdf:Property ; + rdfs:comment "The volumetric rate of fluid discharge."@en ; + rdfs:label "DischargeFlowRate"@en . + +PSD:LongOutsideLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long outside lower bar."@en ; + rdfs:label "LongOutsideLowerBarPitch"@en . + +PSD:HasSillExternal a rdf:Property ; + rdfs:label "Has sill external"@en . + +PSD:ReleaseTimeI2tEnd + a rdf:Property ; + rdfs:comment "The release time in [s] for the end point of the I2 tripping curve of the G-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart."@en , "The release time in [s] for the end point of the I2 tripping curve of the S-function, if any. The value of ReleaseTimeI2tEnd shall be lower than ReleaseTimeI2tStart."@en ; + rdfs:label "ReleaseTimeI2tEnd"@en . + +PSD:MolecularWeight a rdf:Property ; + rdfs:label "Molecular weight"@en . + +PSD:GlassThickness2 a rdf:Property ; + rdfs:label "Glass thickness 2"@en . + +PSD:PowerFactor a rdf:Property ; + rdfs:comment "Power factor."@en ; + rdfs:label "PowerFactor"@en . + +PSD:CoreSetVertical a rdf:Property ; + rdfs:comment "Degree of vertical (in the Y-axis of the LocalPlacement) blade set from the centerline."@en ; + rdfs:label "Core set vertical"@en . + +PSD:MoistureContent a rdf:Property ; + rdfs:comment "Total weight of moisture relative to oven-dried weight of the wood."@en ; + rdfs:label "MoistureContent"@en . + +PSD:SpeakerType a rdf:Property ; + rdfs:comment "Indicates the type of speaker."@en ; + rdfs:label "SpeakerType"@en . + +PSD:ReceptacleLoadIntensity + a rdf:Property ; + rdfs:comment "Average power use intensity of appliances and other non-HVAC equipment in the space per unit area.(PowerMeasure/IfcAreaMeasure)."@en ; + rdfs:label "ReceptacleLoadIntensity"@en . + +PSD:NominalDiameter a rdf:Property ; + rdfs:comment "The nominal diameter of the pipe segment."@en , "Nominal diameter or width of the tubes in the tube bundle."@en ; + rdfs:label "NominalDiameter"@en . + +PSD:NominalPowerRate a rdf:Property ; + rdfs:comment "Nominal fan power rate."@en ; + rdfs:label "Nominal power rate"@en . + +PSD:TemperatureRating + a rdf:Property ; + rdfs:comment "Temperature rating."@en ; + rdfs:label "TemperatureRating"@en . + +PSD:ExtendToStructure + a rdf:Property ; + rdfs:label "Extend to structure"@en . + +PSD:ProductionLotId a rdf:Property ; + rdfs:comment "The manufacturer's production lot identifier."@en ; + rdfs:label "ProductionLotId"@en . + +PSD:e a rdf:Property ; + rdfs:comment "Measure e according to ISO 2553"@en ; + rdfs:label "e"@en . + +PSD:MaximumPowerOutput + a rdf:Property ; + rdfs:comment "The maximum output power rating of the engine."@en ; + rdfs:label "MaximumPowerOutput"@en . + +PSD:unitType a owl:DatatypeProperty ; + rdfs:label "Unit type"@en ; + rdfs:range [ a owl:Class ; + owl:unionOf ( IFC4:IfcDerivedUnit IFC4:IfcNamedUnit ) + ] . + +PSD:Leakage a rdf:Property ; + rdfs:comment "Air leakage rate."@en ; + rdfs:label "Leakage"@en . + +PSD:ColorAppearance a rdf:Property ; + rdfs:comment "In both the DIN and CIE standards, artificial light sources are classified in terms of their color appearance. To the human eye they all appear to be white; the difference can only be detected by direct comparison. Visual performance is not directly affected by differences in color appearance."@en ; + rdfs:label "Color appearance"@en . + +PSD:ProjectorType a rdf:Property ; + rdfs:comment "Indicates the type of projector."@en ; + rdfs:label "ProjectorType"@en . + +PSD:Severity a rdf:Property ; + rdfs:comment "Indicates alarm severity over time, where the scale of values is determined by the control system configuration. A zero value indicates no present alarm."@en ; + rdfs:label "Severity"@en . + +PSD:WaterRequirement a rdf:Property ; + rdfs:comment "Make-up water requirement."@en ; + rdfs:label "Water requirement"@en . + +PSD:IdealShaftPower a rdf:Property ; + rdfs:comment "Compressor shaft power under ideal conditions."@en ; + rdfs:label "Ideal shaft power"@en . + +PSD:LatentCoolingCapacity + a rdf:Property ; + rdfs:comment "Latent cooling capacity."@en ; + rdfs:label "LatentCoolingCapacity"@en . + +PSD:FoulingFactor a rdf:Property ; + rdfs:comment "Fouling factor of the tubes in the tube bundle."@en ; + rdfs:label "FoulingFactor"@en . + +PSD:ifcVersion a owl:ObjectProperty , owl:FunctionalProperty ; + rdfs:comment "Version information of IFC release and sub schema."@en ; + rdfs:domain PSD:PropertySetDef ; + rdfs:label "IFC version"@en ; + rdfs:range PSD:IfcVersion . + +PSD:EvaporatorCoolant + a rdf:Property ; + rdfs:comment "The fluid used for the coolant in the evaporator."@en ; + rdfs:label "Evaporator coolant"@en . + +PSD:CrossingLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the crossing lower bar."@en ; + rdfs:label "CrossingLowerBarPitch"@en . + +PSD:TenureModesAvailableFuture + a rdf:Property ; + rdfs:comment "A list of the tenure modes that are expected to be available in the future expressed in terms of IfcLabel."@en ; + rdfs:label "Tenure modes available future"@en . + +PSD:NumberOfRows a rdf:Property ; + rdfs:comment "Number of tube rows in the tube bundle assembly."@en ; + rdfs:label "NumberOfRows"@en . + +PSD:N20Content a rdf:Property ; + rdfs:comment "Nitrous oxide (N2O) content of the products of combustion. This is measured in weight of N2O per unit weight and is therefore unitless."@en ; + rdfs:label "N20Content"@en . + +PSD:DiagonalTrussSecondaryBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the secondary bar."@en ; + rdfs:label "DiagonalTrussSecondaryBarDiameter"@en . + +PSD:IsHorizontalBusbar + a rdf:Property ; + rdfs:comment "Indication of whether the busbar occurrences are routed horizontally (= TRUE) or vertically (= FALSE)."@en ; + rdfs:label "IsHorizontalBusbar"@en . + +PSD:HasIntegralControl + a rdf:Property ; + rdfs:comment "If TRUE, a self powered temperature control is included in the AirTerminal."@en ; + rdfs:label "Has integral control"@en . + +PSD:AssessmentDate a rdf:Property ; + rdfs:comment "Date on which the overall condition is assessed"@en ; + rdfs:label "Assessment date"@en . + +PSD:AirHandlerConstruction + a rdf:Property ; + rdfs:comment "Enumeration defining how the air handler might be fabricated."@en ; + rdfs:label "AirHandlerConstruction"@en . + +PSD:TeTime a rdf:Property ; + rdfs:comment "The maximum time (in s) at which the motor could run with locked rotor when the motor is used in an EX-environment. The time indicates that a protective device should trip before this time when the starting current of the motor is slowing through the device."@en ; + rdfs:label "TeTime"@en . + +PSD:MaintenanceLevel a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the level or degree of maintenance applied to dcomponents."@en ; + rdfs:label "MaintenanceLevel"@en . + +PSD:VisibleLightReflectance + a rdf:Property ; + rdfs:label "Visible light reflectance"@en . + +PSD:version a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:comment "Version of IFC, i.e., \"2x3 TC1\", \"IFC4\"."@en ; + rdfs:domain PSD:IfcVersion ; + rdfs:label "Version"@en ; + rdfs:range xsd:string . + +PSD:AirflowSensible a rdf:Property ; + rdfs:comment "The air flowrate required to satisfy the sensible peak loads."@en ; + rdfs:label "Airflow sensible"@en . + +PSD:BreechingInletType + a rdf:Property ; + rdfs:comment "Defines the type of breeching inlet."@en ; + rdfs:label "BreechingInletType"@en . + +PSD:NutsCount a rdf:Property ; + rdfs:comment "Count of nuts to be mounted on one bolt"@en ; + rdfs:label "NutsCount"@en . + +PSD:SoilConductivity a rdf:Property ; + rdfs:comment "Thermal conductivity of soil. Generally, within standards such as IEC 60364-5-52, table 52A-16, the resistivity of soil is required (measured in [SI] units of degK.m /W). This is the reciprocal of the conductivity value and needs to be calculated accordingly."@en ; + rdfs:label "SoilConductivity"@en . + +PSD:Location3Global a rdf:Property ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness3 is given"@en ; + rdfs:label "Location3Global"@en . + +PSD:ReactivePower a rdf:Property ; + rdfs:comment "Reactive power."@en ; + rdfs:label "ReactivePower"@en . + +PSD:AsBuiltLocationNumber + a rdf:Property ; + rdfs:comment "Defines a unique location within a structure, the slot into which the piece was installed. Where pieces share the same piece mark, they can be interchanged. The value is only known after erection."@en ; + rdfs:label "AsBuiltLocationNumber"@en . + +PSD:Arrangement a rdf:Property ; + rdfs:comment "Defines the basic flow arrangements for the heat exchanger:\\n\\nCOUNTERFLOW: Counterflow heat exchanger arrangement. \\nCROSSFLOW: Crossflow heat exchanger arrangement. \\nPARALLELFLOW: Parallel flow heat exchanger arrangement. \\nMULTIPASS: Multipass flow heat exchanger arrangement. \\nOTHER: Other type of heat exchanger flow arrangement not defined above."@en ; + rdfs:label "Arrangement"@en . + +PSD:SensibleEffectivenessTable + a rdf:Property ; + rdfs:comment "Sensible heat transfer effectiveness curve as a function of the primary and secondary air flow rate."@en ; + rdfs:label "SensibleEffectivenessTable"@en . + +PSD:ActualProductionDate + a rdf:Property ; + rdfs:comment "Production date (stripped from form)."@en ; + rdfs:label "ActualProductionDate"@en . + +PSD:RemainingWork a rdf:Property ; + rdfs:comment "The remaining work on behalf of the resource allocation."@en ; + rdfs:label "RemainingWork"@en . + +PSD:EfficiencyCurve a rdf:Property ; + rdfs:comment "Fan efficiency =f (flow rate)."@en ; + rdfs:label "Efficiency curve"@en . + +PSD:InstallationMethodFlagEnum + a rdf:Property ; + rdfs:comment "Special installation conditions relating to particular types of installation based on IEC60364-5-52:2001 reference installation methods C and D."@en ; + rdfs:label "InstallationMethodFlagEnum"@en . + +PSD:ReleaseCurrentI2tEnd + a rdf:Property ; + rdfs:comment "The release current in [x In] for the end point of the I2t tripping curve of the G-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart."@en , "The release current in [x In] for the end point of the I2t tripping curve of the S-function, if any. The value of ReleaseCurrentI2tEnd shall be larger than ReleaseCurrentI2tStart."@en ; + rdfs:label "ReleaseCurrentI2tEnd"@en . + +PSD:RadioactiveWaste a rdf:Property ; + rdfs:label "Radioactive waste"@en . + +PSD:DrainConnectionSize + a rdf:Property ; + rdfs:comment "Size of the drain connection inlet to the waste disposal unit."@en ; + rdfs:label "DrainConnectionSize"@en . + +PSD:MaximumOperatingTemperature + a rdf:Property ; + rdfs:comment "The maximum temperature at which a cable or bus is certified to operate."@en ; + rdfs:label "MaximumOperatingTemperature"@en . + +PSD:WireEmbeddingLength + a rdf:Property ; + rdfs:comment "The length of the part of wire which is embedded in the precast concrete element."@en ; + rdfs:label "WireEmbeddingLength"@en . + +PSD:Material a rdf:Property ; + rdfs:comment "Type of material from which the conductor is constructed."@en ; + rdfs:label "Material"@en . + +PSD:LightFixtureMountingType + a rdf:Property ; + rdfs:comment "A list of the available types of mounting for light fixtures from which that required may be selected."@en ; + rdfs:label "LightFixtureMountingType"@en . + +PSD:LongOutsideTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long outside top bar."@en ; + rdfs:label "LongOutsideTopBarPitch"@en . + +PSD:Surface1 a rdf:Property ; + rdfs:comment "Aspect of weld seam surface, i.e. 'plane', 'curved' or 'hollow'. Combined welds are given by two corresponding symbols analogous to Type1 and Type2."@en ; + rdfs:label "Surface1"@en . + +PSD:CurveDesignation a rdf:Property ; + rdfs:comment "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898."@en ; + rdfs:label "CurveDesignation"@en . + +PSD:IsWired a rdf:Property ; + rdfs:label "Is wired"@en . + +PSD:IsExtendedWarranty + a rdf:Property ; + rdfs:comment "Indication of whether this is an extended warranty whose duration is greater than that normally assigned to an artefact (=TRUE) or not (= FALSE)."@en ; + rdfs:label "IsExtendedWarranty"@en . + +PSD:Volume a rdf:Property ; + rdfs:comment "Total volume of fluid in the tubes and their headers."@en ; + rdfs:label "Volume"@en . + +PSD:HasNonSkidSurface + a rdf:Property ; + rdfs:comment "Indication whether the surface finish is designed to prevent slippery (TRUE) or not (FALSE)."@en ; + rdfs:label "HasNonSkidSurface"@en , "Has non skid surface"@en . + +PSD:EnergyGainTotal a rdf:Property ; + rdfs:comment "The total amount of energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level total energy gains."@en ; + rdfs:label "Energy gain total"@en . + +PSD:IsHorizontalCable + a rdf:Property ; + rdfs:comment "Indication of whether the cable occurrences are mounted horizontally (= TRUE) or vertically (= FALSE)."@en ; + rdfs:label "IsHorizontalCable"@en . + +PSD:SurfaceSpreadOfFlame + a rdf:Property ; + rdfs:label "Surface spread of flame"@en . + +PSD:RentalRatesInCategoryNow + a rdf:Property ; + rdfs:comment "Range of the cost rates for property currently available in the required category."@en ; + rdfs:label "Rental rates in category now"@en . + +PSD:JunctionRightAngle + a rdf:Property ; + rdfs:comment "The change of direction of flow for the right junction where 0 indicates straight segment."@en ; + rdfs:label "JunctionRightAngle"@en . + +PSD:XDirectionUpperBarCount + a rdf:Property ; + rdfs:comment "The number of bars with X direction upper bar."@en ; + rdfs:label "XDirectionUpperBarCount"@en . + +PSD:TimeToleranceLimit1 + a rdf:Property ; + rdfs:comment "The current limit in [x In] limiting the application of TimeTolerance1, if any. If the value is set to 0, the value of the TimeTolerance1 is valid for the whole time/current-curve."@en ; + rdfs:label "TimeToleranceLimit1"@en . + +PSD:SetPointConcentration + a rdf:Property ; + rdfs:comment "The ion concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en , "The gas concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en , "The carbon dioxide concentration to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en , "The smoke concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointConcentration"@en . + +PSD:Quality a rdf:Property ; + rdfs:comment "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain."@en ; + rdfs:label "Quality"@en . + +PSD:DiagonalTrussCrossBarSpacing + a rdf:Property ; + rdfs:comment "The spacing between diagonal cross-bar sections."@en ; + rdfs:label "DiagonalTrussCrossBarSpacing"@en . + +PSD:VentilationOutdoorAir + a rdf:Property ; + rdfs:comment "Ventilation loads from outdoor air."@en ; + rdfs:label "VentilationOutdoorAir"@en . + +PSD:StemBaseWidth a rdf:Property ; + rdfs:comment "Stem base width of the profile."@en ; + rdfs:label "StemBaseWidth"@en . + +PSD:IsExternal a rdf:Property ; + rdfs:comment "Indication of whether the junction box type is allowed for exposure to outdoor elements (set TRUE where external exposure is allowed)."@en ; + rdfs:label "Is external"@en , "IsExternal"@en . + +PSD:ShortCircuit1PoleMinimumState + a rdf:Property ; + rdfs:comment "Minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N."@en ; + rdfs:label "ShortCircuit1PoleMinimumState"@en . + +PSD:VerticalSpacing a rdf:Property ; + rdfs:comment "Vertical spacing between tubes in the tube bundle."@en ; + rdfs:label "VerticalSpacing"@en . + +PSD:WorkWeekDuration a rdf:Property ; + rdfs:comment "The elapsed time within a worktime-based week. For presentation purposes, applications may choose to display IfcTask durations in work weeks where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 168 hours (an elapsed week); if omitted then 40 hours is assumed."@en ; + rdfs:label "Work week duration"@en . + +PSD:WheelTipSpeed a rdf:Property ; + rdfs:comment "Fan blade tip speed, typically defined as the linear speed of the tip of the fan blade furthest from the shaft."@en ; + rdfs:label "WheelTipSpeed"@en . + +PSD:NominalMediaSurfaceVelocity + a rdf:Property ; + rdfs:comment "Average fluid velocity at the media surface."@en ; + rdfs:label "Nominal media surface velocity"@en . + +PSD:Reference a rdf:Property ; + rdfs:comment "Reference ID for this specified type in this project (e.g. type 'A-1')."@en , "Reference ID for this specific instance of a distribution system, or sub-system (e.g. 'WWS/VS1', which indicates the system to be WWS, subsystems VSI/400). The reference values depend on the local code of practice."@en , "Reference ID for this specific instance (e.g. 'WWS/VS1/400/001', which indicates the occurrence belongs to system WWS, subsystems VSI/400, and has the component number 001)."@en , "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used."@en , "A descriptive label for the general reinforcement type."@en ; + rdfs:label "Reference"@en . + +PSD:LowerTime2 a rdf:Property ; + rdfs:comment "The time in [s], indicating the tripping times of the upper time/current curve at the LowerCurrent2."@en ; + rdfs:label "LowerTime2"@en . + +PSD:IsLandmarked a rdf:Property ; + rdfs:label "Is landmarked"@en . + +PSD:FanRotationSpeed a rdf:Property ; + rdfs:comment "Fan rotation speed."@en ; + rdfs:label "FanRotationSpeed"@en . + +PSD:DryBulbTemperature + a rdf:Property ; + rdfs:comment "Loads from the dry bulb temperature."@en ; + rdfs:label "DryBulbTemperature"@en . + +PSD:SensibleHeatTransferRate + a rdf:Property ; + rdfs:comment "Sensible heat transfer rate."@en , "Sensible heat transfer rate to primary air flow."@en ; + rdfs:label "SensibleHeatTransferRate"@en . + +PSD:PlacingType a rdf:Property ; + rdfs:comment "Location at which the type of junction box can be located."@en ; + rdfs:label "PlacingType"@en . + +PSD:YDirectionLowerBarCount + a rdf:Property ; + rdfs:comment "The number of bars with Y direction lower bar."@en ; + rdfs:label "YDirectionLowerBarCount"@en . + +PSD:NominalReturnWaterTemperatureHeating + a rdf:Property ; + rdfs:comment "Nominal return water temperature (refers to nominal heating capacity)."@en ; + rdfs:label "NominalReturnWaterTemperatureHeating"@en . + +PSD:Shape a rdf:Property ; + rdfs:comment "Cross sectional shape. Note that this shape is uniform throughout the length of the segment. For nonuniform shapes, a transition fitting should be used instead."@en , "Indication of the shape of the conductor."@en , "Shape of the air terminal. Slot is typically a long narrow supply device with an aspect ratio generally greater than 10 to 1."@en , "The shape form of the provision for void, the minimum set of agreed values includes 'Rectangle', 'Round', and 'Undefined'."@en ; + rdfs:label "Shape"@en . + +PSD:VolumetricFlowRate + a rdf:Property ; + rdfs:comment "The volumetric flow rate of the fluid."@en ; + rdfs:label "VolumetricFlowRate"@en . + +PSD:Response a rdf:Property ; + rdfs:comment "Identifies the predefined methods of sprinkler response from which that required may be set."@en ; + rdfs:label "Response"@en . + +PSD:VideoResolutionMode + a rdf:Property ; + rdfs:comment "Indicates video resolution modes."@en ; + rdfs:label "VideoResolutionMode"@en . + +PSD:name a owl:DatatypeProperty ; + rdfs:label "Name"@en ; + rdfs:range xsd:string . + +PSD:TypePropertyBoundedValue + a owl:Class ; + rdfs:label "Type property bounded value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:dataType + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:unitType + ] ; + owl:disjointWith PSD:TypeComplexProperty , PSD:TypePropertySingleValue , PSD:TypePropertyReferenceValue , PSD:TypePropertyEnumeratedValue , PSD:TypePropertyTableValue , PSD:TypePropertyListValue . + +PSD:SetPointPressure a rdf:Property ; + rdfs:comment "The pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointPressure"@en . + +PSD:Throw a rdf:Property ; + rdfs:comment "Distance cooled beam throws the air."@en ; + rdfs:label "Throw"@en . + +PSD:MechanicalLoadRating + a rdf:Property ; + rdfs:label "Mechanical load rating"@en . + +PSD:HasHoseUnion a rdf:Property ; + rdfs:comment "Indicates whether the gas tap is fitted with a hose union connection (= TRUE) or not (= FALSE)."@en , "Indicates whether the drawoff cock is fitted with a hose union connection (= TRUE) or not (= FALSE)."@en ; + rdfs:label "HasHoseUnion"@en . + +PSD:FractionConvectiveHeatTransfer + a rdf:Property ; + rdfs:comment "Fraction of the total heat transfer rate as the convective heat transfer."@en ; + rdfs:label "FractionConvectiveHeatTransfer"@en . + +PSD:FanPower a rdf:Property ; + rdfs:comment "Fan motor loads contributing to the cooling load."@en ; + rdfs:label "Fan power"@en . + +PSD:Water a rdf:Property ; + rdfs:comment "The amount of water consumed during the period specified in the time series."@en ; + rdfs:label "Water"@en . + +PSD:ManufacturingToleranceClass + a rdf:Property ; + rdfs:label "Manufacturing tolerance class"@en . + +PSD:DiagonalTrussBaseBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the base bar."@en ; + rdfs:label "DiagonalTrussBaseBarDiameter"@en . + +PSD:TendonRelaxation a rdf:Property ; + rdfs:label "Tendon relaxation"@en . + +PSD:VaporPermeability + a rdf:Property ; + rdfs:comment "The rate of water vapor transmission per unit area per unit of vapor pressure differential under test conditions."@en ; + rdfs:label "VaporPermeability"@en . + +PSD:MovementSensingType + a rdf:Property ; + rdfs:comment "Enumeration that identifies the type of movement sensing mechanism."@en ; + rdfs:label "MovementSensingType"@en . + +PSD:Impedence a rdf:Property ; + rdfs:comment "Indicates the speaker impedence."@en ; + rdfs:label "Impedence"@en . + +PSD:EarthFault1PoleMaximumState + a rdf:Property ; + rdfs:comment "Maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN."@en ; + rdfs:label "EarthFault1PoleMaximumState"@en . + +PSD:FlushingRate a rdf:Property ; + rdfs:comment "The predetermined quantity of water to be flushed."@en ; + rdfs:label "FlushingRate"@en . + +PSD:LongitudinalSeam a rdf:Property ; + rdfs:comment "The type of seam to be used along the longitudinal axis of the duct segment."@en ; + rdfs:label "LongitudinalSeam"@en . + +PSD:IsRigid a rdf:Property ; + rdfs:comment "Indication of whether the conduit is rigid (= TRUE) or flexible (= FALSE)."@en ; + rdfs:label "IsRigid"@en . + +PSD:WireLoopBasePlateLength + a rdf:Property ; + rdfs:comment "The length of the base plate."@en ; + rdfs:label "WireLoopBasePlateLength"@en . + +PSD:PowerSource a rdf:Property ; + rdfs:comment "Type of power driving the compressor."@en ; + rdfs:label "Power source"@en . + +PSD:SpecialInstructions + a rdf:Property ; + rdfs:comment "Special instructions that affect the move."@en ; + rdfs:label "SpecialInstructions"@en . + +PSD:ResourceDepletionPerUnit + a rdf:Property ; + rdfs:label "Resource depletion per unit"@en . + +PSD:SupplyWaterTemperatureHeating + a rdf:Property ; + rdfs:comment "Supply water temperature in heating mode."@en ; + rdfs:label "SupplyWaterTemperatureHeating"@en . + +PSD:CloseOffRating a rdf:Property ; + rdfs:comment "Close off rating."@en ; + rdfs:label "CloseOffRating"@en . + +PSD:BendRadius a rdf:Property ; + rdfs:comment "The radius of bending if circular arc or zero if sharp bend."@en ; + rdfs:label "BendRadius"@en . + +PSD:ParkingUse a rdf:Property ; + rdfs:comment "Identifies the type of transporation for which the parking space is designed. Values are not predefined but might include car, compact car, motorcycle, bicycle, truck, bus etc."@en ; + rdfs:label "ParkingUse"@en . + +PSD:WorksurfaceArea a rdf:Property ; + rdfs:comment "The value of the work surface area of the desk."@en , "The value of the work surface area of the desk.."@en ; + rdfs:label "WorksurfaceArea"@en . + +PSD:NominalSurroundingTemperatureHeating + a rdf:Property ; + rdfs:comment "Nominal surrounding temperature (refers to nominal heating capacity)."@en ; + rdfs:label "NominalSurroundingTemperatureHeating"@en . + +PSD:Value a owl:Class , rdf:Property ; + rdfs:comment "Indicates values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the Value property on the corresponding occurrence property set (Pset_ControllerTypeFloating, Pset_ControllerTypeProportional, Pset_ControllerTypeMultiPosition, or Pset_ControllerTypeTwoPosition)."@en , "Indicates measured values over time which may be recorded continuously or only when changed beyond a particular deadband."@en , "Indicates sensed values over time which may be recorded continuously or only when changed beyond a particular deadband. The range of possible values is defined by the SetPoint property of the corresponding sensor type property set."@en ; + rdfs:label "Value"@en , "Defining value"@en ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:unitType + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:valueItem + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:dataType + ] . + +PSD:DisplayWidth a rdf:Property ; + rdfs:comment "Indicates the physical width of the screen (only the display surface)."@en ; + rdfs:label "DisplayWidth"@en . + +PSD:LoadBearing a rdf:Property ; + rdfs:label "Load bearing"@en . + +PSD:FirstCurvatureRadius + a rdf:Property ; + rdfs:comment "FirstCurvatureRadius should be defined as the base or left side radius of curvature value."@en ; + rdfs:label "FirstCurvatureRadius"@en . + +PSD:MaximumSpaceSensibleLoad + a rdf:Property ; + rdfs:comment "Maximum or Peak sensible thermal load contributed to the conditioned space by the light fixture."@en ; + rdfs:label "MaximumSpaceSensibleLoad"@en . + +PSD:MountingType a rdf:Property ; + rdfs:comment "The way the air terminal is mounted to the ceiling, wall, etc.\\n\\nSurface: mounted to the surface of something (e.g., wall, duct, etc.).\\nFlat flush: mounted flat and flush with a surface.\\nLay-in: mounted in a lay-in type ceiling (e.g., a dropped ceiling grid)."@en , "Method of mounting to be adopted for the type of junction box."@en ; + rdfs:label "Mounting type"@en , "MountingType"@en . + +PSD:FrictionHeatGain a rdf:Property ; + rdfs:comment "Friction heat gain."@en ; + rdfs:label "FrictionHeatGain"@en . + +PSD:RatedTemperature a rdf:Property ; + rdfs:comment "The range of allowed temerature that a device is certified to handle. The upper bound of this value is the maximum."@en ; + rdfs:label "RatedTemperature"@en . + +PSD:YDirectionTieHoopBarPitch + a rdf:Property ; + rdfs:comment "The Y direction pitch length of the tie hoop."@en ; + rdfs:label "YDirectionTieHoopBarPitch"@en . + +PSD:ConnectedConductorFunction + a rdf:Property ; + rdfs:comment "Function of the conductors to which the load is connected."@en ; + rdfs:label "ConnectedConductorFunction"@en . + +PSD:YDirectionTieHoopCount + a rdf:Property ; + rdfs:comment "The number of bars with Y direction tie hoop bars."@en ; + rdfs:label "YDirectionTieHoopCount"@en . + +PSD:InPlaneNegative a rdf:Property ; + rdfs:comment "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; compression zone of unbalanced layups is stressed in tension."@en ; + rdfs:label "InPlaneNegative"@en . + +PSD:NonHazardousWaste + a rdf:Property ; + rdfs:label "Non hazardous waste"@en . + +PSD:ControlType a rdf:Property ; + rdfs:comment "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.)."@en , "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.) ."@en ; + rdfs:label "ControlType"@en . + +PSD:InfiltrationDiversitySummer + a rdf:Property ; + rdfs:comment "Diversity factor for Summer infiltration."@en ; + rdfs:label "InfiltrationDiversitySummer"@en , "Infiltration diversity summer"@en . + +PSD:NominalBodyDepth a rdf:Property ; + rdfs:comment "Nominal or quoted length measured along the z-axis in the local coordinate system of the drain."@en , "Nominal or quoted =length, measured along the z-axis of the local coordinate system of the object, of the body of the object."@en , "Nominal or quoted length measured along the z-axis in the local coordinate system of the waste."@en ; + rdfs:label "NominalBodyDepth"@en . + +PSD:OperationalCriteria + a rdf:Property ; + rdfs:comment "Time of operation at maximum operational ambient air temperature."@en ; + rdfs:label "Operational criteria"@en . + +PSD:SetPointIdentifier + a rdf:Property ; + rdfs:comment "The detected tag value."@en ; + rdfs:label "SetPointIdentifier"@en . + +PSD:AdjustmentValueType + a rdf:Property ; + rdfs:comment "The type of adjustment value that is applied through the property set. This determines the properties that should be asserted (see below)."@en ; + rdfs:label "AdjustmentValueType"@en . + +PSD:SpacingBarPitch a rdf:Property ; + rdfs:comment "The pitch length of the spacing bar."@en ; + rdfs:label "SpacingBarPitch"@en . + +PSD:SerialNumber a rdf:Property ; + rdfs:comment "The serial number assigned to an occurrence of a product."@en , "The manufacturer's serial number for the precast concrete element."@en ; + rdfs:label "SerialNumber"@en . + +PSD:NominalFrequency a rdf:Property ; + rdfs:comment "The nominal frequency of the supply."@en ; + rdfs:label "NominalFrequency"@en . + +PSD:AtmosphericAcidificationPerUnit + a rdf:Property ; + rdfs:label "Atmospheric acidification per unit"@en . + +PSD:FrameThickness a rdf:Property ; + rdfs:comment "The thickness of the damper frame material."@en ; + rdfs:label "FrameThickness"@en . + +PSD:InvertLevel a rdf:Property ; + rdfs:comment "The lowest point in the cross section of the sump."@en , "Level of the lowest part of the cross section as measured from ground level."@en ; + rdfs:label "InvertLevel"@en . + +PSD:HasSillInternal a rdf:Property ; + rdfs:label "Has sill internal"@en . + +PSD:applicableTypeValue + a owl:DatatypeProperty ; + rdfs:comment "The format of applicable type value is ENTITY_TYPE/PREDEFINED_TYPE. Multiple value is accepted, and format is: \"TYPE_1 | TYPE_2 ...\"."@en ; + rdfs:domain PSD:PropertySetDef ; + rdfs:label "Applicable type value"@en ; + rdfs:range xsd:string . + +PSD:WorkStartTime a rdf:Property ; + rdfs:comment "The default time of day a task is scheduled to start. For presentation purposes, if the start time of a task matches the WorkStartTime, then applications may choose to display the date only. Conversely when entering dates without specifying time, applications may automatically append the WorkStartTime."@en ; + rdfs:label "Work start time"@en . + +PSD:ReleaseStrength a rdf:Property ; + rdfs:label "Release strength"@en . + +PSD:WaterConsumptionPerUnit + a rdf:Property ; + rdfs:label "Water consumption per unit"@en . + +PSD:COContent a rdf:Property ; + rdfs:comment "Carbon monoxide (CO) content of the products of combustion. This is measured in weight of CO per unit weight and is therefore unitless."@en ; + rdfs:label "COContent"@en . + +PSD:s a rdf:Property ; + rdfs:comment "Measure s according to ISO 2553"@en ; + rdfs:label "s"@en . + +PSD:Lighting a rdf:Property ; + rdfs:comment "Lighting loads."@en ; + rdfs:label "Lighting"@en . + +PSD:SetPointMovement a rdf:Property ; + rdfs:comment "The movement to be sensed."@en ; + rdfs:label "SetPointMovement"@en . + +PSD:ActualCompletion a rdf:Property ; + rdfs:comment "The actual completion percentage of the allocation."@en ; + rdfs:label "ActualCompletion"@en . + +PSD:ifdguid a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:comment "GUID of IFD."@en ; + rdfs:domain PSD:PropertyDef ; + rdfs:label "IFD GUID"@en ; + rdfs:range xsd:string . + +PSD:FlangeDepth a rdf:Property ; + rdfs:comment "Flange depth of the profile."@en ; + rdfs:label "FlangeDepth"@en . + +PSD:ActuationType a rdf:Property ; + rdfs:comment "Enumeration that identifies the different types of dampers."@en ; + rdfs:label "ActuationType"@en . + +PSD:IsFOB a rdf:Property ; + rdfs:comment "Indication of whether contents of the purchase order are delivered 'Free on Board' (= True) or not (= False). FOB is a shipping term which indicates that the supplier pays the shipping costs (and usually also the insurance costs) from the point of manufacture to a specified destination, at which point the buyer takes responsibility."@en ; + rdfs:label "IsFOB"@en . + +PSD:MeasuredFlowRate a rdf:Property ; + rdfs:comment "The rate of flow of a fluid measured across the valve."@en ; + rdfs:label "MeasuredFlowRate"@en . + +PSD:LadderTrussCrossBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the straight cross-bars."@en ; + rdfs:label "LadderTrussCrossBarDiameter"@en . + +PSD:NominalHeatTransferCoefficient + a rdf:Property ; + rdfs:comment "Nominal overall heat transfer coefficient associated with nominal heat transfer area."@en ; + rdfs:label "Nominal heat transfer coefficient"@en . + +PSD:Steam a rdf:Property ; + rdfs:comment "The amount of steam consumed during the period specified in the time series."@en ; + rdfs:label "Steam"@en . + +PSD:TotalLatentLoad a rdf:Property ; + rdfs:comment "Total energy added or removed from air that affects its humidity or concentration of water vapor. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space."@en ; + rdfs:label "TotalLatentLoad"@en . + +PSD:definingValue a owl:ObjectProperty ; + rdfs:domain PSD:TypePropertyTableValue ; + rdfs:label "Defining value"@en ; + rdfs:range PSD:Value . + +PSD:HangingHeight a rdf:Property ; + rdfs:comment "The hanging height of the worksurface."@en ; + rdfs:label "HangingHeight"@en . + +PSD:TreadLengthAtInnerSide + a rdf:Property ; + rdfs:label "Tread length at inner side"@en . + +PSD:CarbonContent a rdf:Property ; + rdfs:comment "The carbon content in the fuel. This is measured in weight of carbon per unit weight of fuel and is therefore unitless."@en ; + rdfs:label "CarbonContent"@en . + +PSD:NominalLength a rdf:Property ; + rdfs:comment "Nominal or quoted length of the object. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en ; + rdfs:label "Nominal length"@en . + +PSD:RenewableEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:label "Renewable energy consumption per unit"@en . + +PSD:WorkDayDuration a rdf:Property ; + rdfs:comment "The elapsed time within a worktime-based day. For presentation purposes, applications may choose to display IfcTask durations in work days where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 24 hours (an elapsed day); if omitted then 8 hours is assumed."@en ; + rdfs:label "Work day duration"@en . + +PSD:FireRating a rdf:Property ; + rdfs:label "Fire rating"@en . + +PSD:ShadingCoefficient + a rdf:Property ; + rdfs:label "Shading coefficient"@en . + +PSD:MountingMethod a rdf:Property ; + rdfs:comment "The method of mounting cable segment occurrences on a cable carrier occurrence from which the method required can be selected. This is for the purpose of carrying out 'worst case' cable sizing calculations and may be a conceptual requirement rather than a statement of the physical occurrences of cable and carrier segments."@en ; + rdfs:label "MountingMethod"@en . + +PSD:Flowrate a rdf:Property ; + rdfs:comment "The flowrate of the fuel."@en , "The actual operational fluid flowrate."@en ; + rdfs:label "Flowrate"@en . + +PSD:CorrectionFactorForHeating + a rdf:Property ; + rdfs:comment "Correction factor k as a function of water flow rate (used to calculate heating capacity)."@en ; + rdfs:label "CorrectionFactorForHeating"@en . + +PSD:AccuracyQualityObtained + a rdf:Property ; + rdfs:comment "A measure of the accuracy quality of survey points as obtained expressed in percentage terms."@en ; + rdfs:label "AccuracyQualityObtained"@en . + +PSD:XDirectionTieHoopBarPitch + a rdf:Property ; + rdfs:comment "The X direction pitch length of the tie hoop."@en ; + rdfs:label "XDirectionTieHoopBarPitch"@en . + +PSD:I2 a rdf:Property ; + rdfs:comment "The (thermal) upper testing current limit in [x In], indicating that for currents larger than I2, the tripping time shall be shorter than the associated tripping time, T2."@en ; + rdfs:label "I2"@en . + +PSD:ElectricActuatorType + a rdf:Property ; + rdfs:comment "Enumeration that identifies electric actuator as defined by its operational principle."@en ; + rdfs:label "Electric actuator type"@en . + +PSD:IndoorEnvironment + a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the indoor environment (where appropriate)."@en ; + rdfs:label "IndoorEnvironment"@en . + +PSD:HoopBarPitch a rdf:Property ; + rdfs:comment "The pitch length of the hoop bar."@en ; + rdfs:label "HoopBarPitch"@en . + +PSD:CouplingType a rdf:Property ; + rdfs:comment "Defines the type coupling on the inlet of the breeching inlet."@en ; + rdfs:label "CouplingType"@en . + +PSD:AudioMode a rdf:Property ; + rdfs:comment "Indicates audio sound modes and corresponding labels, if applicable."@en ; + rdfs:label "AudioMode"@en . + +PSD:LightFixturePlacingType + a rdf:Property ; + rdfs:comment "A list of the available types of placing specification for light fixtures from which that required may be selected."@en ; + rdfs:label "LightFixturePlacingType"@en . + +PSD:WarrantyPeriod a rdf:Property ; + rdfs:comment "The time duration during which a manufacturer or supplier guarantees or warrants the performance of an artefact."@en ; + rdfs:label "WarrantyPeriod"@en . + +PSD:SupplyAirTemperatureHeating + a rdf:Property ; + rdfs:comment "Supply air temperature in heating mode."@en ; + rdfs:label "SupplyAirTemperatureHeating"@en . + +PSD:InertWaste a rdf:Property ; + rdfs:label "Inert waste"@en . + +PSD:NarrativeText a rdf:Property ; + rdfs:comment "Added information relating to the adjacent building use that is not appropriate to the general descriptive text associated with an entity through the inherited IfcRoot.Description."@en ; + rdfs:label "Narrative text"@en , "NarrativeText"@en . + +PSD:ClimateChange a rdf:Property ; + rdfs:label "Climate change"@en . + +PSD:TenureModesAvailableNow + a rdf:Property ; + rdfs:comment "A list of the tenure modes that are currently available expressed in terms of IfcLabel."@en ; + rdfs:label "Tenure modes available now"@en . + +PSD:FireExit a rdf:Property ; + rdfs:label "Fire exit"@en . + +PSD:AngleToFirstAxis a rdf:Property ; + rdfs:label "Angle to first axis"@en . + +PSD:ConcreteCoverAtLinks + a rdf:Property ; + rdfs:label "Concrete cover at links"@en . + +PSD:TimeTolerance2 a rdf:Property ; + rdfs:comment "The tolerance for the time of the time/current-curve in [%] valid for currents above TimeToleranceLimit1."@en ; + rdfs:label "TimeTolerance2"@en . + +PSD:NominalSupplyVoltageOffset + a rdf:Property ; + rdfs:comment "The maximum and minimum allowed voltage of the supply e.g. boundaries of 380V/440V may be applied for a nominal voltage of 400V."@en ; + rdfs:label "NominalSupplyVoltageOffset"@en . + +PSD:ApparentPower a rdf:Property ; + rdfs:comment "Apparent power."@en ; + rdfs:label "ApparentPower"@en . + +PSD:n a rdf:Property ; + rdfs:comment "Count n according to ISO 2553"@en ; + rdfs:label "n"@en . + +PSD:HeatTransferCoefficient + a rdf:Property ; + rdfs:comment "Heat transfer coefficient-area product."@en ; + rdfs:label "HeatTransferCoefficient"@en . + +PSD:SensibleCoolingCapacity + a rdf:Property ; + rdfs:comment "Sensible cooling capacity."@en ; + rdfs:label "SensibleCoolingCapacity"@en . + +PSD:ExpectedServiceLife + a rdf:Property ; + rdfs:label "Expected service life"@en . + +PSD:OutOfPlaneNegative + a rdf:Property ; + rdfs:comment "Mechanical properties with respect to out-of-plane load i.e. for function as a plate; compression zone of unbalanced layups is stressed in tension."@en ; + rdfs:label "OutOfPlaneNegative"@en . + +PSD:PressureCurve a rdf:Property ; + rdfs:comment "Pressure rise = f (flow rate)."@en ; + rdfs:label "Pressure curve"@en . + +PSD:LowerCurrent1 a rdf:Property ; + rdfs:comment "The current in [x In], indicating that for currents smaller than LowerCurrent1 the I2t part of the L-function will not trip the current,"@en ; + rdfs:label "LowerCurrent1"@en . + +PSD:CornerChamfer a rdf:Property ; + rdfs:label "Corner chamfer"@en . + +PSD:TorqueRange a rdf:Property ; + rdfs:comment "Torque range: minimum operational torque to maximum allowable torque."@en ; + rdfs:label "TorqueRange"@en . + +PSD:expression a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:comment "Information about the expression for the derivation of defined values from the defining values."@en ; + rdfs:domain PSD:TypePropertyTableValue ; + rdfs:label "Expression"@en ; + rdfs:range xsd:string . + +PSD:Eutrophication a rdf:Property ; + rdfs:label "Eutrophication"@en . + +PSD:NumberOfCores a rdf:Property ; + rdfs:comment "The number of cores in Cable/Bus."@en , "Number of cores."@en ; + rdfs:label "NumberOfCores"@en . + +PSD:CenterCoreTopWidth + a rdf:Property ; + rdfs:comment "Center core top width of the profile."@en ; + rdfs:label "CenterCoreTopWidth"@en . + +PSD:EvaporatingTemperature + a rdf:Property ; + rdfs:comment "Refrigerant evaporating temperature."@en ; + rdfs:label "EvaporatingTemperature"@en . + +PSD:RequiredPset a owl:Class ; + rdfs:label "Required property set" ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:propertySetDef + ] . + +PSD:CapacityControlType + a rdf:Property ; + rdfs:comment "InletVane: Control by adjusting inlet vane.\\nVariableSpeedDrive: Control by variable speed drive. \\nBladePitchAngle: Control by adjusting blade pitch angle.\\nTwoSpeed: Control by switch between high and low speed.\\nDischargeDamper: Control by modulating discharge damper."@en ; + rdfs:label "Capacity control type"@en . + +PSD:ArticleNumber a rdf:Property ; + rdfs:comment "Article number or reference that is be applied to a configured product according to a standard scheme for article number definition as defined by the manufacturer. It is often used as the purchasing number."@en ; + rdfs:label "ArticleNumber"@en . + +PSD:PatternType a rdf:Property ; + rdfs:comment "Defines the types of pattern (or shape of a tank that may be specified."@en ; + rdfs:label "PatternType"@en . + +PSD:SetPointFlow a rdf:Property ; + rdfs:comment "The volumetric flow value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointFlow"@en . + +PSD:FlowrateLeakage a rdf:Property ; + rdfs:comment "Leakage flowrate versus pressure difference."@en ; + rdfs:label "FlowrateLeakage"@en . + +PSD:SetPointIlluminance + a rdf:Property ; + rdfs:comment "The illuminance value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointIlluminance"@en . + +PSD:NominalEnergyConsumption + a rdf:Property ; + rdfs:comment "Nominal fuel consumption rate required to produce the total boiler heat output."@en ; + rdfs:label "Nominal energy consumption"@en . + +PSD:LightingPercentLoadToReturnAir + a rdf:Property ; + rdfs:comment "Percent of lighting load to the return air plenum."@en ; + rdfs:label "LightingPercentLoadToReturnAir"@en . + +PSD:HandicapAccessible + a rdf:Property ; + rdfs:comment "Indication that this object is designed to be accessible by the handicapped. \\nSet to (TRUE) if this ramp is rated as handicap accessible according the local building codes, otherwise (FALSE)."@en ; + rdfs:label "Handicap accessible"@en . + +PSD:EnergySource a rdf:Property ; + rdfs:comment "Enumeration defining the energy source or fuel cumbusted to generate heat."@en ; + rdfs:label "Energy source"@en . + +PSD:ConduitShapeType a rdf:Property ; + rdfs:comment "The shape of the conduit segment."@en ; + rdfs:label "ConduitShapeType"@en . + +PSD:RentalRatesInCategoryFuture + a rdf:Property ; + rdfs:comment "Range of the cost rates for property expected to be available in the future in the required category."@en ; + rdfs:label "Rental rates in category future"@en . + +PSD:EarthFault1PolePowerFactorMaximumState + a rdf:Property ; + rdfs:comment "Power factor of the maximum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN."@en ; + rdfs:label "EarthFault1PolePowerFactorMaximumState"@en . + +PSD:BackflowPreventerType + a rdf:Property ; + rdfs:comment "Identifies the type of backflow preventer installed to prevent the backflow of contaminated or polluted water from an irrigation/reticulation system to a potable water supply."@en ; + rdfs:label "BackflowPreventerType"@en . + +PSD:OutletDiameter a rdf:Property ; + rdfs:comment "The outlet diameter of the breeching inlet."@en ; + rdfs:label "OutletDiameter"@en . + +PSD:InputPressure a rdf:Property ; + rdfs:comment "Maximum design pressure for the actuator."@en ; + rdfs:label "Input pressure"@en . + +PSD:AirFlowRate a rdf:Property ; + rdfs:comment "Air flow rate."@en , "The actual airflow rate as designed."@en , "Volumetric flow rate."@en , "Volumetric air flow rate."@en ; + rdfs:label "AirFlowRate"@en . + +PSD:BuildingThermalExposure + a rdf:Property ; + rdfs:comment "The thermal exposure expected by the building based on surrounding site conditions."@en ; + rdfs:label "BuildingThermalExposure"@en . + +PSD:VentilationAirFlowRate + a rdf:Property ; + rdfs:comment "Ventilation air flow rate in the space."@en ; + rdfs:label "VentilationAirFlowRate"@en . + +PSD:StructuralClass a rdf:Property ; + rdfs:label "Structural class"@en . + +PSD:ReinforcementStrengthClass + a rdf:Property ; + rdfs:label "Reinforcement strength class"@en . + +PSD:ClosureRatingEnum + a rdf:Property ; + rdfs:comment "Enumeration that identifies the closure rating for the damper."@en ; + rdfs:label "ClosureRatingEnum"@en . + +PSD:ReceiverType a rdf:Property ; + rdfs:comment "Indicates the type of receiver."@en ; + rdfs:label "ReceiverType"@en . + +PSD:Capacity a rdf:Property ; + rdfs:comment "Cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream."@en ; + rdfs:label "Capacity"@en . + +PSD:RequestSourceName + a rdf:Property ; + rdfs:comment "The person making the request, where known."@en ; + rdfs:label "Request source name"@en . + +PSD:AppliancePercentLoadToRadiant + a rdf:Property ; + rdfs:comment "Percent of sensible load to radiant heat."@en ; + rdfs:label "AppliancePercentLoadToRadiant"@en . + +PSD:WorkExecutionLevel + a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the quality of work executed."@en ; + rdfs:label "WorkExecutionLevel"@en . + +PSD:CounterSlope a rdf:Property ; + rdfs:comment "Sloping angle of the object, measured perpendicular to the slope - relative to horizontal (0.0 degrees). \\nActual maximum slope for the passageway measured perpendicular to the direction of travel according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence. \\nNote: new property in IFC4."@en ; + rdfs:label "Counter slope"@en . + +PSD:SecurityLightingType + a rdf:Property ; + rdfs:comment "The type of security lighting."@en ; + rdfs:label "SecurityLightingType"@en . + +PSD:CoefficientOfPerformance + a rdf:Property ; + rdfs:comment "Coefficient of performance (COP)."@en ; + rdfs:label "CoefficientOfPerformance"@en . + +PSD:WeightedEfficiency + a rdf:Property ; + rdfs:comment "Filter efficiency based the particle weight concentration before and after filter against particles with certain size distribution."@en ; + rdfs:label "WeightedEfficiency"@en . + +PSD:OverallDiameter a rdf:Property ; + rdfs:comment "The overall diameter of a Cable/Bus."@en , "The overall diameter of a core (maximun space used)."@en ; + rdfs:label "OverallDiameter"@en . + +PSD:CombustionTemperature + a rdf:Property ; + rdfs:comment "Combustion temperature of the material when air is at 298 K and 100 kPa."@en ; + rdfs:label "CombustionTemperature"@en . + +PSD:CenterCoreTopHeight + a rdf:Property ; + rdfs:comment "Center core top height of the profile."@en ; + rdfs:label "CenterCoreTopHeight"@en . + +PSD:WindLoadRating a rdf:Property ; + rdfs:label "Wind load rating"@en . + +PSD:PressureRating a rdf:Property ; + rdfs:comment "Nominal pressure rating of the boiler as rated by the agency having jurisdiction."@en ; + rdfs:label "Pressure rating"@en . + +PSD:CapacityPeople a rdf:Property ; + rdfs:label "Capacity people"@en . + +PSD:ReliefPressure a rdf:Property ; + rdfs:comment "The pressure at which the spring or weight in the valve is set to discharge fluid."@en ; + rdfs:label "ReliefPressure"@en . + +PSD:AssetTaxType a rdf:Property ; + rdfs:comment "Identifies the predefined types of taxation group from which the type required may be set."@en ; + rdfs:label "Asset tax type"@en . + +PSD:DisplayHeight a rdf:Property ; + rdfs:comment "Indicates the physical height of the screen (only the display surface)."@en ; + rdfs:label "DisplayHeight"@en . + +PSD:ScreenDiameter a rdf:Property ; + rdfs:comment "The diameter of the screen around a cable or bus segment (if present)."@en , "The diameter of the screen around a core segment (if present)."@en ; + rdfs:label "ScreenDiameter"@en . + +PSD:HeatingDryBulb a rdf:Property ; + rdfs:comment "Inside dry bulb temperature for heating design."@en , "Outside dry bulb temperature for heating design."@en ; + rdfs:label "HeatingDryBulb"@en . + +PSD:BendAngle a rdf:Property ; + rdfs:comment "The change of direction of flow."@en ; + rdfs:label "BendAngle"@en . + +PSD:PointOfContact a rdf:Property ; + rdfs:comment "The organization that should be contacted for action under the terms of the warranty. Note that the role of the organization (manufacturer, supplier, installer etc.) is determined by the IfcActorRole attribute of IfcOrganization."@en ; + rdfs:label "PointOfContact"@en . + +PSD:HorizontalBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the horizontal bar."@en ; + rdfs:label "HorizontalBarPitch"@en . + +PSD:ChargePressure a rdf:Property ; + rdfs:comment "Nominal or design operating pressure of the tank."@en ; + rdfs:label "ChargePressure"@en . + +PSD:HasDrive a rdf:Property ; + rdfs:label "Has drive"@en . + +PSD:CompressorCondenserPressureDrop + a rdf:Property ; + rdfs:comment "Pressure drop between condenser inlet and compressor outlet."@en ; + rdfs:label "CompressorCondenserPressureDrop"@en . + +PSD:SolarHeatGainTransmittance + a rdf:Property ; + rdfs:label "Solar heat gain transmittance"@en . + +PSD:Weight a rdf:Property ; + rdfs:comment "The weight of the silencer."@en , "Weight of cable kg/km."@en , "Weight of filter/humidifier."@en , "Weight of core kg/km."@en ; + rdfs:label "Weight"@en . + +PSD:NominalHeatTransferArea + a rdf:Property ; + rdfs:comment "Nominal heat transfer surface area associated with nominal overall heat transfer coefficient."@en ; + rdfs:label "Nominal heat transfer area"@en . + +PSD:HardeningModule a rdf:Property ; + rdfs:comment "A measure of the hardening module of the material (slope of stress versus strain curve after yield range)."@en ; + rdfs:label "Hardening module"@en . + +PSD:IsCurrentTolerancePositiveOnly + a rdf:Property ; + rdfs:comment "Indication whether the value of CurrentTolerance1 is provided as a positive tolereance only or not. If not, the value is proved as a pluss/minus tolerance."@en ; + rdfs:label "IsCurrentTolerancePositiveOnly"@en . + +PSD:WorkMonthDuration + a rdf:Property ; + rdfs:comment "The elapsed time within a worktime-based month. For presentation purposes, applications may choose to display IfcTask durations in work months where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 744 hours (an elapsed month of 31 days); if omitted then 160 hours is assumed."@en ; + rdfs:label "Work month duration"@en . + +PSD:SpaceMeanRadiantTemperature + a rdf:Property ; + rdfs:comment "Mean radiant temperature in the space."@en ; + rdfs:label "SpaceMeanRadiantTemperature"@en . + +PSD:FurniturePanelType + a rdf:Property ; + rdfs:comment "Available panel types from which that required may be selected."@en ; + rdfs:label "FurniturePanelType"@en . + +PSD:CoolingEfficiency + a rdf:Property ; + rdfs:comment "Coefficient of Performance: Ratio of cooling energy output to energy input under full load operating conditions."@en ; + rdfs:label "CoolingEfficiency"@en . + +PSD:ThermalIrTransmittance + a rdf:Property ; + rdfs:comment "Thermal IR transmittance at normal incidence. Defines the fraction of thermal energy that passes through per unit area, perpendicular to the surface."@en ; + rdfs:label "ThermalIrTransmittance"@en . + +PSD:Location2Global a rdf:Property ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness2 is given"@en ; + rdfs:label "Location2Global"@en . + +PSD:CoolingDesignDay a rdf:Property ; + rdfs:comment "The month, day and time that has been selected for the cooling design calculations."@en ; + rdfs:label "CoolingDesignDay"@en . + +PSD:ShortOutsideLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short outside lower bar."@en ; + rdfs:label "ShortOutsideLowerBarPitch"@en . + +PSD:GlassThickness1 a rdf:Property ; + rdfs:label "Glass thickness 1"@en . + +PSD:SensibleEffectiveness + a rdf:Property ; + rdfs:comment "Sensible heat transfer effectiveness, where effectiveness is defined as the ratio of heat transfer to maximum possible heat transfer."@en ; + rdfs:label "SensibleEffectiveness"@en . + +PSD:CompressorEvaporatorHeatGain + a rdf:Property ; + rdfs:comment "Heat gain between the evaporator outlet and the compressor inlet."@en ; + rdfs:label "CompressorEvaporatorHeatGain"@en . + +PSD:TemperatureRange a rdf:Property ; + rdfs:comment "Allowable operational range of the fluid temperature."@en , "Allowable minimum and maximum temperature."@en , "Allowable maximum and minimum temperature. Temperature range within which the air terminal is designed to operate."@en , "Temperature range."@en , "Allowable maximum and minimum temperature."@en ; + rdfs:label "Temperature range"@en , "TemperatureRange"@en . + +PSD:FanEfficiency a rdf:Property ; + rdfs:comment "Fan mechanical efficiency."@en ; + rdfs:label "FanEfficiency"@en . + +PSD:WorkingPressureRange + a rdf:Property ; + rdfs:comment "Allowable minimum and maximum working pressure (relative to ambient pressure)."@en ; + rdfs:label "WorkingPressureRange"@en . + +PSD:CornerFixingPlateFlangeWidthInPlaneX + a rdf:Property ; + rdfs:comment "The flange width of the L-shaped corner plate in plane X."@en ; + rdfs:label "CornerFixingPlateFlangeWidthInPlaneX"@en . + +PSD:PartialLoadEfficiencyCurves + a rdf:Property ; + rdfs:comment "Boiler efficiency as a function of the partial load factor; E = f (partialLaodfactor)."@en ; + rdfs:label "Partial load efficiency curves"@en . + +PSD:NominalSupplyVoltage + a rdf:Property ; + rdfs:comment "The nominal voltage of the supply."@en ; + rdfs:label "NominalSupplyVoltage"@en . + +PSD:ClimateChangePerUnit + a rdf:Property ; + rdfs:label "Climate change per unit"@en . + +PSD:d a rdf:Property ; + rdfs:comment "Measure d according to ISO 2553"@en ; + rdfs:label "d"@en . + +PSD:CoverLength a rdf:Property ; + rdfs:comment "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the drain."@en , "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the oil interceptor."@en , "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the waste."@en ; + rdfs:label "CoverLength"@en . + +PSD:HeatingAirFlowRate + a rdf:Property ; + rdfs:comment "Heating air flow rate in the space."@en ; + rdfs:label "HeatingAirFlowRate"@en . + +PSD:EdgeDraft a rdf:Property ; + rdfs:comment "Edge draft of the profile."@en ; + rdfs:label "EdgeDraft"@en . + +PSD:ThrowLength a rdf:Property ; + rdfs:comment "The horizontal or vertical axial distance an airstream travels after leaving an AirTerminal before the maximum stream velocity is reduced to a specified terminal velocity under isothermal conditions at the upper value of the AirFlowrateRange."@en ; + rdfs:label "Throw length"@en . + +PSD:definition a owl:DatatypeProperty ; + rdfs:label "Definition"@en ; + rdfs:range xsd:string . + +PSD:FillGas a rdf:Property ; + rdfs:label "Fill gas"@en . + +PSD:WarrantyStartDate + a rdf:Property ; + rdfs:comment "The date on which the warranty commences."@en ; + rdfs:label "WarrantyStartDate"@en . + +PSD:MinimumHeadroom a rdf:Property ; + rdfs:comment "Headroom required for the activity assigned to this space."@en ; + rdfs:label "MinimumHeadroom"@en . + +PSD:FloorAreaRatio a rdf:Property ; + rdfs:comment "The ratio of all floor areas to the buildable area as the maximum floor area utilization of the site as a maximum value according to local building codes."@en ; + rdfs:label "Floor area ratio"@en . + +PSD:TypePropertyReferenceValue + a owl:Class ; + rdfs:label "Type property reference value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:dataType + ] ; + owl:disjointWith PSD:TypeComplexProperty , PSD:TypePropertyEnumeratedValue , PSD:TypePropertySingleValue , PSD:TypePropertyBoundedValue , PSD:TypePropertyListValue , PSD:TypePropertyTableValue . + +PSD:SpeakerMounting a rdf:Property ; + rdfs:comment "Indicates how the speaker is designed to be mounted."@en ; + rdfs:label "SpeakerMounting"@en . + +PSD:CoolingAirFlowRate + a rdf:Property ; + rdfs:comment "Cooling air flow rate in the space."@en ; + rdfs:label "CoolingAirFlowRate"@en . + +PSD:MinimumWidth a rdf:Property ; + rdfs:comment "The minimum duct width for oval or rectangular duct."@en ; + rdfs:label "MinimumWidth"@en . + +PSD:AboveGround a rdf:Property ; + rdfs:label "Above ground"@en . + +PSD:Fan a rdf:Property ; + rdfs:comment "Indicates fan operation where True is on, False is off, and Unknown is automatic."@en ; + rdfs:label "Fan"@en . + +PSD:IsGuarded a rdf:Property ; + rdfs:comment "Indication of whether the motor enclosure is guarded (= TRUE) or not (= FALSE)."@en ; + rdfs:label "IsGuarded"@en . + +PSD:NominalEfficiency + a rdf:Property ; + rdfs:comment "The nominal efficiency of the boiler as defined by the manufacturer. For steam boilers, a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and NominalEfficiency(IfcNormalisedRatioMeasure) in DefinedValues. For example, DefininfValues(InletTemp, OutletTemp), DefinedValues(null, NominalEfficiency). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship."@en , "The nominal efficiency of the boiler as defined by the manufacturer. For water boilers, a function of inlet versus outlet temperature. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), NominalEfficiency(IfcNormalizedRatioMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship."@en ; + rdfs:label "NominalEfficiency"@en . + +PSD:NominalAirFlowRate + a rdf:Property ; + rdfs:comment "Nominal rate of air flow into which water vapor is added."@en , "Nominal air flow rate."@en ; + rdfs:label "Nominal air flow rate"@en , "NominalAirFlowRate"@en . + +PSD:dataType a owl:ObjectProperty ; + rdfs:label "Data type"@en . + +PSD:CoreTopHeight a rdf:Property ; + rdfs:comment "Core top height of the profile."@en ; + rdfs:label "CoreTopHeight"@en . + +PSD:PubliclyAccessible + a rdf:Property ; + rdfs:label "Publicly accessible"@en . + +PSD:MaintenanceFactor + a rdf:Property ; + rdfs:comment "The arithmetical allowance made for depreciation of lamps and reflective equipment from their initial values due to dirt, fumes, or age."@en ; + rdfs:label "MaintenanceFactor"@en . + +PSD:DrivePowerLoss a rdf:Property ; + rdfs:comment "Fan drive power losses associated with the type of connection between the motor and the fan wheel."@en ; + rdfs:label "DrivePowerLoss"@en . + +PSD:WireLoopBasePlateWidth + a rdf:Property ; + rdfs:comment "The width of the base plate."@en ; + rdfs:label "WireLoopBasePlateWidth"@en . + +PSD:AirflowRateRange a rdf:Property ; + rdfs:comment "Range of airflow that can be delivered."@en , "Possible range of airflow that can be delivered."@en ; + rdfs:label "Airflow rate range"@en , "AirflowRateRange"@en . + +PSD:IsAisle a rdf:Property ; + rdfs:comment "Indicates that this parking zone is for accessing the parking units, i.e. an aisle (TRUE) and not a parking unit itself (FALSE)"@en ; + rdfs:label "IsAisle"@en . + +PSD:RequiredHeadroom a rdf:Property ; + rdfs:comment "Required headroom clearance for the passageway according to the applicable building code or additional requirements."@en ; + rdfs:label "Required headroom"@en . + +PSD:CoreIdentifier a rdf:Property ; + rdfs:comment "The core identification used Identifiers may be used such as by color (Black, Brown, Grey) or by number (1, 2, 3) or by IEC phase reference (L1, L2, L3) etc."@en ; + rdfs:label "CoreIdentifier"@en . + +PSD:ProductDescription + a rdf:Property ; + rdfs:comment "A textual description of the products that require the work."@en ; + rdfs:label "ProductDescription"@en . + +PSD:SwitchActivation a rdf:Property ; + rdfs:comment "A list of the available activations for toggle switches from which that required may be selected."@en , "A list of the available activations for selector switches from which that required may be selected."@en ; + rdfs:label "SwitchActivation"@en . + +PSD:SetPointHumidity a rdf:Property ; + rdfs:comment "The humidity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointHumidity"@en . + +PSD:Staggered a rdf:Property ; + rdfs:comment "If intermittent weld, staggered or not"@en ; + rdfs:label "Staggered"@en . + +PSD:HalogenProof a rdf:Property ; + rdfs:comment "Produces small amount of smoke and irritating Deaerator/Gas."@en , "Produces small amount of smoke and irritating deaerator/gas."@en ; + rdfs:label "HalogenProof"@en . + +PSD:ReinforcementBarType + a rdf:Property ; + rdfs:comment "Defines the type of the reinforcement bar."@en ; + rdfs:label "ReinforcementBarType"@en . + +PSD:KeypadType a rdf:Property ; + rdfs:comment "A list of the available types of keypad switch from which that required may be selected."@en ; + rdfs:label "KeypadType"@en . + +PSD:CO2Content a rdf:Property ; + rdfs:comment "Carbon dioxide (CO2) content of the products of combustion. This is measured in weight of CO2 per unit weight and is therefore unitless."@en ; + rdfs:label "CO2Content"@en . + +PSD:AuxiliaryEnergySourceConsumption + a rdf:Property ; + rdfs:comment "Auxiliary energy source consumption."@en ; + rdfs:label "AuxiliaryEnergySourceConsumption"@en . + +PSD:SaturationEfficiencyCurve + a rdf:Property ; + rdfs:comment "Saturation efficiency as a function of the air flow rate."@en ; + rdfs:label "Saturation efficiency curve"@en . + +PSD:Direction a rdf:Property ; + rdfs:comment "Indicates sensed direction for sensors capturing magnitude and direction measured from True North (0 degrees) in a clockwise direction."@en ; + rdfs:label "Direction"@en . + +PSD:WithLock a rdf:Property ; + rdfs:comment "Indicates whether the file cabinet is lockable (= TRUE) or not (= FALSE)."@en ; + rdfs:label "WithLock"@en . + +PSD:AlkalinityConcentration + a rdf:Property ; + rdfs:comment "Maximum alkalinity concentration (maximum sum of concentrations of each of the negative ions substances measured as CaCO3)."@en ; + rdfs:label "AlkalinityConcentration"@en . + +PSD:FrameType a rdf:Property ; + rdfs:comment "The type of frame used by the damper (e.g., Standard, Single Flange, Single Reversed Flange, Double Flange, etc.)."@en ; + rdfs:label "FrameType"@en . + +PSD:ThermalTransmittance + a rdf:Property ; + rdfs:label "Thermal transmittance"@en . + +PSD:MaxAggregateSize a rdf:Property ; + rdfs:label "Max aggregate size"@en . + +PSD:StartingTime a rdf:Property ; + rdfs:comment "The time (in s) needed for the motor to reach its rated speed with its driven equipment attached, starting from standstill and at the nominal voltage applied at its terminals."@en ; + rdfs:label "StartingTime"@en . + +PSD:Location1Local a rdf:Property ; + rdfs:comment "Local x,y coordinates of the point in which Thickness1 is given"@en ; + rdfs:label "Location1Local"@en . + +PSD:WaistThickness a rdf:Property ; + rdfs:label "Waist thickness"@en . + +PSD:PlayerType a rdf:Property ; + rdfs:comment "Indicates the type of player."@en ; + rdfs:label "PlayerType"@en . + +PSD:Voltage a rdf:Property ; + rdfs:comment "Log of electrical voltage."@en ; + rdfs:label "Voltage"@en . + +PSD:EntranceLevel a rdf:Property ; + rdfs:label "Entrance level"@en . + +PSD:Restrictions a rdf:Property ; + rdfs:comment "Restrictions that may be placed by a competent authority."@en ; + rdfs:label "Restrictions"@en . + +PSD:ModelLabel a rdf:Property ; + rdfs:comment "The descriptive model name of the product model (or product line) as assigned by the manufacturer of the manufactured item."@en ; + rdfs:label "ModelLabel"@en . + +PSD:ColumnShoeBasePlateDepth + a rdf:Property ; + rdfs:comment "The depth of the column shoe base plate."@en ; + rdfs:label "ColumnShoeBasePlateDepth"@en . + +PSD:WaterStorageCapacity + a rdf:Property ; + rdfs:comment "Water storage capacity."@en ; + rdfs:label "Water storage capacity"@en . + +PSD:PropertyType a owl:Class ; + rdfs:label "Property type"@en ; + rdfs:subClassOf owl:Thing . + +PSD:AirflowCurve a rdf:Property ; + rdfs:comment "Air flowrate versus damper position relationship;airflow = f ( valve position)."@en ; + rdfs:label "Airflow curve"@en . + +PSD:StrengthGrade a rdf:Property ; + rdfs:comment "Grade with respect to mechanical strength and stiffness."@en ; + rdfs:label "StrengthGrade"@en . + +PSD:TotalHeatTransferRate + a rdf:Property ; + rdfs:comment "Total heat transfer rate."@en , "Total heat transfer rate to primary air flow."@en ; + rdfs:label "TotalHeatTransferRate"@en . + +PSD:InletDiameter a rdf:Property ; + rdfs:comment "The inlet diameter of the breeching inlet."@en ; + rdfs:label "InletDiameter"@en . + +PSD:reftype a owl:ObjectProperty , owl:FunctionalProperty ; + rdfs:comment "Reference type based on SELECT Type IfcObjectReferenceSelect." ; + rdfs:domain PSD:TypePropertyReferenceValue ; + rdfs:range IFC4:IfcObjectReferenceSelect . + +PSD:AirExchangeRate a rdf:Property ; + rdfs:comment "Loads from the air exchange rate."@en ; + rdfs:label "AirExchangeRate"@en . + +PSD:FireProtectionClass + a rdf:Property ; + rdfs:label "Fire protection class"@en . + +PSD:InformationDeliverySpecification + a owl:Class ; + rdfs:label "Information delivery specification"@en ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:name + ] . + +PSD:ProportionalStress + a rdf:Property ; + rdfs:comment "A measure of the proportional stress of the material. It describes the stress before the first plastic deformation occurs and is commonly measured at a deformation of 0.01%."@en ; + rdfs:label "Proportional stress"@en . + +PSD:EdgeFixingPlateFlangeWidthInPlaneX + a rdf:Property ; + rdfs:comment "The flange width of the L-shaped edge plate in plane X."@en ; + rdfs:label "EdgeFixingPlateFlangeWidthInPlaneX"@en . + +PSD:AirFlowrateRange a rdf:Property ; + rdfs:comment "Possible range of airflow that can be delivered."@en , "Air flowrate range within which the air terminal is designed to operate."@en ; + rdfs:label "AirFlowrateRange"@en , "Air flowrate range"@en . + +PSD:PressureRise a rdf:Property ; + rdfs:comment "The developed pressure."@en ; + rdfs:label "PressureRise"@en . + +PSD:UpperCurrent2 a rdf:Property ; + rdfs:comment "The current in [x In], indicating the upper current limit of the upper time/current curve of the I2t part of the L-function."@en ; + rdfs:label "UpperCurrent2"@en . + +PSD:YieldStress a rdf:Property ; + rdfs:comment "A measure of the yield stress (or characteristic 0.2 percent proof stress) of the material."@en ; + rdfs:label "Yield stress"@en . + +PSD:CompressorEvaporatorPressureDrop + a rdf:Property ; + rdfs:comment "Pressure drop between the evaporator outlet and the compressor inlet."@en ; + rdfs:label "CompressorEvaporatorPressureDrop"@en . + +PSD:Spacing a rdf:Property ; + rdfs:comment "Distance between fins on a tube in the tube bundle."@en ; + rdfs:label "Spacing"@en . + +PSD:SoundCurve a rdf:Property ; + rdfs:comment "Table of sound frequencies and sound power measured in decibels at a reference power of 1 picowatt(10^(-12) watt) for the referenced octave band frequency."@en , "Regenerated sound versus air-flow rate."@en ; + rdfs:label "SoundCurve"@en . + +PSD:BudgetSource a rdf:Property ; + rdfs:comment "The budget source requested."@en ; + rdfs:label "BudgetSource"@en . + +PSD:LampMaintenanceFactor + a rdf:Property ; + rdfs:comment "Non recoverable losses of luminous flux of a lamp due to lamp depreciation; i.e. the decreasing of light output of a luminaire due to aging and dirt."@en ; + rdfs:label "Lamp maintenance factor"@en . + +PSD:NumberOfSources a rdf:Property ; + rdfs:comment "Number of sources ."@en ; + rdfs:label "NumberOfSources"@en . + +PSD:AirFlowLeakage a rdf:Property ; + rdfs:comment "Volumetric leakage flow rate."@en ; + rdfs:label "AirFlowLeakage"@en . + +PSD:IsLaminated a rdf:Property ; + rdfs:label "Is laminated"@en . + +PSD:LowerTime1 a rdf:Property ; + rdfs:comment "The time in [s], indicating that tripping times of the lower time/current curve lower than LowerTime1 is determined by the I2t part of the L-function."@en ; + rdfs:label "LowerTime1"@en . + +PSD:ThermalTrippingUnitType + a rdf:Property ; + rdfs:comment "A list of the available types of thermal tripping unit from which that required may be selected."@en ; + rdfs:label "ThermalTrippingUnitType"@en . + +PSD:HasSoundAttenuator + a rdf:Property ; + rdfs:comment "If TRUE, the air terminal has sound attenuation."@en ; + rdfs:label "Has sound attenuator"@en . + +PSD:ViscosityTemperatureDerivative + a rdf:Property ; + rdfs:comment "Viscosity temperature derivative."@en ; + rdfs:label "Viscosity temperature derivative"@en . + +PSD:Orientation a rdf:Property ; + rdfs:comment "The intended orientation for the damper as specified by the manufacturer."@en ; + rdfs:label "Orientation"@en . + +PSD:AirPressureDropCurve + a rdf:Property ; + rdfs:comment "Air pressure drop versus air-flow rate."@en , "Air pressure drop curve, pressure drop  flow rate curve, AirPressureDrop = f (AirflowRate)."@en , "Air pressure drop as a function of air flow rate."@en ; + rdfs:label "Air pressure drop curve"@en , "AirPressureDropCurve"@en . + +PSD:AcquisitionMethod + a rdf:Property ; + rdfs:comment "The means by which survey data was acquired."@en ; + rdfs:label "AcquisitionMethod"@en . + +PSD:NominalWidth a rdf:Property ; + rdfs:comment "The nominal width of the segment."@en , "Nominal or quoted width of the object."@en , "The nominal width of the system furniture elements of this type. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en ; + rdfs:label "NominalWidth"@en , "Nominal width"@en . + +PSD:DraftBaseOffset a rdf:Property ; + rdfs:comment "Draft base offset of the profile."@en ; + rdfs:label "DraftBaseOffset"@en . + +PSD:FrequencyResponse + a rdf:Property ; + rdfs:comment "Indicates the output over a specified range of frequencies."@en ; + rdfs:label "FrequencyResponse"@en . + +PSD:ShapeType a rdf:Property ; + rdfs:comment "Shape of the junction box."@en ; + rdfs:label "ShapeType"@en . + +PSD:DischargeVelocity + a rdf:Property ; + rdfs:comment "The speed at which air discharges from the fan through the fan housing discharge opening."@en ; + rdfs:label "DischargeVelocity"@en . + +PSD:IP_Code a rdf:Property ; + rdfs:comment "IEC 60529 (1989) Classification of degrees of protection provided by enclosures (IP Code)."@en ; + rdfs:label "IP_Code"@en . + +PSD:TunerFrequency a rdf:Property ; + rdfs:comment "Indicates the tuner frequencies, if applicable."@en ; + rdfs:label "TunerFrequency"@en . + +PSD:SubstanceDetected + a rdf:Property ; + rdfs:comment "Identification of the substance that is being detected according to chemical formula. For example, calcium carbonate is 'CaCO3'"@en ; + rdfs:label "SubstanceDetected"@en . + +PSD:WaterConsumption a rdf:Property ; + rdfs:label "Water consumption"@en . + +PSD:ColorRenderingIndex + a rdf:Property ; + rdfs:comment "The CRI indicates how well a light source renders eight standard colors compared to perfect reference lamp with the same color temperature. The CRI scale ranges from 1 to 100, with 100 representing perfect rendering properties."@en ; + rdfs:label "Color rendering index"@en . + +PSD:NutShape a rdf:Property ; + rdfs:comment "Shape of the nut, e.g. 'Hexagon', 'Cap', 'Castle', 'Wing'"@en ; + rdfs:label "NutShape"@en . + +PSD:TypeComplexProperty + a owl:Class ; + rdfs:label "Type property complex property"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:name + ] ; + owl:disjointWith PSD:TypePropertyListValue , PSD:TypePropertySingleValue , PSD:TypePropertyReferenceValue , PSD:TypePropertyEnumeratedValue , PSD:TypePropertyBoundedValue , PSD:TypePropertyTableValue . + +PSD:HeatingDesignAirflow + a rdf:Property ; + rdfs:comment "The air flowrate required during the peak heating conditions, but could also be determined by minimum ventilation requirement or minimum air change requirements."@en ; + rdfs:label "HeatingDesignAirflow"@en . + +PSD:Current a rdf:Property ; + rdfs:comment "Log of electrical current."@en ; + rdfs:label "Current"@en . + +PSD:CondenserEnteringTemperature + a rdf:Property ; + rdfs:comment "Temperature of fluid entering condenser."@en ; + rdfs:label "CondenserEnteringTemperature"@en . + +PSD:SpecificHeatCapacity + a rdf:Property ; + rdfs:comment "Defines the specific heat of the material: heat energy absorbed per temperature unit."@en , "Specific heat of the products of combustion: heat energy absorbed per temperature unit."@en ; + rdfs:label "SpecificHeatCapacity"@en . + +PSD:NominalReturnWaterTemperatureCooling + a rdf:Property ; + rdfs:comment "Nominal return water temperature (refers to nominal cooling capacity)."@en ; + rdfs:label "NominalReturnWaterTemperatureCooling"@en . + +PSD:enumItem a owl:DatatypeProperty ; + rdfs:comment "Enumeration item in uppercase."@en ; + rdfs:domain PSD:TypePropertyEnumeratedValue ; + rdfs:label "Enumeration item"@en ; + rdfs:range xsd:string . + +PSD:IsTempered a rdf:Property ; + rdfs:label "Is tempered"@en . + +PSD:DimensionalAccuracyClass + a rdf:Property ; + rdfs:label "Dimensional accuracy class"@en . + +PSD:DimmerType a rdf:Property ; + rdfs:comment "A list of the available types of dimmer switch from which that required may be selected."@en ; + rdfs:label "DimmerType"@en . + +PSD:JunctionLeftAngle + a rdf:Property ; + rdfs:comment "The change of direction of flow for the left junction."@en ; + rdfs:label "JunctionLeftAngle"@en . + +PSD:NominalFlowrate a rdf:Property ; + rdfs:comment "Nominal fluid flow rate through the filter."@en ; + rdfs:label "Nominal flowrate"@en . + +PSD:ExternalSurfaceArea + a rdf:Property ; + rdfs:comment "External surface area (both primary and secondary area)."@en ; + rdfs:label "External surface area"@en . + +PSD:PitchAngle a rdf:Property ; + rdfs:label "Pitch angle"@en . + +PSD:Finish a rdf:Property ; + rdfs:label "Finish"@en . + +PSD:Location2Local a rdf:Property ; + rdfs:comment "Local x,y coordinates of the point in which Thickness2 is given"@en ; + rdfs:label "Location2Local"@en . + +PSD:EarthFault1PoleMinimumState + a rdf:Property ; + rdfs:comment "Minimum 1 pole earth fault current provided at the point of supply i.e. the fault between 1 phase and PE/PEN."@en ; + rdfs:label "EarthFault1PoleMinimumState"@en . + +PSD:DraftSideOffset a rdf:Property ; + rdfs:comment "Draft side offset of the profile."@en ; + rdfs:label "DraftSideOffset"@en . + +PSD:SupportType a rdf:Property ; + rdfs:comment "Available support types from which that required may be selected."@en ; + rdfs:label "SupportType"@en . + +PSD:Acknowledge a rdf:Property ; + rdfs:comment "Indicates acknowledgement status where False indicates acknowlegement is required and outstanding, True indicates condition has been acknowedged, and Unknown indicates no acknowledgement is required. Upon resetting the condition, then acknowledgement reverts to Unknown."@en ; + rdfs:label "Acknowledge"@en . + +PSD:Hardness a rdf:Property ; + rdfs:comment "Water hardness as positive, multivalent ion concentration in the water (usually concentrations of calcium and magnesium ions in terms of calcium carbonate)."@en ; + rdfs:label "Hardness"@en . + +PSD:EndShapeType a rdf:Property ; + rdfs:comment "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used."@en ; + rdfs:label "EndShapeType"@en . + +PSD:SlotWidth a rdf:Property ; + rdfs:comment "Slot width."@en ; + rdfs:label "Slot width"@en . + +PSD:VideoScaleMode a rdf:Property ; + rdfs:comment "Indicates video scaling modes."@en ; + rdfs:label "VideoScaleMode"@en . + +PSD:SetPointPH a rdf:Property ; + rdfs:comment "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointPH"@en . + +PSD:RotationSpeed a rdf:Property ; + rdfs:comment "Pump rotational speed."@en ; + rdfs:label "RotationSpeed"@en . + +PSD:Slope a rdf:Property ; + rdfs:comment "Angle of the gutter to allow for drainage."@en , "Sloping angle of the object - relative to horizontal (0.0 degrees). \\nActual maximum slope for the passageway according to the current design.\\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence."@en ; + rdfs:label "Slope"@en . + +PSD:FinishColor a rdf:Property ; + rdfs:comment "Finish color for cooled beam."@en , "The finish color for the air terminal."@en ; + rdfs:label "FinishColor"@en , "Finish color"@en . + +PSD:DischargePressureLoss + a rdf:Property ; + rdfs:comment "Fan discharge pressure loss associated with the discharge arrangement."@en ; + rdfs:label "DischargePressureLoss"@en . + +PSD:WeatherDataDate a rdf:Property ; + rdfs:comment "The date for which the weather data was gathered."@en ; + rdfs:label "WeatherDataDate"@en . + +PSD:ShortOutsideTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short outside top bar."@en ; + rdfs:label "ShortOutsideTopBarPitch"@en . + +PSD:TotalEffectiveness + a rdf:Property ; + rdfs:comment "Total heat transfer effectiveness: The ratio of heat transfer to the maximum possible heat transfer."@en ; + rdfs:label "TotalEffectiveness"@en . + +PSD:NominalThickness a rdf:Property ; + rdfs:comment "The nominal thickness of the panel."@en , "The nominal thickness of the work surface."@en ; + rdfs:label "NominalThickness"@en , "Nominal thickness"@en . + +PSD:DeliveryType a rdf:Property ; + rdfs:comment "Determines how the accessory will be delivered to the site."@en ; + rdfs:label "Delivery type"@en . + +PSD:ControlDamperOperation + a rdf:Property ; + rdfs:comment "The inherent characteristic of the control damper operation."@en ; + rdfs:label "ControlDamperOperation"@en . + +PSD:SupplyWaterTemperatureCooling + a rdf:Property ; + rdfs:comment "Supply water temperature in cooling mode."@en ; + rdfs:label "SupplyWaterTemperatureCooling"@en . + +PSD:Layup a rdf:Property ; + rdfs:comment "Configuration of the lamination."@en ; + rdfs:label "Layup"@en . + +PSD:AdmixturesDescription + a rdf:Property ; + rdfs:label "Admixtures description"@en . + +PSD:ArtificialLighting + a rdf:Property ; + rdfs:comment "Indication whether this space requires artificial lighting (as natural lighting would be not sufficient). (TRUE) indicates yes (FALSE) otherwise."@en ; + rdfs:label "ArtificialLighting"@en . + +PSD:FormStrippingStrength + a rdf:Property ; + rdfs:label "Form stripping strength"@en . + +PSD:OutputCapacityCurve + a rdf:Property ; + rdfs:comment "Partial output capacity curve (as a function of water temperature); Q = f (Twater)."@en ; + rdfs:label "OutputCapacityCurve"@en . + +PSD:PieceMark a rdf:Property ; + rdfs:comment "Defines a unique piece for production purposes. All pieces with the same piece mark value are identical and interchangeable. The piece mark may be composed of sub-parts that have specific locally defined meaning (e.g. B-1A may denote a beam, of generic type 1 and specific shape A)."@en ; + rdfs:label "Piece mark"@en , "PieceMark"@en . + +PSD:ReturnAirFractionRange + a rdf:Property ; + rdfs:comment "Allowable return air fraction range as a fraction of discharge airflow."@en ; + rdfs:label "Return air fraction range"@en . + +PSD:InstallationMethod + a rdf:Property ; + rdfs:comment "Method of installation of cable/conductor. Installation methods are typically defined by reference in standards such as IEC 60364-5-52, table 52A-1 or BS7671 Appendix 4 Table 4A1 etc. Selection of the value to be used should be determined from such a standard according to local usage."@en ; + rdfs:label "InstallationMethod"@en . + +PSD:StemTopChamfer a rdf:Property ; + rdfs:comment "Stem top chamfer of the profile."@en ; + rdfs:label "StemTopChamfer"@en . + +PSD:FunctionalUnitReference + a rdf:Property ; + rdfs:label "Functional unit reference"@en . + +PSD:NeckArea a rdf:Property ; + rdfs:comment "Neck area of the air terminal."@en ; + rdfs:label "Neck area"@en . + +PSD:GroupCode a rdf:Property ; + rdfs:comment "e.g. panels, worksurfaces, storage, etc."@en ; + rdfs:label "GroupCode"@en . + +PSD:NominalHeatingCapacity + a rdf:Property ; + rdfs:comment "Nominal heating capacity."@en ; + rdfs:label "NominalHeatingCapacity"@en . + +PSD:SolarRefractionIndex + a rdf:Property ; + rdfs:comment "Index of refraction (solar) defines the \\\"bending\\\" of the solar ray when it passes from one medium into another."@en ; + rdfs:label "Solar refraction index"@en . + +PSD:CrossingUpperBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the crossing upper bar."@en ; + rdfs:label "CrossingUpperBarPitch"@en . + +PSD:PrevailingWindVelocity + a rdf:Property ; + rdfs:comment "The design wind velocity coming from the direction specified by the PrevailingWindDirection attribute."@en ; + rdfs:label "PrevailingWindVelocity"@en . + +PSD:DiagonalTrussCrossBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the diagonal cross-bars."@en ; + rdfs:label "DiagonalTrussCrossBarDiameter"@en . + +PSD:EffectiveArea a rdf:Property ; + rdfs:comment "Effective discharge area of the air terminal."@en ; + rdfs:label "Effective area"@en . + +PSD:AutomaticCondensateDischarge + a rdf:Property ; + rdfs:comment "Whether or not the condensing water or oil is discharged automatically from the filter."@en ; + rdfs:label "AutomaticCondensateDischarge"@en . + +PSD:AssessmentDescription + a rdf:Property ; + rdfs:comment "Qualitative description of the condition."@en ; + rdfs:label "Assessment description"@en . + +PSD:Function a rdf:Property ; + rdfs:comment "Type of function for which the conductor is intended."@en ; + rdfs:label "Function"@en . + +PSD:YearOfConstruction + a rdf:Property ; + rdfs:label "Year of construction"@en . + +PSD:TotalArea a rdf:Property ; + rdfs:comment "Total planned area for the site. Used for programming the site space."@en ; + rdfs:label "Total area"@en . + +PSD:VacancyRateInCategoryNow + a rdf:Property ; + rdfs:comment "Percentage of vacancy found in the particular category currently."@en ; + rdfs:label "Vacancy rate in category now"@en . + +PSD:HasHotGasBypass a rdf:Property ; + rdfs:comment "Whether or not hot gas bypass is provided for the compressor. TRUE = Yes, FALSE = No."@en ; + rdfs:label "Has hot gas bypass"@en . + +PSD:Unit a rdf:Property ; + rdfs:label "Unit"@en . + +PSD:PlayerMediaFormat + a rdf:Property ; + rdfs:comment "Indicates supported media formats."@en ; + rdfs:label "PlayerMediaFormat"@en . + +PSD:HasCoating a rdf:Property ; + rdfs:comment "TRUE if the fin has a coating, FALSE if it does not."@en ; + rdfs:label "HasCoating"@en . + +PSD:NominalCapacity a rdf:Property ; + rdfs:comment "Compressor nameplate capacity."@en ; + rdfs:label "Nominal capacity"@en . + +PSD:BuildableArea a rdf:Property ; + rdfs:comment "The ratio of the utilization, TotalArea / BuildableArea, expressed as a maximum value. The ratio value may be used to derive BuildableArea."@en ; + rdfs:label "Buildable area"@en . + +PSD:WarrantyEndDate a rdf:Property ; + rdfs:comment "The date on which the warranty expires."@en ; + rdfs:label "WarrantyEndDate"@en . + +PSD:IsCoated a rdf:Property ; + rdfs:label "Is coated"@en . + +PSD:LandTitleID a rdf:Property ; + rdfs:comment "Identification number assigned by the statutory registration authority to the title to a land parcel."@en ; + rdfs:label "LandTitleID"@en . + +PSD:FittingLossFactor + a rdf:Property ; + rdfs:comment "A factor that determines the pressure loss due to friction through the fitting."@en ; + rdfs:label "Fitting loss factor"@en . + +PSD:ExteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:comment "Exterior heat transfer coefficient associated with exterior surface area."@en ; + rdfs:label "ExteriorHeatTransferCoefficient"@en . + +PSD:IsSwitch a rdf:Property ; + rdfs:comment "Identifies if the sensor also functions as a switch at the set point (=TRUE) or not (= FALSE)."@en ; + rdfs:label "IsSwitch"@en . + +PSD:propertyDef a owl:ObjectProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( PSD:PropertySetDef PSD:TypeComplexProperty ) + ] ; + rdfs:label "Property definition"@en ; + rdfs:range PSD:PropertyDef . + +PSD:MaximumAirFlowRate + a rdf:Property ; + rdfs:comment "Maximum allowable air flow rate."@en ; + rdfs:label "MaximumAirFlowRate"@en . + +PSD:PhotochemicalOzoneFormation + a rdf:Property ; + rdfs:label "Photochemical ozone formation"@en . + +PSD:SprinklerType a rdf:Property ; + rdfs:comment "Identifies the predefined types of sprinkler from which the type required may be set."@en ; + rdfs:label "SprinklerType"@en . + +PSD:GasDetected a rdf:Property ; + rdfs:comment "Identification of the gas that is being detected, according to chemical formula. For example, carbon monoxide is 'CO', carbon dioxide is 'CO2', oxygen is 'O2'."@en ; + rdfs:label "GasDetected"@en . + +PSD:NominalRotationSpeed + a rdf:Property ; + rdfs:comment "Pump rotational speed under nominal conditions."@en , "Nominal fan wheel speed."@en ; + rdfs:label "NominalRotationSpeed"@en , "Nominal rotation speed"@en . + +PSD:LightEmitterNominalPower + a rdf:Property ; + rdfs:comment "Light emitter nominal power."@en ; + rdfs:label "Light emitter nominal power"@en . + +PSD:TrippingUnitReleaseCurrent + a rdf:Property ; + rdfs:comment "The value of tripping or residual current for which the device has the possibility to be equipped. The values are given in mA."@en ; + rdfs:label "TrippingUnitReleaseCurrent"@en . + +PSD:WireLoopBasePlateThickness + a rdf:Property ; + rdfs:comment "The thickness of the base plate."@en ; + rdfs:label "WireLoopBasePlateThickness"@en . + +PSD:DiagonalTrussHeight + a rdf:Property ; + rdfs:comment "The overall height of the truss connector."@en ; + rdfs:label "DiagonalTrussHeight"@en . + +PSD:HeatTransferSurfaceArea + a rdf:Property ; + rdfs:comment "Total heat transfer area of the vessel."@en ; + rdfs:label "Heat transfer surface area"@en . + +PSD:ClassOfService a rdf:Property ; + rdfs:comment "A classification of usage of the hose reel that may be applied."@en ; + rdfs:label "ClassOfService"@en . + +PSD:I1 a rdf:Property ; + rdfs:comment "The (thermal) lower testing current limit in [x In], indicating that for currents lower than I1, the tripping time shall be longer than the associated tripping time, T2."@en ; + rdfs:label "I1"@en . + +PSD:HasFan a rdf:Property ; + rdfs:comment "Terminal box has a fan inside (fan powered box)."@en ; + rdfs:label "Has fan"@en . + +PSD:CoreBaseWidth a rdf:Property ; + rdfs:comment "Core base width of the profile."@en ; + rdfs:label "CoreBaseWidth"@en . + +PSD:RemoteReading a rdf:Property ; + rdfs:comment "Indicates whether the meter has a connection for remote reading through connection of a communication device (set TRUE) or not (set FALSE)."@en ; + rdfs:label "Remote reading"@en . + +PSD:DischargeCoefficient + a rdf:Property ; + rdfs:comment "The coefficient of flow at the sprinkler."@en ; + rdfs:label "DischargeCoefficient"@en . + +PSD:LowerHeatingValue + a rdf:Property ; + rdfs:comment "Lower Heating Value is defined as the amount of energy released (MJ/kg) when a fuel is burned completely, and H2O is in vapor form in the combustion products."@en ; + rdfs:label "LowerHeatingValue"@en . + +PSD:OverallEfficiency + a rdf:Property ; + rdfs:comment "Total efficiency of motor and fan."@en , "The pump and motor overall operational efficiency."@en ; + rdfs:label "OverallEfficiency"@en . + +PSD:Electricity a rdf:Property ; + rdfs:comment "The amount of electricity consumed during the period specified in the time series."@en ; + rdfs:label "Electricity"@en . + +PSD:ThicknessSwelling + a rdf:Property ; + rdfs:comment "Swelling ratio relative to board depth."@en ; + rdfs:label "ThicknessSwelling"@en . + +PSD:TimeTolerance1 a rdf:Property ; + rdfs:comment "The tolerance for the time of time/current-curve in [%]."@en ; + rdfs:label "TimeTolerance1"@en . + +PSD:T5 a rdf:Property ; + rdfs:comment "The electromagnetic testing time in [s] associated with the testing currents I4 and I5, i.e. electromagnetic tripping time"@en ; + rdfs:label "T5"@en . + +PSD:OutsideDiameter a rdf:Property ; + rdfs:comment "Actual outside diameter of the tube in the tube bundle."@en ; + rdfs:label "OutsideDiameter"@en . + +PSD:propertySetDef a owl:ObjectProperty ; + rdfs:domain PSD:RequiredPset ; + rdfs:range PSD:PropertySetDef . + +PSD:FlowControlType a rdf:Property ; + rdfs:comment "Type of flow control element that may be included as a part of the construction of the air terminal."@en ; + rdfs:label "Flow control type"@en . + +PSD:BackupSupplySystem + a rdf:Property ; + rdfs:comment "The type of backup supply system."@en ; + rdfs:label "BackupSupplySystem"@en . + +PSD:SpecificHeatTemperatureDerivative + a rdf:Property ; + rdfs:comment "Specific heat temperature derivative."@en ; + rdfs:label "Specific heat temperature derivative"@en . + +PSD:Stroke a rdf:Property ; + rdfs:comment "Indicates the maximum distance the actuator must traverse."@en ; + rdfs:label "Stroke"@en . + +PSD:FaceVelocity a rdf:Property ; + rdfs:comment "Air velocity through the coil."@en ; + rdfs:label "FaceVelocity"@en . + +PSD:StaggeredRowSpacing + a rdf:Property ; + rdfs:comment "Staggered tube row spacing."@en ; + rdfs:label "StaggeredRowSpacing"@en . + +PSD:FixtureHeight a rdf:Property ; + rdfs:comment "The height of the fixture, such as the text height of an exit sign."@en ; + rdfs:label "FixtureHeight"@en . + +PSD:CoolingRelativeHumidity + a rdf:Property ; + rdfs:comment "Inside relative humidity for cooling design."@en ; + rdfs:label "CoolingRelativeHumidity"@en . + +PSD:InputFlowrate a rdf:Property ; + rdfs:comment "Maximum hydraulic flowrate requirement."@en ; + rdfs:label "Input flowrate"@en . + +PSD:CorrectionFactorForCooling + a rdf:Property ; + rdfs:comment "Correction factor k as a function of water flow rate (used to calculate cooling capacity)."@en ; + rdfs:label "CorrectionFactorForCooling"@en . + +PSD:NumberOfTreads a rdf:Property ; + rdfs:label "Number of treads"@en . + +PSD:OccupancyDiversity + a rdf:Property ; + rdfs:comment "Diversity factor that may be applied to the number of people in the space."@en ; + rdfs:label "OccupancyDiversity"@en . + +PSD:Brightness a rdf:Property ; + rdfs:comment "Indicates the display brightness."@en ; + rdfs:label "Brightness"@en . + +PSD:UltimateStrain a rdf:Property ; + rdfs:comment "A measure of the (engineering) strain at the state of ultimate stress of the material."@en ; + rdfs:label "Ultimate strain"@en . + +PSD:SumpHeaterPower a rdf:Property ; + rdfs:comment "Electrical heat power of sump heater."@en ; + rdfs:label "SumpHeaterPower"@en . + +PSD:SpaceTemperature a rdf:Property ; + rdfs:comment "Temperature of the space."@en ; + rdfs:label "SpaceTemperature"@en . + +PSD:Location1Global a rdf:Property ; + rdfs:comment "Global X,Y,Z coordinates of the point in which Thickness1 is given"@en ; + rdfs:label "Location1Global"@en . + +PSD:ProductionYear a rdf:Property ; + rdfs:comment "The year of production of the manufactured item."@en ; + rdfs:label "ProductionYear"@en . + +PSD:DisplayType a rdf:Property ; + rdfs:comment "Indicates the type of display."@en ; + rdfs:label "DisplayType"@en . + +PSD:KeyHeight a rdf:Property ; + rdfs:comment "Key height of the profile."@en ; + rdfs:label "KeyHeight"@en . + +PSD:YDirectionUpperBarCount + a rdf:Property ; + rdfs:comment "The number of bars with Y direction upper bar."@en ; + rdfs:label "YDirectionUpperBarCount"@en . + +PSD:KeyDepth a rdf:Property ; + rdfs:comment "Key depth of the profile."@en ; + rdfs:label "KeyDepth"@en . + +PSD:SkillLevel a rdf:Property ; + rdfs:comment "Skill level exhibited by the actor and which indicates an extent of their capability to perform actions on the artefacts upon which they can act."@en ; + rdfs:label "Skill level"@en . + +PSD:Exclusions a rdf:Property ; + rdfs:comment "Items, conditions or actions that may be excluded from the warranty or that may cause the warranty to become void."@en ; + rdfs:label "Exclusions"@en . + +PSD:IsothermalMoistureCapacity + a rdf:Property ; + rdfs:comment "Based on water vapor density."@en ; + rdfs:label "IsothermalMoistureCapacity"@en . + +PSD:FireResistanceRating + a rdf:Property ; + rdfs:comment "Measure of the fire resistance rating in hours (e.g., 1.5 hours, 2 hours, etc.)."@en ; + rdfs:label "FireResistanceRating"@en . + +PSD:CoreTopWidth a rdf:Property ; + rdfs:comment "Core top width of the profile."@en ; + rdfs:label "CoreTopWidth"@en . + +PSD:BoreSize a rdf:Property ; + rdfs:comment "The nominal bore of the pipe flange."@en ; + rdfs:label "BoreSize"@en . + +PSD:IsUsed a rdf:Property ; + rdfs:comment "Indicates whether the element is being used in a workstation (= TRUE) or not.(= FALSE)."@en ; + rdfs:label "IsUsed"@en . + +PSD:InteriorHeatTransferCoefficient + a rdf:Property ; + rdfs:comment "Interior heat transfer coefficient associated with interior surface area."@en ; + rdfs:label "InteriorHeatTransferCoefficient"@en . + +PSD:Performance a rdf:Property ; + rdfs:comment "Water temperature change as a function of wet-bulb temperature, water entering temperature, water flow rate, air flow rate, Tdiff = f ( Twet-bulb, Twater,in, mwater, mair)."@en ; + rdfs:label "Performance"@en . + +PSD:TotalCoolingCapacity + a rdf:Property ; + rdfs:comment "Total cooling capacity. This includes cooling capacity of beam and cooling capacity of supply air."@en ; + rdfs:label "TotalCoolingCapacity"@en . + +PSD:AdjustmentRange a rdf:Property ; + rdfs:comment "Upper and lower current adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST."@en , "Upper and lower time adjustment limits for an AdjustmentValueType = RANGE. Note that this property should not have a value for an AdjustmentValueType = LIST."@en ; + rdfs:label "AdjustmentRange"@en . + +PSD:System a rdf:Property ; + rdfs:comment "he building service system that requires the provision for voids, e.g. 'Air Conditioning', 'Plumbing', 'Electro', etc."@en ; + rdfs:label "System"@en . + +PSD:RateOfTemperatureRise + a rdf:Property ; + rdfs:comment "The rate of temperature rise that is to be sensed as being hazardous."@en ; + rdfs:label "RateOfTemperatureRise"@en . + +PSD:UAcurves a rdf:Property ; + rdfs:comment "UV = f (VExterior, VInterior), UV as a function of interior and exterior fluid flow velocity at the entrance."@en ; + rdfs:label "UAcurves"@en . + +PSD:UpperVaporResistanceFactor + a rdf:Property ; + rdfs:comment "The vapor permeability relationship of air/material (typically value > 1), measured in high relative humidity (typically in 95/50 % RH)."@en ; + rdfs:label "UpperVaporResistanceFactor"@en . + +PSD:SpeakerDriverSize + a rdf:Property ; + rdfs:comment "Indicates the number of drivers and their sizes."@en ; + rdfs:label "SpeakerDriverSize"@en . + +PSD:AirSideSystemType + a rdf:Property ; + rdfs:comment "This enumeration specifies the basic types of possible air side systems (e.g., Constant Volume, Variable Volume, etc.)."@en ; + rdfs:label "Air side system type"@en . + +PSD:InternalControl a rdf:Property ; + rdfs:comment "Internal modulation control."@en ; + rdfs:label "Internal control"@en . + +PSD:TemperatureSensorType + a rdf:Property ; + rdfs:comment "Enumeration that Identifies the types of temperature sensor that can be specified."@en ; + rdfs:label "TemperatureSensorType"@en . + +PSD:DurabilityRating a rdf:Property ; + rdfs:label "Durability rating"@en . + +PSD:AudioAmplification + a rdf:Property ; + rdfs:comment "Indicates audio amplification frequency ranges."@en ; + rdfs:label "AudioAmplification"@en . + +PSD:WarrantyIdentifier + a rdf:Property ; + rdfs:comment "The identifier assigned to a warranty."@en ; + rdfs:label "WarrantyIdentifier"@en . + +PSD:SupportDuringTransportDescription + a rdf:Property ; + rdfs:label "Support during transport description"@en . + +PSD:TypePropertyListValue + a owl:Class ; + rdfs:label "Type property list value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:valueItem + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:unitType + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:dataType + ] ; + owl:disjointWith PSD:TypeComplexProperty , PSD:TypePropertyTableValue , PSD:TypePropertySingleValue , PSD:TypePropertyEnumeratedValue , PSD:TypePropertyBoundedValue , PSD:TypePropertyReferenceValue . + +PSD:TransportationStrength + a rdf:Property ; + rdfs:label "Transportation strength"@en . + +PSD:ConnectionSize a rdf:Property ; + rdfs:comment "The connection size of the to and from the pump."@en , "Duct connection diameter."@en , "Size of the inlet connection to the sprinkler."@en , "Defines the size of inlet and outlet pipe connections to the meter."@en ; + rdfs:label "ConnectionSize"@en . + +<> a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with TopBraid Composer" . + +PSD:TouchScreen a rdf:Property ; + rdfs:comment "Indicates touchscreen support."@en ; + rdfs:label "TouchScreen"@en . + +PSD:RatedVoltage a rdf:Property ; + rdfs:comment "The range of allowed voltage that a device is certified to handle. The upper bound of this value is the maximum."@en ; + rdfs:label "RatedVoltage"@en . + +PSD:FlangeStandard a rdf:Property ; + rdfs:comment "Designation of the standard describing the flange table."@en ; + rdfs:label "FlangeStandard"@en . + +PSD:StratosphericOzoneLayerDestructionPerUnit + a rdf:Property ; + rdfs:label "Stratospheric ozone layer destruction per unit"@en . + +PSD:GasType a rdf:Property ; + rdfs:comment "Defines the types of gas that may be specified."@en ; + rdfs:label "GasType"@en . + +PSD:InLineRowSpacing a rdf:Property ; + rdfs:comment "In-line tube row spacing."@en ; + rdfs:label "InLineRowSpacing"@en . + +PSD:InletConnectionSize + a rdf:Property ; + rdfs:comment "Size of the inlet connection."@en , "Size of the inlet connection to the hose reel."@en ; + rdfs:label "InletConnectionSize"@en . + +PSD:Thickness3 a rdf:Property ; + rdfs:comment "Third thickness parameter of a surface member with varying thickness"@en ; + rdfs:label "Thickness3"@en . + +PSD:NominalSurroundingHumidityCooling + a rdf:Property ; + rdfs:comment "Nominal surrounding humidity (refers to nominal cooling capacity)."@en ; + rdfs:label "NominalSurroundingHumidityCooling"@en . + +PSD:IsBuiltIn a rdf:Property ; + rdfs:comment "Indicates whether the furniture type is intended to be 'built in' i.e. physically attached to a building or facility (= TRUE) or not i.e. Loose and movable (= FALSE)."@en ; + rdfs:label "Is built in"@en . + +PSD:FlangeBaseFillet a rdf:Property ; + rdfs:comment "Flange base fillet of the profile."@en ; + rdfs:label "FlangeBaseFillet"@en . + +PSD:MinimumPartLoadRatio + a rdf:Property ; + rdfs:comment "Minimum part load ratio as a fraction of nominal capacity."@en ; + rdfs:label "Minimum part load ratio"@en . + +PSD:ReturnWaterTemperatureHeating + a rdf:Property ; + rdfs:comment "Return water temperature in heating mode."@en ; + rdfs:label "ReturnWaterTemperatureHeating"@en . + +PSD:AdjustmentValues a rdf:Property ; + rdfs:comment "A list of current adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE."@en , "A list of time adjustment values that may be applied to a tripping unit for an AdjustmentValueType = LIST. A minimum of 1 and a maximum of 16 adjustment values may be specified. Note that this property should not have a value for an AdjustmentValueType = RANGE."@en ; + rdfs:label "AdjustmentValues"@en . + +PSD:SmokeStop a rdf:Property ; + rdfs:label "Smoke stop"@en . + +PSD:People a rdf:Property ; + rdfs:comment "Heat gains and losses from people."@en ; + rdfs:label "People"@en . + +PSD:SetPointRadioactivity + a rdf:Property ; + rdfs:comment "The radioactivity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointRadioactivity"@en . + +PSD:DissolvedSolidsContent + a rdf:Property ; + rdfs:comment "Fraction of the dissolved solids to the total amount of water. This is measured in weight of dissolved solids per weight of water and is therefore unitless."@en ; + rdfs:label "DissolvedSolidsContent"@en . + +PSD:FlangeDiameter a rdf:Property ; + rdfs:comment "Overall diameter of the flange."@en ; + rdfs:label "FlangeDiameter"@en . + +PSD:LifeCyclePhase a rdf:Property ; + rdfs:label "Life cycle phase"@en . + +PSD:ClearWidth a rdf:Property ; + rdfs:comment "Actual clear width measured as the clear space for accessibility and egress; it is a measured distance betwen the two handrails or the wall and a handrail on a ramp.\\nThe shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence."@en ; + rdfs:label "Clear width"@en . + +PSD:ContrastRatio a rdf:Property ; + rdfs:comment "Indicates the display contrast ratio."@en ; + rdfs:label "ContrastRatio"@en . + +PSD:ExhaustAir a rdf:Property ; + rdfs:comment "Loads from exhaust air."@en ; + rdfs:label "ExhaustAir"@en . + +PSD:NominalParticleGeometricMeanDiameter + a rdf:Property ; + rdfs:comment "Particle geometric mean diameter associated with nominal efficiency."@en ; + rdfs:label "Nominal particle geometric mean diameter"@en . + +PSD:LightingLoadIntensity + a rdf:Property ; + rdfs:comment "Average lighting load intensity in the space per unit area (PowerMeasure/IfcAreaMeasure)."@en ; + rdfs:label "LightingLoadIntensity"@en . + +PSD:PressureDrop a rdf:Property ; + rdfs:comment "Pressure drop."@en , "Drop in total pressure between inlet and outlet at nominal air-flow rate."@en ; + rdfs:label "PressureDrop"@en . + +PSD:OperatingMode a rdf:Property ; + rdfs:comment "Identifies the operating mode of the boiler."@en ; + rdfs:label "Operating mode"@en . + +PSD:Layers a rdf:Property ; + rdfs:comment "Number of layers."@en ; + rdfs:label "Layers"@en . + +PSD:c a rdf:Property ; + rdfs:comment "Measure c according to ISO 2553"@en ; + rdfs:label "c"@en . + +PSD:ExhaustAirFlowRate + a rdf:Property ; + rdfs:comment "Exhaust air flow rate in the space."@en ; + rdfs:label "ExhaustAirFlowRate"@en . + +PSD:PortNumber a rdf:Property ; + rdfs:comment "The port index for logically ordering the port within the containing element or element type."@en ; + rdfs:label "PortNumber"@en . + +PSD:Application a rdf:Property ; + rdfs:comment "Indicates application of actuator or humidifier application.\\n\\nFixed: Humidifier installed in a ducted flow distribution system.\\nPortable: Humidifier is not installed in a ducted flow distribution system."@en , "The application of the unitary control element."@en ; + rdfs:label "Application"@en . + +PSD:MaximumWorkingPressure + a rdf:Property ; + rdfs:comment "Maximum working pressure."@en , "Maximum pressure that the object is manufactured to withstand."@en ; + rdfs:label "MaximumWorkingPressure"@en . + +PSD:FrameDepth a rdf:Property ; + rdfs:comment "The length (or depth) of the damper frame."@en ; + rdfs:label "FrameDepth"@en . + +PSD:RecirculatedAir a rdf:Property ; + rdfs:comment "Loads from recirculated air."@en ; + rdfs:label "RecirculatedAir"@en . + +PSD:MaximumOutletPressure + a rdf:Property ; + rdfs:comment "Maximum steam outlet pressure."@en ; + rdfs:label "MaximumOutletPressure"@en . + +PSD:ColumnShoeCasingWidth + a rdf:Property ; + rdfs:comment "The width of the column shoe casing."@en ; + rdfs:label "ColumnShoeCasingWidth"@en . + +PSD:CoverWidth a rdf:Property ; + rdfs:comment "The length measured along the y-axis in the local coordinate system of the cover of the drain."@en , "The length measured along the x-axis in the local coordinate system of the cover of the oil interceptor."@en , "The length measured along the y-axis in the local coordinate system of the cover of the waste."@en ; + rdfs:label "CoverWidth"@en . + +PSD:HeatingWetBulb a rdf:Property ; + rdfs:comment "Outside wet bulb temperature for heating design."@en ; + rdfs:label "HeatingWetBulb"@en . + +PSD:Duration a rdf:Property ; + rdfs:comment "The period of time for the lease."@en ; + rdfs:label "Duration"@en . + +PSD:VentilationIndoorAir + a rdf:Property ; + rdfs:comment "Ventilation loads from indoor air."@en ; + rdfs:label "VentilationIndoorAir"@en . + +PSD:WaterContent a rdf:Property ; + rdfs:comment "Weight of water content within the heater."@en ; + rdfs:label "WaterContent"@en . + +PSD:Intermittent a rdf:Property ; + rdfs:comment "If fillet weld, intermittent or not"@en ; + rdfs:label "Intermittent"@en . + +PSD:EquipmentSensible + a rdf:Property ; + rdfs:comment "Heat gains and losses from equipment."@en ; + rdfs:label "EquipmentSensible"@en . + +PSD:SolarReflectance a rdf:Property ; + rdfs:label "Solar reflectance"@en . + +PSD:SetPointRadiation + a rdf:Property ; + rdfs:comment "The radiation power value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointRadiation"@en . + +PSD:Length a rdf:Property ; + rdfs:comment "Length of the fin as measured parallel to the direction of airflow."@en , "The finished length of the silencer."@en , "The length of the sump."@en , "The length of the pit."@en , "Length of the tubes in the tube bundle."@en ; + rdfs:label "Length"@en . + +PSD:RequestComments a rdf:Property ; + rdfs:comment "Comments that may be made on the request."@en ; + rdfs:label "Request comments"@en . + +PSD:HasProtectiveEarth + a rdf:Property ; + rdfs:comment "One core has protective earth marked insulation, Yellow/Green."@en ; + rdfs:label "HasProtectiveEarth"@en . + +PSD:TypePropertyTableValue + a owl:Class ; + rdfs:label "Type property table value"@en ; + rdfs:subClassOf PSD:PropertyType ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:definingValue + ] ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty PSD:definedValue + ] ; + owl:disjointWith PSD:TypePropertySingleValue , PSD:TypePropertyListValue , PSD:TypeComplexProperty , PSD:TypePropertyBoundedValue , PSD:TypePropertyReferenceValue , PSD:TypePropertyEnumeratedValue . + +PSD:ShortInsideCenterLowerBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the short inside center lower bar."@en ; + rdfs:label "ShortInsideCenterLowerBarPitch"@en . + +PSD:FlowRating a rdf:Property ; + rdfs:comment "Actual flow capacity for the gutter. Value of 0.00 means this value has not been set."@en ; + rdfs:label "FlowRating"@en . + +PSD:HorizontalSpacing + a rdf:Property ; + rdfs:comment "Horizontal spacing between tubes in the tube bundle."@en ; + rdfs:label "HorizontalSpacing"@en . + +PSD:lowerBoundValue a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:domain PSD:TypePropertyBoundedValue ; + rdfs:label "Lower bound value"@en ; + rdfs:range xsd:string . + +PSD:BoltholePitch a rdf:Property ; + rdfs:comment "Diameter of the circle along which the boltholes are placed."@en ; + rdfs:label "BoltholePitch"@en . + +PSD:ClassificationAuthority + a rdf:Property ; + rdfs:comment "The name of the authority that applies the classification of service to the hose reel (e.g. NFPA/FEMA)."@en ; + rdfs:label "ClassificationAuthority"@en . + +PSD:AssetAccountingType + a rdf:Property ; + rdfs:comment "Identifies the predefined types of risk from which the type required may be set."@en ; + rdfs:label "Asset accounting type"@en . + +PSD:FluidFlowLeakage a rdf:Property ; + rdfs:comment "Volumetric leakage flow rate."@en ; + rdfs:label "FluidFlowLeakage"@en . + +PSD:FusibleLinkTemperature + a rdf:Property ; + rdfs:comment "The temperature that the fusible link melts."@en ; + rdfs:label "FusibleLinkTemperature"@en . + +PSD:NominalFilterFaceVelocity + a rdf:Property ; + rdfs:comment "Filter face velocity."@en ; + rdfs:label "Nominal filter face velocity"@en . + +PSD:CondensingTemperature + a rdf:Property ; + rdfs:comment "Refrigerant condensing temperature."@en ; + rdfs:label "CondensingTemperature"@en . + +PSD:NominalCoolingCapacity + a rdf:Property ; + rdfs:comment "Nominal cooling capacity."@en ; + rdfs:label "NominalCoolingCapacity"@en . + +PSD:NonRenewableEnergyConsumption + a rdf:Property ; + rdfs:label "Non renewable energy consumption"@en . + +PSD:OutdoorEnvironment + a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the outdoor environment (where appropriate)"@en ; + rdfs:label "OutdoorEnvironment"@en . + +PSD:TunerMode a rdf:Property ; + rdfs:comment "Indicates the tuner modes (or bands). For example, 'AnalogCable', 'DigitalAir', 'AM', 'FM'."@en ; + rdfs:label "TunerMode"@en . + +PSD:SiteCoverageRatio + a rdf:Property ; + rdfs:comment "The ratio of the utilization, TotalArea / BuildableArea, expressed as a maximum value. The ratio value may be used to derive BuildableArea."@en ; + rdfs:label "SiteCoverageRatio"@en . + +PSD:EnergyGainSensible + a rdf:Property ; + rdfs:comment "The sum of total energy gains for the spaces served by the system during the peak cooling conditions, plus any system-level sensible energy gains."@en ; + rdfs:label "Energy gain sensible"@en . + +PSD:NominalDiameterOrWidth + a rdf:Property ; + rdfs:comment "The nominal diameter or width of the duct segment."@en ; + rdfs:label "NominalDiameterOrWidth"@en . + +PSD:AirflowType a rdf:Property ; + rdfs:comment "Enumeration defining the functional type of air flow through the terminal."@en ; + rdfs:label "AirflowType"@en . + +PSD:LoadSafetyFactor a rdf:Property ; + rdfs:comment "Load safety factor."@en ; + rdfs:label "LoadSafetyFactor"@en , "Load safety factor"@en . + +PSD:HasOpening a rdf:Property ; + rdfs:comment "indicates whether the panel has an opening (= TRUE) or not (= FALSE)."@en ; + rdfs:label "HasOpening"@en . + +PSD:FrameSize a rdf:Property ; + rdfs:comment "Designation of the frame size according to the named range of frame sizes designated at the place of use or according to a given standard."@en ; + rdfs:label "FrameSize"@en . + +PSD:HumidityEffectiveness + a rdf:Property ; + rdfs:comment "Humidity heat transfer effectiveness: The ratio of primary airflow absolute humidity changes to maximum possible absolute humidity changes."@en ; + rdfs:label "HumidityEffectiveness"@en . + +PSD:CompressorCapacity + a rdf:Property ; + rdfs:comment "The product of the ideal capacity and the overall volumetric efficiency of the compressor."@en ; + rdfs:label "CompressorCapacity"@en . + +PSD:Addressablility a rdf:Property ; + rdfs:comment "The type of addressability."@en ; + rdfs:label "Addressablility"@en . + +PSD:GlassColor a rdf:Property ; + rdfs:label "Glass color"@en . + +PSD:schema a owl:FunctionalProperty , owl:DatatypeProperty ; + rdfs:comment "Sub schema name, i.e., \"IfcSharedBldgElements\"."@en ; + rdfs:domain PSD:IfcVersion ; + rdfs:label "Schema"@en ; + rdfs:range xsd:string . + +PSD:GlazingAreaFraction + a rdf:Property ; + rdfs:label "Glazing area fraction"@en . + +PSD:AppearanceGrade a rdf:Property ; + rdfs:comment "Grade with respect to visual quality."@en ; + rdfs:label "AppearanceGrade"@en . + +PSD:PictogramEscapeDirection + a rdf:Property ; + rdfs:comment "The direction of escape pictogram."@en ; + rdfs:label "PictogramEscapeDirection"@en . + +PSD:ShapeDescription a rdf:Property ; + rdfs:comment "A description of the shape of the work surface e.g. corner square, rectangle, etc."@en ; + rdfs:label "ShapeDescription"@en . + +PSD:NumberOfParallelCircuits + a rdf:Property ; + rdfs:comment "Number of parallel circuits."@en ; + rdfs:label "NumberOfParallelCircuits"@en . + +PSD:ReleaseCurrent a rdf:Property ; + rdfs:comment "The release current in [x In] for the initial tripping of the S-function."@en ; + rdfs:label "ReleaseCurrent"@en . + +PSD:EvaporatorMediumType + a rdf:Property ; + rdfs:comment "ColdLiquid: Evaporator is using liquid type of fluid to exchange heat with refrigerant.\\nColdAir: Evaporator is using air to exchange heat with refrigerant."@en ; + rdfs:label "Evaporator medium type"@en . + +PSD:CoverageArea a rdf:Property ; + rdfs:comment "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)."@en , "The area that the sprinkler is designed to protect."@en , "The area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)."@en ; + rdfs:label "CoverageArea"@en . + +PSD:SetPointContact a rdf:Property ; + rdfs:comment "The contact value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value."@en ; + rdfs:label "SetPointContact"@en . + +PSD:Enabled a rdf:Property ; + rdfs:comment "Indicates whether alarm is enabled or disabled over time."@en ; + rdfs:label "Enabled"@en . + +PSD:HasTurbulator a rdf:Property ; + rdfs:comment "TRUE if the tube has a turbulator, FALSE if it does not."@en ; + rdfs:label "HasTurbulator"@en . + +PSD:PressureRegulatorSetting + a rdf:Property ; + rdfs:comment "Pressure that is automatically maintained in the tank."@en ; + rdfs:label "PressureRegulatorSetting"@en . + +PSD:AcousticRating a rdf:Property ; + rdfs:label "Acoustic rating"@en . + +PSD:CurrentCarryingCapasity + a rdf:Property ; + rdfs:comment "Maximum value of electric current which can be carried continuously by a conductor, a device or an apparatus, under specified conditions without its steady-state temperature exceeding a specified value. Based on IEC60826-11-13. NOTE: The temperature specified value is maximum Design Ambient Temperature."@en ; + rdfs:label "CurrentCarryingCapasity"@en . + +PSD:InfiltrationSensible + a rdf:Property ; + rdfs:comment "Heat gains and losses from infiltration."@en ; + rdfs:label "InfiltrationSensible"@en . + +PSD:MinimumAllowableSupportLength + a rdf:Property ; + rdfs:label "Minimum allowable support length"@en . + +PSD:BladeThickness a rdf:Property ; + rdfs:comment "The thickness of the damper blade."@en ; + rdfs:label "BladeThickness"@en . + +PSD:ArrangementType a rdf:Property ; + rdfs:comment "Terminal box arrangement.\\nSingleDuct: Terminal box receives warm or cold air from a single air supply duct.\\nDualDuct: Terminal box receives warm and cold air from separate air supply ducts."@en ; + rdfs:label "Arrangement type"@en . + +PSD:UpperCurrent1 a rdf:Property ; + rdfs:comment "The current in [x In], indicating that for currents larger than UpperCurrent1 the I2t part of the L-function will trip the current."@en ; + rdfs:label "UpperCurrent1"@en . + +PSD:CornerFixingPlateThickness + a rdf:Property ; + rdfs:comment "The thickness of the L-shaped corner plate."@en ; + rdfs:label "CornerFixingPlateThickness"@en . + +PSD:OutletTemperatureRange + a rdf:Property ; + rdfs:comment "Allowable outlet temperature of either the water or the steam."@en ; + rdfs:label "Outlet temperature range"@en . + +PSD:FixingSocketThreadLength + a rdf:Property ; + rdfs:comment "The length of the threaded part of the fixing socket."@en ; + rdfs:label "FixingSocketThreadLength"@en . + +PSD:SelfExtinguishing60332_3 + a rdf:Property ; + rdfs:comment "Self Extinguishing cable/core according to IEC 60332.3."@en ; + rdfs:label "SelfExtinguishing60332_3"@en . + +PSD:VideoResolutionWidth + a rdf:Property ; + rdfs:comment "Indicates the number of horizontal pixels, e.g. 1920."@en , "Indicates the number of horizontal pixels (the largest native video resolution width)."@en ; + rdfs:label "VideoResolutionWidth"@en . + +PSD:ElectricCookerType + a rdf:Property ; + rdfs:comment "Type of electric cooker."@en ; + rdfs:label "ElectricCookerType"@en . + +PSD:LadderTrussSecondaryBarDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the secondary bar."@en ; + rdfs:label "LadderTrussSecondaryBarDiameter"@en . + +PSD:AirFlowrateVersusFlowControlElement + a rdf:Property ; + rdfs:comment "Air flowrate versus flow control element position at nominal pressure drop."@en ; + rdfs:label "Air flowrate versus flow control element"@en . + +PSD:FinalResistance a rdf:Property ; + rdfs:comment "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1)."@en ; + rdfs:label "Final resistance"@en . + +PSD:BuildingHeightLimit + a rdf:Property ; + rdfs:comment "Allowed maximum height of buildings on this site - according to local building codes."@en ; + rdfs:label "Building height limit"@en . + +PSD:CenterCoreSpacing + a rdf:Property ; + rdfs:comment "Center core spacing of the profile."@en ; + rdfs:label "CenterCoreSpacing"@en . + +PSD:NumberOfDrafts a rdf:Property ; + rdfs:label "Number of drafts"@en . + +PSD:CoolingWaterFlowRate + a rdf:Property ; + rdfs:comment "Water flow rate for cooling."@en ; + rdfs:label "CoolingWaterFlowRate"@en . + +PSD:FixingSocketThreadDiameter + a rdf:Property ; + rdfs:comment "The nominal diameter of the thread."@en ; + rdfs:label "FixingSocketThreadDiameter"@en . + +PSD:InternalSurfaceArea + a rdf:Property ; + rdfs:comment "Internal surface area."@en ; + rdfs:label "Internal surface area"@en . + +PSD:CloggingIndicator + a rdf:Property ; + rdfs:comment "Whether the filter has an indicator to display the degree of clogging of the filter."@en ; + rdfs:label "CloggingIndicator"@en . + +PSD:RiserHeight a rdf:Property ; + rdfs:label "Riser height"@en . + +PSD:ContractualType a rdf:Property ; + rdfs:comment "The contractual type of the work."@en ; + rdfs:label "ContractualType"@en . + +PSD:CenterCoreMiddleHeight + a rdf:Property ; + rdfs:comment "Center core middle height of the profile."@en ; + rdfs:label "CenterCoreMiddleHeight"@en . + +PSD:WaterPressureRange + a rdf:Property ; + rdfs:comment "Allowable water circuit working pressure range."@en ; + rdfs:label "WaterPressureRange"@en . + +PSD:propertyType a owl:ObjectProperty , owl:FunctionalProperty ; + rdfs:domain PSD:PropertyDef ; + rdfs:label "Property type"@en ; + rdfs:range PSD:PropertyType . + +PSD:ElectricGeneratorEfficiency + a rdf:Property ; + rdfs:comment "The ratio of output capacity to intake capacity."@en ; + rdfs:label "ElectricGeneratorEfficiency"@en . + +PSD:WorkTypeRequested + a rdf:Property ; + rdfs:comment "Work type requested in circumstances where there are categorizations of types of work task. It could be used to identify a remedial task, minor work task, electrical task etc."@en ; + rdfs:label "WorkTypeRequested"@en . + +PSD:InPlane a rdf:Property ; + rdfs:comment "Mechanical properties with respect to in-plane load, i.e. for function as a membrane."@en , "Mechanical properties with respect to in-plane load, i.e. bending about the strong axis; tension zone of unbalanced layups is stressed in tension."@en ; + rdfs:label "InPlane"@en . + +PSD:NominalToppingThickness + a rdf:Property ; + rdfs:label "Nominal topping thickness"@en . + +PSD:HydraulicDiameter + a rdf:Property ; + rdfs:comment "Hydraulic diameter."@en ; + rdfs:label "HydraulicDiameter"@en . + +PSD:AirDiffusionPerformanceIndex + a rdf:Property ; + rdfs:comment "The Air Diffusion Performance Index (ADPI) is used for cooling mode conditions. If several measurements of air velocity and air temperature are made throughout the occupied zone of a space, the ADPI is the percentage of locations where measurements were taken that meet the specifications for effective draft temperature and air velocity."@en ; + rdfs:label "Air diffusion performance index"@en . + +PSD:WeatherDataStation + a rdf:Property ; + rdfs:comment "The site weather data station description or reference to the data source from which weather data was obtained for use in calculations."@en ; + rdfs:label "WeatherDataStation"@en . + +PSD:OutletConnectionSize + a rdf:Property ; + rdfs:comment "The size of the pipework connection from the mixing valve."@en , "Size of the outlet connection."@en , "Size of the outlet connection from the object."@en , "Size of the outlet connection from the waste disposal unit."@en ; + rdfs:label "OutletConnectionSize"@en . + +PSD:ReinforcementVolumeRatio + a rdf:Property ; + rdfs:label "Reinforcement volume ratio"@en . + +PSD:IsOutlookDesirable + a rdf:Property ; + rdfs:comment "An indication of whether the outlook is desirable (set TRUE) or not (set FALSE)"@en ; + rdfs:label "IsOutlookDesirable"@en . + +PSD:ShortCircuit1PolePowerFactorMinimumState + a rdf:Property ; + rdfs:comment "Power factor of the minimum 1 pole short circuit current provided at the point of supply i.e. the fault between 1 phase and N."@en ; + rdfs:label "ShortCircuit1PolePowerFactorMinimumState"@en . + +PSD:Purpose a rdf:Property ; + rdfs:comment "Enumeration defining the purpose of the flow meter occurrence."@en ; + rdfs:label "Purpose"@en . + +PSD:Power a rdf:Property ; + rdfs:comment "The actual power consumption of the pump."@en ; + rdfs:label "Power"@en . + +PSD:LightingDiversity + a rdf:Property ; + rdfs:comment "Lighting diversity."@en ; + rdfs:label "LightingDiversity"@en , "Lighting diversity"@en . + +PSD:ConcreteCoverAtMainBars + a rdf:Property ; + rdfs:label "Concrete cover at main bars"@en . + +PSD:VisibleLightTransmittance + a rdf:Property ; + rdfs:label "Visible light transmittance"@en . + +PSD:LongInsideCenterTopBarPitch + a rdf:Property ; + rdfs:comment "The pitch length of the long inside center top bar."@en ; + rdfs:label "LongInsideCenterTopBarPitch"@en . + +PSD:IdealCapacity a rdf:Property ; + rdfs:comment "Compressor capacity under ideal conditions."@en ; + rdfs:label "Ideal capacity"@en . + +PSD:ThreadDiameter a rdf:Property ; + rdfs:comment "Nominal diameter of the thread, if different from the bolt's overall nominal diameter"@en ; + rdfs:label "ThreadDiameter"@en . + +PSD:FixingSocketHeight + a rdf:Property ; + rdfs:comment "The overall height of the fixing socket."@en ; + rdfs:label "FixingSocketHeight"@en . + +PSD:FunctionReliable a rdf:Property ; + rdfs:comment "Cable/bus maintain given properties/functions over a given (tested) time and conditions. According to IEC standard."@en , "Core maintain given properties/functions over a given (tested) time and conditions. According to (IEC) standard."@en ; + rdfs:label "FunctionReliable"@en . + +PSD:InUseConditions a rdf:Property ; + rdfs:comment "Adjustment of the service life resulting from the effect of the conditions in which components are operating."@en ; + rdfs:label "InUseConditions"@en . + +PSD:NetPlannedArea a rdf:Property ; + rdfs:label "Net planned area"@en . + +PSD:PressureLossCoefficient + a rdf:Property ; + rdfs:comment "Pressure loss coefficient."@en ; + rdfs:label "PressureLossCoefficient"@en . + +PSD:OutOfPlane a rdf:Property ; + rdfs:comment "Mechanical properties with respect to out-of-plane load, i.e. for function as a plate; tension zone of unbalanced layups is stressed in tension."@en , "Mechanical properties with respect to out-of-plane load, i.e. bending about the weak axis."@en ; + rdfs:label "OutOfPlane"@en . + +PSD:EnergyEfficiencyRatio + a rdf:Property ; + rdfs:comment "Energy efficiency ratio (EER)."@en ; + rdfs:label "EnergyEfficiencyRatio"@en . + +PSD:ColumnShoeBasePlateThickness + a rdf:Property ; + rdfs:comment "The thickness of the column shoe base plate."@en ; + rdfs:label "ColumnShoeBasePlateThickness"@en . + +PSD:HeatOutput a rdf:Property ; + rdfs:comment "Total nominal heat output as listed by the Boiler manufacturer. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and HeatOutput(IfcEnergyMeasure) in DefinedValues. For example, DefiningValues(InletTemp, OutletTemp), DefinedValues(null, HeatOutput). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship."@en , "Total nominal heat output as listed by the Boiler manufacturer. For water boilers, it is a function of inlet versus outlet temperature. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), HeatOutput(IfcEnergyMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship."@en ; + rdfs:label "HeatOutput"@en . + +PSD:BatterAtStart a rdf:Property ; + rdfs:label "Batter at start"@en . + +PSD:HeatingEfficiency + a rdf:Property ; + rdfs:comment "Heating efficiency under full load heating conditions."@en ; + rdfs:label "HeatingEfficiency"@en . + +PSD:HoseReelType a rdf:Property ; + rdfs:comment "Identifies the predefined types of hose arrangement from which the type required may be set."@en ; + rdfs:label "HoseReelType"@en . + +PSD:RefrigerantClass a rdf:Property ; + rdfs:comment "Refrigerant class used by the compressor/condenser.\\n\\nCFC: Chlorofluorocarbons.\\nHCFC: Hydrochlorofluorocarbons.\\nHFC: Hydrofluorocarbons."@en ; + rdfs:label "Refrigerant class"@en . + +PSD:HasSoundAttenuation + a rdf:Property ; + rdfs:comment "TRUE if the coil has sound attenuation, FALSE if it does not."@en ; + rdfs:label "HasSoundAttenuation"@en . + +PSD:EdgeFixingPlateThickness + a rdf:Property ; + rdfs:comment "The thickness of the L-shaped edge plate."@en ; + rdfs:label "EdgeFixingPlateThickness"@en . + +PSD:AccuracyQualityExpected + a rdf:Property ; + rdfs:comment "A measure of the accuracy quality of survey points as expected expressed in percentage terms."@en ; + rdfs:label "AccuracyQualityExpected"@en . + +PSD:I5 a rdf:Property ; + rdfs:comment "The upper electromagnetic testing current limit in [x In], indicating that for currents larger than I5, the tripping time shall be shorter than or equal to the associated tripping time, T5, i.e. the device shall trip instantaneous."@en ; + rdfs:label "I5"@en . + +PSD:WireDiameter a rdf:Property ; + rdfs:comment "The nominal diameter of the wire."@en ; + rdfs:label "WireDiameter"@en . + +PSD:CornerFixingPlateLength + a rdf:Property ; + rdfs:comment "The length of the L-shaped corner plate."@en ; + rdfs:label "CornerFixingPlateLength"@en . + +PSD:AssemblyPlace a rdf:Property ; + rdfs:comment "Enumeration defining where the assembly is intended to take place, either in a factory or on the building site."@en , "Enumeration defining where the assembly is intended to take place, either in a factory, other offsite location or on the building site."@en ; + rdfs:label "AssemblyPlace"@en . + +PSD:RightFlangeWidth a rdf:Property ; + rdfs:comment "Right flange width of the profile."@en ; + rdfs:label "RightFlangeWidth"@en . + +PSD:MotorEnclosureType + a rdf:Property ; + rdfs:comment "A list of the available types of motor enclosure from which that required may be selected."@en ; + rdfs:label "MotorEnclosureType"@en . + +PSD:DefrostTemperatureEffectiveness + a rdf:Property ; + rdfs:comment "Temperature heat transfer effectiveness when defrosting is active."@en ; + rdfs:label "DefrostTemperatureEffectiveness"@en . + +PSD:LowerVaporResistanceFactor + a rdf:Property ; + rdfs:comment "The vapor permeability relationship of air/material (typically value > 1), measured in low relative humidity (typically in 0/50 % RH)."@en ; + rdfs:label "LowerVaporResistanceFactor"@en . + +PSD:RadiatorType a rdf:Property ; + rdfs:comment "Indicates the type of radiator."@en ; + rdfs:label "RadiatorType"@en . + +PSD:GlobalTradeItemNumber + a rdf:Property ; + rdfs:comment "The Global Trade Item Number (GTIN) is an identifier for trade items developed by GS1 (www.gs1.org)."@en ; + rdfs:label "GlobalTradeItemNumber"@en . + +PSD:ColumnShoeBasePlateWidth + a rdf:Property ; + rdfs:comment "The width of the column shoe base plate."@en ; + rdfs:label "ColumnShoeBasePlateWidth"@en . + +PSD:RangeAngle a rdf:Property ; + rdfs:comment "Indicates the maximum rotation the actuator must traverse."@en ; + rdfs:label "Range angle"@en . + +PSD:CoolingWetBulb a rdf:Property ; + rdfs:comment "Outside wet bulb temperature for cooling design."@en ; + rdfs:label "CoolingWetBulb"@en . + +PSD:OccupancyTimePerDay + a rdf:Property ; + rdfs:comment "The amount of time during the day that the activity is required within this space."@en ; + rdfs:label "OccupancyTimePerDay"@en . + +PSD:IsentropicEfficiency + a rdf:Property ; + rdfs:comment "Ratio of the work required for isentropic compression of the gas to work input to the compressor shaft."@en ; + rdfs:label "IsentropicEfficiency"@en . + +PSD:User a rdf:Property ; + rdfs:comment "Indicates acknowledging user over time by identification corresponding to IfcPerson.Identification on an IfcActor."@en ; + rdfs:label "User"@en . + +PSD:OutsideAirPerPerson + a rdf:Property ; + rdfs:comment "Design quantity of outside air to be provided per person in the space."@en ; + rdfs:label "OutsideAirPerPerson"@en . + +PSD:WaterSumpTemperature + a rdf:Property ; + rdfs:comment "Water sump temperature."@en ; + rdfs:label "WaterSumpTemperature"@en . + +PSD:CenterlineAirVelocity + a rdf:Property ; + rdfs:comment "Centerline air velocity versus distance from the diffuser and temperature differential; a function of distance from diffuser and temperature difference between supply air and room air."@en ; + rdfs:label "CenterlineAirVelocity"@en . + +PSD:RealPower a rdf:Property ; + rdfs:comment "Real power."@en ; + rdfs:label "RealPower"@en . + +PSD:LeakageFullyClosed + a rdf:Property ; + rdfs:comment "Leakage when fully closed."@en ; + rdfs:label "LeakageFullyClosed"@en . + +PSD:RequestSourceLabel + a rdf:Property ; + rdfs:comment "A specific name or label that further qualifies the identity of a request source. In the event of an email, this may be the email address."@en ; + rdfs:label "Resource source label"@en . + +PSD:KeyOffset a rdf:Property ; + rdfs:comment "Key offset of the profile."@en ; + rdfs:label "KeyOffset"@en . + +PSD:TotalSensibleLoad + a rdf:Property ; + rdfs:comment "Total energy added or removed from air that affects its temperature. If a value is less than zero (negative), then the thermal load is lost from the space. If a value is greater than zero (positive), then the thermal load is a gain to the space."@en ; + rdfs:label "TotalSensibleLoad"@en . + +PSD:Condition a rdf:Property ; + rdfs:comment "Indicates alarm condition over time. The range of possible values and their meanings is defined by Pset_AlarmTypeCommon.Condition. An empty value indicates no present alarm condition."@en ; + rdfs:label "Condition"@en . + +PSD:ThermalTransmittanceSummer + a rdf:Property ; + rdfs:label "Thermal transmittance summer"@en . + +PSD:HeatingWaterFlowRate + a rdf:Property ; + rdfs:comment "Water flow rate for heating."@en ; + rdfs:label "HeatingWaterFlowRate"@en . + +PSD:IsSkilledOperator + a rdf:Property ; + rdfs:comment "Identifies if the current instance requires a skilled person or instructed person to perform operations on the distribution board (= TRUE) or whether operations may be performed by a person without appropriate skills or instruction (= FALSE)."@en ; + rdfs:label "IsSkilledOperator"@en . + +PSD:BottomCover a rdf:Property ; + rdfs:comment "Bottom cover of the profile."@en ; + rdfs:label "BottomCover"@en . + +PSD:MoistureCapacityThermalGradient + a rdf:Property ; + rdfs:comment "Thermal gradient coefficient for moisture capacity. Based on water vapor density."@en ; + rdfs:label "Moisture capacity thermal gradient"@en . + +PSD:DistanceBetweenParallelCircuits + a rdf:Property ; + rdfs:comment "Distance measured between parallel circuits."@en ; + rdfs:label "DistanceBetweenParallelCircuits"@en . + +PSD:StrengthClass a rdf:Property ; + rdfs:label "Strength class"@en . + +PSD:EdgeDistanceToFirstAxis + a rdf:Property ; + rdfs:label "Edge distance to first axis"@en . + +PSD:AirResistanceCurve + a rdf:Property ; + rdfs:comment "Air resistance curve (w/ fan only); Pressure = f ( flow rate)."@en ; + rdfs:label "AirResistanceCurve"@en . + +PSD:TotalHeatingLoad a rdf:Property ; + rdfs:comment "The peak total heating load for the building, zone or space."@en ; + rdfs:label "TotalHeatingLoad"@en . + +PSD:MarketSubCategoriesAvailableNow + a rdf:Property ; + rdfs:comment "A list of the sub categories of property that are currently available expressed in terms of IfcLabel."@en ; + rdfs:label "Market sub categories available now"@en . + +PSD:NumberOfSockets a rdf:Property ; + rdfs:comment "The number of sockets that may be connected. In case of inconsistency, sockets defined on ports take precedence."@en ; + rdfs:label "Number of sockets"@en . + +PSD:TotalPrimaryEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:label "Total primary energy consumption per unit"@en . + +PSD:CondenserLeavingTemperature + a rdf:Property ; + rdfs:comment "Termperature of fluid leaving condenser."@en ; + rdfs:label "CondenserLeavingTemperature"@en . + +PSD:HasAntiStaticSurface + a rdf:Property ; + rdfs:comment "Indication whether the surface finish is designed to prevent electrostatic charge (TRUE) or not (FALSE)."@en ; + rdfs:label "HasAntiStaticSurface"@en . + +PSD:InsideDiameter a rdf:Property ; + rdfs:comment "Actual inner diameter of the tube in the tube bundle."@en ; + rdfs:label "InsideDiameter"@en . + +PSD:NominalDepth a rdf:Property ; + rdfs:comment "Nominal or quoted depth of the object. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence."@en , "Nominal or quoted depth of the object measured from the inlet drain connection to the base of the unit."@en ; + rdfs:label "Nominal depth"@en , "NominalDepth"@en . + +PSD:AspectRatio a rdf:Property ; + rdfs:comment "The default aspect ratio."@en ; + rdfs:label "AspectRatio"@en . + +PSD:LadderTrussLength + a rdf:Property ; + rdfs:comment "The overall length of the truss connector."@en ; + rdfs:label "LadderTrussLength"@en . + +PSD:ActivationTemperature + a rdf:Property ; + rdfs:comment "The temperature at which the object is designed to activate."@en ; + rdfs:label "ActivationTemperature"@en . + +PSD:PHLevel a rdf:Property ; + rdfs:comment "Maximum water PH in a range from 0-14."@en ; + rdfs:label "PHLevel"@en . + +PSD:FlangeTopFillet a rdf:Property ; + rdfs:comment "Flange top fillet of the profile."@en ; + rdfs:label "FlangeTopFillet"@en . + +PSD:BarCode a rdf:Property ; + rdfs:comment "The identity of the bar code given to an occurrence of the product."@en ; + rdfs:label "BarCode"@en . + +PSD:FlangeTable a rdf:Property ; + rdfs:comment "Designation of the standard table to which the flange conforms."@en ; + rdfs:label "FlangeTable"@en . + +PSD:TubingLength a rdf:Property ; + rdfs:comment "Water tube length inside the component."@en ; + rdfs:label "TubingLength"@en . + +PSD:Sound a rdf:Property ; + rdfs:comment "Sound performance."@en ; + rdfs:label "Sound"@en . + +PSD:SurfaceTemperature + a rdf:Property ; + rdfs:comment "Average surface temperature of the component."@en ; + rdfs:label "SurfaceTemperature"@en . + +PSD:TotalPrimaryEnergyConsumption + a rdf:Property ; + rdfs:label "Total primary energy consumption"@en . + +PSD:MarketCategory a rdf:Property ; + rdfs:comment "Category of use e.g. residential, commercial, recreation etc."@en ; + rdfs:label "Market category"@en , "MarketCategory"@en . + +PSD:HasThermalInsulation + a rdf:Property ; + rdfs:comment "If TRUE, the air terminal has thermal insulation."@en ; + rdfs:label "Has thermal insulation"@en . + +PSD:ProcessName a rdf:Property ; + rdfs:comment "Name of the welding process. Alternative to the numeric Process property."@en ; + rdfs:label "ProcessName"@en . + +PSD:nameAlias a owl:DatatypeProperty ; + rdfs:comment "Name alias in local language."@en ; + rdfs:domain PSD:PropertyDef ; + rdfs:label "Name alias"@en ; + rdfs:range xsd:string . + +PSD:ScheduleWork a rdf:Property ; + rdfs:comment "The scheduled work on behalf of the resource allocation."@en ; + rdfs:label "ScheduleWork"@en . + +PSD:XDirectionTieHoopCount + a rdf:Property ; + rdfs:comment "The number of bars with X direction tie hoop bars."@en ; + rdfs:label "XDirectionTieHoopCount"@en . + +PSD:l a rdf:Property ; + rdfs:comment "Measure l according to ISO 2553"@en ; + rdfs:label "l"@en . + +PSD:MassFlowRate a rdf:Property ; + rdfs:comment "The mass flow rate of the fluid."@en ; + rdfs:label "MassFlowRate"@en . + +PSD:FlowRateRange a rdf:Property ; + rdfs:comment "Allowable range of volume of fluid being pumped against the resistance specified."@en , "Possible range of fluid flowrate that can be delivered."@en ; + rdfs:label "FlowRateRange"@en , "Flow rate range"@en . + +PSD:TotalCoolingLoad a rdf:Property ; + rdfs:comment "The peak total cooling load for the building, zone or space."@en ; + rdfs:label "TotalCoolingLoad"@en . + +PSD:NominalBodyLength + a rdf:Property ; + rdfs:comment "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the drain."@en , "Nominal or quoted length, measured along the x-axis of the local coordinate system of the object, of the body of the object."@en , "Nominal or quoted length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the waste."@en ; + rdfs:label "NominalBodyLength"@en . + +PSD:IsOneWay a rdf:Property ; + rdfs:comment "Indicates whether the parking aisle is designed for oneway traffic (TRUE) or twoway traffic (FALSE). Should only be provided if the property IsAisle is set to TRUE."@en ; + rdfs:label "IsOneWay"@en . + +PSD:NumberOfCompartments + a rdf:Property ; + rdfs:comment "The number of separate internal compartments within the trunking."@en ; + rdfs:label "NumberOfCompartments"@en . + +PSD:SelfClosing a rdf:Property ; + rdfs:label "Self closing"@en . + +PSD:Combustible a rdf:Property ; + rdfs:label "Combustible"@en . + +PSD:BladeAction a rdf:Property ; + rdfs:comment "Blade action."@en ; + rdfs:label "BladeAction"@en . + +PSD:DataReceived a rdf:Property ; + rdfs:comment "For data ports, captures log of data received. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols."@en ; + rdfs:label "DataReceived"@en . + +PSD:WetBulbTemperature + a rdf:Property ; + rdfs:comment "Wet bulb temperature of the fluid; only applicable if the fluid is air."@en ; + rdfs:label "WetBulbTemperature"@en . + +PSD:LampCompensationType + a rdf:Property ; + rdfs:comment "Identifies the form of compensation used for power factor correction and radio suppression."@en ; + rdfs:label "Lamp compensation type"@en . + +PSD:SlotLength a rdf:Property ; + rdfs:comment "Slot length."@en ; + rdfs:label "Slot length"@en . + +PSD:UltimateStress a rdf:Property ; + rdfs:comment "A measure of the ultimate stress of the material."@en ; + rdfs:label "Ultimate stress"@en . + +PSD:VerticalBarPitch a rdf:Property ; + rdfs:comment "The pitch length of the vertical bar."@en ; + rdfs:label "VerticalBarPitch"@en . + +PSD:FinCorrugatedType + a rdf:Property ; + rdfs:comment "Description of a fin corrugated type."@en ; + rdfs:label "FinCorrugatedType"@en . + +PSD:IsPermanentID a rdf:Property ; + rdfs:comment "Indicates whether the identity assigned to a land parcel is permanent (= TRUE) or temporary (=FALSE)."@en ; + rdfs:label "IsPermanentID"@en , "Is permanent ID"@en . + +PSD:SpaceAirTemperature + a rdf:Property ; + rdfs:comment "Dry bulb temperature in the space."@en ; + rdfs:label "SpaceAirTemperature"@en . + +PSD:LossCoefficentCurve + a rdf:Property ; + rdfs:comment "Loss coefficient  blade position angle curve; ratio of pressure drop to velocity pressure versus blade angle; C = f (blade angle position)."@en ; + rdfs:label "LossCoefficentCurve"@en . + +PSD:JunctionRightRadius + a rdf:Property ; + rdfs:comment "The radius of bending for the right junction where 0 indicates sharp bend."@en ; + rdfs:label "JunctionRightRadius"@en . + +PSD:BladeShape a rdf:Property ; + rdfs:comment "Blade shape. Flat means triple V-groove."@en ; + rdfs:label "BladeShape"@en . + +PSD:WasherShape a rdf:Property ; + rdfs:comment "Shape of the washers, e.g. 'Standard', 'Square'"@en ; + rdfs:label "WasherShape"@en . + +PSD:DisplaySize a rdf:Property ; + rdfs:comment "The physical size of the display. In the case of a stem thermometer, this will be the length of the stem. For a dial thermometer, it will be the diameter of the dial."@en , "The physical size of the display. For a dial pressure gauge it will be the diameter of the dial."@en ; + rdfs:label "DisplaySize"@en . + +PSD:VersionDate a rdf:Property ; + rdfs:comment "The date on which the version of the agreement became applicable."@en ; + rdfs:label "VersionDate"@en . + +PSD:Heat a rdf:Property ; + rdfs:comment "The amount of heat energy consumed during the period specified in the time series."@en ; + rdfs:label "Heat"@en . + +PSD:CamberAtMidspan a rdf:Property ; + rdfs:label "Camber at midspan"@en . + +PSD:ReliefValveSetting + a rdf:Property ; + rdfs:comment "Pressure at which the relief valve activates."@en ; + rdfs:label "ReliefValveSetting"@en . + +PSD:InnerDiameter a rdf:Property ; + rdfs:comment "The actual inner diameter of the pipe."@en ; + rdfs:label "InnerDiameter"@en . + +PSD:TemperatureEffectiveness + a rdf:Property ; + rdfs:comment "Temperature heat transfer effectiveness: The ratio of primary airflow temperature changes to maximum possible temperature changes."@en ; + rdfs:label "TemperatureEffectiveness"@en . + +PSD:ParticleMassHolding + a rdf:Property ; + rdfs:comment "Mass of particle holding in the filter."@en ; + rdfs:label "ParticleMassHolding"@en . + +PSD:CompressorTotalHeatGain + a rdf:Property ; + rdfs:comment "Compressor total heat gain."@en ; + rdfs:label "CompressorTotalHeatGain"@en . + +PSD:CoreSpacing a rdf:Property ; + rdfs:comment "Core spacing of the profile."@en ; + rdfs:label "CoreSpacing"@en . + +PSD:TotalSensibleHeatGain + a rdf:Property ; + rdfs:comment "The total sensible heat or energy gained by the space during the peak cooling conditions."@en ; + rdfs:label "TotalSensibleHeatGain"@en . + +PSD:NumberOfRiser a rdf:Property ; + rdfs:label "Number of riser"@en . + +PSD:NominalSize a rdf:Property ; + rdfs:comment "Indicates the diagonal screen size."@en ; + rdfs:label "NominalSize"@en . + +PSD:ShortCircuit2PoleMinimumState + a rdf:Property ; + rdfs:comment "Minimum 2 pole short circuit current provided at the point of supply."@en ; + rdfs:label "ShortCircuit2PoleMinimumState"@en . + +PSD:WalkingLineOffset + a rdf:Property ; + rdfs:label "Walking line offset"@en . + +PSD:WaterTightnessRating + a rdf:Property ; + rdfs:label "Water tightness rating"@en . + +PSD:ResourceDepletion + a rdf:Property ; + rdfs:label "Resource depletion"@en . + +PSD:NonRenewableEnergyConsumptionPerUnit + a rdf:Property ; + rdfs:label "Non renewable energy consumption per unit"@en . + +PSD:MainColor a rdf:Property ; + rdfs:comment "The main color of the furniture of this type."@en ; + rdfs:label "Main color"@en . + +PSD:FlowPattern a rdf:Property ; + rdfs:comment "Flow pattern."@en ; + rdfs:label "Flow pattern"@en . + +PSD:RenewableEnergyConsumption + a rdf:Property ; + rdfs:label "Renewable energy consumption"@en . + +PSD:Thickness a rdf:Property ; + rdfs:comment "Thickness of the fin."@en ; + rdfs:label "Thickness"@en . + +PSD:IsPotable a rdf:Property ; + rdfs:comment "If TRUE, then the water is considered potable."@en ; + rdfs:label "IsPotable"@en . + +PSD:ProtectivePoreRatio + a rdf:Property ; + rdfs:label "Protective pore ratio"@en . + +PSD:FailPosition a rdf:Property ; + rdfs:comment "Specifies the required fail-safe position of the actuator."@en ; + rdfs:label "Fail position"@en . + +PSD:OccupancyNumber a rdf:Property ; + rdfs:comment "Number of people required for the activity assigned to this space."@en ; + rdfs:label "OccupancyNumber"@en . + +PSD:Sensitivity a rdf:Property ; + rdfs:comment "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)."@en ; + rdfs:label "Sensitivity"@en . + +PSD:NominalPressureDrop + a rdf:Property ; + rdfs:comment "Total pressure drop across the filter."@en ; + rdfs:label "Nominal pressure drop"@en . + +PSD:WorkingPressure a rdf:Property ; + rdfs:comment "Working pressure."@en , "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)."@en ; + rdfs:label "WorkingPressure"@en . + +PSD:FaceType a rdf:Property ; + rdfs:comment "Identifies how the terminal face of an AirTerminal is constructed."@en ; + rdfs:label "Face type"@en . + +PSD:Thickness2 a rdf:Property ; + rdfs:comment "Second thickness parameter of a surface member with varying thickness"@en ; + rdfs:label "Thickness2"@en . + +PSD:InitialTension a rdf:Property ; + rdfs:label "Initial tension"@en . + +PSD:HeadShape a rdf:Property ; + rdfs:comment "Shape of the bolt's head, e.g. 'Hexagon', 'Countersunk', 'Cheese'"@en ; + rdfs:label "HeadShape"@en . + +PSD:CurrentTolerance2 + a rdf:Property ; + rdfs:comment "The tolerance for the current of time/current-curve in [%] valid for times above CurrentTolereanceLimit1."@en ; + rdfs:label "CurrentTolerance2"@en . + +PSD:TotalHeatLoss a rdf:Property ; + rdfs:comment "The total amount of heat or energy lost by the space at the time of the space's peak heating conditions."@en ; + rdfs:label "TotalHeatLoss"@en . + +PSD:SheathColors a rdf:Property ; + rdfs:comment "Colour of the core (derived from IEC 60757). Note that the combined color 'GreenAndYellow' shall be used only as Protective Earth (PE) conductors according to the requirements of IEC 60446."@en ; + rdfs:label "SheathColors"@en . + +PSD:Name a rdf:Property ; + rdfs:comment "The name of the air side system."@en ; + rdfs:label "Name"@en . + +PSD:NominalCurrent a rdf:Property ; + rdfs:comment "The nominal current that is designed to be measured."@en ; + rdfs:label "NominalCurrent"@en . + +PSD:BoundaryAreaHeatLoss + a rdf:Property ; + rdfs:comment "Heat loss per unit area for the boundary object. This is a design input value for use in the absence of calculated load data."@en ; + rdfs:label "BoundaryAreaHeatLoss"@en . + +PSD:HeatRejectionRate + a rdf:Property ; + rdfs:comment "Sum of the refrigeration effect and the heat equivalent of the power input to the compressor."@en ; + rdfs:label "HeatRejectionRate"@en . + +PSD:HasBuiltInAlarm a rdf:Property ; + rdfs:comment "Indicates whether the smoke sensor is included as an element within a smoke alarm/sensor unit (TRUE) or not (FALSE)."@en ; + rdfs:label "HasBuiltInAlarm"@en . + +PSD:ThermalConductivityTemperatureDerivative + a rdf:Property ; + rdfs:comment "Thermal conductivity temperature derivative."@en ; + rdfs:label "Thermal conductivity temperature derivative"@en . + +PSD:ShaftPowerRate a rdf:Property ; + rdfs:comment "Fan shaft power."@en ; + rdfs:label "ShaftPowerRate"@en . + +PSD:DataTransmitted a rdf:Property ; + rdfs:comment "For data ports, captures log of data transmitted. The LIST at IfcTimeSeriesValue.Values may split out data according to Pset_DistributionPortTypeCable.Protocols."@en ; + rdfs:label "DataTransmitted"@en . + +PSD:WaterInletTemperatureRange + a rdf:Property ; + rdfs:comment "Allowable water inlet temperature range."@en ; + rdfs:label "Water inlet temperature range"@en . + +PSD:FlangeDraft a rdf:Property ; + rdfs:comment "Flange draft of the profile."@en ; + rdfs:label "FlangeDraft"@en . + +PSD:requiredProp a owl:ObjectProperty ; + rdfs:domain PSD:RequiredPset ; + rdfs:range PSD:PropertyDef . + +PSD:DrainSize a rdf:Property ; + rdfs:comment "The size of the drain outlet connection from the object."@en ; + rdfs:label "DrainSize"@en . + +PSD:GlassLayers a rdf:Property ; + rdfs:label "Glass layers"@en . + +PSD:LatentHeatTransferRate + a rdf:Property ; + rdfs:comment "Latent heat transfer rate."@en , "Latent heat transfer rate to primary air flow."@en ; + rdfs:label "LatentHeatTransferRate"@en . + +PSD:ScheduleCompletion + a rdf:Property ; + rdfs:comment "The scheduled completion percentage of the allocation."@en ; + rdfs:label "ScheduleCompletion"@en . + +PSD:VisibleReflectanceFront + a rdf:Property ; + rdfs:comment "Reflectance at normal incidence (visible): front side. Defines the fraction of the solar ray in the visible spectrum that is reflected and not transmitted when the ray passes from one medium into another, at the 'front' side of the other material, perpendicular to the surface. Dependent on material and surface characteristics."@en ; + rdfs:label "VisibleReflectanceFront"@en . + +PSD:HoseLength a rdf:Property ; + rdfs:comment "Notional length of the hose fitted to the hose reel when fully extended."@en ; + rdfs:label "HoseLength"@en . + +PSD:OperationPressureMax + a rdf:Property ; + rdfs:comment "Maximum pressure under normal operating conditions."@en ; + rdfs:label "OperationPressureMax"@en . + +PSD:HasCaps a rdf:Property ; + rdfs:comment "Does the inlet connection have protective caps."@en ; + rdfs:label "HasCaps"@en . + +PSD:IsWaterStorageHeater + a rdf:Property ; + rdfs:comment "This is used to identify if the boiler has storage capacity (TRUE). If FALSE, then there is no storage capacity built into the boiler, such as an instantaneous hot water heater."@en ; + rdfs:label "Is water storage heater"@en . + +PSD:CenterCoreBaseHeight + a rdf:Property ; + rdfs:comment "Center core base height of the profile."@en ; + rdfs:label "CenterCoreBaseHeight"@en . + +PSD:NumberOfStoreys a rdf:Property ; + rdfs:label "Number of storeys"@en . + +PSD:ActualErectionDate + a rdf:Property ; + rdfs:comment "Date erected."@en ; + rdfs:label "ActualErectionDate"@en . + +PSD:OverallWidth a rdf:Property ; + rdfs:comment "Overall width of the profile."@en ; + rdfs:label "OverallWidth"@en . + +PSD:TypeDesignator a rdf:Property ; + rdfs:comment "Type designator for the precast concrete element. The content depends on local standards. For instance in Finland it usually a one-letter acronym, e.g. P=Column, K=reinforced concrete beam,etc."@en ; + rdfs:label "Type designator"@en , "TypeDesignator"@en . + +PSD:NumberOfGangs a rdf:Property ; + rdfs:comment "Number of slots available for switches/outlets (most commonly 1, 2, 3, or 4)."@en ; + rdfs:label "NumberOfGangs"@en . + +PSD:Exponent a rdf:Property ; + rdfs:comment "Characteristic exponent, slope of log(heat output) vs log (surface temperature minus environmental temperature)."@en ; + rdfs:label "Exponent"@en . + +PSD:Reinforcement a rdf:Property ; + rdfs:comment "The type of reinforcement, if any, used for the duct segment."@en ; + rdfs:label "Reinforcement"@en . + +PSD:ReturnWaterTemperatureCooling + a rdf:Property ; + rdfs:comment "Return water temperature in cooling mode."@en ; + rdfs:label "ReturnWaterTemperatureCooling"@en . + +PSD:MixerControl a rdf:Property ; + rdfs:comment "Defines the form of control of the mixing valve."@en ; + rdfs:label "MixerControl"@en . + +PSD:FlammabilityRating + a rdf:Property ; + rdfs:label "Flammability rating"@en . + +PSD:HeatOutputRate a rdf:Property ; + rdfs:comment "Overall heat transfer rate."@en ; + rdfs:label "HeatOutputRate"@en . + +PSD:TunerChannel a rdf:Property ; + rdfs:comment "Indicates the tuner channels, if applicable."@en ; + rdfs:label "TunerChannel"@en . + +PSD:NominalTotalPressure + a rdf:Property ; + rdfs:comment "Nominal total pressure rise across the fan."@en ; + rdfs:label "Nominal total pressure"@en . + +PSD:VolumetricEfficiency + a rdf:Property ; + rdfs:comment "Ratio of the actual volume of gas entering the compressor to the theoretical displacement of the compressor."@en ; + rdfs:label "VolumetricEfficiency"@en . + +PSD:MultipleTarriff a rdf:Property ; + rdfs:comment "Indicates whether meter has built-in support for multiple tarriffs (variable energy cost rates)."@en ; + rdfs:label "MultipleTarriff"@en . + +PSD:LogarithmicMeanTemperatureDifference + a rdf:Property ; + rdfs:comment "Logarithmic mean temperature difference between refrigerant and water or air."@en ; + rdfs:label "LogarithmicMeanTemperatureDifference"@en . + +PSD:CompressiveStrength + a rdf:Property ; + rdfs:label "Compressive strength"@en . diff --git a/desktop_java11/dependency-reduced-pom.xml b/desktop_java11/dependency-reduced-pom.xml index 03d233f7..e367f306 100644 --- a/desktop_java11/dependency-reduced-pom.xml +++ b/desktop_java11/dependency-reduced-pom.xml @@ -4,7 +4,7 @@ io.github.jyrkioraskari IFCtoLBD_Desktop_Java12 IFCtoLBD Desktop Java 12 - 2.4 + 2.6 The IFC to BOT converter user interface for a desktop computer diff --git a/run - Java12.bat b/desktop_java11/others/run - Java12.bat similarity index 100% rename from run - Java12.bat rename to desktop_java11/others/run - Java12.bat diff --git a/run.bat b/desktop_java11/others/run.bat similarity index 100% rename from run.bat rename to desktop_java11/others/run.bat diff --git a/desktop_java11/pom.xml b/desktop_java11/pom.xml index 3d50f7a7..f573ea43 100644 --- a/desktop_java11/pom.xml +++ b/desktop_java11/pom.xml @@ -12,7 +12,7 @@ 4.0.0 io.github.jyrkioraskari IFCtoLBD_Desktop_Java12 - 2.4 + 2.6 IFCtoLBD Desktop Java 12 The IFC to BOT converter user interface for a desktop computer @@ -59,7 +59,7 @@ io.github.jyrkioraskari IFCtoLBD - 2.4 + 2.6
diff --git a/desktop_java11/src/license/THIRD-PARTY.properties b/desktop_java11/src/license/THIRD-PARTY.properties new file mode 100644 index 00000000..c4835cbc --- /dev/null +++ b/desktop_java11/src/license/THIRD-PARTY.properties @@ -0,0 +1,53 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License 2.0 +# - Apache Software Licenses +# - BSD Style License +# - BSD licence +# - BSD-3-Clause +# - CDDL + GPLv2 with classpath exception +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - Common Development and Distribution License (CDDL), +# version 1.0 +# - Common Public License Version 1.0 +# - Dual license consisting of the CDDL v1.1 and GPL v2 +# - EDL 1.0 +# - EPL 2.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Distribution License v. 1.0 +# - Eclipse Public License +# - Eclipse Public License - v 1.0 +# - Eclipse Public License - v 2.0 +# - Eclipse Public License v. 2.0 +# - Eclipse Public License v1.0 +# - Eclipse Public License, Version 1.0 +# - GNU Affero General Public License +# - GNU Affero General Public License 3 +# - GNU General Public License, v2.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License, version 2.1 +# - GPL2 w/ CPE +# - GPLv2 license, includes the CLASSPATH exception +# - GPLv2+CE +# - Indiana University Extreme! Lab Software License, vesion 1.1.1 +# - LGPL 2.1 +# - MIT License +# - Mozilla Public License version 1.1 +# - New BSD license +# - Public Domain +# - Revised BSD License +# - The 3-Clause BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD License +# - The Eclipse Public License Version 1.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Tue Sep 29 14:46:40 CEST 2020 +gnu.getopt--java-getopt--1.0.13= diff --git a/desktop_java8/dependency-reduced-pom.xml b/desktop_java8/dependency-reduced-pom.xml index 1930f18a..9966f13b 100644 --- a/desktop_java8/dependency-reduced-pom.xml +++ b/desktop_java8/dependency-reduced-pom.xml @@ -4,7 +4,7 @@ io.github.jyrkioraskari IFCtoLBD_Desktop_Java8 IFCtoLBD Desktop Java 8 - 2.4 + 2.6 The IFC to BOT converter user interface for a desktop computer diff --git a/run - Java8.bat b/desktop_java8/others/run - Java8.bat similarity index 100% rename from run - Java8.bat rename to desktop_java8/others/run - Java8.bat diff --git a/desktop_java8/others/run.bat b/desktop_java8/others/run.bat new file mode 100644 index 00000000..063366c0 --- /dev/null +++ b/desktop_java8/others/run.bat @@ -0,0 +1,10 @@ +@echo off +echo %JAVA_HOME% + +echo If you will get an error use "run - Java12.bat" +echo It takes some time to load all the libraries +echo -------------------------------------------------- +"%JAVA_HOME%\\bin\\java" -Xms16G -Xmx16G -jar IFCtoLBD-Desktop_Java_8.jar +pause + + diff --git a/desktop_java8/pom.xml b/desktop_java8/pom.xml index c9f1888a..2d0bd256 100644 --- a/desktop_java8/pom.xml +++ b/desktop_java8/pom.xml @@ -13,7 +13,7 @@ 4.0.0 io.github.jyrkioraskari IFCtoLBD_Desktop_Java8 - 2.4 + 2.6 IFCtoLBD Desktop Java 8 The IFC to BOT converter user interface for a desktop computer @@ -61,7 +61,7 @@ io.github.jyrkioraskari IFCtoLBD - 2.4 + 2.6 diff --git a/desktop_java8/src/license/THIRD-PARTY.properties b/desktop_java8/src/license/THIRD-PARTY.properties new file mode 100644 index 00000000..f036c1f6 --- /dev/null +++ b/desktop_java8/src/license/THIRD-PARTY.properties @@ -0,0 +1,53 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License 2.0 +# - Apache Software Licenses +# - BSD Style License +# - BSD licence +# - BSD-3-Clause +# - CDDL + GPLv2 with classpath exception +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - Common Development and Distribution License (CDDL), +# version 1.0 +# - Common Public License Version 1.0 +# - Dual license consisting of the CDDL v1.1 and GPL v2 +# - EDL 1.0 +# - EPL 2.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Distribution License v. 1.0 +# - Eclipse Public License +# - Eclipse Public License - v 1.0 +# - Eclipse Public License - v 2.0 +# - Eclipse Public License v. 2.0 +# - Eclipse Public License v1.0 +# - Eclipse Public License, Version 1.0 +# - GNU Affero General Public License +# - GNU Affero General Public License 3 +# - GNU General Public License, v2.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License, version 2.1 +# - GPL2 w/ CPE +# - GPLv2 license, includes the CLASSPATH exception +# - GPLv2+CE +# - Indiana University Extreme! Lab Software License, vesion 1.1.1 +# - LGPL 2.1 +# - MIT License +# - Mozilla Public License version 1.1 +# - New BSD license +# - Public Domain +# - Revised BSD License +# - The 3-Clause BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD License +# - The Eclipse Public License Version 1.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Tue Sep 29 14:47:44 CEST 2020 +gnu.getopt--java-getopt--1.0.13=