Copy disabled (too large)
Download .txt
Showing preview only (33,230K chars total). Download the full file to get everything.
Repository: Autodesk/revit-ifc
Branch: master
Commit: 7f4ed179b135
Files: 678
Total size: 31.5 MB
Directory structure:
gitextract_j6ddelre/
├── .editorconfig
├── .gitattributes
├── .github/
│ └── ISSUE_TEMPLATE/
│ ├── ENHANCEMENT-REQUEST-FORM.yml
│ ├── INQUIRY-FORM.yml
│ ├── PROBLEM-REPORT-FORM.yml
│ └── config.yml
├── .gitignore
├── Install/
│ ├── Program Files to Install/
│ │ ├── DefaultUserDefinedParameterSets.txt
│ │ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt
│ │ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL.txt
│ │ ├── IFC-SG Property Mapping Export.txt
│ │ ├── IFC2X2_ADD1.exp
│ │ ├── IFC2X2_ADD1.xsd
│ │ ├── IFC2X3_TC1.exp
│ │ ├── IFC2X3_TC1.xsd
│ │ ├── IFC2x3 COBie 2.4 Design Deliverable.txt
│ │ ├── IFC4.exp
│ │ ├── IFC4.xsd
│ │ ├── IFC4RV.xsd
│ │ ├── IFC4X3.xsd
│ │ ├── IFCCertifiedEntitiesAndPSets.json
│ │ ├── IFCExporterUIOverride.addin
│ │ ├── LICENSE.rtf
│ │ ├── Revit.IFC.addin
│ │ └── bundle/
│ │ ├── Contents/
│ │ │ └── Resources/
│ │ │ └── ADSKIFCExporterHelp.htm
│ │ └── PackageContents.xml
│ └── RevitIFCSetupWix/
│ ├── Product.wxs
│ ├── RevitIFCSetupWix.csproj
│ ├── RevitIFCSetupWix.wixproj
│ └── buildInstaller.bat
├── README.md
├── Revit.IFC.sln
├── Source/
│ ├── IFCExporterUIOverride/
│ │ ├── Autodesk.IFC.Export.UI.addin
│ │ ├── COBieCompanyInfoTab.xaml
│ │ ├── COBieCompanyInfoTab.xaml.cs
│ │ ├── COBieProjectInfoTab.xaml
│ │ ├── COBieProjectInfoTab.xaml.cs
│ │ ├── CreateAddinFile.bat
│ │ ├── CreateResource.bat
│ │ ├── IFC2X2_ADD1.xsd
│ │ ├── IFC2X3_TC1.xsd
│ │ ├── IFC4.xsd
│ │ ├── IFCAddressInformationUI.xaml
│ │ ├── IFCAddressInformationUI.xaml.cs
│ │ ├── IFCCategoryMapping/
│ │ │ ├── IFCCategoryMapping.xaml
│ │ │ ├── IFCCategoryMapping.xaml.cs
│ │ │ ├── IFCCopyTemplate.xaml
│ │ │ ├── IFCCopyTemplate.xaml.cs
│ │ │ ├── IFCDeleteTemplate.xaml
│ │ │ ├── IFCDeleteTemplate.xaml.cs
│ │ │ ├── IFCNewTemplate.xaml
│ │ │ ├── IFCNewTemplate.xaml.cs
│ │ │ ├── IFCRenameTemplate.xaml
│ │ │ └── IFCRenameTemplate.xaml.cs
│ │ ├── IFCClassificationUI.xaml
│ │ ├── IFCClassificationUI.xaml.cs
│ │ ├── IFCCommandOverrideApplication.cs
│ │ ├── IFCEntityTree/
│ │ │ ├── BrowseIFCEntityServer.cs
│ │ │ ├── EntityTree.xaml
│ │ │ ├── EntityTree.xaml.cs
│ │ │ ├── PredefinedTypeSelection.xaml
│ │ │ └── PredefinedTypeSelection.xaml.cs
│ │ ├── IFCExport.xaml
│ │ ├── IFCExport.xaml.cs
│ │ ├── IFCExportResult.cs
│ │ ├── IFCExporterUI.csproj
│ │ ├── IFCExporterUI.props
│ │ ├── IFCExporterUIOverride.csproj
│ │ ├── IFCExporterUIWindow.xaml
│ │ ├── IFCExporterUIWindow.xaml.cs
│ │ ├── IFCFileFormatAttributes.cs
│ │ ├── IFCFileHeaderInformationUI.xaml
│ │ ├── IFCFileHeaderInformationUI.xaml.cs
│ │ ├── IFCLinkedFileExportAs.cs
│ │ ├── IFCNewExportSetup.xaml
│ │ ├── IFCNewExportSetup.xaml.cs
│ │ ├── IFCPropertyMapping/
│ │ │ ├── ComboBoxFilteringUtilities.cs
│ │ │ ├── IFCNotificationMessageBox.xaml
│ │ │ ├── IFCNotificationMessageBox.xaml.cs
│ │ │ ├── IFCPropertyFilter.xaml
│ │ │ ├── IFCPropertyFilter.xaml.cs
│ │ │ ├── IFCPropertyMapping.xaml
│ │ │ ├── IFCPropertyMapping.xaml.cs
│ │ │ ├── IFCPropertyMappingModel.cs
│ │ │ ├── IFCRevitPropertySelector.xaml
│ │ │ ├── IFCRevitPropertySelector.xaml.cs
│ │ │ ├── IFCUserDefinedPropertyMapping.xaml
│ │ │ └── IFCUserDefinedPropertyMapping.xaml.cs
│ │ ├── IFCPropertySets.cs
│ │ ├── IFCRenameExportSetup.xaml
│ │ ├── IFCRenameExportSetup.xaml.cs
│ │ ├── IFCSitePlacementAttributes.cs
│ │ ├── IFCSpaceBoundaryAttributes.cs
│ │ ├── IFCTemplateData.cs
│ │ ├── IFCUIUtility.cs
│ │ ├── IFCVersionExtensions.cs
│ │ ├── Properties/
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.de.resx
│ │ │ ├── Resources.fr.resx
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Win32API.cs
│ ├── Revit.IFC.Common/
│ │ ├── Enums/
│ │ │ ├── CommonEnum.cs
│ │ │ ├── IFC2X2_ADD1EntityType.cs
│ │ │ ├── IFC2X3_TC1EntityType.cs
│ │ │ ├── IFC2xEntityType.cs
│ │ │ ├── IFC4EntityType.cs
│ │ │ ├── IFC4x1EntityType.cs
│ │ │ ├── IFC4x2EntityType.cs
│ │ │ ├── IFC4x3EntityType.cs
│ │ │ ├── IFCEntityType.cs
│ │ │ └── IFCKnownMVDAndER.cs
│ │ ├── Extension/
│ │ │ ├── IFCAddress.cs
│ │ │ ├── IFCAddressItem.cs
│ │ │ ├── IFCClassification.cs
│ │ │ ├── IFCClassificationMgr.cs
│ │ │ ├── IFCFileHeader.cs
│ │ │ └── IFCFileHeaderItem.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ ├── Revit.IFC.Common.csproj
│ │ └── Utility/
│ │ ├── AllocatedGeometryObjectCache.cs
│ │ ├── COBieCompanyInfo.cs
│ │ ├── COBieProjectInfo.cs
│ │ ├── CoordReferenceInfo.cs
│ │ ├── DirectoryUtil.cs
│ │ ├── ElementComparer.cs
│ │ ├── IFCAnyHandleUtil.cs
│ │ ├── IFCCompatibilityType.cs
│ │ ├── IFCEntityTrie.cs
│ │ ├── IFCFuzzyXYZ.cs
│ │ ├── IfcSchemaEntityNode.cs
│ │ ├── IfcSchemaEntityTree.cs
│ │ ├── MathUtil.cs
│ │ ├── OptionsUtil.cs
│ │ ├── ProcessIFCXMLSchema.cs
│ │ ├── RevitStatusBar.cs
│ │ └── SolidMeshGeometryInfo.cs
│ ├── Revit.IFC.Export/
│ │ ├── Exporter/
│ │ │ ├── AreaSchemeExporter.cs
│ │ │ ├── AssemblyInstanceExporter.cs
│ │ │ ├── AssemblyInstanceInfo.cs
│ │ │ ├── BeamExporter.cs
│ │ │ ├── BodyData.cs
│ │ │ ├── BodyExporter.cs
│ │ │ ├── BodyExporterOptions.cs
│ │ │ ├── BoundingBoxExporter.cs
│ │ │ ├── CeilingExporter.cs
│ │ │ ├── ConnectorExporter.cs
│ │ │ ├── CurtainSystemExporter.cs
│ │ │ ├── CurveElementExporter.cs
│ │ │ ├── DoorWindowExporter.cs
│ │ │ ├── DuctInsulationExporter.cs
│ │ │ ├── DuctLiningExporter.cs
│ │ │ ├── Exporter.cs
│ │ │ ├── ExporterInitializer.cs
│ │ │ ├── ExporterInitializer_PredefPset.cs
│ │ │ ├── ExporterInitializer_PsetDef.cs
│ │ │ ├── ExporterInitializer_QsetDef.cs
│ │ │ ├── ExtrusionExporter.cs
│ │ │ ├── FabricSheetExporter.cs
│ │ │ ├── FabricationPartExporter.cs
│ │ │ ├── FamilyInstanceExporter.cs
│ │ │ ├── FilledRegionExporter.cs
│ │ │ ├── FloorExporter.cs
│ │ │ ├── FootingExporter.cs
│ │ │ ├── GenericElementExporter.cs
│ │ │ ├── GenericMEPExporter.cs
│ │ │ ├── GridExporter.cs
│ │ │ ├── GroupExporter.cs
│ │ │ ├── GroupInfo.cs
│ │ │ ├── HandleAndData.cs
│ │ │ ├── HostObjectExporter.cs
│ │ │ ├── HostedSweepExporter.cs
│ │ │ ├── IFCEntityAndPsetList.cs
│ │ │ ├── IFCExportBodyParams.cs
│ │ │ ├── InsulationExporter.cs
│ │ │ ├── PartExporter.cs
│ │ │ ├── PileExporter.cs
│ │ │ ├── PipeInsulationExporter.cs
│ │ │ ├── PropertySet/
│ │ │ │ ├── AttributeEntry.cs
│ │ │ │ ├── AttributeEntryMap.cs
│ │ │ │ ├── AttributeSetDescription.cs
│ │ │ │ ├── Calculators/
│ │ │ │ │ ├── AreaCalculator.cs
│ │ │ │ │ ├── ConcealedCalculator.cs
│ │ │ │ │ ├── ConcealedCeiling.cs
│ │ │ │ │ ├── ConcealedCeilingOffset.cs
│ │ │ │ │ ├── ConcealedFlooring.cs
│ │ │ │ │ ├── ConcealedFlooringOffset.cs
│ │ │ │ │ ├── CounterSlopeCalculator.cs
│ │ │ │ │ ├── CrossSectionAreaCalculator.cs
│ │ │ │ │ ├── DepthCalculator.cs
│ │ │ │ │ ├── DiameterCalculator.cs
│ │ │ │ │ ├── ExtendToStructureCalculator.cs
│ │ │ │ │ ├── FinishCalculator.cs
│ │ │ │ │ ├── FireRatingCalculator.cs
│ │ │ │ │ ├── GrossAreaCalculator.cs
│ │ │ │ │ ├── GrossCeilingAreaCalculator.cs
│ │ │ │ │ ├── GrossCrossSectionAreaCalculator.cs
│ │ │ │ │ ├── GrossFloorAreaCalculator.cs
│ │ │ │ │ ├── GrossSideAreaCalculator.cs
│ │ │ │ │ ├── GrossSurfaceAreaCalculator.cs
│ │ │ │ │ ├── GrossVolumeCalculator.cs
│ │ │ │ │ ├── GrossWeightCalculator.cs
│ │ │ │ │ ├── HeightCalculator.cs
│ │ │ │ │ ├── ISOCD3766BendingEndHookCalculator.cs
│ │ │ │ │ ├── ISOCD3766BendingStartHookCalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeCode.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterACalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterBCalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterCCalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterDCalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterECalculator.cs
│ │ │ │ │ ├── ISOCD3766ShapeParameterRCalculator.cs
│ │ │ │ │ ├── IsExternalCalculator.cs
│ │ │ │ │ ├── LengthCalculator.cs
│ │ │ │ │ ├── LoadBearingCalculator.cs
│ │ │ │ │ ├── LongitudinalBarNominalDiameter.cs
│ │ │ │ │ ├── LongitudinalBarSpacing.cs
│ │ │ │ │ ├── MeshLengthCalculator.cs
│ │ │ │ │ ├── MeshWidthCalculator.cs
│ │ │ │ │ ├── NetAreaCalculator.cs
│ │ │ │ │ ├── NetCrossSectionAreaCalculator.cs
│ │ │ │ │ ├── NetFloorAreaCalculator.cs
│ │ │ │ │ ├── NetSideAreaCalculator.cs
│ │ │ │ │ ├── NetSurfaceAreaCalculator.cs
│ │ │ │ │ ├── NetVolumeCalculator.cs
│ │ │ │ │ ├── NetWeightCalculator.cs
│ │ │ │ │ ├── NosingLengthCalculator.cs
│ │ │ │ │ ├── NumberOfRiserCalculator.cs
│ │ │ │ │ ├── NumberOfStoreysCalculator.cs
│ │ │ │ │ ├── NumberOfTreadsCalculator.cs
│ │ │ │ │ ├── OuterSurfaceAreaCalculator.cs
│ │ │ │ │ ├── PerimeterCalculator.cs
│ │ │ │ │ ├── ProjectedAreaCalculator.cs
│ │ │ │ │ ├── ReferenceCalculator.cs
│ │ │ │ │ ├── RiserHeightCalculator.cs
│ │ │ │ │ ├── RollCalculator.cs
│ │ │ │ │ ├── ShapeCalculator.cs
│ │ │ │ │ ├── SlabLoadBearingCalculator.cs
│ │ │ │ │ ├── SlopeCalculator.cs
│ │ │ │ │ ├── SpaceLevelAreaCalculator.cs
│ │ │ │ │ ├── SpaceLevelDescriptionCalculator.cs
│ │ │ │ │ ├── SpanCalculator.cs
│ │ │ │ │ ├── SpecificZoneCalculator.cs
│ │ │ │ │ ├── TemperatureCalculator.cs
│ │ │ │ │ ├── TransverseBarNominalDiameter.cs
│ │ │ │ │ ├── TransverseBarSpacing.cs
│ │ │ │ │ ├── TreadLengthAtInnerSideCalculator.cs
│ │ │ │ │ ├── TreadLengthAtOffsetCalculator.cs
│ │ │ │ │ ├── TreadLengthCalculator.cs
│ │ │ │ │ ├── VolumeCalculator.cs
│ │ │ │ │ ├── WaistThicknessCalculator.cs
│ │ │ │ │ ├── WalkingLineOffsetCalculator.cs
│ │ │ │ │ └── WidthCalculator.cs
│ │ │ │ ├── ClassificationUtil.cs
│ │ │ │ ├── Description.cs
│ │ │ │ ├── DescriptionCalculator.cs
│ │ │ │ ├── Entry.cs
│ │ │ │ ├── EntryMap.cs
│ │ │ │ ├── ExporterInitializer_PsetDefIFC2X2Enum.cs
│ │ │ │ ├── ExporterInitializer_PsetDefIFC2X3Enum.cs
│ │ │ │ ├── ExporterInitializer_PsetDefIFC4Enum.cs
│ │ │ │ ├── ExporterInitializer_PsetDefIFC4X3Enum.cs
│ │ │ │ ├── PreDefinedPropertySetDescription.cs
│ │ │ │ ├── PreDefinedPropertySetEntry.cs
│ │ │ │ ├── PreDefinedPropertySetEntryMap.cs
│ │ │ │ ├── PropertyCalculator.cs
│ │ │ │ ├── PropertySetDescription.cs
│ │ │ │ ├── PropertySetEntry.cs
│ │ │ │ ├── PropertySetEntryMap.cs
│ │ │ │ ├── PropertySetEntryUtil.cs
│ │ │ │ ├── PropertyUtil.cs
│ │ │ │ ├── QuantityDescription.cs
│ │ │ │ ├── QuantityEntry.cs
│ │ │ │ └── QuantityEntryMap.cs
│ │ │ ├── ProxyElementExporter.cs
│ │ │ ├── RailingExporter.cs
│ │ │ ├── RampExporter.cs
│ │ │ ├── RebarCouplerExporter.cs
│ │ │ ├── RebarExporter.cs
│ │ │ ├── RoofExporter.cs
│ │ │ ├── SiteExporter.cs
│ │ │ ├── SpaceBoundary.cs
│ │ │ ├── SpaceOccupantInfo.cs
│ │ │ ├── SpatialElementExporter.cs
│ │ │ ├── StairRampContainerInfo.cs
│ │ │ ├── StairsExporter.cs
│ │ │ ├── StructuralMemberExporter.cs
│ │ │ ├── SurfaceExporter.cs
│ │ │ ├── SweptSolidExporter.cs
│ │ │ ├── TextNoteExporter.cs
│ │ │ ├── TypePropertyInfo.cs
│ │ │ ├── WallConnectionData.cs
│ │ │ ├── WallExporter.cs
│ │ │ ├── WallSweepExporter.cs
│ │ │ ├── ZoneExporter.cs
│ │ │ └── ZoneInfo.cs
│ │ ├── Properties/
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Revit.IFC.Export.csproj
│ │ ├── Toolkit/
│ │ │ ├── IFC4Enums.cs
│ │ │ ├── IFC4x3Enums.cs
│ │ │ ├── IFCDataUtil.cs
│ │ │ ├── IFCEnums.cs
│ │ │ ├── IFCInstanceExporter.cs
│ │ │ ├── IFCSubElementEnums.cs
│ │ │ ├── IFCValidateEntry.cs
│ │ │ ├── PlacementSetter.cs
│ │ │ └── TransformSetter.cs
│ │ └── Utility/
│ │ ├── AssemblyInstanceCache.cs
│ │ ├── AttributeCache.cs
│ │ ├── BaseRelationsCache.cs
│ │ ├── BooleanPropertyInfoCache.cs
│ │ ├── CategoryUtil.cs
│ │ ├── ClassificationCache.cs
│ │ ├── ClassificationLocationCache.cs
│ │ ├── ContainmentCache.cs
│ │ ├── CurveAnnotationCache.cs
│ │ ├── DoorWindowDelayedOpeningCreator.cs
│ │ ├── DoorWindowDelayedOpeningCreatorCache.cs
│ │ ├── DoorWindowInfo.cs
│ │ ├── DoorWindowOpeningInfo.cs
│ │ ├── DoorWindowUtil.cs
│ │ ├── DoublePropertyInfoCache.cs
│ │ ├── DummyHostCache.cs
│ │ ├── ElementFilteringUtil.cs
│ │ ├── ElementOrConnector.cs
│ │ ├── ElementToHandleCache.cs
│ │ ├── ElementTypeToHandleCache.cs
│ │ ├── ExportOptionsCache.cs
│ │ ├── ExportTypeOverrideHelper.cs
│ │ ├── ExporterCacheManager.cs
│ │ ├── ExporterStateManager.cs
│ │ ├── ExporterUtil.cs
│ │ ├── FabricParams.cs
│ │ ├── FamilyExporterUtil.cs
│ │ ├── FamilyTypeInfo.cs
│ │ ├── FootPrintInfo.cs
│ │ ├── GUIDOptions.cs
│ │ ├── GUIDUtil.cs
│ │ ├── GeometryUtil.cs
│ │ ├── GroupCache.cs
│ │ ├── HandleToElementCache.cs
│ │ ├── HostPartsCache.cs
│ │ ├── IFCEnumExtensions.cs
│ │ ├── IFCExchangeRequirements.cs
│ │ ├── IFCExportConfiguration.cs
│ │ ├── IFCExportConfigurationsMap.cs
│ │ ├── IFCExportInfoPair.cs
│ │ ├── IFCFacilityTypes.cs
│ │ ├── IFCPhaseAttributes.cs
│ │ ├── IFCVersionAttributes.cs
│ │ ├── IntegerPropertyInfoCache.cs
│ │ ├── LevelInfoCache.cs
│ │ ├── LevelUtil.cs
│ │ ├── LinkedFileExportAs.cs
│ │ ├── LogicalPropertyInfoCache.cs
│ │ ├── MEPCache.cs
│ │ ├── MaterialAndProfile.cs
│ │ ├── MaterialConstituentCache.cs
│ │ ├── MaterialConstituentSetCache.cs
│ │ ├── MaterialLayerSetCache.cs
│ │ ├── MaterialLayerSetInfo.cs
│ │ ├── MaterialPropertiesUtil.cs
│ │ ├── MaterialRelationsCache.cs
│ │ ├── MaterialSetUsageCache.cs
│ │ ├── NamingOptions.cs
│ │ ├── NamingUtil.cs
│ │ ├── OpeningUtil.cs
│ │ ├── ParamExprErrorListener.cs
│ │ ├── ParamExprGrammar.g4
│ │ ├── ParamExprListener.cs
│ │ ├── ParamExprLogger.cs
│ │ ├── ParamExprResolver.cs
│ │ ├── ParamExprResolverParser.g4
│ │ ├── ParameterCache.cs
│ │ ├── ParameterElementCache.cs
│ │ ├── ParameterUtil.cs
│ │ ├── PartExportedCache.cs
│ │ ├── PartOrGeometry.cs
│ │ ├── PresentationLayerSetCache.cs
│ │ ├── PresentationStyleAssignmentCache.cs
│ │ ├── ProductWrapper.cs
│ │ ├── PropertyInfoCache.cs
│ │ ├── PropertyMap.cs
│ │ ├── PropertySetCache.cs
│ │ ├── PropertySetOptions.cs
│ │ ├── RepresentationUtil.cs
│ │ ├── SimpleSweptSolidAnalyzer.cs
│ │ ├── SiteExportInfo.cs
│ │ ├── SpaceBoundaryCache.cs
│ │ ├── SpaceBoundingElementUtil.cs
│ │ ├── SpaceInfo.cs
│ │ ├── SpaceOccupantInfoCache.cs
│ │ ├── StairRampContainerInfoCache.cs
│ │ ├── StringPropertyInfoCache.cs
│ │ ├── SystemsCache.cs
│ │ ├── TemporaryPartsCache.cs
│ │ ├── TriangleMergeUtil.cs
│ │ ├── TypeObjectsCache.cs
│ │ ├── TypePropertyInfoCache.cs
│ │ ├── TypeRelationsCache.cs
│ │ ├── UnitMappingUtil.cs
│ │ ├── UnitUtil.cs
│ │ ├── UnitsCache.cs
│ │ ├── WallConnectionDataCache.cs
│ │ ├── WallCrossSectionCache.cs
│ │ └── ZoneInfoCache.cs
│ ├── Revit.IFC.Import/
│ │ ├── Data/
│ │ │ ├── IFCAddress.cs
│ │ │ ├── IFCAdvancedBrep.cs
│ │ │ ├── IFCAdvancedFace.cs
│ │ │ ├── IFCAnnotation.cs
│ │ │ ├── IFCApplication.cs
│ │ │ ├── IFCBSplineCurve.cs
│ │ │ ├── IFCBSplineCurveWithKnots.cs
│ │ │ ├── IFCBSplineSurface.cs
│ │ │ ├── IFCBSplineSurfaceWithKnots.cs
│ │ │ ├── IFCBlock.cs
│ │ │ ├── IFCBooleanOperand.cs
│ │ │ ├── IFCBooleanResult.cs
│ │ │ ├── IFCBoundedCurve.cs
│ │ │ ├── IFCBuilding.cs
│ │ │ ├── IFCBuildingElement.cs
│ │ │ ├── IFCBuildingElementComponent.cs
│ │ │ ├── IFCBuildingElementPart.cs
│ │ │ ├── IFCBuildingElementProxy.cs
│ │ │ ├── IFCBuildingStorey.cs
│ │ │ ├── IFCCSGSolid.cs
│ │ │ ├── IFCCartesianPointList3D.cs
│ │ │ ├── IFCCartesianTransformOperator.cs
│ │ │ ├── IFCCircle.cs
│ │ │ ├── IFCClosedShell.cs
│ │ │ ├── IFCColourRgb.cs
│ │ │ ├── IFCColourRgbList.cs
│ │ │ ├── IFCColourSpecification.cs
│ │ │ ├── IFCComplexProperty.cs
│ │ │ ├── IFCCompositeCurve.cs
│ │ │ ├── IFCConic.cs
│ │ │ ├── IFCConnectedFaceSet.cs
│ │ │ ├── IFCCsgPrimitive3D.cs
│ │ │ ├── IFCCurve.cs
│ │ │ ├── IFCCylindricalSurface.cs
│ │ │ ├── IFCDerivedProfileDef.cs
│ │ │ ├── IFCDistributionPort.cs
│ │ │ ├── IFCDistributionSystem.cs
│ │ │ ├── IFCDoorLiningProperties.cs
│ │ │ ├── IFCDoorPanelProperties.cs
│ │ │ ├── IFCDoorStyle.cs
│ │ │ ├── IFCDoorType.cs
│ │ │ ├── IFCDoorWindowPropertyBase.cs
│ │ │ ├── IFCEdge.cs
│ │ │ ├── IFCEdgeCurve.cs
│ │ │ ├── IFCEdgeLoop.cs
│ │ │ ├── IFCElement.cs
│ │ │ ├── IFCElementAssembly.cs
│ │ │ ├── IFCElementComponent.cs
│ │ │ ├── IFCElementQuantity.cs
│ │ │ ├── IFCElementType.cs
│ │ │ ├── IFCElementarySurface.cs
│ │ │ ├── IFCEllipse.cs
│ │ │ ├── IFCEntity.cs
│ │ │ ├── IFCExtrudedAreaSolid.cs
│ │ │ ├── IFCFace.cs
│ │ │ ├── IFCFaceBasedSurfaceModel.cs
│ │ │ ├── IFCFaceBound.cs
│ │ │ ├── IFCFaceSurface.cs
│ │ │ ├── IFCFacetedBrep.cs
│ │ │ ├── IFCFeatureElement.cs
│ │ │ ├── IFCFeatureElementSubtraction.cs
│ │ │ ├── IFCGeometricSet.cs
│ │ │ ├── IFCGeotechnicalElement.cs
│ │ │ ├── IFCGeotechnicalStratum.cs
│ │ │ ├── IFCGrid.cs
│ │ │ ├── IFCGridAxis.cs
│ │ │ ├── IFCGroup.cs
│ │ │ ├── IFCHalfSpaceSolid.cs
│ │ │ ├── IFCImportFile.cs
│ │ │ ├── IFCIndexedColourMap.cs
│ │ │ ├── IFCIndexedPolyCurve.cs
│ │ │ ├── IFCIndexedPolygonalFace.cs
│ │ │ ├── IFCLine.cs
│ │ │ ├── IFCLocation.cs
│ │ │ ├── IFCLoop.cs
│ │ │ ├── IFCManifoldSolidBrep.cs
│ │ │ ├── IFCMappedItem.cs
│ │ │ ├── IFCMaterial.cs
│ │ │ ├── IFCMaterialConstituent.cs
│ │ │ ├── IFCMaterialConstituentSet.cs
│ │ │ ├── IFCMaterialLayer.cs
│ │ │ ├── IFCMaterialLayerSet.cs
│ │ │ ├── IFCMaterialLayerSetUsage.cs
│ │ │ ├── IFCMaterialLayerWithOffsets.cs
│ │ │ ├── IFCMaterialList.cs
│ │ │ ├── IFCMaterialProfile.cs
│ │ │ ├── IFCMaterialProfileSet.cs
│ │ │ ├── IFCMaterialProfileSetUsage.cs
│ │ │ ├── IFCMaterialProfileSetUsageTapering.cs
│ │ │ ├── IFCObject.cs
│ │ │ ├── IFCObjectDefinition.cs
│ │ │ ├── IFCOffsetCurve2D.cs
│ │ │ ├── IFCOffsetCurve3D.cs
│ │ │ ├── IFCOpeningElement.cs
│ │ │ ├── IFCOrientedEdge.cs
│ │ │ ├── IFCOwnerHistory.cs
│ │ │ ├── IFCPhysicalComplexQuantity.cs
│ │ │ ├── IFCPhysicalQuantity.cs
│ │ │ ├── IFCPhysicalSimpleQuantity.cs
│ │ │ ├── IFCPlane.cs
│ │ │ ├── IFCPolyLoop.cs
│ │ │ ├── IFCPolyline.cs
│ │ │ ├── IFCPort.cs
│ │ │ ├── IFCPostalAddress.cs
│ │ │ ├── IFCPresentationItem.cs
│ │ │ ├── IFCPresentationLayerAssignment.cs
│ │ │ ├── IFCPresentationLayerWithStyle.cs
│ │ │ ├── IFCPresentationStyle.cs
│ │ │ ├── IFCPresentationStyleAssignment.cs
│ │ │ ├── IFCProduct.cs
│ │ │ ├── IFCProductRepresentation.cs
│ │ │ ├── IFCProfileDef.cs
│ │ │ ├── IFCProject.cs
│ │ │ ├── IFCProperty.cs
│ │ │ ├── IFCPropertyBoundedValue.cs
│ │ │ ├── IFCPropertyMapping.cs
│ │ │ ├── IFCPropertySet.cs
│ │ │ ├── IFCPropertySetDefinition.cs
│ │ │ ├── IFCPropertyTableValue.cs
│ │ │ ├── IFCPropertyValue.cs
│ │ │ ├── IFCProxy.cs
│ │ │ ├── IFCRationalBSplineSurfaceWithKnots.cs
│ │ │ ├── IFCRepresentation.cs
│ │ │ ├── IFCRepresentationContext.cs
│ │ │ ├── IFCRepresentationItem.cs
│ │ │ ├── IFCRepresentationMap.cs
│ │ │ ├── IFCRevolvedAreaSolid.cs
│ │ │ ├── IFCRoot.cs
│ │ │ ├── IFCSectionedSolid.cs
│ │ │ ├── IFCSectionedSolidHorizontal.cs
│ │ │ ├── IFCSectionedSurface.cs
│ │ │ ├── IFCShellBasedSurfaceModel.cs
│ │ │ ├── IFCSimpleProperty.cs
│ │ │ ├── IFCSite.cs
│ │ │ ├── IFCSolidModel.cs
│ │ │ ├── IFCSolidStratum.cs
│ │ │ ├── IFCSpace.cs
│ │ │ ├── IFCSpatialElement.cs
│ │ │ ├── IFCSpatialStructureElement.cs
│ │ │ ├── IFCSpatialZone.cs
│ │ │ ├── IFCStyledItem.cs
│ │ │ ├── IFCSurface.cs
│ │ │ ├── IFCSurfaceCurveSweptAreaSolid.cs
│ │ │ ├── IFCSurfaceOfLinearExtrusion.cs
│ │ │ ├── IFCSurfaceOfRevolution.cs
│ │ │ ├── IFCSurfaceStyle.cs
│ │ │ ├── IFCSurfaceStyleShading.cs
│ │ │ ├── IFCSweptAreaSolid.cs
│ │ │ ├── IFCSweptDiskSolid.cs
│ │ │ ├── IFCSweptSurface.cs
│ │ │ ├── IFCSystem.cs
│ │ │ ├── IFCTopologicalRepresentationItem.cs
│ │ │ ├── IFCTriangulatedFaceSet.cs
│ │ │ ├── IFCTrimmedCurve.cs
│ │ │ ├── IFCTypeObject.cs
│ │ │ ├── IFCTypeProduct.cs
│ │ │ ├── IFCUnit.cs
│ │ │ ├── IFCUnits.cs
│ │ │ ├── IFCVertex.cs
│ │ │ ├── IFCVertexPoint.cs
│ │ │ ├── IFCWindowLiningProperties.cs
│ │ │ ├── IFCWindowPanelProperties.cs
│ │ │ ├── IFCZone.cs
│ │ │ ├── IIFCMaterialSelect.cs
│ │ │ ├── IfcMaterialProfileWithOffsets.cs
│ │ │ ├── IfcPolygonalFaceSet.cs
│ │ │ └── IfcTessellatedFaceSet.cs
│ │ ├── Enums/
│ │ │ ├── IFCEnums.cs
│ │ │ ├── IFCSchemaVersion.cs
│ │ │ ├── IFCShapeBuilderType.cs
│ │ │ └── IFCSharedParameters.cs
│ │ ├── Geometry/
│ │ │ ├── IFCGeometryUtil.cs
│ │ │ ├── IFCPoint.cs
│ │ │ ├── IFCVirtualGridIntersection.cs
│ │ │ └── IIFCBooleanOperand.cs
│ │ ├── Importer.cs
│ │ ├── Processors/
│ │ │ └── IFCDefaultProcessor.cs
│ │ ├── Properties/
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Revit.IFC.Import.csproj
│ │ └── Utility/
│ │ ├── BrepBuilderScope.cs
│ │ ├── BuilderScope.cs
│ │ ├── IFCCategoryUtil.cs
│ │ ├── IFCDataUtil.cs
│ │ ├── IFCElementUtil.cs
│ │ ├── IFCGUIDUtil.cs
│ │ ├── IFCImportCache.cs
│ │ ├── IFCImportHandleUtil.cs
│ │ ├── IFCImportHybridInfo.cs
│ │ ├── IFCImportLog.cs
│ │ ├── IFCImportOptions.cs
│ │ ├── IFCImportShapeEditScope.cs
│ │ ├── IFCMaterialCache.cs
│ │ ├── IFCMaterialInfo.cs
│ │ ├── IFCNamingUtil.cs
│ │ ├── IFCObjectReferenceSelect.cs
│ │ ├── IFCParameterSetByGroup.cs
│ │ ├── IFCSolidInfo.cs
│ │ ├── IFCUnitUtil.cs
│ │ ├── ParametersToSet.cs
│ │ ├── ProcessIFCRelation.cs
│ │ └── TessellatedShapeBuilderScope.cs
│ ├── Revit.IFC.Import.Core/
│ │ ├── Processors/
│ │ │ ├── IFCNavisProcessor.cs
│ │ │ └── IIFCFileProcessor.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ └── Revit.IFC.Import.Core.csproj
│ └── RevitIFCTools/
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── GeneratePsetDefWin.xaml
│ ├── GeneratePsetDefWin.xaml.cs
│ ├── HtmlPsetDefinitionParser.cs
│ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type.txt
│ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt
│ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL_grouped.txt
│ ├── IFC Shared Parameters-RevitIFCBuiltIn.txt
│ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL.txt
│ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL_grouped.txt
│ ├── IFC2X2_ADD1.exp
│ ├── IFC2X2_ADD1.xsd
│ ├── IFC2X3_TC1.exp
│ ├── IFC2X3_TC1.xsd
│ ├── IFC4.exp
│ ├── IFC4.xsd
│ ├── IFC4RV.xsd
│ ├── IFC4X3_ADD2.exp
│ ├── IFC4X3_ADD2.xsd
│ ├── IFC4_AllProjectParameters_2023.rvt
│ ├── IFC4_Shared_Parameters.txt
│ ├── IFCCertifiedEntitiesAndPSets.json
│ ├── IFCEntityAndPsetList.cs
│ ├── IFCEntityListWin.xaml
│ ├── IFCEntityListWin.xaml.cs
│ ├── IFC_Schemas/
│ │ └── .gitattributes
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── ParameterExpr/
│ │ ├── ExprTester.xaml
│ │ ├── ExprTester.xaml.cs
│ │ ├── Logger.cs
│ │ └── ParameterExprParserTest.cs
│ ├── ProcessPsetDefinition.cs
│ ├── Properties/
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── PropertySet/
│ │ ├── ComplexProperty.cs
│ │ ├── LanguageType.cs
│ │ ├── NameAlias.cs
│ │ ├── PropertyBoundedValue.cs
│ │ ├── PropertyDataType.cs
│ │ ├── PropertyEnumItem.cs
│ │ ├── PropertyEnumeratedValue.cs
│ │ ├── PropertyListValue.cs
│ │ ├── PropertyReferenceValue.cs
│ │ ├── PropertySingleValue.cs
│ │ ├── PropertyTableValue.cs
│ │ ├── PsetDefinition.cs
│ │ └── PsetProperty.cs
│ ├── RevitIFCTools.csproj
│ └── RevitIFCToolsEnum.cs
├── VSProps/
│ ├── Revit.CSharp.Sdk.props
│ ├── Revit.CSharp.Sdk.targets
│ ├── Revit.Common.Sdk.props
│ ├── Revit.Common.Sdk.targets
│ └── Revit.NetVersion.props
└── contributing.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .editorconfig
================================================
# top-most EditorConfig file
root = true
# Code files
[*.cs]
indent_style = space
indent_size = 3
================================================
FILE: .gitattributes
================================================
*.zip filter=lfs diff=lfs merge=lfs -text
================================================
FILE: .github/ISSUE_TEMPLATE/ENHANCEMENT-REQUEST-FORM.yml
================================================
name: Enhancement Request
description: File an Enhancement Request
title: "ENH: "
labels: ["enhancement", "triage"]
body:
- type: markdown
attributes:
value: |
An Enhancement Request is a proposed change to improve functionality, user interface (UI), and/or experience (UX). Please describe the request (may include images) and post the smallest possible sample files (RVT and IFC), zipped. If you cannot post a file to this public forum, please email files to ifc-github-support@autodesk.com. They will be used internally only and kept confidential.
- type: textarea
id: Enhancementtext
attributes:
label: Enhancement Description
description: What would you prefer to happen?
placeholder: Enhancement description including images and zipped RVT/IFC files
value: "... "
validations:
required: true
- type: dropdown
id: Revitversion
attributes:
label: Revit Version
description: What version of Revit are you using?
options:
- 2027.0.x
- 2026.4.x
- 2026.3.x
- 2026.2.x
- 2026.1.x
- 2026.0.x
- 2025.4.x
- 2025.3.x
- 2025.2.x
- 2025.1.x
- 2025.0.x
- 2024.3.x
- 2024.2.x
- 2024.1.x
- 2024.0.x
- 2023.1.x
- 2023.0.x
- 2022.1.x
- 2022.0.x
- pre 2022
validations:
required: true
- type: dropdown
id: IFCAddonversion
attributes:
label: IFC for Revit Addon Version
description: What version of the IFC for Revit addon are you using?
options:
- 26.4.1
- 26.4.0
- 26.1.0
- 25.4.40
- 25.4.4
- 25.4.3
- 25.4.0
- 25.2.0
- 24.3.40
- 24.3.20
- 24.2.20
- 24.2.0
- 24.1.1
- 24.1.0
- 23.4.1
- 23.4.0
- 23.3.1
- 23.3.0
- 23.2.5
- 23.2.4
- 23.2.3
- 23.1.1
- 23.1.0
- 22.7.0
- 22.6.2
- 22.6.1
- 22.6.0
- 22.5.2
- 22.5.1
- 22.5.0
- pre 2022
- Other / None
validations:
required: true
- type: dropdown
id: Windowsversion
attributes:
label: Windows Version
description: What version of Windows are you using?
options:
- 11 25H2
- 11 24H2
- 11 23H2
- 11 22H2
- 11 21H2
- 10 22H2
- 10 21H2
- 10 21H1
- 10 20H2
- 10 2004
validations:
required: true
- type: markdown
attributes:
value: |
Thank you for taking the time to fill out this Enhancement Request.
================================================
FILE: .github/ISSUE_TEMPLATE/INQUIRY-FORM.yml
================================================
name: Inquiry
description: File an Inquiry
title: "INQ: "
labels: ["inquiry", "triage"]
body:
- type: markdown
attributes:
value: |
An Inquiry is a question about IFC functionality and/or UI/UX (but not a Problem Report or an Enhancement Request), where the user needs further assistance or guidance in its usage. Please describe the inquiry (may include images) and post the smallest possible sample files (RVT and IFC), zipped. If you cannot post a file to this public forum, please email files to ifc-github-support@autodesk.com. They will be used internally only and kept confidential.
- type: textarea
id: Inquirytext
attributes:
label: Inquiry description
description: What are you trying to accomplish?
placeholder: Inquiry description including images and zipped RVT/IFC files
value: "... "
validations:
required: true
- type: dropdown
id: Revitversion
attributes:
label: Revit Version
description: What version of Revit are you using?
options:
- 2027.0.x
- 2026.4.x
- 2026.3.x
- 2026.2.x
- 2026.1.x
- 2026.0.x
- 2025.4.x
- 2025.3.x
- 2025.2.x
- 2025.1.x
- 2025.0.x
- 2024.3.x
- 2024.2.x
- 2024.1.x
- 2024.0.x
- 2023.1.x
- 2023.0.x
- 2022.1.x
- 2022.0.x
- pre 2022
validations:
required: true
- type: dropdown
id: IFCAddonversion
attributes:
label: IFC for Revit Addon Version
description: What version of the IFC for Revit addon are you using?
options:
- 26.4.1
- 26.4.0
- 26.1.0
- 25.4.40
- 25.4.4
- 25.4.3
- 25.4.0
- 25.2.0
- 24.3.40
- 24.3.20
- 24.2.20
- 24.2.0
- 24.1.1
- 24.1.0
- 23.4.1
- 23.4.0
- 23.3.1
- 23.3.0
- 23.2.5
- 23.2.4
- 23.2.3
- 23.1.1
- 23.1.0
- 22.7.0
- 22.6.2
- 22.6.1
- 22.6.0
- 22.5.2
- 22.5.1
- 22.5.0
- pre 2022
- Other / None
validations:
required: true
- type: dropdown
id: Windowsversion
attributes:
label: Windows Version
description: What version of Windows are you using?
options:
- 11 25H2
- 11 24H2
- 11 23H2
- 11 22H2
- 11 21H2
- 10 22H2
- 10 21H2
- 10 21H1
- 10 20H2
- 10 2004
validations:
required: true
- type: markdown
attributes:
value: |
Thank you for taking the time to fill out this Inquiry.
================================================
FILE: .github/ISSUE_TEMPLATE/PROBLEM-REPORT-FORM.yml
================================================
name: Problem Report
description: File a Problem Report
title: "PR: "
labels: ["problem", "triage"]
body:
- type: markdown
attributes:
value: |
A Problem Report is a "bug", error, or issue found during the use of any aspect of the IFC functionality. Please describe the issue, including steps to recreate the error (may include images), and post the smallest possible sample files (RVT and IFC), zipped. If you cannot post a file to this public forum, please email files to ifc-github-support@autodesk.com. They will be used internally only and kept confidential.
- type: textarea
id: Reporttext
attributes:
label: Problem Description
description: What did you expect to happen and what was the propblem?
placeholder: Problem description including images and zipped RVT/IFC files
value: "... "
validations:
required: true
- type: dropdown
id: Revitversion
attributes:
label: Revit Version
description: What version of Revit are you using?
options:
- 2027.0.x
- 2026.4.x
- 2026.3.x
- 2026.2.x
- 2026.1.x
- 2026.0.x
- 2025.4.x
- 2025.3.x
- 2025.2.x
- 2025.1.x
- 2025.0.x
- 2024.3.x
- 2024.2.x
- 2024.1.x
- 2024.0.x
- 2023.1.x
- 2023.0.x
- 2022.1.x
- 2022.0.x
- pre 2022
validations:
required: true
- type: dropdown
id: IFCAddonversion
attributes:
label: IFC for Revit Addon Version
description: What version of the IFC for Revit addon are you using?
options:
- 26.4.1
- 26.4.0
- 26.1.0
- 25.4.40
- 25.4.4
- 25.4.3
- 25.4.0
- 25.2.0
- 24.3.40
- 24.3.20
- 24.2.20
- 24.2.0
- 24.1.1
- 24.1.0
- 23.4.1
- 23.4.0
- 23.3.1
- 23.3.0
- 23.2.5
- 23.2.4
- 23.2.3
- 23.1.1
- 23.1.0
- 22.7.0
- 22.6.2
- 22.6.1
- 22.6.0
- 22.5.2
- 22.5.1
- 22.5.0
- pre 2022
- Other / None
validations:
required: true
- type: dropdown
id: Windowsversion
attributes:
label: Windows Version
description: What version of Windows are you using?
options:
- 11 25H2
- 11 24H2
- 11 23H2
- 11 22H2
- 11 21H2
- 10 22H2
- 10 21H2
- 10 21H1
- 10 20H2
- 10 2004
validations:
required: true
- type: markdown
attributes:
value: |
Thank you for taking the time to submit this Problem Report.
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
.DS_Store
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
[Ii]ntermediate/
# Roslyn cache directories
*.ide/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
#NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.mdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
*.ide
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
# Visual Studio profiler
*.psess
*.vsp
*.vspx
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding addin-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
_NCrunch_*
.*crunch*.local.xml
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# If using the old MSBuild-Integrated Package Restore, uncomment this:
#!**/packages/repositories.config
# Windows Azure Build Output
csx/
*.build.csdef
# Windows Store app package directory
AppPackages/
# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
*.msi
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
# Rhino
*.rui_bak
.vs/Revit.IFC/v15/Server/sqlite3/db.lock
*.ide-shm
*.ide-wal
.vs/
*.sig
================================================
FILE: Install/Program Files to Install/DefaultUserDefinedParameterSets.txt
================================================
#
# User Defined PropertySet Definition File
#
# Format:
# PropertySet: <Pset Name> I[nstance]/T[ype] <element list separated by ','>
# <Property Name 1> <Data type> <[opt] Revit parameter name, if different from IFC>
# <Property Name 2> <Data type> <[opt] Revit parameter name, if different from IFC>
# ...
#
# Data types supported: Acceleration, AngularVelocity, Area, AreaDensity, Boolean, ClassificationReference, ColorTemperature, Count, Currency,
# DynamicViscosity, ElectricCurrent, ElectricVoltage, Energy, ElectricalEfficacy, Force, Frequency, HeatFluxDensity,
# HeatingValue, Identifier, Illuminance, Integer, IonConcentration, IsothermalMoistureCapacity, Label, Length,
# LinearForce, LinearMoment, LinearStiffness, LinearVelocity, Logical, LuminousFlux, LuminousIntensity, Mass, MassDensity, MassFlowRate, MassPerLength
# ModulusOfElasticity, MoistureDiffusivity, MomentOfInertia, NormalisedRatio, Numeric, PlanarForce, PlaneAngle,
# PositiveLength, PositivePlaneAngle,PositiveRatio, Power, Pressure, Ratio, Real, RotationalFrequency,
# SoundPower, SoundPressure, SpecificHeatCapacity, Text, ThermalConductivity, ThermalExpansionCoefficient, ThermalResistance
# ThermalTransmittance, ThermodynamicTemperature, Time, Torque, VaporPermeability, Volume, VolumetricFlowRate, WarpingConstant
#
# Since 24.1.0, type properties are not exported in case they are not specified in the user-defined property sets file.
# To export type properties for the IFCElement, for example,
# a user should include "IFCElementType" in the proper .txt file.
#
# Example property set definition for COBie:
#
#PropertySet: COBie_Specification T IfcElementType
# NominalLength Real COBie.Type.NominalLength
# NominalWidth Real COBie.Type.NominalWidth
# NominalHeight Real COBie.Type.NominalHeight
# Shape Text COBie.Type.Shape
# Size Text COBie.Type.Size
# Color Text COBie.Type.Color
# Finish Text COBie.Type.Finish
# Grade Text COBie.Type.Grade
# Material Text COBie.Type.Material
# Constituents Text COBie.Type.Constituents
# Features Text Cobie.Type.Features
# AccessibilityPerformance Text COBie.Type.AccessibilityPerformance
# CodePerformance Text COBie.Type.CodePerformance
# SustainabilityPerformance Text COBie.Type.SustainabilityPerformance
#
================================================
FILE: Install/Program Files to Install/IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt
================================================
# This is a Revit shared parameter file.
# Do not edit manually.
*META VERSION MINVERSION
META 2 1
*GROUP ID NAME
#
GROUP 3 IfcDoorLiningProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 92f9b046-b15e-42bd-baea-369a015b9156 IfcDoorLiningProperties.CasingDepth[Type] LENGTH 3 1 IfcPositiveLengthMeasure 1
PARAM b135fe15-c89f-47e6-a590-16701b7f1d45 IfcDoorLiningProperties.CasingThickness[Type] LENGTH 3 1 IfcPositiveLengthMeasure 1
PARAM 5b3062b1-0ad1-44ee-ae39-bebc572a9cf4 IfcDoorLiningProperties.LiningDepth[Type] LENGTH 3 1 IfcPositiveLengthMeasure 1
PARAM 0ad13bdd-a89a-4f20-8609-8fc17c3477e4 IfcDoorLiningProperties.LiningOffset[Type] LENGTH 3 1 IfcLengthMeasure 1
PARAM 8aa4ffe3-5e5c-495a-817d-7979fdd4d5e7 IfcDoorLiningProperties.LiningThickness[Type] LENGTH 3 1 IfcNonNegativeLengthMeasure 1
PARAM f1565685-f68c-4b36-9803-041b31c7ae80 IfcDoorLiningProperties.LiningToPanelOffsetX[Type] LENGTH 3 1 IfcLengthMeasure 1
PARAM 3156d749-4efe-434b-84d6-748788f161b5 IfcDoorLiningProperties.LiningToPanelOffsetY[Type] LENGTH 3 1 IfcLengthMeasure 1
PARAM d25dfef4-d7d2-4790-87e3-acdccc364c3e IfcDoorLiningProperties.ThresholdDepth[Type] LENGTH 3 1 IfcPositiveLengthMeasure 1
PARAM 517d7a2f-2552-4512-b54e-97c58f6d61dc IfcDoorLiningProperties.ThresholdOffset[Type] LENGTH 3 1 IfcLengthMeasure 1
PARAM ebc31023-08de-4dcf-ba62-a89f16983cff IfcDoorLiningProperties.ThresholdThickness[Type] LENGTH 3 1 IfcNonNegativeLengthMeasure 1
PARAM 47ac05fc-2ff6-420e-b3bb-cdcd4e0a5f26 IfcDoorLiningProperties.TransomOffset[Type] LENGTH 3 1 IfcLengthMeasure 1
PARAM 9d4e7783-2e14-4b54-9674-5b1f51e4e557 IfcDoorLiningProperties.TransomThickness[Type] LENGTH 3 1 IfcNonNegativeLengthMeasure 1
#
GROUP 4 IfcDoorPanelProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 25f566ef-a0d2-4784-88dc-69821dcbb591 IfcDoorPanelProperties.PanelDepth[Type] LENGTH 4 1 IfcPositiveLengthMeasure 1
PARAM 8dec2ef0-b531-4a8e-a003-2402019d7c72 IfcDoorPanelProperties.PanelOperation[Type] TEXT 4 1 IfcLabel 1
PARAM c8444bb5-6eec-4b71-97e3-b65271233de0 IfcDoorPanelProperties.PanelPosition[Type] TEXT 4 1 IfcLabel 1
PARAM 6a48a5e8-2e46-4f8e-b4af-a48c49e48964 IfcDoorPanelProperties.PanelWidth[Type] NUMBER 4 1 IfcNormalisedRatioMeasure 1
#
GROUP 5 IfcFuelProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 37031346-c7ab-4032-aa3f-bd95d01757c7 IfcFuelProperties.CarbonContent[Type] NUMBER 5 1 IfcPositiveRatioMeasure 1
PARAM ef703772-4618-43a3-8639-58048fe9f3af IfcFuelProperties.CombustionTemperature[Type] NUMBER 5 1 IfcThermodynamicTemperatureMeasure 1
PARAM 66bbb418-6906-4083-ba31-f256beb35439 IfcFuelProperties.HigherHeatingValue[Type] NUMBER 5 1 IfcHeatingValueMeasure 1
PARAM 0f2986d3-a8dd-4aed-a7db-f169b958ebc6 IfcFuelProperties.LowerHeatingValue[Type] NUMBER 5 1 IfcHeatingValueMeasure 1
#
GROUP 6 IfcGeneralMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 08485ab0-3052-472a-a66d-125d732478ec IfcGeneralMaterialProperties.MassDensity[Type] MASS_DENSITY 6 1 IfcMassDensityMeasure 1
PARAM f78bbd9e-9023-460e-be67-b74ffebe7c55 IfcGeneralMaterialProperties.MolecularWeight[Type] NUMBER 6 1 IfcMolecularWeightMeasure 1
PARAM 3b48dd4b-c349-41ef-bc94-c6b834d06af5 IfcGeneralMaterialProperties.Porosity[Type] NUMBER 6 1 IfcNormalisedRatioMeasure 1
#
GROUP 7 IfcHygroscopicMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ce2d6709-22b1-4f7d-a3fa-9f9e9cc45972 IfcHygroscopicMaterialProperties.IsothermalMoistureCapacity[Type] NUMBER 7 1 IfcIsothermalMoistureCapacityMeasure 1
PARAM 5f6a7c0c-af71-4afc-9f16-bee7b2b2c296 IfcHygroscopicMaterialProperties.LowerVaporResistanceFactor[Type] NUMBER 7 1 IfcPositiveRatioMeasure 1
PARAM 59004aba-cc6a-4cb8-b46e-ad4ab6785cba IfcHygroscopicMaterialProperties.MoistureDiffusivity[Type] NUMBER 7 1 IfcMoistureDiffusivityMeasure 1
PARAM 8e17b1e2-ddb9-4367-aea7-85e9f2660a87 IfcHygroscopicMaterialProperties.UpperVaporResistanceFactor[Type] NUMBER 7 1 IfcPositiveRatioMeasure 1
PARAM d31e7f81-8a5f-4956-9d05-0889d047325c IfcHygroscopicMaterialProperties.VaporPermeability[Type] NUMBER 7 1 IfcVaporPermeabilityMeasure 1
#
GROUP 8 IfcMechanicalConcreteMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4253ac21-27ae-4e09-b395-5a6aeedf9f3f IfcMechanicalConcreteMaterialProperties.AdmixturesDescription[Type] TEXT 8 1 IfcText 1
PARAM 64f1b7bf-8c63-40dd-95ac-44a214ddee4a IfcMechanicalConcreteMaterialProperties.CompressiveStrength[Type] NUMBER 8 1 IfcPressureMeasure 1
PARAM 38087230-ac60-455d-840f-40215d445e53 IfcMechanicalConcreteMaterialProperties.MaxAggregateSize[Type] LENGTH 8 1 IfcPositiveLengthMeasure 1
PARAM 00cb9dde-78b3-4678-b473-f532f2eebbb0 IfcMechanicalConcreteMaterialProperties.ProtectivePoreRatio[Type] NUMBER 8 1 IfcNormalisedRatioMeasure 1
PARAM a1888bfd-8dab-4311-b129-dc2552d932dd IfcMechanicalConcreteMaterialProperties.WaterImpermeability[Type] TEXT 8 1 IfcText 1
PARAM 6f4dd356-fa8b-4af7-8898-3394325bf48a IfcMechanicalConcreteMaterialProperties.Workability[Type] TEXT 8 1 IfcText 1
#
GROUP 9 IfcMechanicalMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM a38fcbae-9c8c-45c0-9390-43fa2a9a9349 IfcMechanicalMaterialProperties.DynamicViscosity[Type] NUMBER 9 1 IfcDynamicViscosityMeasure 1
PARAM 24f1eedc-7357-4bcb-bd0d-4d6172ea0ab6 IfcMechanicalMaterialProperties.PoissonRatio[Type] NUMBER 9 1 IfcPositiveRatioMeasure 1
PARAM 159af2ad-daa9-4570-83eb-ba54e53f951a IfcMechanicalMaterialProperties.ShearModulus[Type] NUMBER 9 1 IfcModulusOfElasticityMeasure 1
PARAM ddb278c4-28bf-42e8-892e-d122898da67f IfcMechanicalMaterialProperties.ThermalExpansionCoefficient[Type] NUMBER 9 1 IfcThermalExpansionCoefficientMeasure 1
PARAM 42b125e7-513e-4877-a18a-f4a4c7b022c6 IfcMechanicalMaterialProperties.YoungModulus[Type] NUMBER 9 1 IfcModulusOfElasticityMeasure 1
#
GROUP 10 IfcMechanicalSteelMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 85a15c1a-ed8e-4c25-ac6f-1b89401d26da IfcMechanicalSteelMaterialProperties.HardeningModule[Type] NUMBER 10 1 IfcModulusOfElasticityMeasure 1
PARAM ef0475eb-7478-4534-9a6e-5d302e31f688 IfcMechanicalSteelMaterialProperties.PlasticStrain[Type] NUMBER 10 1 IfcPositiveRatioMeasure 1
PARAM e95ce7b4-7eee-4993-9b98-e44a43621e8b IfcMechanicalSteelMaterialProperties.ProportionalStress[Type] NUMBER 10 1 IfcPressureMeasure 1
PARAM 55301e07-c365-4143-8376-04a9d9d535cf IfcMechanicalSteelMaterialProperties.Relaxations[Type] NUMBER 10 1 IfcRelaxation 1
PARAM 5b79b2e5-8035-4361-8d73-334d905dfcf0 IfcMechanicalSteelMaterialProperties.UltimateStrain[Type] NUMBER 10 1 IfcPositiveRatioMeasure 1
PARAM 171a9421-eb50-4711-91d2-63c4ed74bca3 IfcMechanicalSteelMaterialProperties.UltimateStress[Type] NUMBER 10 1 IfcPressureMeasure 1
PARAM 0f7fd825-6b69-41bf-a1f5-18430f35c300 IfcMechanicalSteelMaterialProperties.YieldStress[Type] NUMBER 10 1 IfcPressureMeasure 1
#
GROUP 11 IfcOpticalMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2ea9790f-dae5-4767-b393-33181660131a IfcOpticalMaterialProperties.SolarReflectanceBack[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 84d2baa5-87da-4a22-ba2e-f476ebdf65fd IfcOpticalMaterialProperties.SolarReflectanceFront[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM b15ebfd3-06ce-489e-b489-4e6136104278 IfcOpticalMaterialProperties.SolarTransmittance[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 7dc7cae9-2b08-4fd6-aa1c-0831f02c4241 IfcOpticalMaterialProperties.ThermalIrEmissivityBack[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 2f69cfd2-4447-42a9-bdca-af00afd91d30 IfcOpticalMaterialProperties.ThermalIrEmissivityFront[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 61cf4c99-8e9c-4a2a-a053-54646f6a69ab IfcOpticalMaterialProperties.ThermalIrTransmittance[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM db18b563-49ef-4ea0-ae6e-0d94d0ae0450 IfcOpticalMaterialProperties.VisibleReflectanceBack[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 20817d84-ed31-4dde-b6b0-e4066f070273 IfcOpticalMaterialProperties.VisibleReflectanceFront[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
PARAM 2ab16d65-ae92-488f-9fa3-790b80708349 IfcOpticalMaterialProperties.VisibleTransmittance[Type] NUMBER 11 1 IfcPositiveRatioMeasure 1
#
GROUP 12 IfcPermeableCoveringProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 48a13c2f-be12-4b7d-8e0e-31590b982136 IfcPermeableCoveringProperties.FrameDepth[Type] LENGTH 12 1 IfcPositiveLengthMeasure 1
PARAM 220fe02d-3d97-49ed-a286-9c28d4e7d18d IfcPermeableCoveringProperties.FrameThickness[Type] LENGTH 12 1 IfcPositiveLengthMeasure 1
PARAM 21330fea-14da-443d-9087-a2e1a1604186 IfcPermeableCoveringProperties.OperationType[Type] TEXT 12 1 IfcLabel 1
PARAM 92c93d7d-9ac2-4e72-b141-fa1c6b8c9a64 IfcPermeableCoveringProperties.PanelPosition[Type] TEXT 12 1 IfcLabel 1
#
GROUP 13 IfcProductsOfCombustionProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4840f7b4-9e75-4f10-8d43-30757473bc51 IfcProductsOfCombustionProperties.CO2Content[Type] NUMBER 13 1 IfcPositiveRatioMeasure 1
PARAM 7965f901-8fe5-4c9c-9d73-a3f3d9df89b9 IfcProductsOfCombustionProperties.COContent[Type] NUMBER 13 1 IfcPositiveRatioMeasure 1
PARAM b2185af1-2685-4c6c-8e45-22d6cb4bb1db IfcProductsOfCombustionProperties.N20Content[Type] NUMBER 13 1 IfcPositiveRatioMeasure 1
PARAM 7b021f1d-0315-42c6-b685-df43df0a9c30 IfcProductsOfCombustionProperties.SpecificHeatCapacity[Type] NUMBER 13 1 IfcSpecificHeatCapacityMeasure 1
#
GROUP 14 IfcReinforcementDefinitionProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM b0a49d0f-ca11-4294-99a6-9cf87fbf66d5 IfcReinforcementDefinitionProperties.DefinitionType[Type] TEXT 14 1 IfcLabel 1
PARAM a654d1c7-f3fa-44e2-884d-1f25bd47986c IfcReinforcementDefinitionProperties.ReinforcementSectionDefinitions[Type] TEXT 14 1 IfcLabel 1
#
GROUP 15 IfcThermalMaterialProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 68ff35e6-dd40-4a79-a435-4030d2af984b IfcThermalMaterialProperties.BoilingPoint[Type] NUMBER 15 1 IfcThermodynamicTemperatureMeasure 1
PARAM 8174d672-67b7-4622-b43a-fba25dbc0d7e IfcThermalMaterialProperties.FreezingPoint[Type] NUMBER 15 1 IfcThermodynamicTemperatureMeasure 1
PARAM bfa331db-620f-4b08-834c-1e360306ff1b IfcThermalMaterialProperties.SpecificHeatCapacity[Type] NUMBER 15 1 IfcSpecificHeatCapacityMeasure 1
PARAM b7677629-48cd-4d31-8616-f0a10901b290 IfcThermalMaterialProperties.ThermalConductivity[Type] NUMBER 15 1 IfcThermalConductivityMeasure 1
#
GROUP 16 IfcWaterProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4a9fce38-b04c-40c8-9b44-71b6fe99eb5d IfcWaterProperties.AcidityConcentration[Type] NUMBER 16 1 IfcIonConcentrationMeasure 1
PARAM 1b0e7743-ef87-4b25-a6ba-3fbc4e82622a IfcWaterProperties.AlkalinityConcentration[Type] NUMBER 16 1 IfcIonConcentrationMeasure 1
PARAM fc99d3dc-b85d-4ed2-9482-0db1c6be987c IfcWaterProperties.DissolvedSolidsContent[Type] NUMBER 16 1 IfcNormalisedRatioMeasure 1
PARAM c6665072-8deb-4204-b074-2dfa0dcb03cc IfcWaterProperties.Hardness[Type] NUMBER 16 1 IfcIonConcentrationMeasure 1
PARAM 957b39e4-0d66-448b-9a57-0126124e823d IfcWaterProperties.ImpuritiesContent[Type] NUMBER 16 1 IfcNormalisedRatioMeasure 1
PARAM fef2853c-2c83-4f47-812f-537bee376e19 IfcWaterProperties.IsPotable[Type] NUMBER 16 1 Boolean 1
PARAM b2b02569-a1a4-4d1e-85d3-7077cfebb6a7 IfcWaterProperties.PHLevel[Type] NUMBER 16 1 IfcPHMeasure 1
#
GROUP 17 IfcWindowLiningProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d7498563-1114-4445-b602-e7a1e86c020c IfcWindowLiningProperties.FirstMullionOffset[Type] NUMBER 17 1 IfcNormalisedRatioMeasure 1
PARAM 491217ac-605b-44c0-9222-8db84fde541d IfcWindowLiningProperties.FirstTransomOffset[Type] NUMBER 17 1 IfcNormalisedRatioMeasure 1
PARAM fac29451-1e72-4361-9174-bc4532410632 IfcWindowLiningProperties.LiningDepth[Type] LENGTH 17 1 IfcPositiveLengthMeasure 1
PARAM 106eaf02-86f3-46ec-82bd-fc3f355e74ce IfcWindowLiningProperties.LiningOffset[Type] LENGTH 17 1 IfcLengthMeasure 1
PARAM 833c86f9-c51b-4368-a24d-caef640cbc1a IfcWindowLiningProperties.LiningThickness[Type] LENGTH 17 1 IfcNonNegativeLengthMeasure 1
PARAM f1a36a64-1d9c-4900-a49e-b9e04d3503c8 IfcWindowLiningProperties.LiningToPanelOffsetX[Type] LENGTH 17 1 IfcLengthMeasure 1
PARAM f31c5a1f-ed7e-480a-b3b7-b6005035115d IfcWindowLiningProperties.LiningToPanelOffsetY[Type] LENGTH 17 1 IfcLengthMeasure 1
PARAM cc559ca1-ae0d-4f96-93e5-079113802312 IfcWindowLiningProperties.MullionThickness[Type] LENGTH 17 1 IfcNonNegativeLengthMeasure 1
PARAM 5e4a6e16-f61a-4da2-8fa0-0bb32f9ca2d8 IfcWindowLiningProperties.SecondMullionOffset[Type] NUMBER 17 1 IfcNormalisedRatioMeasure 1
PARAM aaa4666e-80a6-4fc5-9b24-297e390b2794 IfcWindowLiningProperties.SecondTransomOffset[Type] NUMBER 17 1 IfcNormalisedRatioMeasure 1
PARAM 15ad8885-bd95-4663-b119-54ce0c3212fb IfcWindowLiningProperties.TransomThickness[Type] LENGTH 17 1 IfcNonNegativeLengthMeasure 1
#
GROUP 18 IfcWindowPanelProperties
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM fe3f45d7-304a-4483-9023-3e3b224c71cb IfcWindowPanelProperties.FrameDepth[Type] LENGTH 18 1 IfcPositiveLengthMeasure 1
PARAM d3af107d-7f9e-4e6f-a726-f9aae706b11a IfcWindowPanelProperties.FrameThickness[Type] LENGTH 18 1 IfcPositiveLengthMeasure 1
PARAM c7984296-5ee2-42d3-94ab-312df9b4e9d6 IfcWindowPanelProperties.OperationType[Type] TEXT 18 1 IfcLabel 1
PARAM b7e38a0c-098e-4d8b-873a-82eb643051c6 IfcWindowPanelProperties.PanelPosition[Type] TEXT 18 1 IfcLabel 1
#
GROUP 19 Pset_ActionRequest
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f9570f6f-4c83-4914-83af-7ca58d36bb2a Pset_ActionRequest.RequestComments[Type] TEXT 19 1 IfcText 1
PARAM 1816931d-d252-40b0-9711-52369b261e21 Pset_ActionRequest.RequestDescription[Type] TEXT 19 1 IfcText 1
PARAM 5748e5d9-f3c8-484f-9803-2bb4ce6ea1b2 Pset_ActionRequest.RequestSourceLabel[Type] TEXT 19 1 IfcLabel 1
PARAM 443cc994-617c-46b9-80b7-e64d5df929dd Pset_ActionRequest.RequestSourceName[Type] MULTILINETEXT 19 1 IfcPerson 1
PARAM 15d2334d-8baf-4087-af9a-da19b81bfc66 Pset_ActionRequest.RequestSourceType[Type] TEXT 19 1 PEnum_RequestSourceType 1
PARAM 9a2da861-95a2-4699-88b7-9ab5308f0cf0 Pset_ActionRequest.Status[Type] TEXT 19 1 PEnum_RequestStatus 1
#
GROUP 20 Pset_ActorCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8b629d57-4f17-4ebe-9f46-d6d0c790139e Pset_ActorCommon.ActorCategory[Type] TEXT 20 1 IfcLabel 1
PARAM 9fdfc0fb-762f-4977-b246-723f3676f1e9 Pset_ActorCommon.Category[Type] TEXT 20 1 IfcLabel 1
PARAM d561cc0d-b78e-46dd-bbfe-d431d5d116e7 Pset_ActorCommon.NumberOfActors[Type] INTEGER 20 1 IfcCountMeasure 1
PARAM 864f4214-8a81-4a36-b233-23a0bfdbb7b2 Pset_ActorCommon.SkillLevel[Type] TEXT 20 1 IfcLabel 1
#
GROUP 21 Pset_ActuatorPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM efa57a20-38b6-4279-b274-e31e78ea3679 Pset_ActuatorPHistory.Position[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
PARAM 661d9b70-f1e4-4c50-aa1e-eb8601153a70 Pset_ActuatorPHistory.PositionHistory[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
PARAM 90734c34-34e0-4d19-8606-e1fb49a90b9a Pset_ActuatorPHistory.Quality[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
PARAM adcaa6a2-3249-4786-9741-d827528243fa Pset_ActuatorPHistory.QualityHistory[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
PARAM b70fbfc6-036c-4679-a612-a39322ef3117 Pset_ActuatorPHistory.Status[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
PARAM 6552af10-cb4d-4ed7-9732-d15c27dfc11a Pset_ActuatorPHistory.StatusHistory[Type] MULTILINETEXT 21 1 IfcTimeSeries 1
#
GROUP 22 Pset_ActuatorTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 567d886a-48da-4dbd-81fe-30db01d1aef8 Pset_ActuatorTypeCommon.ActuatorApplication[Type] TEXT 22 1 PEnum_ActuatorApplication 1
PARAM de4488bd-cfc7-4c88-a903-fd07d6fd59fe Pset_ActuatorTypeCommon.ActuatorStatus[Type] TEXT 22 1 PEnum_ElementStatus 1
PARAM 5df7283f-6fe5-4a95-85d9-bd285bf64ed0 Pset_ActuatorTypeCommon.Application[Type] TEXT 22 1 PEnum_ActuatorApplication 1
PARAM c0290bdb-4fa5-442d-b90b-9898b1a3c4e9 Pset_ActuatorTypeCommon.FailPosition[Type] TEXT 22 1 PEnum_FailPosition 1
PARAM 4b124d18-e511-4c3e-932f-9be83ef2877b Pset_ActuatorTypeCommon.ManualOverride[Type] YESNO 22 1 IfcBoolean 1
PARAM c62a2632-ec58-4984-9199-bdda161e0e5e Pset_ActuatorTypeCommon.Reference[Type] TEXT 22 1 IfcIdentifier 1
PARAM a9f89daa-42ad-43ae-8e1f-2994c625b8bf Pset_ActuatorTypeCommon.Status[Type] TEXT 22 1 PEnum_ElementStatus 1
#
GROUP 23 Pset_ActuatorTypeElectricActuator
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 79ed14c6-8417-4a61-b549-e361511c4c16 Pset_ActuatorTypeElectricActuator.ActuatorInputPower[Type] NUMBER 23 1 IfcPowerMeasure 1
PARAM 0fa5f3a4-5e43-4db6-b246-4a237d145d3e Pset_ActuatorTypeElectricActuator.ControlPulseCurrent[Type] NUMBER 23 1 IfcElectricCurrentMeasure 1
PARAM baa21f83-fd78-4412-8da7-c53380d2253a Pset_ActuatorTypeElectricActuator.ElectricActuatorType[Type] TEXT 23 1 PEnum_ElectricActuatorType 1
#
GROUP 24 Pset_ActuatorTypeHydraulicActuator
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d813b66d-e6f0-46fd-bf72-605cacc1215e Pset_ActuatorTypeHydraulicActuator.InputFlowrate[Type] NUMBER 24 1 IfcVolumetricFlowRateMeasure 1
PARAM 1e2d09a9-42a9-43fe-8100-55c068a4bbbb Pset_ActuatorTypeHydraulicActuator.InputPressure[Type] NUMBER 24 1 IfcPressureMeasure 1
#
GROUP 25 Pset_ActuatorTypeLinearActuation
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 1168baf7-1580-43e4-9b6c-8b7fe2d465fd Pset_ActuatorTypeLinearActuation.Force[Type] NUMBER 25 1 IfcForceMeasure 1
PARAM 5410c333-280e-4e47-a593-a2c910920ab3 Pset_ActuatorTypeLinearActuation.Stroke[Type] LENGTH 25 1 IfcLengthMeasure 1
#
GROUP 26 Pset_ActuatorTypePneumaticActuator
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c7c58c17-759b-426a-a87f-4c450addc7bc Pset_ActuatorTypePneumaticActuator.InputFlowrate[Type] NUMBER 26 1 IfcVolumetricFlowRateMeasure 1
PARAM ab07c83e-40e1-42a0-9f15-1dcb5d8a1ea1 Pset_ActuatorTypePneumaticActuator.InputPressure[Type] NUMBER 26 1 IfcPressureMeasure 1
#
GROUP 27 Pset_ActuatorTypeRotationalActuation
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM cf2d78d6-6651-4c54-9f5b-1c9b088a886a Pset_ActuatorTypeRotationalActuation.RangeAngle[Type] NUMBER 27 1 IfcPlaneAngleMeasure 1
PARAM e2eedbea-adf2-44be-b95c-0c23ddea716a Pset_ActuatorTypeRotationalActuation.Torque[Type] NUMBER 27 1 IfcTorqueMeasure 1
#
GROUP 28 Pset_Address
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8cba13ec-dbd4-4e0c-afe9-3fbc9407a857 Pset_Address.AddressLines[Type] MULTILINETEXT 28 1 PropertyListValue 1
PARAM 40408af5-dba6-4edf-9d04-5537c87add65 Pset_Address.Country[Type] TEXT 28 1 IfcLabel 1
PARAM db20ae73-236f-4000-8b48-3f244ae9c997 Pset_Address.Description[Type] TEXT 28 1 IfcText 1
PARAM 6face93f-d2e1-4bbb-ab83-4a7a712d5f0f Pset_Address.ElectronicMailAddresses[Type] MULTILINETEXT 28 1 PropertyListValue 1
PARAM a85f3688-3b46-437d-aa3e-69deebcd240b Pset_Address.FacsimileNumbers[Type] MULTILINETEXT 28 1 PropertyListValue 1
PARAM 80cf2ac7-5bc8-458e-848d-99d7be0c4373 Pset_Address.InternalLocation[Type] TEXT 28 1 IfcLabel 1
PARAM ff33441c-4db5-48e8-b38b-7e38a60a60bf Pset_Address.MessagingIDs[Type] MULTILINETEXT 28 1 PropertyListValue 1
PARAM 7921f5f8-d33d-4f4b-8405-e0416b3ef971 Pset_Address.PagerNumber[Type] TEXT 28 1 IfcLabel 1
PARAM be3b7676-e58b-4e46-b802-47654999277f Pset_Address.PostalBox[Type] TEXT 28 1 IfcLabel 1
PARAM 5b5e7a3e-43f7-4e7d-8909-72d39170edad Pset_Address.PostalCode[Type] TEXT 28 1 IfcLabel 1
PARAM ff230598-b451-420a-ad27-277adbb2f834 Pset_Address.Purpose[Type] TEXT 28 1 PEnum_AddressType 1
PARAM 9034cde4-d98b-4978-8269-7f707eb60c11 Pset_Address.Region[Type] TEXT 28 1 IfcLabel 1
PARAM 128f12c9-b6bc-453c-812c-4ed6813d3eed Pset_Address.TelephoneNumbers[Type] MULTILINETEXT 28 1 PropertyListValue 1
PARAM 5c11d229-0a35-470c-9238-2eec6bc1ed68 Pset_Address.Town[Type] TEXT 28 1 IfcLabel 1
PARAM eea1dc09-4ed0-4a5a-ad2c-173ce4abd1db Pset_Address.UserDefinedPurpose[Type] TEXT 28 1 IfcLabel 1
PARAM 62052ea0-cb10-45e6-a3fb-d7bc46811420 Pset_Address.WWWHomePageURL[Type] URL 28 1 IfcURIReference 1
#
GROUP 29 Pset_AirSideSystemInformation
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 44f8c41e-6d56-4881-b069-4bf03adc27e3 Pset_AirSideSystemInformation.AirflowSensible[Type] NUMBER 29 1 IfcVolumetricFlowRateMeasure 1
PARAM 3b8993d5-1e26-4812-a30c-36f0163d0495 Pset_AirSideSystemInformation.AirFlowSensible[Type] NUMBER 29 1 IfcVolumetricFlowRateMeasure 1
PARAM e4817490-12be-4937-8530-62bdd645b2e9 Pset_AirSideSystemInformation.AirSideSystemDistributionType[Type] TEXT 29 1 PEnum_AirSideSystemDistributionType 1
PARAM ee014a2c-046d-405d-9ddd-a49c50ca7562 Pset_AirSideSystemInformation.AirSideSystemType[Type] TEXT 29 1 PEnum_AirSideSystemType 1
PARAM 2edbc3b1-23eb-41ef-b0e7-55ed60c39328 Pset_AirSideSystemInformation.ApplianceDiversity[Type] NUMBER 29 1 IfcPositiveRatioMeasure 1
PARAM 7b6aabde-fac3-4d9f-902b-255005aada36 Pset_AirSideSystemInformation.CoolingTemperatureDelta[Type] NUMBER 29 1 IfcThermodynamicTemperatureMeasure 1
PARAM 6c0a12aa-34fd-419f-aa9c-a423917fe4aa Pset_AirSideSystemInformation.Description[Type] TEXT 29 1 IfcText 1
PARAM da071818-c124-4256-a0eb-e3255c0cf23d Pset_AirSideSystemInformation.EnergyGainSensible[Type] NUMBER 29 1 IfcPowerMeasure 1
PARAM 436f82a6-cfd2-4b18-9dee-444dfa21a9ca Pset_AirSideSystemInformation.EnergyGainTotal[Type] NUMBER 29 1 IfcPowerMeasure 1
PARAM f86e1881-4195-4d07-bf30-f0634284fa6a Pset_AirSideSystemInformation.EnergyLoss[Type] NUMBER 29 1 IfcPowerMeasure 1
PARAM e1a07ee9-9377-455c-baf2-77d8929c7a2d Pset_AirSideSystemInformation.FanPower[Type] NUMBER 29 1 IfcPowerMeasure 1
PARAM 7fbad3f5-e05b-4b9e-a922-c296c30f3c10 Pset_AirSideSystemInformation.HeatingTemperatureDelta[Type] NUMBER 29 1 IfcThermodynamicTemperatureMeasure 1
PARAM 17f2f2bf-2113-4630-8ee6-a741129ae5e0 Pset_AirSideSystemInformation.InfiltrationDiversitySummer[Type] NUMBER 29 1 IfcPositiveRatioMeasure 1
PARAM f08eaa70-78fb-4ebe-8c86-21567ef76ae8 Pset_AirSideSystemInformation.InfiltrationDiversityWinter[Type] NUMBER 29 1 IfcPositiveRatioMeasure 1
PARAM e3a740df-64b2-45eb-af71-ba7ff1c425c9 Pset_AirSideSystemInformation.LightingDiversity[Type] NUMBER 29 1 IfcPositiveRatioMeasure 1
PARAM 9209f69b-9915-4f75-8b90-7da0dd35b18c Pset_AirSideSystemInformation.LoadSafetyFactor[Type] NUMBER 29 1 IfcPositiveRatioMeasure 1
PARAM ad787104-63c4-4cf0-81a7-022a2b13d49d Pset_AirSideSystemInformation.Name[Type] TEXT 29 1 IfcLabel 1
PARAM 96c821c9-e636-4a7a-8d95-57ba36924af4 Pset_AirSideSystemInformation.TotalAirflow[Type] NUMBER 29 1 IfcVolumetricFlowRateMeasure 1
PARAM b1de67f4-86f6-4071-8d9b-cb3364ec1380 Pset_AirSideSystemInformation.TotalAirFlow[Type] NUMBER 29 1 IfcVolumetricFlowRateMeasure 1
PARAM 8bbf3471-fcac-42f3-8543-9ef3f22ce0df Pset_AirSideSystemInformation.Ventilation[Type] NUMBER 29 1 IfcVolumetricFlowRateMeasure 1
#
GROUP 30 Pset_AirTerminalBoxPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f8f9f9f7-61c1-4901-bfaa-e3d73205b77b Pset_AirTerminalBoxPHistory.AirflowCurve[Type] MULTILINETEXT 30 1 IfcTimeSeries 1
PARAM 12df41fa-3929-4ad2-8c70-ab2f73763c7a Pset_AirTerminalBoxPHistory.AirFlowCurve[Type] MULTILINETEXT 30 1 IfcTimeSeries 1
PARAM 624e5cf6-9e3b-4dbc-b313-f1aa432dab38 Pset_AirTerminalBoxPHistory.AtmosphericPressure[Type] MULTILINETEXT 30 1 IfcTimeSeries 1
PARAM 5eae72de-e913-4243-9eb8-5d1523b1dc73 Pset_AirTerminalBoxPHistory.DamperPosition[Type] MULTILINETEXT 30 1 IfcTimeSeries 1
PARAM a3bbd32f-b874-4694-8c7d-63c06a81afcb Pset_AirTerminalBoxPHistory.Sound[Type] MULTILINETEXT 30 1 IfcTimeSeries 1
#
GROUP 31 Pset_AirTerminalBoxTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c83dafa4-d37b-40da-aadd-abcb9c662f37 Pset_AirTerminalBoxTypeCommon.AirflowRateRange[Type] MULTILINETEXT 31 1 PropertyBoundedValue 1
PARAM ce04d8dc-5025-4c69-b220-fe3d07bf9d24 Pset_AirTerminalBoxTypeCommon.AirFlowRateRange[Type] MULTILINETEXT 31 1 PropertyBoundedValue 1
PARAM 252a8c5b-08c4-461e-a63f-39b57f79931c Pset_AirTerminalBoxTypeCommon.AirPressureRange[Type] MULTILINETEXT 31 1 PropertyBoundedValue 1
PARAM d7501967-5ed6-4da7-b3d7-97ddc66725e7 Pset_AirTerminalBoxTypeCommon.ArrangementType[Type] TEXT 31 1 PEnum_AirTerminalBoxArrangementType 1
PARAM e46e37b2-2fab-4f66-9262-9e19eba7fdd6 Pset_AirTerminalBoxTypeCommon.HasFan[Type] YESNO 31 1 IfcBoolean 1
PARAM 8e484efc-7f40-4abf-81d4-efcc84e3d122 Pset_AirTerminalBoxTypeCommon.HasReturnAir[Type] YESNO 31 1 IfcBoolean 1
PARAM f6a7800e-23a7-4430-8e99-e17e3ce2d138 Pset_AirTerminalBoxTypeCommon.HasSoundAttenuator[Type] YESNO 31 1 IfcBoolean 1
PARAM 3f070853-6d8e-4c3b-a848-d0dcf24c9101 Pset_AirTerminalBoxTypeCommon.HousingThickness[Type] LENGTH 31 1 IfcLengthMeasure 1
PARAM 41905e8d-1ecd-447c-9689-fe3ccce0a4c6 Pset_AirTerminalBoxTypeCommon.Material[Type] MULTILINETEXT 31 1 IfcMaterial 1
PARAM 5c8d8af7-4b51-4e7a-9c96-a93cf6fb3bc1 Pset_AirTerminalBoxTypeCommon.NominalAirFlowRate[Type] NUMBER 31 1 IfcVolumetricFlowRateMeasure 1
PARAM f10e739b-aa9b-4dc4-a4dd-532acf51d38a Pset_AirTerminalBoxTypeCommon.NominalDamperDiameter[Type] LENGTH 31 1 IfcPositiveLengthMeasure 1
PARAM 18950155-5c13-48cb-966e-3c53a1145c07 Pset_AirTerminalBoxTypeCommon.NominalInletAirPressure[Type] NUMBER 31 1 IfcPressureMeasure 1
PARAM f9179136-8554-4b20-8451-c3e1ae374f47 Pset_AirTerminalBoxTypeCommon.OperationTemperatureRange[Type] MULTILINETEXT 31 1 PropertyBoundedValue 1
PARAM 6820a22f-8f93-44d8-a37a-000019c61efd Pset_AirTerminalBoxTypeCommon.Reference[Type] TEXT 31 1 IfcIdentifier 1
PARAM 92dc896f-c203-4d2f-b54f-b4734a404870 Pset_AirTerminalBoxTypeCommon.ReheatType[Type] TEXT 31 1 PEnum_AirTerminalBoxReheatType 1
PARAM e6a2da12-9c60-4248-a286-8a698c36bb5c Pset_AirTerminalBoxTypeCommon.ReturnAirFractionRange[Type] MULTILINETEXT 31 1 PropertyBoundedValue 1
PARAM acafa01f-d523-453d-97b8-9901ad2fb0f8 Pset_AirTerminalBoxTypeCommon.Status[Type] TEXT 31 1 PEnum_ElementStatus 1
PARAM d3bc555c-0c79-46b0-8dbc-41a27f61affd Pset_AirTerminalBoxTypeCommon.Weight[Type] NUMBER 31 1 IfcMassMeasure 1
#
GROUP 32 Pset_AirTerminalOccurrence
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d6f9816d-caf4-469d-a08b-054c0c0b24dd Pset_AirTerminalOccurrence.AirFlowRate[Type] NUMBER 32 1 IfcVolumetricFlowRateMeasure 1
PARAM 8d58635c-7e8c-4976-97cd-ad88f3ac4788 Pset_AirTerminalOccurrence.AirflowType[Type] TEXT 32 1 PEnum_AirTerminalAirflowType 1
PARAM 218d4a1e-eb78-4cbc-8026-cd9cfa41aacd Pset_AirTerminalOccurrence.AirFlowType[Type] TEXT 32 1 PEnum_AirTerminalAirFlowType 1
PARAM 2158d5a4-84ab-447c-900d-431684567d1c Pset_AirTerminalOccurrence.AirTerminalLocation[Type] TEXT 32 1 PEnum_AirTerminalLocation 1
PARAM 8a86a30a-ee3d-4d13-a7ef-eb9aa8871119 Pset_AirTerminalOccurrence.Location[Type] TEXT 32 1 PEnum_AirTerminalLocation 1
#
GROUP 33 Pset_AirTerminalPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 96873d0a-e8a0-4091-b031-bdc9c590a580 Pset_AirTerminalPHistory.AirFlowRate[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
PARAM 95f55789-b833-4147-bcf6-f610c8474ed4 Pset_AirTerminalPHistory.AirFlowRateHistory[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
PARAM a040aa73-8a36-4011-84bb-b1bbda93d4af Pset_AirTerminalPHistory.CenterlineAirVelocity[Type] MULTILINETEXT 33 1 PropertyTableValue 1
PARAM 7407bb35-acb6-4e3e-b99a-c476ff213573 Pset_AirTerminalPHistory.InductionRatio[Type] MULTILINETEXT 33 1 PropertyTableValue 1
PARAM 796af4b7-6cb4-4d3d-95e8-b8350e6b289d Pset_AirTerminalPHistory.NeckAirVelocity[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
PARAM 82a0aa1c-e38e-492a-81c9-53500d5d5f08 Pset_AirTerminalPHistory.PressureDrop[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
PARAM c3661b7b-3d74-4db1-b5b1-ed54891d7227 Pset_AirTerminalPHistory.SupplyAirTemperatureCooling[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
PARAM aa30a366-f53d-4b34-9e19-eb2f450c8e97 Pset_AirTerminalPHistory.SupplyAirTemperatureHeating[Type] MULTILINETEXT 33 1 IfcTimeSeries 1
#
GROUP 34 Pset_AirTerminalTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3c7aba14-24ef-4ad9-8e7b-7a354ddff00a Pset_AirTerminalTypeCommon.AirDiffusionPerformanceIndex[Type] NUMBER 34 1 IfcReal 1
PARAM c6152384-8858-48f3-a2b2-e839b4439547 Pset_AirTerminalTypeCommon.AirFlowrateRange[Type] MULTILINETEXT 34 1 PropertyBoundedValue 1
PARAM 78ae5ae4-29a7-4fc9-acd8-b2ff258ed0a5 Pset_AirTerminalTypeCommon.AirFlowRateRange[Type] MULTILINETEXT 34 1 PropertyBoundedValue 1
PARAM 4ace4150-53c0-4168-bc74-a8df13410677 Pset_AirTerminalTypeCommon.AirFlowrateVersusFlowControlElement[Type] MULTILINETEXT 34 1 PropertyTableValue 1
PARAM 357e81c2-88b7-422d-85da-b7abbcad1863 Pset_AirTerminalTypeCommon.AirTerminalMountingType[Type] TEXT 34 1 PEnum_AirTerminalMountingType 1
PARAM a534ab45-04ca-4fcd-a3ec-9837d4276626 Pset_AirTerminalTypeCommon.AirTerminalShape[Type] TEXT 34 1 PEnum_AirTerminalShape 1
PARAM 27ff26fb-4a86-4184-a6d9-8f8f23d08d10 Pset_AirTerminalTypeCommon.CoreSetHorizontal[Type] NUMBER 34 1 IfcPlaneAngleMeasure 1
PARAM ae33193d-8a2a-4518-9820-ada0f2a2124f Pset_AirTerminalTypeCommon.CoreSetVertical[Type] NUMBER 34 1 IfcPlaneAngleMeasure 1
PARAM adb942fa-20e4-4db3-8aac-922f19c2524e Pset_AirTerminalTypeCommon.CoreType[Type] TEXT 34 1 PEnum_AirTerminalCoreType 1
PARAM fe39a623-278d-4657-8b56-6679a48d82b1 Pset_AirTerminalTypeCommon.DischargeDirection[Type] TEXT 34 1 PEnum_AirTerminalDischargeDirection 1
PARAM 93cd3c65-71ce-4f31-9de6-d67fe6720924 Pset_AirTerminalTypeCommon.EffectiveArea[Type] AREA 34 1 IfcAreaMeasure 1
PARAM d5cf28bd-263b-49fd-b13a-e9ac8bb0029d Pset_AirTerminalTypeCommon.FaceType[Type] TEXT 34 1 PEnum_AirTerminalFaceType 1
PARAM bddbd6d3-2e34-4736-b43c-f13794bc8894 Pset_AirTerminalTypeCommon.FinishColor[Type] TEXT 34 1 IfcLabel 1
PARAM 720dd8e1-ce10-40b1-b08d-31b0257bd10d Pset_AirTerminalTypeCommon.FinishColour[Type] TEXT 34 1 IfcLabel 1
PARAM 3bbdd398-e370-470f-a8cd-f6fb4ddac935 Pset_AirTerminalTypeCommon.FinishType[Type] TEXT 34 1 PEnum_AirTerminalFinishType 1
PARAM f938b371-37e1-4fb1-a2af-1b29e0cf9683 Pset_AirTerminalTypeCommon.FlowControlType[Type] TEXT 34 1 PEnum_AirTerminalFlowControlType 1
PARAM e7697610-cc43-4737-a202-35753fbef94f Pset_AirTerminalTypeCommon.FlowPattern[Type] TEXT 34 1 PEnum_AirTerminalFlowPattern 1
PARAM d3cbccca-95c2-4a72-9ba9-ffd3f57c6abb Pset_AirTerminalTypeCommon.HasIntegralControl[Type] YESNO 34 1 IfcBoolean 1
PARAM 1f078267-97f0-46ba-b4fb-a5fede25df05 Pset_AirTerminalTypeCommon.HasSoundAttenuator[Type] YESNO 34 1 IfcBoolean 1
PARAM 19361705-422b-4a50-ae0b-69c9ff5d744e Pset_AirTerminalTypeCommon.HasThermalInsulation[Type] YESNO 34 1 IfcBoolean 1
PARAM 6764fccb-37c8-4168-b8f4-a99a510bbabd Pset_AirTerminalTypeCommon.Material[Type] MULTILINETEXT 34 1 IfcMaterial 1
PARAM af7beac6-2d79-4640-98da-aea9cfbc89fb Pset_AirTerminalTypeCommon.MountingType[Type] TEXT 34 1 PEnum_AirTerminalMountingType 1
PARAM cb66e834-e26f-42ce-8be9-f89394084ce5 Pset_AirTerminalTypeCommon.NeckArea[Type] AREA 34 1 IfcAreaMeasure 1
PARAM a5a123a8-fb18-49a0-a02c-3389e1fa36d4 Pset_AirTerminalTypeCommon.NumberOfSlots[Type] INTEGER 34 1 IfcCountMeasure 1
PARAM de2c40a1-542e-4071-a17b-db141e31624c Pset_AirTerminalTypeCommon.Reference[Type] TEXT 34 1 IfcIdentifier 1
PARAM acc86224-5ccc-45ce-930e-3a7a2d8544a1 Pset_AirTerminalTypeCommon.Shape[Type] TEXT 34 1 PEnum_AirTerminalShape 1
PARAM 87f5f290-4de3-4ab6-95ed-b98b36733c0e Pset_AirTerminalTypeCommon.SlotLength[Type] LENGTH 34 1 IfcPositiveLengthMeasure 1
PARAM 42139f78-48c5-419f-be71-d48051c78220 Pset_AirTerminalTypeCommon.SlotWidth[Type] LENGTH 34 1 IfcPositiveLengthMeasure 1
PARAM f2010b8f-1638-44fc-8493-3a355691d6ba Pset_AirTerminalTypeCommon.Status[Type] TEXT 34 1 PEnum_ElementStatus 1
PARAM ae507bca-9855-4fa1-aa8d-1d9fb7d962cf Pset_AirTerminalTypeCommon.TemperatureRange[Type] MULTILINETEXT 34 1 PropertyBoundedValue 1
PARAM 955e3887-f5b2-47c4-ac39-4ef54fa619c4 Pset_AirTerminalTypeCommon.ThrowLength[Type] LENGTH 34 1 IfcLengthMeasure 1
PARAM f479cac6-e91a-4e6b-80b8-d55038bb97ac Pset_AirTerminalTypeCommon.Weight[Type] NUMBER 34 1 IfcMassMeasure 1
#
GROUP 35 Pset_AirTerminalTypeRectangular
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 1d8773e4-a33a-4361-a5ad-2b79a94cb46c Pset_AirTerminalTypeRectangular.FaceType[Type] TEXT 35 1 PEnum_AirTerminalFaceType 1
#
GROUP 36 Pset_AirTerminalTypeRound
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 66ffdc05-eccb-497a-89ae-c4d263ffa291 Pset_AirTerminalTypeRound.FaceType[Type] TEXT 36 1 PEnum_AirTerminalFaceType 1
#
GROUP 37 Pset_AirTerminalTypeSlot
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 48174d95-bfd1-4491-b3a0-ff13581297e9 Pset_AirTerminalTypeSlot.NumberOfSlots[Type] INTEGER 37 1 IfcInteger 1
PARAM a618647e-08e7-4675-ba6c-fb23fce5b364 Pset_AirTerminalTypeSlot.SlotLength[Type] LENGTH 37 1 IfcPositiveLengthMeasure 1
PARAM 260bfd8b-29a5-4814-9adf-63b06a688b74 Pset_AirTerminalTypeSlot.SlotWidth[Type] LENGTH 37 1 IfcPositiveLengthMeasure 1
#
GROUP 38 Pset_AirTerminalTypeSquare
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM eea4aeb3-24d7-4cea-ae4e-d296a0c62024 Pset_AirTerminalTypeSquare.FaceType[Type] TEXT 38 1 PEnum_AirTerminalFaceType 1
#
GROUP 39 Pset_AirToAirHeatRecoveryPHist
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8cba2199-8c92-4dd2-93c3-57d97197eb07 Pset_AirToAirHeatRecoveryPHist.AirPressureDropCurves[Type] NUMBER 39 1 IfcReal 1
PARAM 600d125d-50a1-472d-8626-919f15b89cd7 Pset_AirToAirHeatRecoveryPHist.DefrostTemperatureEffectiveness[Type] NUMBER 39 1 IfcReal 1
PARAM 2f35f662-7550-4d11-952c-9becd4ae574e Pset_AirToAirHeatRecoveryPHist.HumidityEffectiveness[Type] TEXT 39 1 IfcLabel 1
PARAM 8f55995f-df74-4c2e-81f9-c96b7794eac7 Pset_AirToAirHeatRecoveryPHist.LatentHeatTransferRate[Type] NUMBER 39 1 IfcReal 1
PARAM 4353bfa7-35b3-442c-8f48-8f445e6c242a Pset_AirToAirHeatRecoveryPHist.SensibleEffectiveness[Type] TEXT 39 1 IfcLabel 1
PARAM 88335db1-a70a-4678-9b2e-0cbcd4d71542 Pset_AirToAirHeatRecoveryPHist.SensibleEffectivenessTable[Type] TEXT 39 1 IfcLabel 1
PARAM 86fd60fb-0d8a-40c8-8e29-ef7b17e62431 Pset_AirToAirHeatRecoveryPHist.SensibleHeatTransferRate[Type] NUMBER 39 1 IfcReal 1
PARAM 061b4776-5c5c-42d4-b9ca-ca909f4bf2a4 Pset_AirToAirHeatRecoveryPHist.TemperatureEffectiveness[Type] NUMBER 39 1 IfcReal 1
PARAM ffdce9d8-6e77-4c31-917b-d6db73f8fdaa Pset_AirToAirHeatRecoveryPHist.TotalEffectiveness[Type] TEXT 39 1 IfcLabel 1
PARAM 8e95525a-9b61-4f88-8f5f-dafa5d9c7910 Pset_AirToAirHeatRecoveryPHist.TotalEffectivenessTable[Type] TEXT 39 1 IfcLabel 1
PARAM 32bccf57-0080-4bfe-ac09-b5661facaa61 Pset_AirToAirHeatRecoveryPHist.TotalHeatTransferRate[Type] NUMBER 39 1 IfcReal 1
#
GROUP 40 Pset_AirToAirHeatRecoveryPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d2ac0291-b82d-4ab9-a8c2-7106b915b98d Pset_AirToAirHeatRecoveryPHistory.AirPressureDropCurves[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 5c5efbae-9037-4f3e-a230-0262a05da488 Pset_AirToAirHeatRecoveryPHistory.DefrostTemperatureEffectiveness[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 25184252-932b-4e63-9c93-f0a78b06dffd Pset_AirToAirHeatRecoveryPHistory.HumidityEffectiveness[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 04422297-c70a-436a-9364-d963dd04b243 Pset_AirToAirHeatRecoveryPHistory.LatentHeatTransferRate[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 3c6c3923-b5b7-494d-9b85-cb76fe0bb56d Pset_AirToAirHeatRecoveryPHistory.SensibleEffectiveness[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 82799c04-44c9-42fc-8bc8-4bf9221f9cb8 Pset_AirToAirHeatRecoveryPHistory.SensibleEffectivenessTable[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 3b0f4ae1-b15d-4960-98d2-d9610702bfab Pset_AirToAirHeatRecoveryPHistory.SensibleHeatTransferRate[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 70f834ad-1855-402b-bfb2-531b1459c631 Pset_AirToAirHeatRecoveryPHistory.TemperatureEffectiveness[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM 288a85ff-427d-4e09-baad-b65dbd46e896 Pset_AirToAirHeatRecoveryPHistory.TotalEffectiveness[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM fa28b5b3-6948-4036-bafe-2fae4fbf9725 Pset_AirToAirHeatRecoveryPHistory.TotalEffectivenessTable[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
PARAM acf548a5-dd9b-4612-a9a3-bcaa90d3efa9 Pset_AirToAirHeatRecoveryPHistory.TotalHeatTransferRate[Type] MULTILINETEXT 40 1 IfcTimeSeries 1
#
GROUP 41 Pset_AirToAirHeatRecoveryTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM de3220cc-2922-4656-b8f8-87c32607d53c Pset_AirToAirHeatRecoveryTypeCommon.HasDefrost[Type] YESNO 41 1 IfcBoolean 1
PARAM b7c78c55-7e45-4210-a22d-ca0b1aebfbed Pset_AirToAirHeatRecoveryTypeCommon.HeatTransferType[Type] TEXT 41 1 PEnum_HeatTransferType 1
PARAM b5b319d0-80f4-48ba-91fc-881934dd4416 Pset_AirToAirHeatRecoveryTypeCommon.HeatTransferTypeEnum[Type] TEXT 41 1 PEnum_AirToAirHeatTransferHeatTransferType 1
PARAM b14878e5-eb17-48f0-94c4-8e0b96d56643 Pset_AirToAirHeatRecoveryTypeCommon.MediaMaterial[Type] MULTILINETEXT 41 1 IfcMaterial 1
PARAM 721f0cd2-18de-4be7-893d-4f6fdd936d6a Pset_AirToAirHeatRecoveryTypeCommon.OperationalTemperatureRange[Type] MULTILINETEXT 41 1 PropertyBoundedValue 1
PARAM c01e0944-44e3-49a2-8b2a-cfe923958d43 Pset_AirToAirHeatRecoveryTypeCommon.PrimaryAirflowRateRange[Type] MULTILINETEXT 41 1 PropertyBoundedValue 1
PARAM f2986d96-9467-48d3-baa4-ac46e4c5cb43 Pset_AirToAirHeatRecoveryTypeCommon.PrimaryAirFlowRateRange[Type] MULTILINETEXT 41 1 PropertyBoundedValue 1
PARAM 920acd0c-ba24-46fd-b593-096e76f6406b Pset_AirToAirHeatRecoveryTypeCommon.Reference[Type] TEXT 41 1 IfcIdentifier 1
PARAM d58ef931-1a5d-4414-9b85-68a424b961b1 Pset_AirToAirHeatRecoveryTypeCommon.SecondaryAirflowRateRange[Type] MULTILINETEXT 41 1 PropertyBoundedValue 1
PARAM 1f933ecb-1471-4bdb-8f0a-11e020025e33 Pset_AirToAirHeatRecoveryTypeCommon.SecondaryAirFlowRateRange[Type] MULTILINETEXT 41 1 PropertyBoundedValue 1
PARAM f075d02b-86c0-43bb-918e-1e372a75633f Pset_AirToAirHeatRecoveryTypeCommon.Status[Type] TEXT 41 1 PEnum_ElementStatus 1
PARAM ba439d64-63ee-4f8d-8146-61dc8f2f9763 Pset_AirToAirHeatRecoveryTypeCommon.Weight[Type] NUMBER 41 1 IfcMassMeasure 1
#
GROUP 42 Pset_AlarmPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 789b27cf-2fa8-4947-965b-b5771913fc93 Pset_AlarmPHistory.Acknowledge[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM e1bb3cb5-2531-44d4-96d5-3aac407d9185 Pset_AlarmPHistory.Condition[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM d020b3b1-9f13-451e-a91b-f8ed68cf8f2d Pset_AlarmPHistory.ConditionHistory[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM 97b563c4-73f2-40ae-9825-c270e87eff76 Pset_AlarmPHistory.Enabled[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM 6cd150b9-dacd-49e0-9dcd-6937df6a18c8 Pset_AlarmPHistory.Severity[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM f0d66cb0-c887-4f6c-9a57-2292764338ea Pset_AlarmPHistory.User[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
PARAM 9eaa11ac-57d2-4432-9959-2e38e35451f6 Pset_AlarmPHistory.UserHistory[Type] MULTILINETEXT 42 1 IfcTimeSeries 1
#
GROUP 43 Pset_AlarmTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d009220e-8f35-4d2a-90da-23c3d0639e68 Pset_AlarmTypeCommon.AlarmCondition[Type] MULTILINETEXT 43 1 PropertyTableValue 1
PARAM b6408bb5-527f-4887-adf5-d874a6907716 Pset_AlarmTypeCommon.Condition[Type] MULTILINETEXT 43 1 PropertyTableValue 1
PARAM c2f8a834-e8df-46c6-b487-4a9e9db61b75 Pset_AlarmTypeCommon.Reference[Type] TEXT 43 1 IfcIdentifier 1
PARAM 889efce2-7ad6-430c-993c-2c28084215ba Pset_AlarmTypeCommon.Status[Type] TEXT 43 1 PEnum_ElementStatus 1
#
GROUP 44 Pset_AlignmentCantSegmentCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6ae61cf6-a68a-4a3a-9aec-80b119af8d48 Pset_AlignmentCantSegmentCommon.CantDeficiency[Type] LENGTH 44 1 IfcLengthMeasure 1
PARAM 8831cf50-7d1f-4a2d-bc51-b1603396ec7e Pset_AlignmentCantSegmentCommon.CantEquilibrium[Type] LENGTH 44 1 IfcLengthMeasure 1
PARAM c0ea5c24-f90c-4ad1-925f-4df880aae38c Pset_AlignmentCantSegmentCommon.EndSmoothingLength[Type] LENGTH 44 1 IfcPositiveLengthMeasure 1
PARAM 4f4bc7b1-b867-4aee-ac46-6b364b3e2578 Pset_AlignmentCantSegmentCommon.StartSmoothingLength[Type] LENGTH 44 1 IfcPositiveLengthMeasure 1
#
GROUP 45 Pset_AlignmentVerticalSegmentCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8f5b3fb1-42a2-4f1b-9a6b-1cef5fe52e16 Pset_AlignmentVerticalSegmentCommon.EndElevation[Type] LENGTH 45 1 IfcLengthMeasure 1
PARAM d9d2308e-9d99-44cf-a3da-2593213e829c Pset_AlignmentVerticalSegmentCommon.StartElevation[Type] LENGTH 45 1 IfcLengthMeasure 1
#
GROUP 46 Pset_AnalogInput
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3e04ef6a-b79b-45ec-943f-cb3f4b1b0666 Pset_AnalogInput.Deadband[Type] NUMBER 46 1 IfcReal 1
PARAM ba478363-cd40-43cf-a278-7ef5bb7d5540 Pset_AnalogInput.EventEnable[Type] TEXT 46 1 PEnum_BACnetEventEnableType 1
PARAM d25b0046-fc6f-4f3b-9e9b-7e2774ac74c5 Pset_AnalogInput.HighLimit[Type] NUMBER 46 1 IfcReal 1
PARAM 59d7538a-00e1-448f-8f7f-8fc56333b63f Pset_AnalogInput.HighLimitEnable[Type] YESNO 46 1 IfcBoolean 1
PARAM 1673563b-4d4f-4560-a59a-7d843cd90578 Pset_AnalogInput.LowLimit[Type] NUMBER 46 1 IfcReal 1
PARAM 1777499f-4f75-45e9-bce0-7fe5b5c320bf Pset_AnalogInput.LowLimitEnable[Type] YESNO 46 1 IfcBoolean 1
PARAM 006574aa-5e08-458d-b828-2dbd4eb97228 Pset_AnalogInput.NotifyType[Type] TEXT 46 1 PEnum_BACnetNotifyType 1
#
GROUP 47 Pset_AnalogOutput
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 9c8d4a93-d1d1-4415-be73-1ef8d873025e Pset_AnalogOutput.Deadband[Type] NUMBER 47 1 IfcReal 1
PARAM 0536c797-e67d-4d8f-9327-9bab586f3b9e Pset_AnalogOutput.EventEnable[Type] TEXT 47 1 PEnum_BACnetEventEnableType 1
PARAM db78b964-e67e-4d2b-920c-319bf8fbb21f Pset_AnalogOutput.HighLimit[Type] NUMBER 47 1 IfcReal 1
PARAM 881779b8-6c09-42ec-8086-992e7a839719 Pset_AnalogOutput.HighLimitEnable[Type] YESNO 47 1 IfcBoolean 1
PARAM 794577c4-ace4-44dc-b5ec-21bab28e9c67 Pset_AnalogOutput.LowLimit[Type] NUMBER 47 1 IfcReal 1
PARAM 98a381b9-ea0a-4920-a3e4-778ef8fbd345 Pset_AnalogOutput.LowLimitEnable[Type] YESNO 47 1 IfcBoolean 1
PARAM fd953dab-a76e-4984-b704-632ed2a3cfba Pset_AnalogOutput.NotifyType[Type] TEXT 47 1 PEnum_BACnetNotifyType 1
#
GROUP 48 Pset_AnnotationContourLine
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 21281718-05f9-4bf8-8ffe-fdb63d34e960 Pset_AnnotationContourLine.ContourValue[Type] LENGTH 48 1 IfcLengthMeasure 1
#
GROUP 49 Pset_AnnotationLineOfSight
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM e9f3da97-b3a2-491e-8f99-61016d82d273 Pset_AnnotationLineOfSight.RoadVisibleDistanceLeft[Type] LENGTH 49 1 IfcPositiveLengthMeasure 1
PARAM 43418ec5-bfc0-4e10-936d-6aac75c875c8 Pset_AnnotationLineOfSight.RoadVisibleDistanceRight[Type] LENGTH 49 1 IfcPositiveLengthMeasure 1
PARAM 3796ca2e-23ba-49be-af9f-a42cbd1ec5af Pset_AnnotationLineOfSight.SetbackDistance[Type] LENGTH 49 1 IfcPositiveLengthMeasure 1
PARAM acd9a825-e4f9-4ea1-8452-a5c25706cb66 Pset_AnnotationLineOfSight.VisibleAngleLeft[Type] ANGLE 49 1 IfcPositivePlaneAngleMeasure 1
PARAM 58d646f6-286e-476a-96d6-1cfeba9a0612 Pset_AnnotationLineOfSight.VisibleAngleRight[Type] ANGLE 49 1 IfcPositivePlaneAngleMeasure 1
#
GROUP 50 Pset_AnnotationSurveyArea
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 861e3692-3b61-4c12-81e1-cdf63af42cad Pset_AnnotationSurveyArea.AccuracyQualityExpected[Type] NUMBER 50 1 IfcRatioMeasure 1
PARAM 12596c82-b583-412a-af64-caac717788fc Pset_AnnotationSurveyArea.AccuracyQualityObtained[Type] NUMBER 50 1 IfcRatioMeasure 1
PARAM 955996e8-8175-4482-9443-6f4fc7f55cd2 Pset_AnnotationSurveyArea.AcquisitionMethod[Type] TEXT 50 1 PEnum_AcquisitionMethod 1
#
GROUP 51 Pset_Asset
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 66f9348e-ee32-4764-9444-e1d1747d476a Pset_Asset.AssetAccountingType[Type] TEXT 51 1 PEnum_AssetAccountingType 1
PARAM f45b8f2e-7417-4c53-8a6a-19723397231b Pset_Asset.AssetInsuranceType[Type] TEXT 51 1 PEnum_AssetInsuranceType 1
PARAM 66548469-f5b6-45e4-890e-6864ea47984a Pset_Asset.AssetStatus[Type] TEXT 51 1 IfcLabel 1
PARAM b24b1ae6-1d61-4c46-bcdd-878a3ee624db Pset_Asset.AssetTaxType[Type] TEXT 51 1 PEnum_AssetTaxType 1
PARAM 63a4b23f-8223-4c99-b427-a78d007ff526 Pset_Asset.AssetUse[Type] TEXT 51 1 IfcLabel 1
#
GROUP 52 Pset_AudioVisualAppliancePHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 24682d22-8293-4d93-8e3b-cb3b6c73237a Pset_AudioVisualAppliancePHistory.AudioVolume[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
PARAM 834a7688-a0d9-4191-a35a-223ebf9b4a29 Pset_AudioVisualAppliancePHistory.AudioVolumeHistory[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
PARAM 9ec71786-0b16-4122-b8a5-7acdc930c5ef Pset_AudioVisualAppliancePHistory.MediaContent[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
PARAM 0b836957-7e1b-487e-b2df-501accbe7274 Pset_AudioVisualAppliancePHistory.MediaSource[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
PARAM 4aeef646-4a5d-4b1a-84b0-e80b8c8590bb Pset_AudioVisualAppliancePHistory.MediaSourceHistory[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
PARAM b077dddb-0c77-403c-b0b1-994958f60e03 Pset_AudioVisualAppliancePHistory.PowerState[Type] MULTILINETEXT 52 1 IfcTimeSeries 1
#
GROUP 53 Pset_AudioVisualApplianceTypeAmplifier
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d9505b8b-d7a3-446d-8376-73e37eebfbc5 Pset_AudioVisualApplianceTypeAmplifier.AmplifierType[Type] TEXT 53 1 PEnum_AudioVisualAmplifierType 1
PARAM 72c94b43-2ea6-494e-969e-c38ee28dac45 Pset_AudioVisualApplianceTypeAmplifier.AudioAmplification[Type] MULTILINETEXT 53 1 PropertyTableValue 1
PARAM d102d2c2-dcec-45bf-a494-5be0315a6b8d Pset_AudioVisualApplianceTypeAmplifier.AudioMode[Type] MULTILINETEXT 53 1 PropertyTableValue 1
#
GROUP 54 Pset_AudioVisualApplianceTypeCamera
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 206e41e0-1901-49d4-b250-460487744b4b Pset_AudioVisualApplianceTypeCamera.CameraType[Type] TEXT 54 1 PEnum_AudioVisualCameraType 1
PARAM 913e19c8-008e-4625-a5f5-6df2f212dc34 Pset_AudioVisualApplianceTypeCamera.IsOutdoors[Type] YESNO 54 1 IfcBoolean 1
PARAM 1c9464f8-775e-4023-b53e-9c114a8790dc Pset_AudioVisualApplianceTypeCamera.PanHorizontal[Type] MULTILINETEXT 54 1 PropertyBoundedValue 1
PARAM 897edb15-d3de-4067-b10c-170ef59b14e1 Pset_AudioVisualApplianceTypeCamera.PanTiltZoomPreset[Type] MULTILINETEXT 54 1 PropertyTableValue 1
PARAM c1326dfa-1f0d-408d-8c90-ef9bdd34a386 Pset_AudioVisualApplianceTypeCamera.PanVertical[Type] MULTILINETEXT 54 1 PropertyBoundedValue 1
PARAM 298aae41-cd5b-499a-bae1-9caf05f22ff1 Pset_AudioVisualApplianceTypeCamera.TiltHorizontal[Type] MULTILINETEXT 54 1 PropertyBoundedValue 1
PARAM c781dc2b-a4e7-49fb-8022-4c46943f4bd9 Pset_AudioVisualApplianceTypeCamera.TiltVertical[Type] MULTILINETEXT 54 1 PropertyBoundedValue 1
PARAM 03bf1b96-9f5c-4753-bebc-108ce8681486 Pset_AudioVisualApplianceTypeCamera.VideoCaptureInterval[Type] MULTILINETEXT 54 1 PropertyTableValue 1
PARAM 982fec31-f43e-4a38-b0c0-58b2d0403a12 Pset_AudioVisualApplianceTypeCamera.VideoResolutionHeight[Type] INTEGER 54 1 IfcInteger 1
PARAM 0e3a6bfb-468c-4998-9061-508407122b1f Pset_AudioVisualApplianceTypeCamera.VideoResolutionMode[Type] MULTILINETEXT 54 1 PropertyTableValue 1
PARAM 5dc4c02a-e657-41af-884b-b5fa76bc3106 Pset_AudioVisualApplianceTypeCamera.VideoResolutionWidth[Type] INTEGER 54 1 IfcInteger 1
PARAM e902a7a2-aaa0-41ac-afe5-4131f8583344 Pset_AudioVisualApplianceTypeCamera.Zoom[Type] MULTILINETEXT 54 1 PropertyBoundedValue 1
#
GROUP 55 Pset_AudioVisualApplianceTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 24d212eb-ea9b-4756-8add-c350bf8f5cb2 Pset_AudioVisualApplianceTypeCommon.AudioVolume[Type] MULTILINETEXT 55 1 PropertyTableValue 1
PARAM 73a1e745-a550-4067-9db4-c49da2970925 Pset_AudioVisualApplianceTypeCommon.MediaSource[Type] MULTILINETEXT 55 1 PropertyTableValue 1
PARAM 58a9fa26-cb9d-4c01-9df7-3093975974d9 Pset_AudioVisualApplianceTypeCommon.Reference[Type] TEXT 55 1 IfcIdentifier 1
PARAM 8cec422a-b6b0-4286-852a-8ed7d37d1b82 Pset_AudioVisualApplianceTypeCommon.Status[Type] TEXT 55 1 PEnum_ElementStatus 1
#
GROUP 56 Pset_AudioVisualApplianceTypeDisplay
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d7c85f80-c3fa-4bc6-beac-89c3af0ccde3 Pset_AudioVisualApplianceTypeDisplay.AudioMode[Type] MULTILINETEXT 56 1 PropertyTableValue 1
PARAM c28712ca-ba18-4286-bc1d-70694e204e52 Pset_AudioVisualApplianceTypeDisplay.Brightness[Type] NUMBER 56 1 IfcIlluminanceMeasure 1
PARAM 126943c1-67d6-47a0-ae8c-2776cf8b0792 Pset_AudioVisualApplianceTypeDisplay.ContrastRatio[Type] NUMBER 56 1 IfcPositiveRatioMeasure 1
PARAM 65726703-3a31-4862-bd05-c01669fd5883 Pset_AudioVisualApplianceTypeDisplay.DisplayHeight[Type] LENGTH 56 1 IfcPositiveLengthMeasure 1
PARAM a2563dbe-f528-47b0-a306-d191682bd87a Pset_AudioVisualApplianceTypeDisplay.DisplayType[Type] TEXT 56 1 PEnum_AudioVisualDisplayType 1
PARAM c14f2677-cdea-4cfb-97a4-e6a1a8e00e87 Pset_AudioVisualApplianceTypeDisplay.DisplayWidth[Type] LENGTH 56 1 IfcPositiveLengthMeasure 1
PARAM 659bcdca-edd8-4e44-9167-6a96fe8c10b0 Pset_AudioVisualApplianceTypeDisplay.NominalSize[Type] LENGTH 56 1 IfcPositiveLengthMeasure 1
PARAM 2c9d65c2-0518-42d5-86aa-dfc8174b1d13 Pset_AudioVisualApplianceTypeDisplay.RefreshRate[Type] NUMBER 56 1 IfcFrequencyMeasure 1
PARAM 987e1f91-9b66-4f33-81d4-e0e017c5b5bb Pset_AudioVisualApplianceTypeDisplay.TouchScreen[Type] TEXT 56 1 PEnum_AudioVisualDisplayTouchScreen 1
PARAM 28a79c4f-5a40-4a24-8a6a-da24e854ae32 Pset_AudioVisualApplianceTypeDisplay.VideoCaptionMode[Type] MULTILINETEXT 56 1 PropertyTableValue 1
PARAM 034ade4d-eb42-4e8c-a302-c44b4f6172c7 Pset_AudioVisualApplianceTypeDisplay.VideoResolutionHeight[Type] INTEGER 56 1 IfcInteger 1
PARAM ad208ae0-2673-4850-857c-d9863e8b6783 Pset_AudioVisualApplianceTypeDisplay.VideoResolutionMode[Type] MULTILINETEXT 56 1 PropertyTableValue 1
PARAM 4594952e-72af-4903-b8f3-c9befc7b30f8 Pset_AudioVisualApplianceTypeDisplay.VideoResolutionWidth[Type] INTEGER 56 1 IfcInteger 1
PARAM 8f8932ed-a7b6-49d2-9294-aa1f205fdac9 Pset_AudioVisualApplianceTypeDisplay.VideoScaleMode[Type] MULTILINETEXT 56 1 PropertyTableValue 1
#
GROUP 57 Pset_AudioVisualApplianceTypePlayer
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6f7cc8a8-a845-4ca5-9064-de3e57061e3b Pset_AudioVisualApplianceTypePlayer.PlayerMediaEject[Type] YESNO 57 1 IfcBoolean 1
PARAM 529417b7-4f4e-4bf6-b067-0a3efe5226ca Pset_AudioVisualApplianceTypePlayer.PlayerMediaFormat[Type] MULTILINETEXT 57 1 PropertyTableValue 1
PARAM f3fa1a7f-9c11-4f9d-840e-cf4ab77bfcbb Pset_AudioVisualApplianceTypePlayer.PlayerType[Type] TEXT 57 1 PEnum_AudioVisualPlayerType 1
#
GROUP 58 Pset_AudioVisualApplianceTypeProjector
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ad44fb75-0097-411d-8a30-08a80b7da698 Pset_AudioVisualApplianceTypeProjector.ProjectorType[Type] TEXT 58 1 PEnum_AudioVisualProjectorType 1
PARAM 5f611f00-c006-4191-9342-d9e85f46fe83 Pset_AudioVisualApplianceTypeProjector.VideoCaptionMode[Type] MULTILINETEXT 58 1 PropertyTableValue 1
PARAM 616e57bf-ca27-46dd-a8f3-6cb203094d25 Pset_AudioVisualApplianceTypeProjector.VideoResolutionHeight[Type] INTEGER 58 1 IfcInteger 1
PARAM 541a5d83-9aed-4ffb-bc0b-b8b175a39736 Pset_AudioVisualApplianceTypeProjector.VideoResolutionMode[Type] MULTILINETEXT 58 1 PropertyTableValue 1
PARAM 6aa36305-e7ba-4313-9376-ebd1f04655e2 Pset_AudioVisualApplianceTypeProjector.VideoResolutionWidth[Type] INTEGER 58 1 IfcInteger 1
PARAM 7e963f85-40a8-4174-bef9-89efd8871666 Pset_AudioVisualApplianceTypeProjector.VideoScaleMode[Type] MULTILINETEXT 58 1 PropertyTableValue 1
#
GROUP 59 Pset_AudioVisualApplianceTypeRailwayCommunicationTerminal
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8f9a2f24-f37a-4ec7-be6f-8876c7c08958 Pset_AudioVisualApplianceTypeRailwayCommunicationTerminal.RailwayCommunicationTerminalType[Type] TEXT 59 1 PEnum_RailwayCommunicationTerminalType 1
#
GROUP 60 Pset_AudioVisualApplianceTypeReceiver
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM cd36ed47-12ad-4e39-84ab-f64717efc4cc Pset_AudioVisualApplianceTypeReceiver.AudioAmplification[Type] MULTILINETEXT 60 1 PropertyTableValue 1
PARAM d1e98c89-7fd8-4c81-8622-4a467296c8f7 Pset_AudioVisualApplianceTypeReceiver.AudioMode[Type] MULTILINETEXT 60 1 PropertyTableValue 1
PARAM 2f0a87b5-281f-425f-8f6b-0d4cd0059188 Pset_AudioVisualApplianceTypeReceiver.ReceiverType[Type] TEXT 60 1 PEnum_AudioVisualReceiverType 1
#
GROUP 61 Pset_AudioVisualApplianceTypeRecordingEquipment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM df518b4b-fc22-495d-9edf-ded007190026 Pset_AudioVisualApplianceTypeRecordingEquipment.NumberOfInterfaces[Type] MULTILINETEXT 61 1 PropertyTableValue 1
PARAM 803d78ca-d8dc-4288-808e-53ddf9feb4a4 Pset_AudioVisualApplianceTypeRecordingEquipment.StorageCapacity[Type] INTEGER 61 1 IfcInteger 1
#
GROUP 62 Pset_AudioVisualApplianceTypeSpeaker
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3ff899a6-50cc-4b2a-866a-f64f76195633 Pset_AudioVisualApplianceTypeSpeaker.FrequencyResponse[Type] MULTILINETEXT 62 1 PropertyTableValue 1
PARAM a7d0fa4c-b251-46a2-9900-3f59cbf71e3d Pset_AudioVisualApplianceTypeSpeaker.Impedence[Type] NUMBER 62 1 IfcFrequencyMeasure 1
PARAM 89dc8226-e45e-4593-9884-aa8b5594e81c Pset_AudioVisualApplianceTypeSpeaker.SpeakerDriverSize[Type] MULTILINETEXT 62 1 PropertyTableValue 1
PARAM dd023905-5ce1-4b42-8c9b-2d690136ec1b Pset_AudioVisualApplianceTypeSpeaker.SpeakerMounting[Type] TEXT 62 1 PEnum_AudioVisualSpeakerMounting 1
PARAM 3451f201-add2-418f-9fbd-18fcf9856c9e Pset_AudioVisualApplianceTypeSpeaker.SpeakerType[Type] TEXT 62 1 PEnum_AudioVisualSpeakerType 1
#
GROUP 63 Pset_AudioVisualApplianceTypeTuner
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 08c93275-e034-4f9b-aabc-129abf11b8be Pset_AudioVisualApplianceTypeTuner.TunerChannel[Type] MULTILINETEXT 63 1 PropertyTableValue 1
PARAM b33adf42-bd0f-4aa8-a2d9-903d575667b7 Pset_AudioVisualApplianceTypeTuner.TunerFrequency[Type] MULTILINETEXT 63 1 PropertyBoundedValue 1
PARAM ddf8a6f3-05ad-4f27-92b0-0f2f5a09b641 Pset_AudioVisualApplianceTypeTuner.TunerMode[Type] MULTILINETEXT 63 1 PropertyTableValue 1
PARAM 93ba48bf-8272-4f3b-9adc-4c0b70da58b6 Pset_AudioVisualApplianceTypeTuner.TunerType[Type] TEXT 63 1 PEnum_AudioVisualTunerType 1
#
GROUP 64 Pset_AxleCountingEquipment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ff633d88-cc82-4584-af51-638fe4b0b70e Pset_AxleCountingEquipment.AxleCounterResponseTime[Type] NUMBER 64 1 IfcTimeMeasure 1
PARAM fe06abfd-f5d6-484f-aefc-df0d89d5ba71 Pset_AxleCountingEquipment.AxleCountingEquipmentType[Type] TEXT 64 1 PEnum_AxleCountingEquipmentType 1
PARAM 27e630fa-5a0e-425a-a73d-fc2482dc552e Pset_AxleCountingEquipment.DetectionRange[Type] LENGTH 64 1 IfcPositiveLengthMeasure 1
PARAM 6a228019-d821-4a92-a96c-11b754ff870e Pset_AxleCountingEquipment.FailureInformation[Type] TEXT 64 1 IfcText 1
PARAM 33de0c09-a6dc-4eec-b8b8-28b840e4c70c Pset_AxleCountingEquipment.ImpactParameter[Type] NUMBER 64 1 IfcAccelerationMeasure 1
PARAM 6405cd04-4be8-4450-a2d6-f63e83ff11a0 Pset_AxleCountingEquipment.InsulationResistance[Type] NUMBER 64 1 IfcElectricResistanceMeasure 1
PARAM 22139853-beea-44ce-acda-77e3d5a866f7 Pset_AxleCountingEquipment.MaximumVibration[Type] NUMBER 64 1 IfcFrequencyMeasure 1
PARAM 9ccd42ee-2e79-4d7e-9f77-cd1ca066fe41 Pset_AxleCountingEquipment.NominalWeight[Type] NUMBER 64 1 IfcMassMeasure 1
PARAM 0d1098af-4ab2-4da9-a1c6-daf68cd443e3 Pset_AxleCountingEquipment.OperationalTemperatureRange[Type] MULTILINETEXT 64 1 PropertyBoundedValue 1
PARAM 1825c81f-35de-4034-a35d-a64243d11b9e Pset_AxleCountingEquipment.RatedVoltage[Type] MULTILINETEXT 64 1 PropertyBoundedValue 1
#
GROUP 65 Pset_BalanceWeightTensionerDesignCriteria
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 22584f2a-5427-49cf-b16f-9ebb93883ef3 Pset_BalanceWeightTensionerDesignCriteria.ReferenceDistanceRopeToPulley[Type] MULTILINETEXT 65 1 PropertyTableValue 1
PARAM 396e8830-4deb-4916-ae1d-76ee71888dc7 Pset_BalanceWeightTensionerDesignCriteria.ReferenceDistanceTensionerToGround[Type] MULTILINETEXT 65 1 PropertyTableValue 1
#
GROUP 66 Pset_BeamCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 1b42160f-533f-49cc-b5d0-b6d78cc3acf6 Pset_BeamCommon.FireRating[Type] TEXT 66 1 IfcLabel 1
PARAM f0ffce37-da13-4760-8b22-50c4f563d8c5 Pset_BeamCommon.IsExternal[Type] YESNO 66 1 IfcBoolean 1
PARAM 4005b556-c0ce-47a2-b039-581663e74e83 Pset_BeamCommon.LoadBearing[Type] YESNO 66 1 IfcBoolean 1
PARAM 5fb543c4-766a-41a8-8004-ad58a52ce0d9 Pset_BeamCommon.Reference[Type] TEXT 66 1 IfcIdentifier 1
PARAM 830f615a-b959-4990-9fa8-eb684e692a80 Pset_BeamCommon.Roll[Type] NUMBER 66 1 IfcPlaneAngleMeasure 1
PARAM 6f2fde58-270e-483e-81e1-d55f886cb934 Pset_BeamCommon.Slope[Type] NUMBER 66 1 IfcPlaneAngleMeasure 1
PARAM ae025be8-bd74-4ac4-8cb5-b736f8b25d78 Pset_BeamCommon.Span[Type] LENGTH 66 1 IfcPositiveLengthMeasure 1
PARAM c9e4d67d-c2be-439b-8d41-33618302a894 Pset_BeamCommon.Status[Type] TEXT 66 1 PEnum_ElementStatus 1
PARAM c27fd2dc-24ef-4500-9f2f-3e9222a27460 Pset_BeamCommon.ThermalTransmittance[Type] NUMBER 66 1 IfcThermalTransmittanceMeasure 1
#
GROUP 67 Pset_BearingCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 97ee46cf-ddbb-4ec2-ac52-684aa8de4f1e Pset_BearingCommon.DisplacementAccommodated[Type] MULTILINETEXT 67 1 PropertyListValue 1
PARAM 75ae84a8-37ba-4969-8bb6-5b928620f881 Pset_BearingCommon.RotationAccommodated[Type] MULTILINETEXT 67 1 PropertyListValue 1
#
GROUP 68 Pset_BerthCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 95b8a5fc-b643-4067-ab09-4fd61e2ba20a Pset_BerthCommon.AbnormalBerthingFactor[Type] NUMBER 68 1 IfcPositiveRatioMeasure 1
PARAM 898f6fc3-dd3c-49f2-947b-d41c25f03ba7 Pset_BerthCommon.BerthApproach[Type] TEXT 68 1 PEnum_BerthApproach 1
PARAM 770872bd-a391-4672-b557-f982935fa0ec Pset_BerthCommon.BerthingAngle[Type] NUMBER 68 1 IfcPlaneAngleMeasure 1
PARAM f3e33ebd-148f-47ba-a96a-0442b8696919 Pset_BerthCommon.BerthingVelocity[Type] NUMBER 68 1 IfcLinearVelocityMeasure 1
PARAM 884de9ec-f443-4378-807b-b46f03770c4e Pset_BerthCommon.BerthMode[Type] TEXT 68 1 PEnum_BerthMode 1
#
GROUP 69 Pset_BinaryInput
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 196165c0-6178-418c-88bf-8f73cd732ae8 Pset_BinaryInput.AckedTransitions[Type] TEXT 69 1 PEnum_BACnetAckedTransitionsType 1
PARAM bff42dfe-34ad-4183-bc45-e9423b805768 Pset_BinaryInput.ActiveText[Type] TEXT 69 1 IfcText 1
PARAM 128fd4e8-ecc7-4fa8-86fe-e1b7456b1ddc Pset_BinaryInput.EventEnable[Type] TEXT 69 1 PEnum_BACnetEventEnableType 1
PARAM 982deb6c-439c-41aa-871c-f42b5187f6d0 Pset_BinaryInput.FeedbackValue[Type] TEXT 69 1 PEnum_BACnetFeedbackValueType 1
PARAM bf32fb49-e742-4bea-8814-cbc5bbaf2f99 Pset_BinaryInput.InactiveText[Type] TEXT 69 1 IfcText 1
PARAM f502e97f-9f51-4133-aa09-1d5f64c967ac Pset_BinaryInput.MinimumOffTime[Type] MULTILINETEXT 69 1 IfcLocalTime 1
PARAM 2c29d5c6-6a4f-470e-93ce-277dc60b71b8 Pset_BinaryInput.MinimumOnTime[Type] MULTILINETEXT 69 1 IfcLocalTime 1
PARAM ca09d749-7262-480f-9213-372ebb97a44d Pset_BinaryInput.Polarity[Type] TEXT 69 1 PEnum_PolarityEnum 1
#
GROUP 70 Pset_BinaryOutput
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 0ec86560-1870-49d1-92c2-c5445ca5f879 Pset_BinaryOutput.AckedTransitions[Type] TEXT 70 1 PEnum_BACnetAckedTransitionsType 1
PARAM 7c67aae3-a325-45a9-904f-d6ec732d7fb4 Pset_BinaryOutput.ActiveText[Type] TEXT 70 1 IfcText 1
PARAM 335416f0-b2e3-4d32-bebc-661c154e5934 Pset_BinaryOutput.AlarmValue[Type] TEXT 70 1 PEnum_BACnetAlarmValueType 1
PARAM a56c491d-2220-4999-819b-5a42a3d5dea8 Pset_BinaryOutput.EventEnable[Type] TEXT 70 1 PEnum_BACnetEventEnableType 1
PARAM d10e485c-efbe-46ec-9259-f9e1ae922811 Pset_BinaryOutput.InactiveText[Type] TEXT 70 1 IfcText 1
PARAM 7b0f613a-0055-4577-a4ec-47a6256228aa Pset_BinaryOutput.Polarity[Type] TEXT 70 1 PEnum_PolarityEnum 1
#
GROUP 71 Pset_BoilerPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c731b9db-a554-4eca-97e4-e5a90b094c00 Pset_BoilerPHistory.AuxiliaryEnergyConsumption[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM 16feae6b-5179-47a2-91a9-0ae29294551a Pset_BoilerPHistory.CombustionChamberTemperature[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM ac2737fa-d539-4603-be81-f049b7f958c2 Pset_BoilerPHistory.CombustionEfficiency[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM caab0eb4-44db-48cd-8269-16ef977ec804 Pset_BoilerPHistory.CombustionTemperature[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM 44000485-feeb-4e83-82a1-c9b577251a9a Pset_BoilerPHistory.EnergySourceConsumption[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM d1b302dd-69c3-46e5-a047-19e9d93ff821 Pset_BoilerPHistory.Load[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM d1793c3f-5aed-4ff4-9e8a-20d29f5d5ddc Pset_BoilerPHistory.OperationalEfficiency[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM 56c8eab8-d321-4b44-ae83-8e07d742ad34 Pset_BoilerPHistory.PartLoadRatio[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM 40bbc244-7e7d-4dc5-a4d5-3827d16b54b7 Pset_BoilerPHistory.PrimaryEnergyConsumption[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM f9c5e53d-d24e-4c48-9a20-a6099df794e5 Pset_BoilerPHistory.WorkingPressure[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
PARAM ff9d6017-187b-4dcd-9fa9-7ab21cf4eb29 Pset_BoilerPHistory.WorkingPressureHistory[Type] MULTILINETEXT 71 1 IfcTimeSeries 1
#
GROUP 72 Pset_BoilerTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4e7ee0fe-49e7-49ae-a285-7551f427cf55 Pset_BoilerTypeCommon.EnergySource[Type] TEXT 72 1 PEnum_EnergySource 1
PARAM 17e7b290-2fc3-4cf2-bd3c-28b44c6dc22b Pset_BoilerTypeCommon.HeatOutput[Type] MULTILINETEXT 72 1 PropertyListValue 1
PARAM 07a0e22d-5029-4417-bcd9-efd313bacf83 Pset_BoilerTypeCommon.HeatTransferSurfaceArea[Type] AREA 72 1 IfcAreaMeasure 1
PARAM 00223468-6803-476d-bdee-8771a33a1a35 Pset_BoilerTypeCommon.IsWaterStorageHeater[Type] YESNO 72 1 IfcBoolean 1
PARAM 68293f88-7942-4662-a76c-83f977391594 Pset_BoilerTypeCommon.Material[Type] MULTILINETEXT 72 1 IfcMaterial 1
PARAM 05f9fa43-cc17-47d5-87b8-8e9568b6fa6f Pset_BoilerTypeCommon.NominalEfficiency[Type] MULTILINETEXT 72 1 PropertyListValue 1
PARAM 10b17e6b-c08e-468e-a1da-09ff51db7e7f Pset_BoilerTypeCommon.NominalEnergyConsumption[Type] NUMBER 72 1 IfcPowerMeasure 1
PARAM 8420b0ec-f2cc-4813-b8b6-c59bc05bce72 Pset_BoilerTypeCommon.NominalPartLoadRatio[Type] MULTILINETEXT 72 1 PropertyBoundedValue 1
PARAM 0cafc4ce-9783-4693-a095-e901f89865fd Pset_BoilerTypeCommon.OperatingMode[Type] TEXT 72 1 PEnum_BoilerOperatingMode 1
PARAM a6d69999-2690-451b-bc2d-e5b7b8b44954 Pset_BoilerTypeCommon.OutletTemperatureRange[Type] MULTILINETEXT 72 1 PropertyBoundedValue 1
PARAM 14b49da2-fa4a-4ffc-aed1-076daa46066f Pset_BoilerTypeCommon.PartialLoadEfficiencyCurves[Type] MULTILINETEXT 72 1 PropertyTableValue 1
PARAM e107239b-357c-446c-b830-a485f94e382d Pset_BoilerTypeCommon.PressureRating[Type] NUMBER 72 1 IfcPressureMeasure 1
PARAM 0615fe40-a9a3-40dc-87f4-d960cd2ed599 Pset_BoilerTypeCommon.Reference[Type] TEXT 72 1 IfcIdentifier 1
PARAM 0cd8fc41-59c9-449e-9efb-5f3a55db4b6f Pset_BoilerTypeCommon.Status[Type] TEXT 72 1 PEnum_ElementStatus 1
PARAM 792eae9e-f1af-4d93-8528-bb0cb629b7d1 Pset_BoilerTypeCommon.WaterInletTemperatureRange[Type] MULTILINETEXT 72 1 PropertyBoundedValue 1
PARAM a02adb6e-bc1e-4d4b-8604-6f728715390f Pset_BoilerTypeCommon.WaterStorageCapacity[Type] VOLUME 72 1 IfcVolumeMeasure 1
PARAM 2dafc90a-bd35-447f-86fd-0612e3e6da95 Pset_BoilerTypeCommon.Weight[Type] NUMBER 72 1 IfcMassMeasure 1
#
GROUP 73 Pset_BoilerTypeSteam
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7cc309bc-1d97-4d70-a604-b6034a9eea70 Pset_BoilerTypeSteam.HeatOutput[Type] MULTILINETEXT 73 1 PropertyTableValue 1
PARAM 09616851-5a6b-4740-9b03-e2c555051106 Pset_BoilerTypeSteam.MaximumOutletPressure[Type] TEXT 73 1 IfcLabel 1
PARAM 8678fec1-d7d6-442c-a32a-653c341cd70e Pset_BoilerTypeSteam.NominalEfficiency[Type] MULTILINETEXT 73 1 PropertyTableValue 1
PARAM 784b19a8-bafb-4347-b78d-b4f2d47ad70a Pset_BoilerTypeSteam.NominalEfficiencyTable[Type] MULTILINETEXT 73 1 PropertyTableValue 1
#
GROUP 74 Pset_BoilerTypeWater
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 060fc468-8dd7-45de-9f72-99c37b7de46d Pset_BoilerTypeWater.HeatOutput[Type] MULTILINETEXT 74 1 PropertyTableValue 1
PARAM cc538db3-a102-4f74-a8b3-863792d5fd04 Pset_BoilerTypeWater.NominalEfficiency[Type] MULTILINETEXT 74 1 PropertyTableValue 1
#
GROUP 75 Pset_BoreholeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 1fac041c-6408-4057-8d18-3b865f802d89 Pset_BoreholeCommon.BoreholeState[Type] TEXT 75 1 PEnum_BoreholeState 1
PARAM a140c315-f1d3-4f54-8d1a-3ce39945fcf8 Pset_BoreholeCommon.CapDepth[Type] LENGTH 75 1 IfcPositiveLengthMeasure 1
PARAM 0bc0c3cc-4017-4495-8aa8-b41b2bb1fe07 Pset_BoreholeCommon.CapMaterial[Type] TEXT 75 1 IfcLabel 1
PARAM 29f52f68-82fc-4647-bffb-e4f43c6f58b8 Pset_BoreholeCommon.FillingDepth[Type] LENGTH 75 1 IfcPositiveLengthMeasure 1
PARAM 6c6148cc-a326-4c38-b9a5-888214d5524b Pset_BoreholeCommon.FillingMaterial[Type] TEXT 75 1 IfcLabel 1
PARAM 9b9425b9-08e7-4639-a649-c5ef2a33a7cd Pset_BoreholeCommon.GroundwaterDepth[Type] LENGTH 75 1 IfcPositiveLengthMeasure 1
PARAM a5bea209-b9a8-4607-942a-c177f7adc5aa Pset_BoreholeCommon.LiningMaterial[Type] TEXT 75 1 IfcLabel 1
PARAM 182f693f-f7d1-483c-bfea-6c186219fe62 Pset_BoreholeCommon.LiningThickness[Type] LENGTH 75 1 IfcPositiveLengthMeasure 1
#
GROUP 76 Pset_BoundedCourseCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM e94b84de-4cd6-4f11-a2b3-b12566bf52db Pset_BoundedCourseCommon.SpreadingRate[Type] NUMBER 76 1 IfcNumericMeasure 1
#
GROUP 77 Pset_BreakwaterCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 663859f4-cb36-4345-b5a3-4772cdff547c Pset_BreakwaterCommon.Elevation[Type] LENGTH 77 1 IfcLengthMeasure 1
PARAM fa417172-5597-4954-9fa5-e708f94cc378 Pset_BreakwaterCommon.StructuralStyle[Type] TEXT 77 1 IfcLabel 1
#
GROUP 78 Pset_BridgeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c0290c9f-ebe0-458e-bd4d-ec1b5f0457bc Pset_BridgeCommon.StructureIndicator[Type] TEXT 78 1 PEnum_StructureIndicator 1
#
GROUP 79 Pset_BuildingCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM e55584f1-325c-41bd-ae12-4e01200bc15e Pset_BuildingCommon.AncillaryFireUse[Type] TEXT 79 1 IfcLabel 1
PARAM 50cd0a23-eecc-4544-916f-5099d3d7f9be Pset_BuildingCommon.BuildingID[Type] TEXT 79 1 IfcIdentifier 1
PARAM 4e5bb594-6e76-4d37-8743-57536a79fc44 Pset_BuildingCommon.ConstructionMethod[Type] TEXT 79 1 IfcLabel 1
PARAM 2f767d5b-f2fa-4828-bdf3-a745c1053ba9 Pset_BuildingCommon.FireProtectionClass[Type] TEXT 79 1 IfcLabel 1
PARAM a3657df0-3def-4fa6-8fde-7f20f655e1ea Pset_BuildingCommon.GrossAreaPlanned[Type] AREA 79 1 IfcAreaMeasure 1
PARAM 17177d15-bafb-4eb8-84b5-76369599ce93 Pset_BuildingCommon.GrossPlannedArea[Type] AREA 79 1 IfcAreaMeasure 1
PARAM 227c295b-b984-4e85-9e61-41634a935a40 Pset_BuildingCommon.IsLandmarked[Type] YESNO 79 1 IfcLogical 1
PARAM f8d69b6d-0bb6-470c-9f34-9097b130cff2 Pset_BuildingCommon.IsPermanentID[Type] YESNO 79 1 IfcBoolean 1
PARAM 6fbe288c-6522-4e1b-ae8c-652c828e8f4d Pset_BuildingCommon.MainFireUse[Type] TEXT 79 1 IfcLabel 1
PARAM e774616b-80ef-45ef-9ca9-641f4d8c96da Pset_BuildingCommon.NetPlannedArea[Type] AREA 79 1 IfcAreaMeasure 1
PARAM 80ca501b-c7a6-4648-89d1-b08f92659b5e Pset_BuildingCommon.NumberOfStoreys[Type] INTEGER 79 1 IfcCountMeasure 1
PARAM 4609f5af-7106-47b5-936b-264cb2249e69 Pset_BuildingCommon.OccupancyType[Type] TEXT 79 1 IfcLabel 1
PARAM 980db421-47bb-479b-9371-6620856568e7 Pset_BuildingCommon.Reference[Type] TEXT 79 1 IfcIdentifier 1
PARAM 0e9d4b20-ea69-4d22-8381-4b154d8fcd32 Pset_BuildingCommon.SprinklerProtection[Type] YESNO 79 1 IfcBoolean 1
PARAM 87508413-7241-4a69-8f84-65b5ac41b367 Pset_BuildingCommon.SprinklerProtectionAutomatic[Type] YESNO 79 1 IfcBoolean 1
PARAM fafb885e-125e-4d33-86c2-7d134d948148 Pset_BuildingCommon.YearOfConstruction[Type] TEXT 79 1 IfcLabel 1
PARAM 4f6cf9ae-bb41-482d-a507-f74c16a0c381 Pset_BuildingCommon.YearOfLastRefurbishment[Type] TEXT 79 1 IfcLabel 1
#
GROUP 80 Pset_BuildingElementProxyCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 139a5d38-2534-4558-982b-afacf18bee06 Pset_BuildingElementProxyCommon.FireRating[Type] TEXT 80 1 IfcLabel 1
PARAM a4995f86-0382-4c07-a5b2-44f8718b9342 Pset_BuildingElementProxyCommon.IsExternal[Type] YESNO 80 1 IfcBoolean 1
PARAM 7884b9d5-9f0d-4836-93c1-01e493a4b2d5 Pset_BuildingElementProxyCommon.LoadBearing[Type] YESNO 80 1 IfcBoolean 1
PARAM b51681ee-5817-4e01-9068-69d0103bf375 Pset_BuildingElementProxyCommon.Reference[Type] TEXT 80 1 IfcIdentifier 1
PARAM bc59e591-a230-463d-af46-5dd8c97eb9b0 Pset_BuildingElementProxyCommon.Status[Type] TEXT 80 1 PEnum_ElementStatus 1
PARAM 24f7fefb-a1e2-41ca-b013-6321fb4ef785 Pset_BuildingElementProxyCommon.ThermalTransmittance[Type] NUMBER 80 1 IfcThermalTransmittanceMeasure 1
#
GROUP 81 Pset_BuildingElementProxyProvisionForVoid
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 48a80664-169a-4449-b086-119016c5d090 Pset_BuildingElementProxyProvisionForVoid.Depth[Type] LENGTH 81 1 IfcPositiveLengthMeasure 1
PARAM 59202f8f-4301-457f-ba75-aa9529930f5d Pset_BuildingElementProxyProvisionForVoid.Diameter[Type] LENGTH 81 1 IfcPositiveLengthMeasure 1
PARAM 0417c50e-b70e-4092-9163-a18a5526e6a6 Pset_BuildingElementProxyProvisionForVoid.Height[Type] LENGTH 81 1 IfcPositiveLengthMeasure 1
PARAM c28bc8f1-56af-4a8c-b424-e67fdb7488e6 Pset_BuildingElementProxyProvisionForVoid.Shape[Type] TEXT 81 1 IfcLabel 1
PARAM 89557a4a-4656-490f-b529-b113dbde7372 Pset_BuildingElementProxyProvisionForVoid.System[Type] TEXT 81 1 IfcLabel 1
PARAM d4fba4e8-a7ab-4869-bc6c-5f1524a2d6b6 Pset_BuildingElementProxyProvisionForVoid.Width[Type] LENGTH 81 1 IfcPositiveLengthMeasure 1
#
GROUP 82 Pset_BuildingStoreyCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM eb2ce09f-1184-431c-9713-bc459189ea02 Pset_BuildingStoreyCommon.AboveGround[Type] YESNO 82 1 IfcLogical 1
PARAM 67076e25-d3d9-4f2b-83b2-7fe3f3920365 Pset_BuildingStoreyCommon.ElevationOfFFLRelative[Type] LENGTH 82 1 IfcLengthMeasure 1
PARAM 0cb4c6f6-7bbd-4f72-8b85-f773b5da507c Pset_BuildingStoreyCommon.ElevationOfSSLRelative[Type] LENGTH 82 1 IfcLengthMeasure 1
PARAM 3a602985-9b93-4123-97e8-92a4359494a3 Pset_BuildingStoreyCommon.EntranceLevel[Type] YESNO 82 1 IfcBoolean 1
PARAM 5ae7fa2b-d22e-42cf-8540-1a7a8644b992 Pset_BuildingStoreyCommon.GrossAreaPlanned[Type] AREA 82 1 IfcAreaMeasure 1
PARAM c0a0347d-85f9-4437-a727-a0a7da77341a Pset_BuildingStoreyCommon.GrossPlannedArea[Type] AREA 82 1 IfcAreaMeasure 1
PARAM 27dcd7da-24a2-4d57-adf5-7ab870994b90 Pset_BuildingStoreyCommon.LoadBearingCapacity[Type] NUMBER 82 1 IfcPlanarForceMeasure 1
PARAM ba72d71e-df74-4745-a011-d5c441074b84 Pset_BuildingStoreyCommon.NetAreaPlanned[Type] AREA 82 1 IfcAreaMeasure 1
PARAM 1ef9f7d5-e3ad-4425-8ea2-ff1e005a3c27 Pset_BuildingStoreyCommon.NetPlannedArea[Type] AREA 82 1 IfcAreaMeasure 1
PARAM 3221479f-0be8-4b3b-bed2-a5869a167f3b Pset_BuildingStoreyCommon.Reference[Type] TEXT 82 1 IfcIdentifier 1
PARAM 6ffaf186-f421-4912-a567-22e4c47ba285 Pset_BuildingStoreyCommon.SprinklerProtection[Type] YESNO 82 1 IfcBoolean 1
PARAM 9ee0a8df-1db5-407c-875c-ad90c13c8078 Pset_BuildingStoreyCommon.SprinklerProtectionAutomatic[Type] YESNO 82 1 IfcBoolean 1
#
GROUP 83 Pset_BuildingSystemCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7a256f3b-1395-4d3c-91eb-88945489b812 Pset_BuildingSystemCommon.Reference[Type] TEXT 83 1 IfcIdentifier 1
#
GROUP 84 Pset_BuildingUse
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d3d112aa-cf9f-4d5f-96e5-8a5d0bcbf4a5 Pset_BuildingUse.MarketCategory[Type] TEXT 84 1 IfcLabel 1
PARAM 5ac6b455-31b3-4f15-8bca-5e4116776aa7 Pset_BuildingUse.MarketSubCategoriesAvailableFuture[Type] MULTILINETEXT 84 1 PropertyListValue 1
PARAM bf34cb99-5dfc-4c19-acf7-012dfbc43e39 Pset_BuildingUse.MarketSubCategoriesAvailableNow[Type] MULTILINETEXT 84 1 PropertyListValue 1
PARAM 3e0e50fd-cdf4-4e34-90c1-fa5617e7d6ea Pset_BuildingUse.MarketSubCategory[Type] TEXT 84 1 IfcLabel 1
PARAM 23e6f432-c9f2-49d1-b6be-10a96347b72e Pset_BuildingUse.NarrativeText[Type] TEXT 84 1 IfcText 1
PARAM 1fb6b646-48d6-498c-afed-0861b075d51b Pset_BuildingUse.PlanningControlStatus[Type] TEXT 84 1 IfcLabel 1
PARAM ee02336d-1f6c-42d5-af73-7960a6dd1dbb Pset_BuildingUse.RentalRatesInCategoryFuture[Type] MULTILINETEXT 84 1 PropertyBoundedValue 1
PARAM 1f7bedbc-da2d-4eb2-936d-12103dfeada0 Pset_BuildingUse.RentalRatesInCategoryNow[Type] MULTILINETEXT 84 1 PropertyBoundedValue 1
PARAM bcacf575-50e0-4445-a73b-b9bc4889d0d3 Pset_BuildingUse.TenureModesAvailableFuture[Type] MULTILINETEXT 84 1 PropertyListValue 1
PARAM 26bb563e-f368-486b-979f-08f508a12815 Pset_BuildingUse.TenureModesAvailableNow[Type] MULTILINETEXT 84 1 PropertyListValue 1
PARAM 8a0fc85d-1810-408f-8cf8-be1500118de5 Pset_BuildingUse.VacancyRateInCategoryFuture[Type] NUMBER 84 1 IfcPositiveRatioMeasure 1
PARAM a3baf2d8-d221-4bd3-bd26-51dda3028ed9 Pset_BuildingUse.VacancyRateInCategoryNow[Type] NUMBER 84 1 IfcPositiveRatioMeasure 1
#
GROUP 85 Pset_BuildingUseAdjacent
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 768892e1-b40a-4848-9b99-d13bc56b36ac Pset_BuildingUseAdjacent.MarketCategory[Type] TEXT 85 1 IfcLabel 1
PARAM 09db3dab-7163-4cca-97a1-584db4e913da Pset_BuildingUseAdjacent.MarketSubCategory[Type] TEXT 85 1 IfcLabel 1
PARAM 194665c1-d805-4fab-9075-fabd9ef524d8 Pset_BuildingUseAdjacent.NarrativeText[Type] TEXT 85 1 IfcText 1
PARAM c7eea947-ae1a-4c18-9678-efa4a9107bd7 Pset_BuildingUseAdjacent.PlanningControlStatus[Type] TEXT 85 1 IfcLabel 1
#
GROUP 86 Pset_BuildingWaterStorage
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 864133f9-ce3f-4613-b9c4-760ddc6093ad Pset_BuildingWaterStorage.OneDayCoolingTowerMakeupWater[Type] VOLUME 86 1 IfcVolumeMeasure 1
PARAM 4f550641-5478-4555-96f2-b54c3d0f0b4e Pset_BuildingWaterStorage.OneDayEssentialWater[Type] VOLUME 86 1 IfcVolumeMeasure 1
PARAM 192e28e9-1ead-4208-a167-d823e07aa268 Pset_BuildingWaterStorage.OneDayPotableWater[Type] VOLUME 86 1 IfcVolumeMeasure 1
PARAM efa8d948-485d-49b2-a5a1-8ef50e307ab6 Pset_BuildingWaterStorage.OneDayProcessOrProductionWater[Type] VOLUME 86 1 IfcVolumeMeasure 1
PARAM 55099d26-167a-4f86-9851-5c4eba5dae3d Pset_BuildingWaterStorage.WaterStorageRatePerPerson[Type] VOLUME 86 1 IfcVolumeMeasure 1
#
GROUP 87 Pset_BuiltSystemRailwayLine
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ef74fece-3e9f-44cd-bb3d-7259917dad3c Pset_BuiltSystemRailwayLine.IsElectrified[Type] YESNO 87 1 IfcBoolean 1
PARAM 798df79d-f4ca-4a3b-a7c1-199708030e1e Pset_BuiltSystemRailwayLine.LineCharacteristic[Type] TEXT 87 1 PEnum_LineCharacteristic 1
PARAM 7eaada14-e4fd-42ea-9150-9437ba361468 Pset_BuiltSystemRailwayLine.LineID[Type] TEXT 87 1 IfcIdentifier 1
#
GROUP 88 Pset_BuiltSystemRailwayTrack
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6d1b324d-89ad-4f41-a4fb-445fe31d323c Pset_BuiltSystemRailwayTrack.TrackCharacteristic[Type] TEXT 88 1 PEnum_TrackCharacteristic 1
PARAM c7b43b6a-b63c-4f34-8258-b71f575c4681 Pset_BuiltSystemRailwayTrack.TrackID[Type] TEXT 88 1 IfcIdentifier 1
PARAM a59d1c50-eada-4be2-b75a-ed47c39e5a92 Pset_BuiltSystemRailwayTrack.TrackNumber[Type] TEXT 88 1 IfcIdentifier 1
PARAM 0de6d30b-24a7-456c-a8c0-323dd806bfa1 Pset_BuiltSystemRailwayTrack.TrackUsage[Type] TEXT 88 1 PEnum_TrackUsage 1
#
GROUP 89 Pset_BurnerTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM bcaa019f-e18d-46d3-8f5a-0cc199182f91 Pset_BurnerTypeCommon.EnergySource[Type] TEXT 89 1 PEnum_EnergySource 1
PARAM b21fa232-644f-4400-b448-3e9d34338262 Pset_BurnerTypeCommon.Reference[Type] TEXT 89 1 IfcIdentifier 1
PARAM 0fddd35b-059c-4315-b887-df1b5fc434b7 Pset_BurnerTypeCommon.Status[Type] TEXT 89 1 PEnum_ElementStatus 1
#
GROUP 90 Pset_CableCarrierFittingTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 9cbe5a9b-4a6f-4d80-866d-308f4180e235 Pset_CableCarrierFittingTypeCommon.Reference[Type] TEXT 90 1 IfcIdentifier 1
PARAM 160b02e5-5b41-4d52-9af5-87d05c817c38 Pset_CableCarrierFittingTypeCommon.Status[Type] TEXT 90 1 PEnum_ElementStatus 1
#
GROUP 91 Pset_CableCarrierSegmentTypeCableLadderSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM aac8c03f-95a3-4f6f-8dec-71f3b33c2ee6 Pset_CableCarrierSegmentTypeCableLadderSegment.LadderConfiguration[Type] TEXT 91 1 IfcText 1
PARAM 22dc51b7-9e86-4587-beb2-d652ea9d0f00 Pset_CableCarrierSegmentTypeCableLadderSegment.NominalHeight[Type] LENGTH 91 1 IfcPositiveLengthMeasure 1
PARAM 742ffca9-bc98-4c16-befa-a817b2206342 Pset_CableCarrierSegmentTypeCableLadderSegment.NominalLength[Type] LENGTH 91 1 IfcPositiveLengthMeasure 1
PARAM aca286fc-7f43-4ea4-85ce-af884283550d Pset_CableCarrierSegmentTypeCableLadderSegment.NominalWidth[Type] LENGTH 91 1 IfcPositiveLengthMeasure 1
#
GROUP 92 Pset_CableCarrierSegmentTypeCableTraySegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6d4766cb-2d83-44b2-96fe-4e0f8395d65e Pset_CableCarrierSegmentTypeCableTraySegment.HasCover[Type] YESNO 92 1 IfcBoolean 1
PARAM 96cbbdd3-85ad-4395-979f-16ca0e56d5a6 Pset_CableCarrierSegmentTypeCableTraySegment.NominalHeight[Type] LENGTH 92 1 IfcPositiveLengthMeasure 1
PARAM 65f5a20e-e828-4b1f-bf5f-2b0ac829ab40 Pset_CableCarrierSegmentTypeCableTraySegment.NominalLength[Type] LENGTH 92 1 IfcPositiveLengthMeasure 1
PARAM 2d7f1464-e09b-45a8-8129-b48bd34635b9 Pset_CableCarrierSegmentTypeCableTraySegment.NominalWidth[Type] LENGTH 92 1 IfcPositiveLengthMeasure 1
#
GROUP 93 Pset_CableCarrierSegmentTypeCableTrunkingSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4f7ff295-5a95-4193-9699-da06c586fac0 Pset_CableCarrierSegmentTypeCableTrunkingSegment.NominalHeight[Type] LENGTH 93 1 IfcPositiveLengthMeasure 1
PARAM b797e6a5-f3db-4d02-aa5d-408eaa14a73e Pset_CableCarrierSegmentTypeCableTrunkingSegment.NominalLength[Type] LENGTH 93 1 IfcPositiveLengthMeasure 1
PARAM e2d79fce-4e8e-44a4-8202-770c5df61898 Pset_CableCarrierSegmentTypeCableTrunkingSegment.NominalWidth[Type] LENGTH 93 1 IfcPositiveLengthMeasure 1
PARAM fbff76cd-9e20-48e5-a664-191f9d9c3240 Pset_CableCarrierSegmentTypeCableTrunkingSegment.NumberOfCompartments[Type] INTEGER 93 1 IfcCountMeasure 1
#
GROUP 94 Pset_CableCarrierSegmentTypeCatenaryWire
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM fd6fb4b9-f6c7-45fb-ae37-3e9169f181f9 Pset_CableCarrierSegmentTypeCatenaryWire.ACResistance[Type] NUMBER 94 1 IfcElectricResistanceMeasure 1
PARAM 8454e853-caa3-40a9-9fcd-99a7dbb8b1a9 Pset_CableCarrierSegmentTypeCatenaryWire.CatenaryWireType[Type] TEXT 94 1 IfcLabel 1
PARAM d11c4201-1d12-467d-89b7-ecfabfbb9bc9 Pset_CableCarrierSegmentTypeCatenaryWire.CurrentCarryingCapacity[Type] NUMBER 94 1 IfcElectricCurrentMeasure 1
PARAM 943da812-0db4-4393-b161-9e0ac16d6921 Pset_CableCarrierSegmentTypeCatenaryWire.DCResistance[Type] NUMBER 94 1 IfcElectricResistanceMeasure 1
PARAM 41916026-2a7b-434f-b436-b30c684158ab Pset_CableCarrierSegmentTypeCatenaryWire.LayRatio[Type] NUMBER 94 1 IfcPositiveRatioMeasure 1
PARAM 50abb522-6f46-4a2e-bb4c-0018d4ec29c7 Pset_CableCarrierSegmentTypeCatenaryWire.MassPerLength[Type] NUMBER 94 1 IfcMassPerLengthMeasure 1
PARAM e33fb8a3-91bc-48e4-a4d1-8452547beebb Pset_CableCarrierSegmentTypeCatenaryWire.MechanicalTension[Type] NUMBER 94 1 IfcForceMeasure 1
PARAM e26fe79d-6570-43cf-b9f7-2d53ee3afa25 Pset_CableCarrierSegmentTypeCatenaryWire.PhysicalDescriptionReference[Type] MULTILINETEXT 94 1 IfcExternalReference 1
PARAM 2bb1dfd5-c2c6-4890-b962-b5a8d7415a0a Pset_CableCarrierSegmentTypeCatenaryWire.StrandingMethod[Type] TEXT 94 1 IfcLabel 1
PARAM 6bd2fa9c-6dfd-430b-949e-3e00e7e92775 Pset_CableCarrierSegmentTypeCatenaryWire.TensileStrength[Type] NUMBER 94 1 IfcPressureMeasure 1
PARAM 699389ab-91f9-4204-bc54-d9bc2a599e5a Pset_CableCarrierSegmentTypeCatenaryWire.ThermalExpansionCoefficient[Type] NUMBER 94 1 IfcThermalExpansionCoefficientMeasure 1
PARAM 0c1e500a-5e6b-41e3-9953-df7d0e886323 Pset_CableCarrierSegmentTypeCatenaryWire.UltimateTensileStrength[Type] NUMBER 94 1 IfcForceMeasure 1
PARAM 2200d3c6-68d7-4755-818b-bf3a414b83a7 Pset_CableCarrierSegmentTypeCatenaryWire.YoungModulus[Type] NUMBER 94 1 IfcModulusOfElasticityMeasure 1
#
GROUP 95 Pset_CableCarrierSegmentTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM cabca114-2329-46e7-935a-0f54a4d0f15c Pset_CableCarrierSegmentTypeCommon.Reference[Type] TEXT 95 1 IfcIdentifier 1
PARAM 41f256d1-ce87-4c5c-bec4-e8d46bd1620a Pset_CableCarrierSegmentTypeCommon.Status[Type] TEXT 95 1 PEnum_ElementStatus 1
#
GROUP 96 Pset_CableCarrierSegmentTypeConduitSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 83194735-e827-41ad-b539-3cb016bffcf0 Pset_CableCarrierSegmentTypeConduitSegment.ConduitShapeType[Type] TEXT 96 1 PEnum_ConduitShapeType 1
PARAM 90d84926-0b03-4cb5-b996-b4101e72ae0b Pset_CableCarrierSegmentTypeConduitSegment.IsRigid[Type] YESNO 96 1 IfcBoolean 1
PARAM 089110c0-63b6-48a8-9603-60362c2126b1 Pset_CableCarrierSegmentTypeConduitSegment.NominalDiameter[Type] LENGTH 96 1 IfcPositiveLengthMeasure 1
PARAM e295efce-8914-41fa-8ca8-8f1583ced6ad Pset_CableCarrierSegmentTypeConduitSegment.NominalHeight[Type] LENGTH 96 1 IfcPositiveLengthMeasure 1
PARAM a239a368-1cd4-4a2c-87e3-451ddfbd72a5 Pset_CableCarrierSegmentTypeConduitSegment.NominalLength[Type] LENGTH 96 1 IfcPositiveLengthMeasure 1
PARAM 3fd4c79b-bd83-4db7-81f2-06e79a8c557f Pset_CableCarrierSegmentTypeConduitSegment.NominalWidth[Type] LENGTH 96 1 IfcNonNegativeLengthMeasure 1
#
GROUP 97 Pset_CableCarrierSegmentTypeDropper
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM b39dc3cd-6b0b-4eb7-ba4f-fea199f8ed3e Pset_CableCarrierSegmentTypeDropper.AssemblyInstruction[Type] MULTILINETEXT 97 1 IfcExternalReference 1
PARAM 4e80e506-4db3-4ef6-bfe9-abcff001c289 Pset_CableCarrierSegmentTypeDropper.CurrentCarryingCapacity[Type] NUMBER 97 1 IfcElectricCurrentMeasure 1
PARAM 7170b8a4-7b1b-4974-81b9-e8aa377dd667 Pset_CableCarrierSegmentTypeDropper.IsAdjustable[Type] YESNO 97 1 IfcBoolean 1
PARAM e3041aec-3aa9-43ac-b5ad-9080f763b7e0 Pset_CableCarrierSegmentTypeDropper.IsCurrentCarrying[Type] YESNO 97 1 IfcBoolean 1
PARAM a0fae53f-f439-4ce1-94d5-31673f461afc Pset_CableCarrierSegmentTypeDropper.IsRigid[Type] YESNO 97 1 IfcBoolean 1
PARAM 89487ccf-dc66-421f-bf99-93a1a0669bba Pset_CableCarrierSegmentTypeDropper.NominalLoad[Type] NUMBER 97 1 IfcForceMeasure 1
PARAM c3a8aee2-265c-445e-b10d-e0fda1b565c3 Pset_CableCarrierSegmentTypeDropper.TensileStrength[Type] NUMBER 97 1 IfcPressureMeasure 1
PARAM e52c3584-f1d4-4b6f-bd8f-68d1ff1c3ff7 Pset_CableCarrierSegmentTypeDropper.UltimateTensileStrength[Type] NUMBER 97 1 IfcForceMeasure 1
#
GROUP 98 Pset_CableFittingTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d3167094-d0a5-44ab-96c8-f66a4979aca2 Pset_CableFittingTypeCommon.Reference[Type] TEXT 98 1 IfcIdentifier 1
PARAM 38d1b35f-eb54-43dd-b74a-e1ff89fe0c72 Pset_CableFittingTypeCommon.Status[Type] TEXT 98 1 PEnum_ElementStatus 1
#
GROUP 99 Pset_CableFittingTypeExit
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 39077cd9-30ed-4acc-92ea-d16dba26c73d Pset_CableFittingTypeExit.GroundResistance[Type] NUMBER 99 1 IfcElectricResistanceMeasure 1
#
GROUP 100 Pset_CableFittingTypeFanout
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM a7e326a7-a70a-4410-8d5c-d16901c8bb1b Pset_CableFittingTypeFanout.NumberOfTubes[Type] INTEGER 100 1 IfcCountMeasure 1
PARAM dc7a6e08-3e89-487b-a3de-32420a94f0fa Pset_CableFittingTypeFanout.TubeDiameter[Type] LENGTH 100 1 IfcPositiveLengthMeasure 1
#
GROUP 101 Pset_CableSegmentConnector
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 80d2a851-a406-4d9d-a98c-7372f066edd1 Pset_CableSegmentConnector.ConnectorAColour[Type] TEXT 101 1 IfcLabel 1
PARAM 87f27319-834a-4ac0-8f2e-b7b6cb6ed2eb Pset_CableSegmentConnector.ConnectorAGender[Type] TEXT 101 1 PEnum_DistributionPortGender 1
PARAM 54df81ee-1696-4e99-b2f0-65cfee946ff9 Pset_CableSegmentConnector.ConnectorAType[Type] TEXT 101 1 IfcLabel 1
PARAM 3720361f-4bab-49d0-b910-2636ad568ea5 Pset_CableSegmentConnector.ConnectorBColour[Type] TEXT 101 1 IfcLabel 1
PARAM 51648216-a4e1-4cd8-b3b3-ec5024eeb65d Pset_CableSegmentConnector.ConnectorBGender[Type] TEXT 101 1 PEnum_DistributionPortGender 1
PARAM 5991a38b-1565-42ae-90ea-1d3e43eb2603 Pset_CableSegmentConnector.ConnectorBType[Type] TEXT 101 1 IfcLabel 1
#
GROUP 102 Pset_CableSegmentOccurenceFiberSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 10b52c8d-c57f-4415-8581-0d4213831fc7 Pset_CableSegmentOccurenceFiberSegment.InUse[Type] YESNO 102 1 IfcBoolean 1
#
GROUP 103 Pset_CableSegmentOccurrence
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4b914814-5278-4c94-b075-3013ba2a4383 Pset_CableSegmentOccurrence.CarrierStackNumber[Type] INTEGER 103 1 IfcInteger 1
PARAM c9a2fcef-415e-41c4-bf41-85057682f5af Pset_CableSegmentOccurrence.CurrentCarryingCapacity[Type] NUMBER 103 1 IfcElectricCurrentMeasure 1
PARAM a64b3442-09a0-4257-a67a-1d5140ac3040 Pset_CableSegmentOccurrence.CurrentCarryingCapasity[Type] NUMBER 103 1 IfcElectricCurrentMeasure 1
PARAM 4a31f754-8340-4ef9-b0ea-a7752d2cceb3 Pset_CableSegmentOccurrence.DesignAmbientTemperature[Type] MULTILINETEXT 103 1 PropertyBoundedValue 1
PARAM 906442d9-dbbe-440f-84de-0021c0a30914 Pset_CableSegmentOccurrence.DistanceBetweenParallelCircuits[Type] LENGTH 103 1 IfcLengthMeasure 1
PARAM 525487e2-c58a-4fa1-b84e-b55e6e41d807 Pset_CableSegmentOccurrence.InstallationMethod[Type] TEXT 103 1 IfcLabel 1
PARAM 17a7ab30-e903-43c3-8152-c51bae235dcd Pset_CableSegmentOccurrence.InstallationMethodFlagEnum[Type] TEXT 103 1 PEnum_InstallationMethodFlagEnum 1
PARAM 63b47c0c-d1f0-493f-a355-1e6393a7d35f Pset_CableSegmentOccurrence.IsHorizontalCable[Type] YESNO 103 1 IfcBoolean 1
PARAM 2055318a-b501-41e0-8fc7-36000b267392 Pset_CableSegmentOccurrence.IsMountedFlatCable[Type] YESNO 103 1 IfcBoolean 1
PARAM 25a21846-013d-4296-ba24-9686ed7bc2a6 Pset_CableSegmentOccurrence.MaximumCableLength[Type] LENGTH 103 1 IfcLengthMeasure 1
PARAM 4907b222-01df-48c6-b0b6-511375dd2239 Pset_CableSegmentOccurrence.MountingMethod[Type] TEXT 103 1 PEnum_MountingMethodEnum 1
PARAM 44944d32-241a-46f9-85cb-8754ae9363eb Pset_CableSegmentOccurrence.NumberOfParallelCircuits[Type] INTEGER 103 1 IfcCountMeasure 1
PARAM 3614d66c-4df0-4a6a-8667-2a3c486b915c Pset_CableSegmentOccurrence.PowerLoss[Type] NUMBER 103 1 IfcPowerMeasure 1
PARAM 2ff8a748-b7a7-468e-b2e0-f8091fb67264 Pset_CableSegmentOccurrence.SequentialCode[Type] TEXT 103 1 IfcLabel 1
PARAM 3b0ace50-bc7e-4759-9bdb-39ab9a1e9cb8 Pset_CableSegmentOccurrence.SoilConductivity[Type] NUMBER 103 1 IfcThermalConductivityMeasure 1
PARAM e033ae23-c152-4d62-a215-3b0645e52f4d Pset_CableSegmentOccurrence.UserCorrectionFactor[Type] NUMBER 103 1 IfcReal 1
#
GROUP 104 Pset_CableSegmentTypeBusBarSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 26bd2714-d599-4b28-bc97-41632c312e89 Pset_CableSegmentTypeBusBarSegment.ACResistance[Type] NUMBER 104 1 IfcElectricResistanceMeasure 1
PARAM f0a88d7d-1d66-4c13-a7c5-04898adf4ddf Pset_CableSegmentTypeBusBarSegment.CrossSectionalArea[Type] AREA 104 1 IfcAreaMeasure 1
PARAM 5bbb33ec-9b04-4803-ba3e-5652d78c02d5 Pset_CableSegmentTypeBusBarSegment.CurrentCarryingCapacity[Type] NUMBER 104 1 IfcElectricCurrentMeasure 1
PARAM 9e95ef42-c29b-414d-953e-7b47660a02d5 Pset_CableSegmentTypeBusBarSegment.DCResistance[Type] NUMBER 104 1 IfcElectricResistanceMeasure 1
PARAM b7c95f44-1b8b-42db-adde-78e975b27ac2 Pset_CableSegmentTypeBusBarSegment.InsulationMethod[Type] TEXT 104 1 PEnum_InsulatorType 1
PARAM f93a68c1-93be-4b93-9f29-e5187ae18187 Pset_CableSegmentTypeBusBarSegment.IsHorizontalBusbar[Type] YESNO 104 1 IfcBoolean 1
PARAM db581764-85f9-401c-bbaa-97f27d6dc3b0 Pset_CableSegmentTypeBusBarSegment.MassPerLength[Type] NUMBER 104 1 IfcMassPerLengthMeasure 1
PARAM 32141a9a-b8f0-410c-a8f7-aa5c91157c40 Pset_CableSegmentTypeBusBarSegment.NominalCurrent[Type] NUMBER 104 1 IfcElectricCurrentMeasure 1
PARAM cabd9ec6-904f-4650-8408-68e9024568cc Pset_CableSegmentTypeBusBarSegment.OperationalTemperatureRange[Type] MULTILINETEXT 104 1 PropertyBoundedValue 1
PARAM 1421accb-83b9-4f1c-a09a-e3041cbadb35 Pset_CableSegmentTypeBusBarSegment.OverallDiameter[Type] LENGTH 104 1 IfcPositiveLengthMeasure 1
PARAM 8e30ce11-f3b8-48dc-9d29-24360cdfa0ea Pset_CableSegmentTypeBusBarSegment.RatedVoltage[Type] MULTILINETEXT 104 1 PropertyBoundedValue 1
PARAM 1caf68b4-865e-44eb-9707-3807f7d0d29e Pset_CableSegmentTypeBusBarSegment.TensileStrength[Type] NUMBER 104 1 IfcPressureMeasure 1
PARAM f700bb6d-7ba2-482e-bd3a-9b0ed4e32778 Pset_CableSegmentTypeBusBarSegment.ThermalExpansionCoefficient[Type] NUMBER 104 1 IfcThermalExpansionCoefficientMeasure 1
PARAM 0a51b926-afbb-4d31-9e8d-7d5754819ec0 Pset_CableSegmentTypeBusBarSegment.UltimateTensileStrength[Type] NUMBER 104 1 IfcForceMeasure 1
PARAM 2a41ec51-afd3-4e3b-b383-e3030f6b1180 Pset_CableSegmentTypeBusBarSegment.YoungModulus[Type] NUMBER 104 1 IfcModulusOfElasticityMeasure 1
#
GROUP 105 Pset_CableSegmentTypeCableSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f93ed16e-5fc0-4e74-a579-e17758d80b98 Pset_CableSegmentTypeCableSegment.ACResistance[Type] NUMBER 105 1 IfcElectricResistanceMeasure 1
PARAM 206e381d-716d-4b78-a4c8-8808688ad740 Pset_CableSegmentTypeCableSegment.CableInsulationMaterial[Type] MULTILINETEXT 105 1 IfcMaterial 1
PARAM 4262915b-f846-42f9-bb75-ca4a8bc3916f Pset_CableSegmentTypeCableSegment.CrossSectionalArea[Type] AREA 105 1 IfcAreaMeasure 1
PARAM 6a4ef4c3-3bd0-412c-9928-45275ec09c41 Pset_CableSegmentTypeCableSegment.CurrentCarryingCapacity[Type] NUMBER 105 1 IfcElectricCurrentMeasure 1
PARAM 1b2d1133-2f16-4e98-a312-ef31fb22f4a9 Pset_CableSegmentTypeCableSegment.DCResistance[Type] NUMBER 105 1 IfcElectricResistanceMeasure 1
PARAM e98a3bc5-4ad7-4aa6-9bcb-c55e0430fa66 Pset_CableSegmentTypeCableSegment.FunctionReliable[Type] YESNO 105 1 IfcBoolean 1
PARAM 4d102ed2-1f49-4df1-8f67-0566f5e8e7d0 Pset_CableSegmentTypeCableSegment.HalogenProof[Type] YESNO 105 1 IfcBoolean 1
PARAM 083bda98-9282-4029-b3b5-769d4bd4e5e2 Pset_CableSegmentTypeCableSegment.HasProtectiveEarth[Type] YESNO 105 1 IfcBoolean 1
PARAM 460ae770-1d68-4bcf-b435-d3ffa3a77e17 Pset_CableSegmentTypeCableSegment.InsulationVoltage[Type] NUMBER 105 1 IfcElectricVoltageMeasure 1
PARAM b0b93e29-24ee-489c-8a74-a6aadcfc4d2d Pset_CableSegmentTypeCableSegment.MassPerLength[Type] NUMBER 105 1 IfcMassPerLengthMeasure 1
PARAM 3ffb2c5a-b934-4781-8356-5cb4b5f73c0c Pset_CableSegmentTypeCableSegment.MaximumBendingRadius[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM 1e56cf62-1037-473c-9267-3f60afa4d3b4 Pset_CableSegmentTypeCableSegment.MaximumCurrent[Type] NUMBER 105 1 IfcElectricCurrentMeasure 1
PARAM e10321eb-1494-4479-9e61-76a3f6081c9e Pset_CableSegmentTypeCableSegment.MaximumOperatingTemperature[Type] NUMBER 105 1 IfcThermodynamicTemperatureMeasure 1
PARAM 79772734-9732-4e62-a3aa-a4746ea70096 Pset_CableSegmentTypeCableSegment.MaximumShortCircuitTemperature[Type] NUMBER 105 1 IfcThermodynamicTemperatureMeasure 1
PARAM 1e506cf1-3119-4ce4-bc35-7ec34c99ea1f Pset_CableSegmentTypeCableSegment.MaxOperatingTemperature[Type] NUMBER 105 1 IfcThermodynamicTemperatureMeasure 1
PARAM a83fcaf2-2d12-4791-9304-e7922f12c1f9 Pset_CableSegmentTypeCableSegment.NominalHeight[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM 4788440c-3b7c-45a2-98cf-8a33205aac13 Pset_CableSegmentTypeCableSegment.NominalLength[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM bababf34-b0db-408e-8413-7728de2b193d Pset_CableSegmentTypeCableSegment.NominalWidthOrDiameter[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM f6d9e29d-45ed-4bf9-a676-7d21a38043dc Pset_CableSegmentTypeCableSegment.NormalOperatingTemperature[Type] NUMBER 105 1 IfcThermodynamicTemperatureMeasure 1
PARAM a02e4471-60e2-43ff-85c1-342aea6930c6 Pset_CableSegmentTypeCableSegment.NumberOfCores[Type] INTEGER 105 1 IfcCountMeasure 1
PARAM e285fb9d-9e5d-46f6-89ef-1c80962c2d1a Pset_CableSegmentTypeCableSegment.NumberOfWires[Type] INTEGER 105 1 IfcCountMeasure 1
PARAM cf63377e-b067-4268-ae68-db862a7eee8b Pset_CableSegmentTypeCableSegment.OverallDiameter[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM f81d010b-f9fa-4595-a141-82f336cb7974 Pset_CableSegmentTypeCableSegment.RatedTemperature[Type] MULTILINETEXT 105 1 PropertyBoundedValue 1
PARAM b2204776-d1ac-4543-9ed3-8fe6a1bd3a77 Pset_CableSegmentTypeCableSegment.RatedVoltage[Type] MULTILINETEXT 105 1 PropertyBoundedValue 1
PARAM 56abb2a1-c1fb-43ad-b466-27877eead373 Pset_CableSegmentTypeCableSegment.ScreenDiameter[Type] LENGTH 105 1 IfcPositiveLengthMeasure 1
PARAM 9ff3af05-690a-48a9-8978-8c7ce9e86c58 Pset_CableSegmentTypeCableSegment.SelfExtinguishing60332_1[Type] YESNO 105 1 IfcBoolean 1
PARAM 2e2beb43-e354-4d7b-810c-c64948bb3a5a Pset_CableSegmentTypeCableSegment.SelfExtinguishing60332_3[Type] YESNO 105 1 IfcBoolean 1
PARAM 67264753-5964-4e9e-88c4-05819b46c884 Pset_CableSegmentTypeCableSegment.SheathColor[Type] TEXT 105 1 IfcLabel 1
PARAM 40546bf4-4e3d-4f35-b0c9-087f7e7b6157 Pset_CableSegmentTypeCableSegment.SpecialConstruction[Type] TEXT 105 1 IfcLabel 1
PARAM ca75f457-c596-4090-a541-a65a20b3e0c9 Pset_CableSegmentTypeCableSegment.Standard[Type] TEXT 105 1 IfcLabel 1
PARAM 6067a219-72dc-4734-beab-e2c8ee43a285 Pset_CableSegmentTypeCableSegment.Weight[Type] NUMBER 105 1 IfcMassMeasure 1
#
GROUP 106 Pset_CableSegmentTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 533b9572-29e1-47c7-aabf-5b68acb8d662 Pset_CableSegmentTypeCommon.Reference[Type] TEXT 106 1 IfcIdentifier 1
PARAM 36eac336-2177-4d9c-9ad5-7680d591f574 Pset_CableSegmentTypeCommon.Status[Type] TEXT 106 1 PEnum_ElementStatus 1
#
GROUP 107 Pset_CableSegmentTypeConductorSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c81c2092-ef5b-4b1c-b722-9cb393c6e967 Pset_CableSegmentTypeConductorSegment.ACResistance[Type] NUMBER 107 1 IfcElectricResistanceMeasure 1
PARAM 40c0e6b7-e962-40a5-8a0b-ca6bf4b6da12 Pset_CableSegmentTypeConductorSegment.ConductorMaterial[Type] TEXT 107 1 PEnum_MaterialEnum 1
PARAM bac32df1-39aa-4b5d-b1e6-714e5f5b4c59 Pset_CableSegmentTypeConductorSegment.ConductorShape[Type] TEXT 107 1 PEnum_ShapeEnum 1
PARAM 82c37888-84e1-4ff6-8ca1-0d7a044cbc32 Pset_CableSegmentTypeConductorSegment.ConductorSheathMaterial[Type] MULTILINETEXT 107 1 IfcMaterial 1
PARAM 7e6dad12-ceab-4975-baaf-0e7f9fb7c397 Pset_CableSegmentTypeConductorSegment.Construction[Type] TEXT 107 1 PEnum_ConstructionEnum 1
PARAM 92bf6aea-c0be-4ec2-bd5a-2472e0fe00ab Pset_CableSegmentTypeConductorSegment.CrossSectionalArea[Type] AREA 107 1 IfcAreaMeasure 1
PARAM 3f0e198a-95e0-489a-a503-a377e3a95074 Pset_CableSegmentTypeConductorSegment.CurrentCarryingCapacity[Type] NUMBER 107 1 IfcElectricCurrentMeasure 1
PARAM 2c5308ba-9502-4906-a006-3450445e541e Pset_CableSegmentTypeConductorSegment.DCResistance[Type] NUMBER 107 1 IfcElectricResistanceMeasure 1
PARAM a0fe938e-59e8-4a54-8a6e-89773f96888e Pset_CableSegmentTypeConductorSegment.ElectricalConductorFunction[Type] TEXT 107 1 PEnum_ConductorFunction 1
PARAM e5992a2a-93f0-42d7-a3a6-3c09b71f5a98 Pset_CableSegmentTypeConductorSegment.Function[Type] TEXT 107 1 PEnum_FunctionEnum 1
PARAM b3c4b884-0e33-48e3-bc2f-4650e2eac040 Pset_CableSegmentTypeConductorSegment.IsFireResistant[Type] YESNO 107 1 IfcBoolean 1
PARAM 3bcfc5e2-3b64-41ca-b3b1-639d9436d902 Pset_CableSegmentTypeConductorSegment.MassPerLength[Type] NUMBER 107 1 IfcMassPerLengthMeasure 1
PARAM fb414e09-4e67-48b3-9745-dfa60be36146 Pset_CableSegmentTypeConductorSegment.Material[Type] TEXT 107 1 PEnum_MaterialEnum 1
PARAM de31ae19-dc2d-4d55-918d-e73ed5599b1f Pset_CableSegmentTypeConductorSegment.MaximumOperatingTemperature[Type] NUMBER 107 1 IfcThermodynamicTemperatureMeasure 1
PARAM ccdacd63-4eef-40a2-811d-d3ce785212b5 Pset_CableSegmentTypeConductorSegment.NominalCurrent[Type] NUMBER 107 1 IfcElectricCurrentMeasure 1
PARAM 0bea2118-ed55-4142-80bb-be95a33ec0a1 Pset_CableSegmentTypeConductorSegment.NominalLength[Type] LENGTH 107 1 IfcPositiveLengthMeasure 1
PARAM 44a92854-b874-4515-a514-8886a038d1ea Pset_CableSegmentTypeConductorSegment.NumberOfCores[Type] INTEGER 107 1 IfcCountMeasure 1
PARAM fbcef155-092e-4707-b17a-72f1c99559de Pset_CableSegmentTypeConductorSegment.OverallDiameter[Type] LENGTH 107 1 IfcPositiveLengthMeasure 1
PARAM 787f7ffb-8b7b-4dab-8bdc-9a79adf5bf91 Pset_CableSegmentTypeConductorSegment.PhaseReference[Type] TEXT 107 1 IfcIdentifier 1
PARAM 55389c36-1aea-4bf6-ad17-26a3cba2d812 Pset_CableSegmentTypeConductorSegment.RatedVoltage[Type] MULTILINETEXT 107 1 PropertyBoundedValue 1
PARAM 097a40b9-f0cb-4464-a6a0-52d1dfc131d0 Pset_CableSegmentTypeConductorSegment.Shape[Type] TEXT 107 1 PEnum_ShapeEnum 1
PARAM fffe0a67-54c1-425b-930c-7dba160e8db9 Pset_CableSegmentTypeConductorSegment.SheathColor[Type] TEXT 107 1 IfcLabel 1
PARAM 582fe614-7f76-4255-8ead-1a25f1ea9190 Pset_CableSegmentTypeConductorSegment.TensileStrength[Type] NUMBER 107 1 IfcPressureMeasure 1
PARAM 51d2b87b-cc5a-4a6a-8fc7-6c46254125e5 Pset_CableSegmentTypeConductorSegment.ThermalExpansionCoefficient[Type] NUMBER 107 1 IfcThermalExpansionCoefficientMeasure 1
PARAM e10eb007-45a2-457f-9cd0-5392fa023c0b Pset_CableSegmentTypeConductorSegment.UltimateTensileStrength[Type] NUMBER 107 1 IfcForceMeasure 1
PARAM 25c08b85-a54b-4cb2-ad83-f7eff11832b9 Pset_CableSegmentTypeConductorSegment.YoungModulus[Type] NUMBER 107 1 IfcModulusOfElasticityMeasure 1
#
GROUP 108 Pset_CableSegmentTypeContactWire
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 50a8a19f-4b3d-4ab3-a5fe-5f6621d13159 Pset_CableSegmentTypeContactWire.ACResistance[Type] NUMBER 108 1 IfcElectricResistanceMeasure 1
PARAM 95e9057a-0fe4-4c9f-9296-343be99b4eb6 Pset_CableSegmentTypeContactWire.CrossSectionalArea[Type] AREA 108 1 IfcAreaMeasure 1
PARAM 360449bc-7132-403b-8caf-6cbe5d5ab07c Pset_CableSegmentTypeContactWire.CurrentCarryingCapacity[Type] NUMBER 108 1 IfcElectricCurrentMeasure 1
PARAM e6025e48-8288-47cd-91d3-0501dbc60f32 Pset_CableSegmentTypeContactWire.DCResistance[Type] NUMBER 108 1 IfcElectricResistanceMeasure 1
PARAM 72cf4297-9739-49ec-8a3d-300c830fa813 Pset_CableSegmentTypeContactWire.MassPerLength[Type] NUMBER 108 1 IfcMassPerLengthMeasure 1
PARAM b0c75d38-afa1-4534-9bb0-476a8bad156e Pset_CableSegmentTypeContactWire.TensileStrength[Type] NUMBER 108 1 IfcPressureMeasure 1
PARAM cc2e3082-098a-489e-83be-cecd8d2338d5 Pset_CableSegmentTypeContactWire.ThermalExpansionCoefficient[Type] NUMBER 108 1 IfcThermalExpansionCoefficientMeasure 1
PARAM de83da6f-db80-438f-b46d-392e3fc3b3b9 Pset_CableSegmentTypeContactWire.TorsionalStrength[Type] NUMBER 108 1 IfcPressureMeasure 1
PARAM 47f7d3d0-3806-4cd5-bf57-859a5de7523f Pset_CableSegmentTypeContactWire.YoungModulus[Type] NUMBER 108 1 IfcModulusOfElasticityMeasure 1
#
GROUP 109 Pset_CableSegmentTypeCoreSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 346d6abb-aef4-415f-a40d-453b14541389 Pset_CableSegmentTypeCoreSegment.ACResistance[Type] NUMBER 109 1 IfcElectricResistanceMeasure 1
PARAM 5fc162d1-ebe5-4888-ac77-7e6548a90da4 Pset_CableSegmentTypeCoreSegment.CoreIdentifier[Type] TEXT 109 1 IfcIdentifier 1
PARAM a8643fc9-56cd-4ec9-aa72-6435ad5e3867 Pset_CableSegmentTypeCoreSegment.CurrentCarryingCapacity[Type] NUMBER 109 1 IfcElectricCurrentMeasure 1
PARAM d44988b3-0504-4812-9c34-cb2fe3dd55c7 Pset_CableSegmentTypeCoreSegment.DCResistance[Type] NUMBER 109 1 IfcElectricResistanceMeasure 1
PARAM a26fa956-e672-4b73-bd9a-f6e7bbe2739c Pset_CableSegmentTypeCoreSegment.FunctionReliable[Type] YESNO 109 1 IfcBoolean 1
PARAM 1a7f1c7f-52dd-45e2-bb87-ef3282cee66e Pset_CableSegmentTypeCoreSegment.HalogenProof[Type] YESNO 109 1 IfcBoolean 1
PARAM ade3d66f-41c4-4808-a7ff-ff30e00d44d9 Pset_CableSegmentTypeCoreSegment.LayRatio[Type] NUMBER 109 1 IfcPositiveRatioMeasure 1
PARAM cac096ea-e707-4ff3-999d-080830a7990f Pset_CableSegmentTypeCoreSegment.MassPerLength[Type] NUMBER 109 1 IfcMassPerLengthMeasure 1
PARAM c03ea4ad-b53a-4083-8880-ab1c94b468e8 Pset_CableSegmentTypeCoreSegment.OverallDiameter[Type] LENGTH 109 1 IfcPositiveLengthMeasure 1
PARAM 3669b6ce-dae9-4c1a-ba9b-5107717d976b Pset_CableSegmentTypeCoreSegment.RatedTemperature[Type] MULTILINETEXT 109 1 PropertyBoundedValue 1
PARAM cefb75ad-dfd3-4c58-89cc-4f7c2263f552 Pset_CableSegmentTypeCoreSegment.RatedVoltage[Type] MULTILINETEXT 109 1 PropertyBoundedValue 1
PARAM 5aa54bf2-63bf-4988-abad-af205b95a32c Pset_CableSegmentTypeCoreSegment.ScreenDiameter[Type] LENGTH 109 1 IfcPositiveLengthMeasure 1
PARAM 84c472c0-e340-4f68-adeb-98ed942a9fd3 Pset_CableSegmentTypeCoreSegment.SelfExtinguishing60332_1[Type] YESNO 109 1 IfcBoolean 1
PARAM 09ef60f8-5fba-4075-a085-2d1f86d7ee6d Pset_CableSegmentTypeCoreSegment.SelfExtinguishing60332_3[Type] YESNO 109 1 IfcBoolean 1
PARAM 079e84ae-d1d9-4090-b7cd-c4c1832c3dac Pset_CableSegmentTypeCoreSegment.SheathColors[Type] TEXT 109 1 PEnum_CoreColorsEnum 1
PARAM af4ce3c2-efa2-4ad7-b8a7-d8245912b3b5 Pset_CableSegmentTypeCoreSegment.SheathColours[Type] TEXT 109 1 PEnum_CoreColoursEnum 1
PARAM ba407d22-ee32-4fde-a2ef-50a149b3f206 Pset_CableSegmentTypeCoreSegment.Standard[Type] TEXT 109 1 IfcLabel 1
PARAM 514f7dd4-0322-4e27-9ba2-afa7a22833ae Pset_CableSegmentTypeCoreSegment.StrandingMethod[Type] TEXT 109 1 IfcLabel 1
PARAM 1d30766c-78db-4e12-a3f6-9a8743e7d782 Pset_CableSegmentTypeCoreSegment.TensileStrength[Type] NUMBER 109 1 IfcPressureMeasure 1
PARAM da83cffe-7b0e-430e-a82d-9b0d38877bc6 Pset_CableSegmentTypeCoreSegment.ThermalExpansionCoefficient[Type] NUMBER 109 1 IfcThermalExpansionCoefficientMeasure 1
PARAM 91dd4905-ed28-4599-9204-511604c1b8c2 Pset_CableSegmentTypeCoreSegment.UltimateTensileStrength[Type] NUMBER 109 1 IfcForceMeasure 1
PARAM 5af16f07-ae9d-4ef9-8a03-0d95cdf31e75 Pset_CableSegmentTypeCoreSegment.Weight[Type] NUMBER 109 1 IfcMassMeasure 1
PARAM 617f5953-1034-49a8-a5a7-bf1454a87163 Pset_CableSegmentTypeCoreSegment.YoungModulus[Type] NUMBER 109 1 IfcModulusOfElasticityMeasure 1
#
GROUP 110 Pset_CableSegmentTypeEarthingConductor
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2caced9e-6bc5-4cba-a468-beb157df0877 Pset_CableSegmentTypeEarthingConductor.ResistanceToGround[Type] NUMBER 110 1 IfcElectricResistanceMeasure 1
#
GROUP 111 Pset_CableSegmentTypeFiberSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 28ebeea1-86cb-4bdc-adca-8ca82c242eb8 Pset_CableSegmentTypeFiberSegment.FiberColour[Type] TEXT 111 1 PEnum_FiberColour 1
PARAM c82cf807-4be6-4b5c-8c08-e51705ee365c Pset_CableSegmentTypeFiberSegment.FiberType[Type] TEXT 111 1 PEnum_FiberType 1
PARAM ae2582da-0391-47a1-afe2-0b7944b39c14 Pset_CableSegmentTypeFiberSegment.HasTightJacket[Type] YESNO 111 1 IfcBoolean 1
#
GROUP 112 Pset_CableSegmentTypeFiberTubeSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 543b4230-4bca-44b3-8d5d-18c3a79f3954 Pset_CableSegmentTypeFiberTubeSegment.FiberTubeColour[Type] TEXT 112 1 PEnum_FiberColour 1
PARAM 28d8c8e3-9668-4aa1-88cc-518a60c46c94 Pset_CableSegmentTypeFiberTubeSegment.NumberOfFibers[Type] INTEGER 112 1 IfcCountMeasure 1
#
GROUP 113 Pset_CableSegmentTypeOpticalCableSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 01484f1f-a136-4060-9911-f0aee4a8c71a Pset_CableSegmentTypeOpticalCableSegment.FiberMode[Type] TEXT 113 1 PEnum_FiberMode 1
PARAM 2f4ad4c4-0de1-4ca2-811e-336164e79f32 Pset_CableSegmentTypeOpticalCableSegment.NumberOfFibers[Type] INTEGER 113 1 IfcCountMeasure 1
PARAM eba615f8-8988-44c3-af23-69190be2edcf Pset_CableSegmentTypeOpticalCableSegment.NumberOfMultiModeFibers[Type] INTEGER 113 1 IfcCountMeasure 1
PARAM eab7dcaf-1922-432f-9c3a-bb2b3b3911ce Pset_CableSegmentTypeOpticalCableSegment.NumberOfSingleModeFibers[Type] INTEGER 113 1 IfcCountMeasure 1
PARAM d76635ff-dce5-4ad9-9774-aad09afa8a09 Pset_CableSegmentTypeOpticalCableSegment.NumberOfTubes[Type] INTEGER 113 1 IfcCountMeasure 1
PARAM e8e7cb34-04e2-4fbe-8e05-a10108358458 Pset_CableSegmentTypeOpticalCableSegment.OpticalCableStructure[Type] TEXT 113 1 PEnum_OpticalCableStructureType 1
#
GROUP 114 Pset_CableSegmentTypeStitchWire
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 491afd84-7830-41d7-9b6f-09aee55ac665 Pset_CableSegmentTypeStitchWire.AssemblyInstruction[Type] MULTILINETEXT 114 1 IfcExternalReference 1
PARAM d1b40ef8-7a84-4ad5-bd35-600b5ca3cfe5 Pset_CableSegmentTypeStitchWire.MechanicalTension[Type] NUMBER 114 1 IfcForceMeasure 1
PARAM cb84bffb-6835-43bb-9aa7-b1f5ca16398f Pset_CableSegmentTypeStitchWire.NominalLength[Type] LENGTH 114 1 IfcNonNegativeLengthMeasure 1
PARAM d68391f6-fb96-41b7-ad88-b45420b0dfed Pset_CableSegmentTypeStitchWire.TensileStrength[Type] NUMBER 114 1 IfcPressureMeasure 1
PARAM 508277d4-22e1-49b5-8fda-12a20e14647f Pset_CableSegmentTypeStitchWire.UltimateTensileStrength[Type] NUMBER 114 1 IfcForceMeasure 1
#
GROUP 115 Pset_CableSegmentTypeWirePairSegment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 18279a6f-b741-4144-8209-33550ea32465 Pset_CableSegmentTypeWirePairSegment.CharacteristicImpedance[Type] NUMBER 115 1 IfcElectricResistanceMeasure 1
PARAM c93b9b5d-8760-44ff-912c-c6b15c4a29a2 Pset_CableSegmentTypeWirePairSegment.ConductorDiameter[Type] LENGTH 115 1 IfcPositiveLengthMeasure 1
PARAM 8f427f5f-1435-4690-9190-09d04d76aa4a Pset_CableSegmentTypeWirePairSegment.CoreConductorDiameter[Type] LENGTH 115 1 IfcPositiveLengthMeasure 1
PARAM 0e79f29a-b0b1-4ffd-a0d8-d778bbbe9d9c Pset_CableSegmentTypeWirePairSegment.JacketColour[Type] TEXT 115 1 IfcLabel 1
PARAM 308aac0e-bcda-478d-a0eb-0e62d1082fd1 Pset_CableSegmentTypeWirePairSegment.ShieldConductorDiameter[Type] LENGTH 115 1 IfcPositiveLengthMeasure 1
PARAM 0efb8ddc-0b59-42c2-95af-2c1a0c9f3887 Pset_CableSegmentTypeWirePairSegment.WirePairType[Type] TEXT 115 1 PEnum_WirePairType 1
#
GROUP 116 Pset_CargoCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM bb161050-48df-46d6-af02-55dbe1aef284 Pset_CargoCommon.AdditionalProcessing[Type] TEXT 116 1 PEnum_AdditionalProcessing 1
PARAM 1ada08b6-9c7e-4331-aa7a-7ba50d59ee3f Pset_CargoCommon.ProcessDirection[Type] TEXT 116 1 PEnum_ProcessDirection 1
PARAM d8b5be01-79e0-4682-884d-75aa02231922 Pset_CargoCommon.ProcessItem[Type] TEXT 116 1 PEnum_ProcessItem 1
#
GROUP 117 Pset_CessBetweenRails
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f337e8a4-e3b8-4a06-846e-24a2ba848af8 Pset_CessBetweenRails.CheckRailType[Type] TEXT 117 1 PEnum_CheckRailType 1
PARAM b385fdad-8c47-4025-9b7c-bbe73c623793 Pset_CessBetweenRails.JointRelativePosition[Type] TEXT 117 1 PEnum_RelativePosition 1
PARAM 5f80dcda-a454-4294-9529-e438d7f5f62e Pset_CessBetweenRails.LoadCapacity[Type] NUMBER 117 1 IfcForceMeasure 1
PARAM eb09dac5-96b4-40d7-a7b4-c977a4c47a47 Pset_CessBetweenRails.UsagePurpose[Type] TEXT 117 1 PEnum_UsagePurpose 1
#
GROUP 118 Pset_ChillerPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 19af0aac-55f2-49c9-99ea-768a9f5ac1ab Pset_ChillerPHistory.Capacity[Type] MULTILINETEXT 118 1 IfcTimeSeries 1
PARAM 32ecc4fb-73f0-4558-b37d-9958f9315e7c Pset_ChillerPHistory.CapacityCurve[Type] NUMBER 118 1 IfcReal 1
PARAM 0c940597-155c-4ce9-8891-8033cb8c5147 Pset_ChillerPHistory.CoefficientOfPerformance[Type] MULTILINETEXT 118 1 IfcTimeSeries 1
PARAM 0e0130d9-945c-4199-99cd-6fd761f69bc3 Pset_ChillerPHistory.CoefficientOfPerformanceCurve[Type] NUMBER 118 1 IfcReal 1
PARAM 81e5f6c3-495a-494d-a0ae-9c765b94e89e Pset_ChillerPHistory.EnergyEfficiencyRatio[Type] MULTILINETEXT 118 1 IfcTimeSeries 1
PARAM 07cdaed3-5a01-4f6a-9c74-f9451bc5a573 Pset_ChillerPHistory.FullLoadRatioCurve[Type] NUMBER 118 1 IfcReal 1
#
GROUP 119 Pset_ChillerTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2ea03e0c-48c2-46a8-b69e-7844a23066ad Pset_ChillerTypeCommon.CapacityCurve[Type] MULTILINETEXT 119 1 PropertyTableValue 1
PARAM 69054931-9804-4d4c-ba96-e4ea7370c6e5 Pset_ChillerTypeCommon.ChillerCapacity[Type] NUMBER 119 1 IfcPowerMeasure 1
PARAM 585d32fc-f619-4c31-8888-f012596a79d7 Pset_ChillerTypeCommon.CoefficientOfPerformanceCurve[Type] MULTILINETEXT 119 1 PropertyTableValue 1
PARAM b3913624-6f02-4822-959c-51c53bbd90e5 Pset_ChillerTypeCommon.FullLoadRatioCurve[Type] MULTILINETEXT 119 1 PropertyTableValue 1
PARAM 83387dc5-0cda-47cc-8539-176f18fda11f Pset_ChillerTypeCommon.NominalCapacity[Type] NUMBER 119 1 IfcPowerMeasure 1
PARAM 95d871c6-2951-4133-a6ba-f4faf517c27a Pset_ChillerTypeCommon.NominalCondensingTemperature[Type] NUMBER 119 1 IfcThermodynamicTemperatureMeasure 1
PARAM ac817bcf-cfdd-4b71-bd80-26c365392bfd Pset_ChillerTypeCommon.NominalEfficiency[Type] NUMBER 119 1 IfcPositiveRatioMeasure 1
PARAM fbb2dc23-9428-4243-b22e-71ee24f96bd8 Pset_ChillerTypeCommon.NominalEvaporatingTemperature[Type] NUMBER 119 1 IfcThermodynamicTemperatureMeasure 1
PARAM 66046c2a-d606-483b-8e71-bbecbd6bf902 Pset_ChillerTypeCommon.NominalHeatRejectionRate[Type] NUMBER 119 1 IfcPowerMeasure 1
PARAM 5562b1dc-65b0-40d8-9f6a-59ec392aed87 Pset_ChillerTypeCommon.NominalPowerConsumption[Type] NUMBER 119 1 IfcPowerMeasure 1
PARAM 326d4989-6538-4eae-86c7-b18d560ce621 Pset_ChillerTypeCommon.Reference[Type] TEXT 119 1 IfcIdentifier 1
PARAM 840bbc00-82fb-41ec-afc0-ab8cc11591fa Pset_ChillerTypeCommon.Status[Type] TEXT 119 1 PEnum_ElementStatus 1
#
GROUP 120 Pset_ChimneyCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 83ecf212-f6b3-4146-99be-3631e5d31c59 Pset_ChimneyCommon.FireRating[Type] TEXT 120 1 IfcLabel 1
PARAM 52bf429b-f8df-42a1-89c9-d4cdfd9a0be6 Pset_ChimneyCommon.IsExternal[Type] YESNO 120 1 IfcBoolean 1
PARAM e87b483c-fc25-491c-8b57-7abaa9885a24 Pset_ChimneyCommon.LoadBearing[Type] YESNO 120 1 IfcBoolean 1
PARAM a6505bf2-e9ab-48ee-b03a-989e71421333 Pset_ChimneyCommon.NumberOfDrafts[Type] INTEGER 120 1 IfcCountMeasure 1
PARAM 01b94145-1a97-41ec-b5f3-e68552e7a484 Pset_ChimneyCommon.Reference[Type] TEXT 120 1 IfcIdentifier 1
PARAM e5fc2abf-1b76-4131-8736-983960c56acd Pset_ChimneyCommon.Status[Type] TEXT 120 1 PEnum_ElementStatus 1
PARAM 258b033a-d9bc-47f5-af75-35962dd7f1a6 Pset_ChimneyCommon.ThermalTransmittance[Type] NUMBER 120 1 IfcThermalTransmittanceMeasure 1
#
GROUP 121 Pset_CivilElementCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 707ec0cc-70ef-4071-a209-2d288048375b Pset_CivilElementCommon.Reference[Type] TEXT 121 1 IfcIdentifier 1
PARAM f3f03b57-93b4-4071-8340-5211a6636d03 Pset_CivilElementCommon.Status[Type] TEXT 121 1 PEnum_ElementStatus 1
#
GROUP 122 Pset_CoaxialCable
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 191afc01-0473-484c-9155-4d53e1072aac Pset_CoaxialCable.CharacteristicImpedance[Type] NUMBER 122 1 IfcElectricResistanceMeasure 1
PARAM f8db506f-8d12-4b80-b862-0350c7fbc58a Pset_CoaxialCable.CouplingLoss[Type] NUMBER 122 1 IfcNormalisedRatioMeasure 1
PARAM 40f0dbee-b9f2-433f-895e-699394568c57 Pset_CoaxialCable.MaximumTransmissionAttenuation[Type] NUMBER 122 1 IfcSoundPowerLevelMeasure 1
PARAM 4698a393-4206-4a6c-b7b7-22e586ab3b0e Pset_CoaxialCable.NumberOfCoaxialPairs[Type] INTEGER 122 1 IfcCountMeasure 1
PARAM d063b355-2b07-4b2a-93c1-61c31d29441c Pset_CoaxialCable.PropagationSpeedCoefficient[Type] NUMBER 122 1 IfcRatioMeasure 1
PARAM b61f9dad-1e43-44bd-a5a7-ac171bb230ed Pset_CoaxialCable.RadiantFrequency[Type] NUMBER 122 1 IfcFrequencyMeasure 1
PARAM 10aa2ebd-b9a1-4d30-906e-de64a07afe53 Pset_CoaxialCable.TransmissionLoss[Type] NUMBER 122 1 IfcNormalisedRatioMeasure 1
#
GROUP 123 Pset_CoilOccurrence
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 485e1be9-3b7d-416b-a875-bde1a61942ea Pset_CoilOccurrence.HasSoundAttenuation[Type] YESNO 123 1 IfcBoolean 1
#
GROUP 124 Pset_CoilPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 55bb76a6-1520-4260-9187-1f784448a95b Pset_CoilPHistory.AirPressureDropCurve[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
PARAM 9ae19df8-4baf-4468-8e32-88e4b5f3625f Pset_CoilPHistory.AirPressureDropCurveHistory[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
PARAM 691aef37-0ef6-42f7-a6ef-6e025d9a14c6 Pset_CoilPHistory.AtmosphericPressure[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
PARAM 27b9099c-60c8-4836-97b5-8f6cd2b0d68a Pset_CoilPHistory.FaceVelocity[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
PARAM dbfca991-4555-400e-97dc-0744b3cf30d4 Pset_CoilPHistory.SoundCurve[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
PARAM 0f22d58d-13aa-48f2-9c00-01b421b14840 Pset_CoilPHistory.SoundCurveHistory[Type] MULTILINETEXT 124 1 IfcTimeSeries 1
#
GROUP 125 Pset_CoilTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2ec10189-e24a-42c5-ab0d-7c626ea47bc5 Pset_CoilTypeCommon.AirflowRateRange[Type] MULTILINETEXT 125 1 PropertyBoundedValue 1
PARAM 7fbb36e8-04c7-429a-a2f1-1a81686fb6c1 Pset_CoilTypeCommon.AirFlowRateRange[Type] MULTILINETEXT 125 1 PropertyBoundedValue 1
PARAM 2fcc799d-9046-47ab-aee3-bd4099374712 Pset_CoilTypeCommon.CoilPlacement[Type] TEXT 125 1 PEnum_CoilPlacementType 1
PARAM 8611061e-6a7e-47ba-84a0-579f4c982b75 Pset_CoilTypeCommon.NominalLatentCapacity[Type] NUMBER 125 1 IfcPowerMeasure 1
PARAM c25848f9-2011-48ab-9518-58d573a5c510 Pset_CoilTypeCommon.NominalSensibleCapacity[Type] NUMBER 125 1 IfcPowerMeasure 1
PARAM 9532a90f-bbf3-4017-a23d-908c78364cae Pset_CoilTypeCommon.NominalUA[Type] NUMBER 125 1 IfcReal 1
PARAM 2456a8c7-8dcd-44e8-bdba-ef5b9b79fb89 Pset_CoilTypeCommon.OperationalTemperatureRange[Type] MULTILINETEXT 125 1 PropertyBoundedValue 1
PARAM 6d3b1212-bbd3-48e1-9ac9-51852365829d Pset_CoilTypeCommon.PlacementType[Type] TEXT 125 1 PEnum_CoilPlacementType 1
PARAM f70977ba-856c-4dc1-a42b-245d8ef89619 Pset_CoilTypeCommon.Reference[Type] TEXT 125 1 IfcIdentifier 1
PARAM c859324b-e9c1-4956-8e5b-5d92015e6c7b Pset_CoilTypeCommon.Status[Type] TEXT 125 1 PEnum_ElementStatus 1
#
GROUP 126 Pset_CoilTypeHydronic
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 253627e2-3c64-4c7b-a3bb-8e8c652bec04 Pset_CoilTypeHydronic.BypassFactor[Type] NUMBER 126 1 IfcNormalisedRatioMeasure 1
PARAM 07b74403-460f-4850-bb08-9b03637249bf Pset_CoilTypeHydronic.CoilConnectionDirection[Type] TEXT 126 1 PEnum_CoilConnectionDirection 1
PARAM cd327ebc-3cf6-4e36-be81-303b9efa1b57 Pset_CoilTypeHydronic.CoilCoolant[Type] TEXT 126 1 PEnum_CoilCoolant 1
PARAM 4612ab8e-a4e7-4f95-b4ac-e28128dc3f5c Pset_CoilTypeHydronic.CoilFaceArea[Type] AREA 126 1 IfcAreaMeasure 1
PARAM 0e73b0cb-de18-4361-9bef-1a68095cfc3b Pset_CoilTypeHydronic.CoilFluidArrangement[Type] TEXT 126 1 PEnum_CoilFluidArrangement 1
PARAM ce75b6e8-a87a-4e84-9c66-30c564c0582c Pset_CoilTypeHydronic.Fluid[Type] MULTILINETEXT 126 1 IfcMaterial 1
PARAM ebb3fa2d-6c7a-4d6c-afca-2b0ae1e821ee Pset_CoilTypeHydronic.FluidPressureRange[Type] MULTILINETEXT 126 1 PropertyBoundedValue 1
PARAM fadfaae8-2b13-4eb1-8a30-f496eff565b4 Pset_CoilTypeHydronic.HeatExchangeSurfaceArea[Type] AREA 126 1 IfcAreaMeasure 1
PARAM c2dd5c14-be51-4699-924b-a45d29732c4c Pset_CoilTypeHydronic.PrimarySurfaceArea[Type] AREA 126 1 IfcAreaMeasure 1
PARAM 06bfab75-ad53-4999-8da5-f9941fa2780c Pset_CoilTypeHydronic.SecondarySurfaceArea[Type] AREA 126 1 IfcAreaMeasure 1
PARAM f0dc62fa-a7bd-4148-adc1-f20bab40a14f Pset_CoilTypeHydronic.SensibleHeatRatio[Type] NUMBER 126 1 IfcNormalisedRatioMeasure 1
PARAM cf95cbec-b3d3-40b1-8b7e-426c93ba402d Pset_CoilTypeHydronic.TotalUACurves[Type] MULTILINETEXT 126 1 PropertyTableValue 1
PARAM db457664-306a-491e-bd6e-88f47027332f Pset_CoilTypeHydronic.WaterPressureDropCurve[Type] MULTILINETEXT 126 1 PropertyTableValue 1
PARAM 97b1726b-cdc8-4f83-8e8d-a77a72508818 Pset_CoilTypeHydronic.WetCoilFraction[Type] NUMBER 126 1 IfcNormalisedRatioMeasure 1
#
GROUP 127 Pset_ColumnCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM b3fd9772-d8cb-4634-8482-16f007eb827a Pset_ColumnCommon.FireRating[Type] TEXT 127 1 IfcLabel 1
PARAM 7adefff2-a8c1-45dc-9f29-bbc9579a4c42 Pset_ColumnCommon.IsExternal[Type] YESNO 127 1 IfcBoolean 1
PARAM b2552d99-40a8-46cd-b6c7-d4b7f88baa8a Pset_ColumnCommon.LoadBearing[Type] YESNO 127 1 IfcBoolean 1
PARAM adab403c-4011-4501-bae9-4a0034671c5d Pset_ColumnCommon.Reference[Type] TEXT 127 1 IfcIdentifier 1
PARAM c2ad7792-dc1c-4fe0-bcc9-738a583ad40a Pset_ColumnCommon.Roll[Type] NUMBER 127 1 IfcPlaneAngleMeasure 1
PARAM 831ea20e-cc16-4258-a5ea-39e28029c637 Pset_ColumnCommon.Slope[Type] NUMBER 127 1 IfcPlaneAngleMeasure 1
PARAM 1ec80792-d7b5-4e3a-b4ed-aa29a5186221 Pset_ColumnCommon.Status[Type] TEXT 127 1 PEnum_ElementStatus 1
PARAM db4bbcb6-99f2-464e-b370-3afdbe484b7b Pset_ColumnCommon.ThermalTransmittance[Type] NUMBER 127 1 IfcThermalTransmittanceMeasure 1
#
GROUP 128 Pset_CommunicationsAppliancePHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8864325a-a0f7-4c79-be55-b84bc4f88785 Pset_CommunicationsAppliancePHistory.PowerState[Type] MULTILINETEXT 128 1 IfcTimeSeries 1
#
GROUP 129 Pset_CommunicationsApplianceTypeAntenna
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6f6fabbb-23b7-4e1e-8d14-cc9feb5b603f Pset_CommunicationsApplianceTypeAntenna.AntennaGain[Type] NUMBER 129 1 IfcRatioMeasure 1
PARAM 8ec02605-eb6d-44c3-9182-de427c32ec83 Pset_CommunicationsApplianceTypeAntenna.AntennaType[Type] TEXT 129 1 PEnum_AntennaType 1
PARAM f5abf505-bc74-4066-90c7-405aa363c658 Pset_CommunicationsApplianceTypeAntenna.PolarizationMode[Type] TEXT 129 1 PEnum_PolarizationMode 1
PARAM 03b225c0-eeca-48ff-b64e-56e047363cf6 Pset_CommunicationsApplianceTypeAntenna.RadiationPattern[Type] TEXT 129 1 PEnum_RadiationPattern 1
#
GROUP 130 Pset_CommunicationsApplianceTypeAutomaton
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 63eff004-b048-46c5-a888-5b8d69dff834 Pset_CommunicationsApplianceTypeAutomaton.InputSignalType[Type] TEXT 130 1 PEnum_InputOutputSignalType 1
PARAM ce6c57a2-6b50-4f90-b2a6-acd16cdbb474 Pset_CommunicationsApplianceTypeAutomaton.OutputSignalType[Type] TEXT 130 1 PEnum_InputOutputSignalType 1
#
GROUP 131 Pset_CommunicationsApplianceTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 128efd8f-939b-45b4-9751-e5fea674a54b Pset_CommunicationsApplianceTypeCommon.Reference[Type] TEXT 131 1 IfcIdentifier 1
PARAM 2382dbf9-2cd2-4c72-aabe-49f12d8e46c8 Pset_CommunicationsApplianceTypeCommon.Status[Type] TEXT 131 1 PEnum_ElementStatus 1
#
GROUP 132 Pset_CommunicationsApplianceTypeComputer
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7dcbc023-3f6c-4047-93e5-a59373c16de6 Pset_CommunicationsApplianceTypeComputer.StorageCapacity[Type] INTEGER 132 1 IfcInteger 1
PARAM a4442ad0-f20c-4a47-8882-e70c26ba256b Pset_CommunicationsApplianceTypeComputer.UserInterfaceType[Type] TEXT 132 1 PEnum_ComputerUIType 1
#
GROUP 133 Pset_CommunicationsApplianceTypeGateway
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2f20be0a-78fb-48ac-a27a-469df03a5925 Pset_CommunicationsApplianceTypeGateway.NumberOfInterfaces[Type] MULTILINETEXT 133 1 PropertyTableValue 1
#
GROUP 134 Pset_CommunicationsApplianceTypeIntelligentPeripheral
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8de1e5f3-fbb9-4ba3-8b35-6f15cbef779a Pset_CommunicationsApplianceTypeIntelligentPeripheral.UserCapacity[Type] INTEGER 134 1 IfcInteger 1
#
GROUP 135 Pset_CommunicationsApplianceTypeIpNetworkEquipment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3d6fc826-5ecb-4011-9548-75b1ff71efd8 Pset_CommunicationsApplianceTypeIpNetworkEquipment.EquipmentCapacity[Type] INTEGER 135 1 IfcIntegerCountRateMeasure 1
PARAM f64d2d68-b433-487e-8fb3-2232b70c3f18 Pset_CommunicationsApplianceTypeIpNetworkEquipment.ManagingSoftware[Type] TEXT 135 1 IfcLabel 1
PARAM 446bff8f-57da-4fd5-9c37-c6cd5ae14426 Pset_CommunicationsApplianceTypeIpNetworkEquipment.NumberOfCoolingFans[Type] INTEGER 135 1 IfcCountMeasure 1
PARAM dd32f7d7-ab82-4a3f-8889-19e0066c6abe Pset_CommunicationsApplianceTypeIpNetworkEquipment.NumberOfInterfaces[Type] MULTILINETEXT 135 1 PropertyTableValue 1
PARAM 073456c4-f3e9-4365-b477-ce3f1dcb183e Pset_CommunicationsApplianceTypeIpNetworkEquipment.NumberOfSlots[Type] INTEGER 135 1 IfcCountMeasure 1
PARAM 23e47660-13ad-4384-b2f8-f7c0ced6b199 Pset_CommunicationsApplianceTypeIpNetworkEquipment.SupportedProtocol[Type] TEXT 135 1 IfcLabel 1
#
GROUP 136 Pset_CommunicationsApplianceTypeModem
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM abc2683f-71af-4564-8c22-2feaac8d26d9 Pset_CommunicationsApplianceTypeModem.CommonInterfaceType[Type] TEXT 136 1 PEnum_CommonInterfaceType 1
PARAM ddf3cd5f-5d98-42e9-baf9-3a48436bd34d Pset_CommunicationsApplianceTypeModem.NumberOfCommonInterfaces[Type] MULTILINETEXT 136 1 PropertyTableValue 1
PARAM 1b7875a8-adfe-48b0-be89-09be80d6d0ae Pset_CommunicationsApplianceTypeModem.NumberOfTrafficInterfaces[Type] MULTILINETEXT 136 1 PropertyTableValue 1
PARAM a0467c65-a212-42b6-bda2-17d1e490596f Pset_CommunicationsApplianceTypeModem.TrafficInterfaceType[Type] TEXT 136 1 PEnum_ModemTrafficInterfaceType 1
#
GROUP 137 Pset_CommunicationsApplianceTypeOpticalLineTerminal
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d78057b5-108f-4f69-89cb-0974af687ded Pset_CommunicationsApplianceTypeOpticalLineTerminal.NumberOfInterfaces[Type] MULTILINETEXT 137 1 PropertyTableValue 1
PARAM 9c7f5173-4b6d-4414-902f-54c726d17aa5 Pset_CommunicationsApplianceTypeOpticalLineTerminal.NumberOfSlots[Type] INTEGER 137 1 IfcCountMeasure 1
#
GROUP 138 Pset_CommunicationsApplianceTypeOpticalNetworkUnit
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 95f25a95-aea2-4d7b-b7d5-3e4ec1854a4e Pset_CommunicationsApplianceTypeOpticalNetworkUnit.NumberOfInterfaces[Type] MULTILINETEXT 138 1 PropertyTableValue 1
PARAM 185dc899-d1cf-49c5-939d-f9b0b7f8cfc3 Pset_CommunicationsApplianceTypeOpticalNetworkUnit.OpticalNetworkUnitType[Type] TEXT 138 1 PEnum_OpticalNetworkUnitType 1
#
GROUP 139 Pset_CommunicationsApplianceTypeTelecommand
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 866171f1-e481-49e0-9db4-5f867928e74c Pset_CommunicationsApplianceTypeTelecommand.NumberOfCPUs[Type] INTEGER 139 1 IfcCountMeasure 1
PARAM 2a01584c-8823-49b4-8838-9cdf90dee3c0 Pset_CommunicationsApplianceTypeTelecommand.NumberOfWorkstations[Type] MULTILINETEXT 139 1 PropertyTableValue 1
#
GROUP 140 Pset_CommunicationsApplianceTypeTelephonyExchange
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2a420ea2-bae8-4b2a-a863-bdfe455bedde Pset_CommunicationsApplianceTypeTelephonyExchange.UserCapacity[Type] INTEGER 140 1 IfcInteger 1
#
GROUP 141 Pset_CommunicationsApplianceTypeTransportEquipment
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 705fae9c-9225-45a4-870a-6b01a73ce7d4 Pset_CommunicationsApplianceTypeTransportEquipment.ElectricalCrossCapacity[Type] TEXT 141 1 IfcLabel 1
PARAM c831208c-d10e-45de-a594-5db85e25f42c Pset_CommunicationsApplianceTypeTransportEquipment.IsUpgradable[Type] YESNO 141 1 IfcBoolean 1
PARAM 8c12c428-87df-41c5-9f24-9e4a6638e09e Pset_CommunicationsApplianceTypeTransportEquipment.NumberOfSlots[Type] INTEGER 141 1 IfcCountMeasure 1
PARAM cfcb9ce2-d6d2-47bd-9e1b-ada998c44b3d Pset_CommunicationsApplianceTypeTransportEquipment.TransportEquipmentAssemblyType[Type] TEXT 141 1 PEnum_TransportEquipmentAssemblyType 1
PARAM deb44c1d-259a-4593-aae4-bf3bb25b6a40 Pset_CommunicationsApplianceTypeTransportEquipment.TransportEquipmentType[Type] TEXT 141 1 PEnum_TransportEquipmentType 1
#
GROUP 142 Pset_CompressorPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d708edb6-c5d5-46f7-bfe5-797b4d461d94 Pset_CompressorPHistory.CoefficientOfPerformance[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM b0fd50dd-b619-4404-82ba-f8c5c59a1f41 Pset_CompressorPHistory.CompressionEfficiency[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 0993af81-9af2-4f87-a1ef-8c046d3bcbf1 Pset_CompressorPHistory.CompressorCapacity[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 8f43ef1d-b361-437c-9264-ad86a41b676c Pset_CompressorPHistory.CompressorTotalEfficiency[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 0e366728-4898-4591-80b0-8a2639252d1b Pset_CompressorPHistory.CompressorTotalHeatGain[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 20c4a0d2-4282-49b5-972c-d9236e971670 Pset_CompressorPHistory.EnergyEfficiencyRatio[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM fd7204fc-708f-4c79-88b5-9fbf56862fb5 Pset_CompressorPHistory.FrictionHeatGain[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM c5a9053e-361e-4381-a8ad-83e30a90d76a Pset_CompressorPHistory.FullLoadRatio[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM e0047163-f1c9-4317-9a81-b40d06d440fe Pset_CompressorPHistory.FullLoadRatioCurve[Type] MULTILINETEXT 142 1 PropertyListValue 1
PARAM 3ae03352-d4a1-44dd-b14b-ea03fa29449c Pset_CompressorPHistory.InputPower[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 1f9f1189-cbab-4230-a636-69b356848f3e Pset_CompressorPHistory.IsentropicEfficiency[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 8d19e3bb-1db1-403b-aae1-b2752cb72c04 Pset_CompressorPHistory.LubricantPumpHeatGain[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM 70625587-256a-47dc-ad05-1d1d24d50a4c Pset_CompressorPHistory.MechanicalEfficiency[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM fe51ca33-8629-466c-a78d-d224ed2e4187 Pset_CompressorPHistory.ShaftPower[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
PARAM fb4e7b5c-029b-4a3c-b341-5567c3968508 Pset_CompressorPHistory.VolumetricEfficiency[Type] MULTILINETEXT 142 1 IfcTimeSeries 1
#
GROUP 143 Pset_CompressorTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f9089c79-40ac-4cb0-b591-003a55a7df29 Pset_CompressorTypeCommon.CompressorSpeed[Type] NUMBER 143 1 IfcRotationalFrequencyMeasure 1
PARAM 7375421f-ee58-4141-9f08-179a2064721d Pset_CompressorTypeCommon.HasHotGasBypass[Type] YESNO 143 1 IfcBoolean 1
PARAM 9514dca5-df4b-4833-bbb6-2c8d8e379d16 Pset_CompressorTypeCommon.IdealCapacity[Type] NUMBER 143 1 IfcPowerMeasure 1
PARAM 5c865b26-7fc4-4f04-868d-17b26c263529 Pset_CompressorTypeCommon.IdealShaftPower[Type] NUMBER 143 1 IfcPowerMeasure 1
PARAM 477563bf-3422-4726-80d4-6b738e60bca7 Pset_CompressorTypeCommon.ImpellerDiameter[Type] LENGTH 143 1 IfcPositiveLengthMeasure 1
PARAM 2b537ba4-a010-4feb-93d7-836469fa0c2c Pset_CompressorTypeCommon.MaximumPartLoadRatio[Type] NUMBER 143 1 IfcPositiveRatioMeasure 1
PARAM 19fbdf94-d334-409c-b2ee-5ddb0e147b29 Pset_CompressorTypeCommon.MinimumPartLoadRatio[Type] NUMBER 143 1 IfcPositiveRatioMeasure 1
PARAM 4b5b9f0f-ee40-4605-ad2b-a995b3ad9422 Pset_CompressorTypeCommon.NominalCapacity[Type] NUMBER 143 1 IfcPowerMeasure 1
PARAM 5cd29ad4-03a9-446c-9b12-9d53d507ac32 Pset_CompressorTypeCommon.PowerSource[Type] TEXT 143 1 PEnum_CompressorTypePowerSource 1
PARAM d9590fb6-9e97-4c09-890d-be8cf35f500a Pset_CompressorTypeCommon.Reference[Type] TEXT 143 1 IfcIdentifier 1
PARAM 96597411-e00e-4af2-ae28-10e9afb86e0e Pset_CompressorTypeCommon.RefrigerantClass[Type] TEXT 143 1 PEnum_RefrigerantClass 1
PARAM 4260c56c-4990-4d09-948b-80b55623bfed Pset_CompressorTypeCommon.RefrigerantType[Type] MULTILINETEXT 143 1 IfcMaterial 1
PARAM d4adeba0-bbdd-4bbc-8728-ac837a5bca26 Pset_CompressorTypeCommon.Status[Type] TEXT 143 1 PEnum_ElementStatus 1
#
GROUP 144 Pset_ConcreteElementGeneral
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 0b835309-a80b-4bd2-b926-5dba3e8911b9 Pset_ConcreteElementGeneral.AssemblyPlace[Type] TEXT 144 1 PEnum_AssemblyPlace 1
PARAM 5ec998ab-c415-4005-85bb-79282d4e3a4c Pset_ConcreteElementGeneral.CastingMethod[Type] TEXT 144 1 PEnum_ConcreteCastingMethod 1
PARAM fdc0c592-8117-4fea-8710-16a7dbaeaf43 Pset_ConcreteElementGeneral.ConcreteCover[Type] LENGTH 144 1 IfcPositiveLengthMeasure 1
PARAM 09048132-e559-4ade-ba1f-1319b0c087ee Pset_ConcreteElementGeneral.ConcreteCoverAtLinks[Type] LENGTH 144 1 IfcPositiveLengthMeasure 1
PARAM 7a7c529f-cad2-4a9c-9c9a-462cc945d184 Pset_ConcreteElementGeneral.ConcreteCoverAtMainBars[Type] LENGTH 144 1 IfcPositiveLengthMeasure 1
PARAM 25b94066-5aff-448e-8b14-44d62748688c Pset_ConcreteElementGeneral.ConstructionMethod[Type] TEXT 144 1 IfcLabel 1
PARAM 9b41d444-d01e-4348-897a-5d399a90f6d9 Pset_ConcreteElementGeneral.ConstructionToleranceClass[Type] TEXT 144 1 IfcLabel 1
PARAM 3482a8d9-30b4-4a69-9c19-a2a94737577a Pset_ConcreteElementGeneral.ConstructionType[Type] TEXT 144 1 IfcLabel 1
PARAM 9bdc4bf3-571f-4634-8cd8-2b05bb215dbe Pset_ConcreteElementGeneral.DimensionalAccuracyClass[Type] TEXT 144 1 IfcLabel 1
PARAM ced4016f-8195-4d45-a558-f109a87372f7 Pset_ConcreteElementGeneral.EnvironmentalClass[Type] TEXT 144 1 IfcLabel 1
PARAM 0845730a-55f9-43e6-886d-e25a53aa8b5e Pset_ConcreteElementGeneral.ExposureClass[Type] TEXT 144 1 IfcLabel 1
PARAM 26b5a51e-960d-4ec6-9e65-003fb3c4816c Pset_ConcreteElementGeneral.FireRating[Type] TEXT 144 1 IfcLabel 1
PARAM b0fdc655-bf18-4fdf-b6a9-1d4bf78fdaae Pset_ConcreteElementGeneral.LifeCycleEnvironmentalLoad[Type] TEXT 144 1 IfcText 1
PARAM 2e3c8e1a-67b5-4ee0-966d-224d79c6449e Pset_ConcreteElementGeneral.ReinforcementAreaRatio[Type] NUMBER 144 1 IfcAreaDensityMeasure 1
PARAM 013d7467-0788-426a-942b-f0b2942a3f0d Pset_ConcreteElementGeneral.ReinforcementStrengthClass[Type] TEXT 144 1 IfcLabel 1
PARAM cbb12e13-7a0d-4d00-9dd2-2db62806d106 Pset_ConcreteElementGeneral.ReinforcementVolumeRatio[Type] MASS_DENSITY 144 1 IfcMassDensityMeasure 1
PARAM f415fc7a-1d99-4a28-94f9-c694105df498 Pset_ConcreteElementGeneral.ServiceLife[Type] NUMBER 144 1 IfcTimeMeasure 1
PARAM df767ec3-4038-4c9e-bfcc-df0765ff4b27 Pset_ConcreteElementGeneral.StrengthClass[Type] TEXT 144 1 IfcLabel 1
PARAM aab7b612-60d7-4ae9-8e91-a4bed643222e Pset_ConcreteElementGeneral.StructuralClass[Type] TEXT 144 1 IfcLabel 1
#
GROUP 145 Pset_ConcreteElementQuantityGeneral
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c0550cab-f105-4fb3-a432-1fd54028f791 Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryDescription[Type] TEXT 145 1 IfcLabel 1
PARAM d23b5193-a9ca-4e6d-a27d-769cd6d48aac Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryGroupCode[Type] TEXT 145 1 IfcLabel 1
PARAM d930c73c-9d55-4312-81b5-22fb3e2ee739 Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryMaterial[Type] TEXT 145 1 IfcLabel 1
PARAM 2e2cca24-e418-49c4-8828-9e31d6d3c59e Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryMaterialSpecificationReference[Type] MULTILINETEXT 145 1 IfcExternalReference 1
PARAM a0e4f567-fd3d-49f7-85ee-3d4aa78abc3f Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryQuantityByNumberOfItems[Type] INTEGER 145 1 IfcCountMeasure 1
PARAM b86f8a68-50aa-4a16-8fda-7a0851589c9a Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryQuantityByWeight[Type] NUMBER 145 1 IfcMassMeasure 1
PARAM cc9b2e24-2456-42ae-bf9b-248bb211728d Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessorySize[Type] TEXT 145 1 IfcLabel 1
PARAM c6c94c41-1230-4fdf-9f44-6f454094e0b4 Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryType[Type] TEXT 145 1 IfcLabel 1
PARAM 0c9b39f1-cb05-40f3-8724-1ab1ab33760f Pset_ConcreteElementQuantityGeneral.TotalAccessoryQuantity.AccessoryTypeSpecificationReference[Type] MULTILINETEXT 145 1 IfcExternalReference 1
PARAM ab2fcd46-5e83-4763-ac69-33e42b1d3033 Pset_ConcreteElementQuantityGeneral.TotalConcreteQuantity[Type] VOLUME 145 1 IfcVolumeMeasure 1
PARAM 1bb3abe2-f082-41e3-be4d-2ce47e859f4a Pset_ConcreteElementQuantityGeneral.TotalRebarQuantity.RebarDiameter[Type] LENGTH 145 1 IfcPositiveLengthMeasure 1
PARAM 7f16854c-248c-4be4-9455-438b7f50f457 Pset_ConcreteElementQuantityGeneral.TotalRebarQuantity.RebarQuantity[Type] NUMBER 145 1 IfcMassMeasure 1
PARAM 379f840b-a1ee-4cc5-b8a1-b219a4774dcc Pset_ConcreteElementQuantityGeneral.TotalRebarQuantity.RebarSteelGrade[Type] TEXT 145 1 IfcLabel 1
PARAM c1ec8668-1742-4c8c-bb9c-392cda5d6414 Pset_ConcreteElementQuantityGeneral.TotalRebarQuantity.RebarSteelGradeSpecificationReference[Type] MULTILINETEXT 145 1 IfcExternalReference 1
#
GROUP 146 Pset_ConcreteElementSurfaceFinishQuantityGeneral
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM b0bfe41a-f8f6-4c5b-a4a7-d381e5f5febc Pset_ConcreteElementSurfaceFinishQuantityGeneral.ExternalSurface.ExternalSurfaceArea[Type] AREA 146 1 IfcAreaMeasure 1
PARAM bd8f0cf2-be3e-4e52-894e-67a00d7b6ef2 Pset_ConcreteElementSurfaceFinishQuantityGeneral.ExternalSurface.ExternalSurfaceClass[Type] TEXT 146 1 IfcLabel 1
PARAM 28e8a6ba-cb00-496d-a8d9-264c7d49b189 Pset_ConcreteElementSurfaceFinishQuantityGeneral.ExternalSurface.ExternalSurfaceType[Type] TEXT 146 1 IfcLabel 1
PARAM 70642b13-2541-4b08-83d4-48cdde9ce902 Pset_ConcreteElementSurfaceFinishQuantityGeneral.FormSurface.FormSurfaceArea[Type] AREA 146 1 IfcAreaMeasure 1
PARAM 67627a1c-ba52-4452-8df8-b2d67b4cecb2 Pset_ConcreteElementSurfaceFinishQuantityGeneral.FormSurface.FormSurfaceClass[Type] TEXT 146 1 IfcLabel 1
PARAM 39cddf51-d2c8-4544-90a3-3e974257a52c Pset_ConcreteElementSurfaceFinishQuantityGeneral.FormSurface.FormSurfaceTextureDescription[Type] TEXT 146 1 IfcText 1
PARAM fe2143f4-8355-4962-9c9d-d8a21927dd52 Pset_ConcreteElementSurfaceFinishQuantityGeneral.SurfaceDescriptionDocReference[Type] MULTILINETEXT 146 1 IfcExternalReference 1
#
GROUP 147 Pset_CondenserPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 06d1585f-bd41-493b-a062-c7e2f650abca Pset_CondenserPHistory.CompressorCondenserHeatGain[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM a672a52a-015e-4d22-9f31-b8b4814f5ca6 Pset_CondenserPHistory.CompressorCondenserPressureDrop[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM f078075c-5741-40fc-90f2-a63fa39de744 Pset_CondenserPHistory.CondenserMeanVoidFraction[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM 8aeec34b-67a7-4e32-a364-18c01ae4a3ae Pset_CondenserPHistory.CondensingTemperature[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM e1cace10-c9a4-4afa-bb02-61b77b96e561 Pset_CondenserPHistory.ExteriorHeatTransferCoefficient[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM 2212335d-1e37-4199-aea1-85b3817065bf Pset_CondenserPHistory.HeatRejectionRate[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM 1825f3ae-1f14-4b8a-85b5-ec68bbe89c61 Pset_CondenserPHistory.InteriorHeatTransferCoefficient[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM 58ccf0d8-ad4d-4dc1-abe3-78acf4049814 Pset_CondenserPHistory.LogarithmicMeanTemperatureDifference[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM ad7512e0-968e-4861-9fa2-b18ea927fd42 Pset_CondenserPHistory.RefrigerantFoulingResistance[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM ffc706b2-cd01-4ab7-b04c-c92edf3765ff Pset_CondenserPHistory.UAcurves[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
PARAM f923daf7-21ee-4f19-b802-128160444ec3 Pset_CondenserPHistory.WaterFoulingResistance[Type] MULTILINETEXT 147 1 IfcTimeSeries 1
#
GROUP 148 Pset_CondenserTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 59add430-52ed-45e3-bcef-49a324be4c39 Pset_CondenserTypeCommon.ExternalSurfaceArea[Type] AREA 148 1 IfcAreaMeasure 1
PARAM dc5768a4-f478-487c-9002-9254279dbf10 Pset_CondenserTypeCommon.InternalRefrigerantVolume[Type] VOLUME 148 1 IfcVolumeMeasure 1
PARAM 08d774d4-0dc4-4088-9505-5ac4e917de0f Pset_CondenserTypeCommon.InternalSurfaceArea[Type] AREA 148 1 IfcAreaMeasure 1
PARAM 063d9000-bba4-452c-9c1b-fbfa625adf81 Pset_CondenserTypeCommon.InternalWaterVolume[Type] VOLUME 148 1 IfcVolumeMeasure 1
PARAM 9566a6fa-3730-4cdf-a2f5-9ff42c12916f Pset_CondenserTypeCommon.NominalHeatTransferArea[Type] AREA 148 1 IfcAreaMeasure 1
PARAM 2c2202ab-e853-46b0-854c-ac469f88b616 Pset_CondenserTypeCommon.NominalHeatTransferCoefficient[Type] NUMBER 148 1 IfcThermalTransmittanceMeasure 1
PARAM a9691c3e-ae1d-4fb4-842a-1a95d5d7ed56 Pset_CondenserTypeCommon.Reference[Type] TEXT 148 1 IfcIdentifier 1
PARAM 8a0e0212-9167-4e5c-ad6a-0a7263b3ab21 Pset_CondenserTypeCommon.RefrigerantClass[Type] TEXT 148 1 PEnum_RefrigerantClass 1
PARAM 76a44ffd-00a6-448f-8b20-7e41523e40d3 Pset_CondenserTypeCommon.RefrigerantType[Type] MULTILINETEXT 148 1 IfcMaterial 1
PARAM a3df8019-23d1-433a-a795-51812fb92b6b Pset_CondenserTypeCommon.Status[Type] TEXT 148 1 PEnum_ElementStatus 1
#
GROUP 149 Pset_Condition
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 5ce0e535-10bb-4044-be13-85318ad417ce Pset_Condition.AssessmentCondition[Type] TEXT 149 1 IfcLabel 1
PARAM ac769934-43d2-4811-ac3f-5f62eac81a96 Pset_Condition.AssessmentDate[Type] TEXT 149 1 IfcDate 1
PARAM 741dd2f6-f1d5-4f73-9459-c14ad4cfe95d Pset_Condition.AssessmentDescription[Type] TEXT 149 1 IfcText 1
PARAM 2050d3a6-3b5d-4ad9-b9e4-49bc4ead1d8e Pset_Condition.AssessmentFrequency[Type] NUMBER 149 1 IfcTimeMeasure 1
PARAM 7f11a73d-57ce-49ed-a3b8-b29b0a7603aa Pset_Condition.AssessmentMethod[Type] MULTILINETEXT 149 1 IfcDocumentReference 1
PARAM 77d89a7e-b4a0-455d-8a44-d7d0f2b86cc7 Pset_Condition.AssessmentType[Type] TEXT 149 1 IfcLabel 1
PARAM b4ff4054-1d89-4520-a977-76f0943d4829 Pset_Condition.LastAssessmentReport[Type] TEXT 149 1 IfcLabel 1
PARAM e11b0457-3bb6-4cd4-bf18-3f38927114b0 Pset_Condition.NextAssessmentDate[Type] TEXT 149 1 IfcDate 1
#
GROUP 150 Pset_ConstructionAdministration
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7333d9b7-56bf-4d2b-b995-d80a660feaf4 Pset_ConstructionAdministration.ProcurementMethod[Type] TEXT 150 1 IfcLabel 1
PARAM 457d6b73-c35f-4a98-8d89-415b73684ebd Pset_ConstructionAdministration.SpecificationSectionNumber[Type] TEXT 150 1 IfcLabel 1
PARAM 9e3c0dfa-597a-4d84-8619-a54dcac3f8de Pset_ConstructionAdministration.SubmittalIdentifer[Type] TEXT 150 1 IfcLabel 1
#
GROUP 151 Pset_ConstructionOccurence
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8fab0258-a573-4ae7-bc6a-184dc4cc4fa6 Pset_ConstructionOccurence.AssetIdentifier[Type] TEXT 151 1 IfcLabel 1
PARAM 7ea55c98-72a9-41a2-9f93-8bcb7ed8b186 Pset_ConstructionOccurence.InstallationDate[Type] TEXT 151 1 IfcDate 1
PARAM ff935ad6-00c7-438f-9945-287c4e26e215 Pset_ConstructionOccurence.ModelNumber[Type] TEXT 151 1 IfcLabel 1
PARAM a532099a-562a-4a6a-acc9-8a37396c843b Pset_ConstructionOccurence.TagNumber[Type] TEXT 151 1 IfcLabel 1
#
GROUP 152 Pset_ConstructionResource
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 775acf9a-22e3-47c4-9ef4-c43611740340 Pset_ConstructionResource.ActualCompletion[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM c1142b8d-5ab4-46bb-a93d-1794fd773140 Pset_ConstructionResource.ActualCost[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM df47696f-d7b0-4b85-aa94-dd2753f39503 Pset_ConstructionResource.ActualWork[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM d15a5882-4bf7-4c85-bfda-7100a8c20a1a Pset_ConstructionResource.ActualWorkTime[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM 12a66427-1567-4781-8627-90d1df0c2622 Pset_ConstructionResource.RemainingCost[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM ae62c7c1-015b-4529-ae1e-ec996d7bfd23 Pset_ConstructionResource.RemainingWork[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM ae3783a7-bdab-4182-bdeb-422e7abcb701 Pset_ConstructionResource.RemainingWorkProgression[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM 8d60610c-0682-4bc2-99b8-ced1c79cff86 Pset_ConstructionResource.ScheduleCompletion[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM 6eec7cd7-e9bd-421e-9324-cadeac449d8b Pset_ConstructionResource.ScheduleCost[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM aa6f5a38-9c94-41d8-974e-139cd9ceae1c Pset_ConstructionResource.ScheduleWork[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
PARAM 7103efd1-3477-445e-b400-6308a2e6ded7 Pset_ConstructionResource.ScheduleWorkProgression[Type] MULTILINETEXT 152 1 IfcTimeSeries 1
#
GROUP 153 Pset_ControllerPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 793313b3-0e5a-4d43-973f-007619a00e3f Pset_ControllerPHistory.Quality[Type] MULTILINETEXT 153 1 IfcTimeSeries 1
PARAM 1c43ca2b-5016-4c11-8c4f-78016833efc5 Pset_ControllerPHistory.Status[Type] MULTILINETEXT 153 1 IfcTimeSeries 1
PARAM de11a58b-eb3d-46f6-bf2f-55477c1b8769 Pset_ControllerPHistory.Value[Type] MULTILINETEXT 153 1 IfcTimeSeries 1
PARAM 759c3c33-35ee-44c0-962f-e518468d8960 Pset_ControllerPHistory.ValueHistory[Type] MULTILINETEXT 153 1 IfcTimeSeries 1
#
GROUP 154 Pset_ControllerTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f21f44e9-2053-4152-9e89-c438cc96ce67 Pset_ControllerTypeCommon.ControlType[Type] TEXT 154 1 PEnum_ControlType 1
PARAM d16f87d4-8c1c-4d4a-80b7-c69a33535c3c Pset_ControllerTypeCommon.Reference[Type] TEXT 154 1 IfcIdentifier 1
PARAM 6c525004-4860-4d9f-aa14-26cc21cff732 Pset_ControllerTypeCommon.SignalFactor[Type] NUMBER 154 1 IfcReal 1
PARAM eca28b18-efbc-4648-ae51-441480868ceb Pset_ControllerTypeCommon.SignalOffset[Type] NUMBER 154 1 IfcReal 1
PARAM 3d231c3d-8989-48a8-8ad6-40f5ce28e442 Pset_ControllerTypeCommon.SignalTime[Type] NUMBER 154 1 IfcTimeMeasure 1
PARAM b62593f8-9389-4090-b699-91dcf760603e Pset_ControllerTypeCommon.Status[Type] TEXT 154 1 PEnum_ElementStatus 1
#
GROUP 155 Pset_ControllerTypeFloating
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ea02948a-d450-47ac-940f-de4636355173 Pset_ControllerTypeFloating.ControlType[Type] TEXT 155 1 PEnum_ControllerTypeFloating 1
PARAM 3adae4b7-42aa-48f4-aa7b-d746a6625645 Pset_ControllerTypeFloating.Labels[Type] MULTILINETEXT 155 1 PropertyTableValue 1
PARAM 9ef1cd32-ef01-432e-8b31-c3f12ff8849e Pset_ControllerTypeFloating.Range[Type] MULTILINETEXT 155 1 PropertyBoundedValue 1
PARAM d1de92ff-ac25-4af9-9bc2-c5b6e47f3abb Pset_ControllerTypeFloating.SignalFactor[Type] NUMBER 155 1 IfcReal 1
PARAM 1f21274c-ac92-4cf2-b182-1c4240b72fdf Pset_ControllerTypeFloating.SignalOffset[Type] NUMBER 155 1 IfcReal 1
PARAM f0044d4d-c491-4788-8760-9fbce60107ba Pset_ControllerTypeFloating.SignalTime[Type] NUMBER 155 1 IfcTimeMeasure 1
PARAM 8548eb94-0a50-40d3-ab5d-98a792e46ed0 Pset_ControllerTypeFloating.Value[Type] MULTILINETEXT 155 1 PropertyBoundedValue 1
#
GROUP 156 Pset_ControllerTypeMultiPosition
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f941a45e-e6b5-442f-9c39-ba25b8accd52 Pset_ControllerTypeMultiPosition.ControlType[Type] TEXT 156 1 PEnum_ControllerMultiPositionType 1
PARAM a3eb3fc7-093a-4307-9527-b68455cc1b40 Pset_ControllerTypeMultiPosition.IntegerRange[Type] MULTILINETEXT 156 1 PropertyBoundedValue 1
PARAM 405ee6ba-8e20-483e-adce-2bb3ad967c72 Pset_ControllerTypeMultiPosition.Labels[Type] MULTILINETEXT 156 1 PropertyTableValue 1
PARAM ccaa5da4-45c7-4f36-8d12-09a6bd362ab7 Pset_ControllerTypeMultiPosition.Range[Type] MULTILINETEXT 156 1 PropertyBoundedValue 1
PARAM d57c39cb-fb8b-4d61-817f-131127bfc0d2 Pset_ControllerTypeMultiPosition.Value[Type] MULTILINETEXT 156 1 PropertyBoundedValue 1
#
GROUP 157 Pset_ControllerTypeProgrammable
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6910ef7a-1893-4887-a62e-40e789cae1ca Pset_ControllerTypeProgrammable.Application[Type] TEXT 157 1 PEnum_ControllerApplication 1
PARAM 0c1e8e85-25fc-49a4-bd51-2daf8f7ac70d Pset_ControllerTypeProgrammable.ControlType[Type] TEXT 157 1 PEnum_ControllerTypeProgrammable 1
PARAM ad2e7140-98c5-4e21-bc6b-d39659a4f8ad Pset_ControllerTypeProgrammable.FirmwareVersion[Type] TEXT 157 1 IfcLabel 1
PARAM 5a8acf8b-578f-4502-b268-2e790a62d75b Pset_ControllerTypeProgrammable.SoftwareVersion[Type] TEXT 157 1 IfcLabel 1
#
GROUP 158 Pset_ControllerTypeProportional
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4d931a44-6be4-4903-a441-a52cd9c985c4 Pset_ControllerTypeProportional.ControlType[Type] TEXT 158 1 PEnum_ControllerProportionalType 1
PARAM c1e67567-f0b6-414e-a844-6d31a13034d4 Pset_ControllerTypeProportional.DerivativeConstant[Type] NUMBER 158 1 IfcReal 1
PARAM 0b0eddbf-4a25-4546-a4b1-9431811da0df Pset_ControllerTypeProportional.IntegralConstant[Type] NUMBER 158 1 IfcReal 1
PARAM ef00002d-f57a-4599-ac21-e28feea3bcc6 Pset_ControllerTypeProportional.Labels[Type] MULTILINETEXT 158 1 PropertyTableValue 1
PARAM b8066893-bdb1-4c0a-a9e0-794cbcfbb92c Pset_ControllerTypeProportional.ProportionalConstant[Type] NUMBER 158 1 IfcReal 1
PARAM 78c0de2b-3c36-4991-8670-6d7221fe9d4a Pset_ControllerTypeProportional.Range[Type] MULTILINETEXT 158 1 PropertyBoundedValue 1
PARAM d70bdce0-0cef-4389-935c-50122116b8f2 Pset_ControllerTypeProportional.SignalFactor1[Type] NUMBER 158 1 IfcReal 1
PARAM 494b85f3-fd0d-435a-82bf-e9cf88fc6663 Pset_ControllerTypeProportional.SignalFactor2[Type] NUMBER 158 1 IfcReal 1
PARAM a08b68f0-69aa-4b0d-be34-e82d938bbc1a Pset_ControllerTypeProportional.SignalTime1[Type] NUMBER 158 1 IfcTimeMeasure 1
PARAM 396fe37e-e2bb-4548-82b6-9cf2148169da Pset_ControllerTypeProportional.SignalTime2[Type] NUMBER 158 1 IfcTimeMeasure 1
PARAM 4bd7b409-5f1d-460b-8d94-53174824c9aa Pset_ControllerTypeProportional.SignalTimeDecrease[Type] NUMBER 158 1 IfcTimeMeasure 1
PARAM dcb5a8c8-8825-42ae-9772-bc1882404640 Pset_ControllerTypeProportional.SignalTimeIncrease[Type] NUMBER 158 1 IfcTimeMeasure 1
PARAM e75d6b69-7605-47ac-b840-bcf1ff4100b2 Pset_ControllerTypeProportional.Value[Type] MULTILINETEXT 158 1 PropertyBoundedValue 1
#
GROUP 159 Pset_ControllerTypeTwoPosition
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 8a0096a6-4cfb-47b5-96bb-9a41121f278c Pset_ControllerTypeTwoPosition.BandWidth[Type] NUMBER 159 1 IfcReal 1
PARAM 15685b7d-a1d9-44a4-8ed7-8c0ddd19468e Pset_ControllerTypeTwoPosition.ControlType[Type] TEXT 159 1 PEnum_ControllerTwoPositionType 1
PARAM 10460b58-bd72-4b42-b313-27dc5c1b4135 Pset_ControllerTypeTwoPosition.Labels[Type] MULTILINETEXT 159 1 PropertyTableValue 1
PARAM 35198438-134e-4976-9944-54f2e652a81f Pset_ControllerTypeTwoPosition.Polarity[Type] YESNO 159 1 IfcBoolean 1
PARAM 931bc595-754e-47dd-a9b2-354bbb799a58 Pset_ControllerTypeTwoPosition.Value[Type] YESNO 159 1 IfcBoolean 1
#
GROUP 160 Pset_CooledBeamPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7ff6572b-330c-4fa7-9d75-f6e41bcc3a4c Pset_CooledBeamPHistory.BeamCoolingCapacity[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 09e21a1f-4cd8-49c5-aeef-395ea8cdae33 Pset_CooledBeamPHistory.BeamHeatingCapacity[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM dff88f8d-8a76-4d0b-bee8-95594f4e25c8 Pset_CooledBeamPHistory.CoolingWaterFlowRate[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM d57d8241-d056-4a78-867b-11cb47c94a18 Pset_CooledBeamPHistory.CorrectionFactorForCooling[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 0fc9ecf1-328b-403c-8faa-1bd407704600 Pset_CooledBeamPHistory.CorrectionFactorForHeating[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM aff2e65a-2c88-426b-9b96-30020f40a495 Pset_CooledBeamPHistory.HeatingWaterFlowRate[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 7b81b37f-2495-4430-8abf-777227a810ca Pset_CooledBeamPHistory.ReturnWaterTemperatureCooling[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM d0d667da-d4f8-4b02-99b3-65b521c2cd0b Pset_CooledBeamPHistory.ReturnWaterTemperatureHeating[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 3ee98a29-9431-4bbb-bc82-e069d6502697 Pset_CooledBeamPHistory.SupplyWaterTemperatureCooling[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 5bf39402-2ff6-47ec-803f-df81e068def3 Pset_CooledBeamPHistory.SupplyWaterTemperatureHeating[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 6136d047-ea8f-44c4-871c-a5d342d7db2a Pset_CooledBeamPHistory.TotalCoolingCapacity[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 0b28ddbe-0965-44b2-91f8-60add852a983 Pset_CooledBeamPHistory.TotalHeatingCapacity[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
PARAM 9f104ed3-9ac2-4dad-a42e-0315e6519456 Pset_CooledBeamPHistory.WaterPressureDropCurves[Type] MULTILINETEXT 160 1 IfcTimeSeries 1
#
GROUP 161 Pset_CooledBeamPHistoryActive
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3fbdb793-dbca-4616-92c0-9209c026f9d2 Pset_CooledBeamPHistoryActive.AirFlowRate[Type] MULTILINETEXT 161 1 IfcTimeSeries 1
PARAM 48fdd621-dd04-4c53-9472-a856f21279ba Pset_CooledBeamPHistoryActive.AirPressureDropCurves[Type] MULTILINETEXT 161 1 IfcTimeSeries 1
PARAM e7f876c1-b8cf-4bd9-a217-a3b60c4b4490 Pset_CooledBeamPHistoryActive.Throw[Type] MULTILINETEXT 161 1 IfcTimeSeries 1
#
GROUP 162 Pset_CooledBeamTypeActive
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 47f1f631-ebb3-4c0c-bd69-b08a7009f1da Pset_CooledBeamTypeActive.AirFlowConfiguration[Type] TEXT 162 1 PEnum_CooledBeamActiveAirFlowConfigurationType 1
PARAM 6c5035b8-5adb-4195-80d7-5770a20e19c9 Pset_CooledBeamTypeActive.AirflowRateRange[Type] MULTILINETEXT 162 1 PropertyBoundedValue 1
PARAM 3c776144-a070-4877-9836-3988fb9965ba Pset_CooledBeamTypeActive.AirFlowRateRange[Type] MULTILINETEXT 162 1 PropertyBoundedValue 1
PARAM 73c4a53a-2fda-44ce-99f1-624d82217bf0 Pset_CooledBeamTypeActive.ConnectionSize[Type] LENGTH 162 1 IfcPositiveLengthMeasure 1
PARAM d47be093-00c4-41d9-a90c-e646dc80f466 Pset_CooledBeamTypeActive.SupplyAirConnectionType[Type] TEXT 162 1 PEnum_CooledBeamSupplyAirConnectionType 1
#
GROUP 163 Pset_CooledBeamTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2c67bd08-ce72-4837-956c-5445bb0b43e9 Pset_CooledBeamTypeCommon.CoilLength[Type] LENGTH 163 1 IfcPositiveLengthMeasure 1
PARAM ca54be34-536c-4378-916e-734338894093 Pset_CooledBeamTypeCommon.CoilWidth[Type] LENGTH 163 1 IfcPositiveLengthMeasure 1
PARAM 1345aaf6-1fd7-45f0-8ddd-301ba2270756 Pset_CooledBeamTypeCommon.ConnectionSize[Type] LENGTH 163 1 IfcLengthMeasure 1
PARAM 1bcd2022-39b7-49a2-883e-e53f32a6e660 Pset_CooledBeamTypeCommon.FinishColor[Type] TEXT 163 1 IfcLabel 1
PARAM 7e834c84-cb8d-4343-8b35-26c01a63ef78 Pset_CooledBeamTypeCommon.FinishColour[Type] TEXT 163 1 IfcLabel 1
PARAM 55bfed40-0f45-460a-a5ce-3572421b36e9 Pset_CooledBeamTypeCommon.IntegratedLightingType[Type] TEXT 163 1 PEnum_CooledBeamIntegratedLightingType 1
PARAM 25459baa-f391-457b-b394-9604578215a9 Pset_CooledBeamTypeCommon.IsFreeHanging[Type] YESNO 163 1 IfcBoolean 1
PARAM e4beadda-9b98-4781-9cc0-bc11cff03480 Pset_CooledBeamTypeCommon.Material[Type] MULTILINETEXT 163 1 IfcMaterial 1
PARAM f7e0030f-face-41c5-bf0a-dcb2ce28dc43 Pset_CooledBeamTypeCommon.NominalCoolingCapacity[Type] NUMBER 163 1 IfcPowerMeasure 1
PARAM e8e6ea35-fada-48e3-9e62-04b24370b001 Pset_CooledBeamTypeCommon.NominalHeatingCapacity[Type] NUMBER 163 1 IfcPowerMeasure 1
PARAM d85f3c57-955d-4fd6-ba30-03b0487a63bd Pset_CooledBeamTypeCommon.NominalReturnWaterTemperatureCooling[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM 0170bc05-c02d-4ed4-a752-4a11659da82d Pset_CooledBeamTypeCommon.NominalReturnWaterTemperatureHeating[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM 50bdac1e-c2f8-4e4f-b7f9-d7208d47e45d Pset_CooledBeamTypeCommon.NominalSupplyWaterTemperatureCooling[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM ed383c56-6dc2-4db4-86cd-f86923704b83 Pset_CooledBeamTypeCommon.NominalSupplyWaterTemperatureHeating[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM 4fbaaaaf-4c83-456f-9f85-a4a1f817cc95 Pset_CooledBeamTypeCommon.NominalSurroundingHumidityCooling[Type] NUMBER 163 1 IfcNormalisedRatioMeasure 1
PARAM 3cfcbe66-62f1-4130-aeb4-db314686bcf5 Pset_CooledBeamTypeCommon.NominalSurroundingTemperatureCooling[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM 5349059c-a136-4d25-b6a5-eeeacd94bc4d Pset_CooledBeamTypeCommon.NominalSurroundingTemperatureHeating[Type] NUMBER 163 1 IfcThermodynamicTemperatureMeasure 1
PARAM e49b6bdc-cdae-4745-83c0-1c04d9a917be Pset_CooledBeamTypeCommon.NominalWaterFlowCooling[Type] NUMBER 163 1 IfcVolumetricFlowRateMeasure 1
PARAM f37878ba-f55e-4a7a-b9e0-c00b861cfc73 Pset_CooledBeamTypeCommon.NominalWaterFlowHeating[Type] NUMBER 163 1 IfcVolumetricFlowRateMeasure 1
PARAM 45458ab1-1251-4445-adc0-b3352ac4103d Pset_CooledBeamTypeCommon.PipeConnection[Type] TEXT 163 1 PEnum_CooledBeamPipeConnection 1
PARAM a39a088d-62af-4ccd-874c-eac44c076d43 Pset_CooledBeamTypeCommon.PipeConnectionEnum[Type] TEXT 163 1 PEnum_CooledBeamPipeConnection 1
PARAM af3488c0-1523-4722-87aa-4e0acb7109ea Pset_CooledBeamTypeCommon.Reference[Type] TEXT 163 1 IfcIdentifier 1
PARAM da946551-9044-4d81-9d06-e7d6afb50c3b Pset_CooledBeamTypeCommon.Status[Type] TEXT 163 1 PEnum_ElementStatus 1
PARAM de72db4a-55b7-4805-bdf4-11212a721ea6 Pset_CooledBeamTypeCommon.WaterFlowControlSystemType[Type] TEXT 163 1 PEnum_CooledBeamWaterFlowControlSystemType 1
PARAM 3f5b9b14-574b-409e-980b-a892321fc3c7 Pset_CooledBeamTypeCommon.WaterPressureRange[Type] MULTILINETEXT 163 1 PropertyBoundedValue 1
PARAM 917d349a-8868-4d89-9238-9ddbd9c586df Pset_CooledBeamTypeCommon.Weight[Type] NUMBER 163 1 IfcMassMeasure 1
#
GROUP 164 Pset_CoolingTowerPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 38933f42-aefe-4b3b-8d69-a52501ce1225 Pset_CoolingTowerPHistory.Capacity[Type] MULTILINETEXT 164 1 IfcTimeSeries 1
PARAM 873c6998-abcb-4ad4-b455-a9f030aa4958 Pset_CoolingTowerPHistory.HeatTransferCoefficient[Type] MULTILINETEXT 164 1 IfcTimeSeries 1
PARAM 9b33f29d-2eea-4903-b17a-37809cd21f25 Pset_CoolingTowerPHistory.Performance[Type] MULTILINETEXT 164 1 IfcTimeSeries 1
PARAM 7b09ea9b-64f0-46cb-aa35-e4ab8a875928 Pset_CoolingTowerPHistory.SumpHeaterPower[Type] MULTILINETEXT 164 1 IfcTimeSeries 1
PARAM 0130e918-aeda-4ac6-ab8e-11bc5e144407 Pset_CoolingTowerPHistory.UACurve[Type] MULTILINETEXT 164 1 IfcTimeSeries 1
#
GROUP 165 Pset_CoolingTowerTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 838d4a70-117f-4b4b-8747-87fbb93f4196 Pset_CoolingTowerTypeCommon.AmbientDesignDryBulbTemperature[Type] NUMBER 165 1 IfcThermodynamicTemperatureMeasure 1
PARAM 1884bc86-96ca-4b57-a705-130c0f8eda10 Pset_CoolingTowerTypeCommon.AmbientDesignWetBulbTemperature[Type] NUMBER 165 1 IfcThermodynamicTemperatureMeasure 1
PARAM 8b62dc66-b0e1-4e8d-8715-1cfc2dd17257 Pset_CoolingTowerTypeCommon.BasinReserveVolume[Type] VOLUME 165 1 IfcVolumeMeasure 1
PARAM 70c93324-14fb-49de-87e1-843556a61937 Pset_CoolingTowerTypeCommon.CapacityControl[Type] TEXT 165 1 PEnum_CoolingTowerCapacityControl 1
PARAM bf2a689e-28f3-4ca7-9426-13330e0ed94b Pset_CoolingTowerTypeCommon.CasingMaterial[Type] MULTILINETEXT 165 1 IfcMaterial 1
PARAM 5d1e5c96-233d-46d6-a71b-64d462ea7e1b Pset_CoolingTowerTypeCommon.CircuitType[Type] TEXT 165 1 PEnum_CoolingTowerCircuitType 1
PARAM 947fdeae-7fa4-441e-bd7d-3e8aacf25f49 Pset_CoolingTowerTypeCommon.ControlStrategy[Type] TEXT 165 1 PEnum_CoolingTowerControlStrategy 1
PARAM c920b70c-5ea8-466c-ab72-f74f2aaf3e86 Pset_CoolingTowerTypeCommon.FillMaterial[Type] MULTILINETEXT 165 1 IfcMaterial 1
PARAM 75167223-2017-4588-9ca6-428f127fec70 Pset_CoolingTowerTypeCommon.FlowArrangement[Type] TEXT 165 1 PEnum_CoolingTowerFlowArrangement 1
PARAM d4e42c6e-a911-4f88-a337-2cd52b73f019 Pset_CoolingTowerTypeCommon.LiftElevationDifference[Type] LENGTH 165 1 IfcPositiveLengthMeasure 1
PARAM 87d3e3e0-2ad1-41a7-9dbb-9cd60bd4b826 Pset_CoolingTowerTypeCommon.NominalCapacity[Type] NUMBER 165 1 IfcPowerMeasure 1
PARAM ff72317b-d186-4660-b6eb-d9e3cc9727c3 Pset_CoolingTowerTypeCommon.NumberOfCells[Type] INTEGER 165 1 IfcCountMeasure 1
PARAM c220a41f-886b-4de1-8944-8015fb4d23c8 Pset_CoolingTowerTypeCommon.OperationTemperatureRange[Type] NUMBER 165 1 IfcThermodynamicTemperatureMeasure 1
PARAM d679a2c0-16af-4d07-9337-456f85c7cfdd Pset_CoolingTowerTypeCommon.Reference[Type] TEXT 165 1 IfcIdentifier 1
PARAM 1530e590-7861-4787-8ce5-e4f25ac1fb99 Pset_CoolingTowerTypeCommon.SprayType[Type] TEXT 165 1 PEnum_CoolingTowerSprayType 1
PARAM 9f8e684c-5ee2-4fc4-966b-9a4e8501d54e Pset_CoolingTowerTypeCommon.Status[Type] TEXT 165 1 PEnum_ElementStatus 1
PARAM 9d722b05-4ee7-436f-81f1-1b0dd6393406 Pset_CoolingTowerTypeCommon.WaterRequirement[Type] NUMBER 165 1 IfcVolumetricFlowRateMeasure 1
PARAM 3ecdee4e-bb4e-4e8b-952d-86c530cb2fcb Pset_CoolingTowerTypeCommon.Weight[Type] NUMBER 165 1 IfcMassMeasure 1
#
GROUP 166 Pset_CourseApplicationConditions
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM a7b4c818-49d8-45d8-bd7e-9f9b6bc79a6d Pset_CourseApplicationConditions.ApplicationTemperature[Type] NUMBER 166 1 IfcThermodynamicTemperatureMeasure 1
PARAM 80cb5cdf-ce28-4220-b11c-bebadf4a8885 Pset_CourseApplicationConditions.WeatherConditions[Type] TEXT 166 1 IfcText 1
#
GROUP 167 Pset_CourseCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 74bb9be7-8c29-4d50-b341-9e72c27cc4d7 Pset_CourseCommon.NominalLength[Type] LENGTH 167 1 IfcNonNegativeLengthMeasure 1
PARAM d0c39e7b-bc1d-44e9-97f0-dc82745ff690 Pset_CourseCommon.NominalThickness[Type] LENGTH 167 1 IfcNonNegativeLengthMeasure 1
PARAM a851f2af-a964-44b4-a754-967aee54ce4d Pset_CourseCommon.NominalWidth[Type] LENGTH 167 1 IfcNonNegativeLengthMeasure 1
#
GROUP 168 Pset_CoveringCeiling
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 74318a74-7855-4010-8150-3fcedea8c566 Pset_CoveringCeiling.FragilityRating[Type] TEXT 168 1 IfcLabel 1
PARAM 21b0af2e-1099-4890-9bdd-1ce30027c75a Pset_CoveringCeiling.Permeability[Type] NUMBER 168 1 IfcNormalisedRatioMeasure 1
PARAM 51a54828-6a34-4a52-8e42-a416256ec9a4 Pset_CoveringCeiling.TileLength[Type] LENGTH 168 1 IfcPositiveLengthMeasure 1
PARAM 53b89ada-46fe-41bd-a7db-8484cba0d557 Pset_CoveringCeiling.TileWidth[Type] LENGTH 168 1 IfcPositiveLengthMeasure 1
#
GROUP 169 Pset_CoveringCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ba10dcf9-ceaf-483b-bebf-06ddaa6417b6 Pset_CoveringCommon.AcousticRating[Type] TEXT 169 1 IfcLabel 1
PARAM b0dfc39d-f66f-4d1a-81d0-ca3ec3c59d89 Pset_CoveringCommon.Combustible[Type] YESNO 169 1 IfcBoolean 1
PARAM f41e96ec-8600-430a-8e64-c010a8e31590 Pset_CoveringCommon.Finish[Type] TEXT 169 1 IfcText 1
PARAM 8a43a414-683c-439d-8888-60d6662df839 Pset_CoveringCommon.FireRating[Type] TEXT 169 1 IfcLabel 1
PARAM 1ac6a7f4-ba48-4401-9a48-e6322467f344 Pset_CoveringCommon.FlammabilityRating[Type] TEXT 169 1 IfcLabel 1
PARAM 89f4542d-6c73-470f-b215-8f7d44e77edb Pset_CoveringCommon.Fragility[Type] TEXT 169 1 IfcLabel 1
PARAM 02896e79-d4a4-4c76-8381-00c6504581d9 Pset_CoveringCommon.FragilityRating[Type] TEXT 169 1 IfcLabel 1
PARAM 0895ff4d-fe80-47bf-ae21-9b282d814b91 Pset_CoveringCommon.IsExternal[Type] YESNO 169 1 IfcBoolean 1
PARAM c020aece-614a-4a59-a056-b24fdfacf6ae Pset_CoveringCommon.Material[Type] TEXT 169 1 IfcLabel 1
PARAM 319e75b6-bc45-4947-a926-5df68da83409 Pset_CoveringCommon.Reference[Type] TEXT 169 1 IfcIdentifier 1
PARAM 76c286ab-0d5b-4a3f-991e-731a42120310 Pset_CoveringCommon.Status[Type] TEXT 169 1 PEnum_ElementStatus 1
PARAM a07e6599-1360-4266-8602-2e806980150c Pset_CoveringCommon.SurfaceSpreadOfFlame[Type] TEXT 169 1 IfcLabel 1
PARAM db96843b-d055-42bb-9dfb-abbf5ec656c5 Pset_CoveringCommon.ThermalTransmittance[Type] NUMBER 169 1 IfcThermalTransmittanceMeasure 1
PARAM 90a4b463-418f-4483-ade8-567e6e7bc2dc Pset_CoveringCommon.Thickness[Type] LENGTH 169 1 IfcPositiveLengthMeasure 1
PARAM 0f0b9392-1942-4a87-aca3-b63dbcdd4ebb Pset_CoveringCommon.TotalThickness[Type] LENGTH 169 1 IfcPositiveLengthMeasure 1
#
GROUP 170 Pset_CoveringFlooring
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ff5ee02f-9a7d-4654-93c4-9316f5636359 Pset_CoveringFlooring.HasAntiStaticSurface[Type] YESNO 170 1 IfcBoolean 1
PARAM dd5d4147-4cda-4b47-829b-65075973264e Pset_CoveringFlooring.HasNonSkidSurface[Type] YESNO 170 1 IfcBoolean 1
#
GROUP 171 Pset_CoveringTypeMembrane
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ea859473-dd6a-414c-8598-0c08153d4421 Pset_CoveringTypeMembrane.NominalInstallationDepth[Type] LENGTH 171 1 IfcPositiveLengthMeasure 1
PARAM 91290c97-4d9e-4501-abaa-b01130781417 Pset_CoveringTypeMembrane.NominalTransverseInclination[Type] NUMBER 171 1 IfcPlaneAngleMeasure 1
#
GROUP 172 Pset_CurrentInstrumentTransformer
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 5b6b829a-d220-41d9-a56a-90746b1055b4 Pset_CurrentInstrumentTransformer.AccuracyClass[Type] NUMBER 172 1 IfcRatioMeasure 1
PARAM 52772677-2b26-44d1-8fb6-040c87cc17fe Pset_CurrentInstrumentTransformer.AccuracyGrade[Type] TEXT 172 1 IfcLabel 1
PARAM 35b72b20-38b4-4475-8ead-0377c41b2177 Pset_CurrentInstrumentTransformer.NominalCurrent[Type] NUMBER 172 1 IfcElectricCurrentMeasure 1
PARAM 9a2aa844-4a2a-4d86-991c-6ece66cf46bb Pset_CurrentInstrumentTransformer.NominalPower[Type] NUMBER 172 1 IfcPowerMeasure 1
PARAM 0631541e-98ba-4c29-b1eb-f40dc8270f0e Pset_CurrentInstrumentTransformer.NumberOfPhases[Type] INTEGER 172 1 IfcCountMeasure 1
PARAM 98d07115-4e85-4055-aa3f-15f5246a765c Pset_CurrentInstrumentTransformer.PrimaryCurrent[Type] NUMBER 172 1 IfcElectricCurrentMeasure 1
PARAM fa94e2e2-094f-4073-8d27-4449d1cc908e Pset_CurrentInstrumentTransformer.PrimaryFrequency[Type] NUMBER 172 1 IfcFrequencyMeasure 1
PARAM fe587fc6-76a8-47c3-bd1d-fe2c40ff75cd Pset_CurrentInstrumentTransformer.RatedVoltage[Type] MULTILINETEXT 172 1 PropertyBoundedValue 1
PARAM b162c71b-7046-47db-8e86-27dfe6718de2 Pset_CurrentInstrumentTransformer.SecondaryCurrent[Type] NUMBER 172 1 IfcElectricCurrentMeasure 1
PARAM e9ffb49e-9b33-4cd8-8ffa-4ec99bdad299 Pset_CurrentInstrumentTransformer.SecondaryFrequency[Type] NUMBER 172 1 IfcFrequencyMeasure 1
#
GROUP 173 Pset_CurtainWallCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ee6bf7dc-2c1b-4618-813d-5131911f4aa9 Pset_CurtainWallCommon.AcousticRating[Type] TEXT 173 1 IfcLabel 1
PARAM 7dc4281c-2b3a-48d0-83b8-c588f0d5f46f Pset_CurtainWallCommon.Combustible[Type] YESNO 173 1 IfcBoolean 1
PARAM d41f26e1-01c8-40a6-af71-1f8c7103c284 Pset_CurtainWallCommon.FireRating[Type] TEXT 173 1 IfcLabel 1
PARAM 84f7731d-95af-44a3-8123-9457050f99ca Pset_CurtainWallCommon.IsExternal[Type] YESNO 173 1 IfcBoolean 1
PARAM b66a1670-3c8d-4191-9d71-f2d8953f1e25 Pset_CurtainWallCommon.Reference[Type] TEXT 173 1 IfcIdentifier 1
PARAM b598eb0c-4476-4b57-a45a-7382d0272874 Pset_CurtainWallCommon.Status[Type] TEXT 173 1 PEnum_ElementStatus 1
PARAM 39702f34-8d0f-44e0-bfa7-8f3479ee0ce3 Pset_CurtainWallCommon.SurfaceSpreadOfFlame[Type] TEXT 173 1 IfcLabel 1
PARAM 8f08ee4e-b34d-458c-b203-513386375d90 Pset_CurtainWallCommon.ThermalTransmittance[Type] NUMBER 173 1 IfcThermalTransmittanceMeasure 1
#
GROUP 174 Pset_DamperOccurrence
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6c7bd0b1-59e6-4002-8ac4-dbb8477f8b16 Pset_DamperOccurrence.SizingMethod[Type] TEXT 174 1 PEnum_DamperSizingMethod 1
#
GROUP 175 Pset_DamperPHistory
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 6079387f-ec91-4adf-a5b5-05e167bdb872 Pset_DamperPHistory.AirFlowRate[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
PARAM e760b2fa-8bd4-4e01-90f3-c857f6987743 Pset_DamperPHistory.BladePositionAngle[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
PARAM 6c191236-b569-4b9d-b357-9ef27c7f94b3 Pset_DamperPHistory.DamperPosition[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
PARAM ab4bca77-8cd7-4394-b638-272133d413be Pset_DamperPHistory.Leakage[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
PARAM c6e1ebab-28c8-4400-9e33-d9f9acc3bf3b Pset_DamperPHistory.PressureDrop[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
PARAM 37582803-e4ff-453d-a186-1453f50d8f06 Pset_DamperPHistory.PressureLossCoefficient[Type] MULTILINETEXT 175 1 IfcTimeSeries 1
#
GROUP 176 Pset_DamperTypeCommon
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM f7de2b45-5c6b-4a4c-9293-5350e3c86a16 Pset_DamperTypeCommon.BladeAction[Type] TEXT 176 1 PEnum_DamperBladeAction 1
PARAM c8ca0da7-87f7-46b5-b962-99014d43b11f Pset_DamperTypeCommon.BladeEdge[Type] TEXT 176 1 PEnum_DamperBladeEdge 1
PARAM 8b39a53d-08fb-4a11-932f-e2539c471678 Pset_DamperTypeCommon.BladeMaterial[Type] MULTILINETEXT 176 1 IfcMaterial 1
PARAM cce5480b-7246-4fbe-a0a9-bc7a69fd84d2 Pset_DamperTypeCommon.BladeShape[Type] TEXT 176 1 PEnum_DamperBladeShape 1
PARAM 576fafde-8c47-4695-b7b2-eddc537928e2 Pset_DamperTypeCommon.BladeThickness[Type] LENGTH 176 1 IfcPositiveLengthMeasure 1
PARAM e182daa4-7e65-451e-aa4d-6f50cc0ce3be Pset_DamperTypeCommon.CloseOffRating[Type] NUMBER 176 1 IfcPressureMeasure 1
PARAM 670ff535-6a9f-465a-9f58-e4ea641aba19 Pset_DamperTypeCommon.FaceArea[Type] AREA 176 1 IfcAreaMeasure 1
PARAM 968d9d7a-1778-4124-8d64-8ee6bf96dcdd Pset_DamperTypeCommon.FrameDepth[Type] LENGTH 176 1 IfcPositiveLengthMeasure 1
PARAM 642b8a87-3319-4a68-89b6-f85df7fcce59 Pset_DamperTypeCommon.FrameMaterial[Type] MULTILINETEXT 176 1 IfcMaterial 1
PARAM 34014747-c646-4291-bb26-ebbda11117dc Pset_DamperTypeCommon.FrameThickness[Type] LENGTH 176 1 IfcPositiveLengthMeasure 1
PARAM f1441756-2756-4e4d-b2b9-fd192e0e119c Pset_DamperTypeCommon.FrameType[Type] TEXT 176 1 IfcLabel 1
PARAM 35b4de8d-0c63-47be-8724-4ce255f0cacd Pset_DamperTypeCommon.LeakageCurve[Type] MULTILINETEXT 176 1 PropertyTableValue 1
PARAM dda11036-dec8-49d1-b8db-cdb616ae2e39 Pset_DamperTypeCommon.LeakageFullyClosed[Type] NUMBER 176 1 IfcVolumetricFlowRateMeasure 1
PARAM 6526e048-1d26-45c6-98f9-9abd6173cfb9 Pset_DamperTypeCommon.LossCoefficentCurve[Type] MULTILINETEXT 176 1 PropertyTableValue 1
PARAM 8a16d3e9-bc6a-41ca-9c91-f40ce345ba85 Pset_DamperTypeCommon.MaximumAirFlowRate[Type] NUMBER 176 1 IfcVolumetricFlowRateMeasure 1
PARAM e1a06733-76de-4cce-b3cf-cb09d132340a Pset_DamperTypeCommon.MaximumWorkingPressure[Type] NUMBER 176 1 IfcPressureMeasure 1
PARAM f8035248-77d6-4a89-984f-1c2c9e0713e9 Pset_DamperTypeCommon.NominalAirFlowRate[Type] NUMBER 176 1 IfcVolumetricFlowRateMeasure 1
PARAM 070cfae0-1be3-4bba-8819-2fb2aab9566a Pset_DamperTypeCommon.NumberofBlades[Type] INTEGER 176 1 IfcInteger 1
PARAM 6685bbec-6ea4-4d8c-aceb-cf3be9b087a8 Pset_DamperTypeCommon.OpenPressureDrop[Type] NUMBER 176 1 IfcPressureMeasure 1
PARAM efc881c0-8e2c-484e-8a75-3ea5c6dc7269 Pset_DamperTypeCommon.Operation[Type] TEXT 176 1 PEnum_DamperOperation 1
PARAM fb8667db-40e9-485f-ae1c-578c694f4e93 Pset_DamperTypeCommon.Orientation[Type] TEXT 176 1 PEnum_DamperOrientation 1
PARAM 9f5d1bdf-2793-4eb8-a187-1a3f1169674f Pset_DamperTypeCommon.Reference[Type] TEXT 176 1 IfcIdentifier 1
PARAM 12df9dee-551d-4a4c-9d47-6dd4c4d70340 Pset_DamperTypeCommon.RegeneratedSoundCurve[Type] MULTILINETEXT 176 1 PropertyTableValue 1
PARAM e7742cb8-3da6-4506-b256-de367e59d3b5 Pset_DamperTypeCommon.SealMaterial[Type] MULTILINETEXT 176 1 IfcMaterial 1
PARAM c3447631-1f0e-4ac7-ae34-0c151f1d05a8 Pset_DamperTypeCommon.Status[Type] TEXT 176 1 PEnum_ElementStatus 1
PARAM b34c1224-623c-425f-b419-cf85e2db862f Pset_DamperTypeCommon.TemperatureRange[Type] MULTILINETEXT 176 1 PropertyBoundedValue 1
PARAM 6b3fb26b-a894-4abd-af3c-b1bc812ab674 Pset_DamperTypeCommon.TemperatureRating[Type] NUMBER 176 1 IfcThermodynamicTemperatureMeasure 1
PARAM 2fc7104b-ed10-4afd-9f00-72c4a920635f Pset_DamperTypeCommon.TorqueRange[Type] MULTILINETEXT 176 1 PropertyBoundedValue 1
#
GROUP 177 Pset_DamperTypeControlDamper
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM ddeada2e-80bd-447f-bce7-080931556374 Pset_DamperTypeControlDamper.ControlDamperOperation[Type] TEXT 177 1 PEnum_ControlDamperOperation 1
PARAM 45228df6-a854-4df7-9130-9f4acf400ccd Pset_DamperTypeControlDamper.TorqueRange[Type] MULTILINETEXT 177 1 PropertyBoundedValue 1
#
GROUP 178 Pset_DamperTypeFireDamper
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM a9ea1bc6-4918-4601-bdca-b509453c7e59 Pset_DamperTypeFireDamper.ActuationType[Type] TEXT 178 1 PEnum_FireDamperActuationType 1
PARAM 25600cfb-cb04-400b-9b69-034ca2d85845 Pset_DamperTypeFireDamper.ClosureRatingEnum[Type] TEXT 178 1 PEnum_FireDamperClosureRating 1
PARAM cfb4892c-3de8-4bc1-bb7a-4ad0442bab4b Pset_DamperTypeFireDamper.FireResistanceRating[Type] TEXT 178 1 IfcLabel 1
PARAM b1443815-8a9e-4981-a58b-2dc739fce5c9 Pset_DamperTypeFireDamper.FusibleLinkTemperature[Type] NUMBER 178 1 IfcThermodynamicTemperatureMeasure 1
#
GROUP 179 Pset_DamperTypeFireSmokeDamper
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 5289d633-4599-4980-81c2-d0ec999a08d4 Pset_DamperTypeFireSmokeDamper.ActuationType[Type] TEXT 179 1 PEnum_FireDamperActuationType 1
PARAM 85f89d16-5d9b-4495-aa40-cbcd6c48a35c Pset_DamperTypeFireSmokeDamper.ClosureRatingEnum[Type] TEXT 179 1 PEnum_FireDamperClosureRating 1
PARAM e82038f5-132c-41e8-81d0-b174765b3b55 Pset_DamperTypeFireSmokeDamper.ControlType[Type] TEXT 179 1 IfcLabel 1
PARAM a545d44b-0eaa-4301-8f13-eafbd656cef4 Pset_DamperTypeFireSmokeDamper.DamperControlType[Type] TEXT 179 1 IfcLabel 1
PARAM 7ed263c5-1b63-4b08-8dd1-a8e8f8720e7f Pset_DamperTypeFireSmokeDamper.FireResistanceRating[Type] TEXT 179 1 IfcLabel 1
PARAM 273d5f58-147f-4a63-84b9-79ff8d6a5c34 Pset_DamperTypeFireSmokeDamper.FusibleLinkTemperature[Type] NUMBER 179 1 IfcThermodynamicTemperatureMeasure 1
#
GROUP 180 Pset_DamperTypeSmokeDamper
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7737712d-0d7b-4b2c-8bf1-ea13366f4d93 Pset_DamperTypeSmokeDamper.ControlType[Type] TEXT 180 1 IfcLabel 1
#
GROUP 181 Pset_DataTransmissionUnit
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 15fde150-6320-44c8-9e6b-e39dd936a328 Pset_DataTransmissionUnit.DataTransmissionUnitUsage[Type] TEXT 181 1 PEnum_DataTransmissionUnitUsage 1
PARAM 9d758a18-c1d9-4c2b-ab45-5af482dee8b5 Pset_DataTransmissionUnit.SerialInterfaceType[Type] TEXT 181 1 PEnum_SerialInterfaceType 1
PARAM bafb18df-62fc-46f3-bbee-a981f448e909 Pset_DataTransmissionUnit.WorkingState[Type] TEXT 181 1 IfcLabel 1
#
GROUP 182 Pset_DesignPoint
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 077898df-2c96-42c7-beef-432c66e81055 Pset_DesignPoint.IsDesignPoint[Type] YESNO 182 1 IfcBoolean 1
#
GROUP 183 Pset_DiscreteAccessoryAnchorBolt
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM c7002279-2123-4604-9086-fecebbf54357 Pset_DiscreteAccessoryAnchorBolt.AnchorBoltDiameter[Type] LENGTH 183 1 IfcPositiveLengthMeasure 1
PARAM 5c34f38b-aa31-4d67-b87f-9ca9b15351ef Pset_DiscreteAccessoryAnchorBolt.AnchorBoltLength[Type] LENGTH 183 1 IfcPositiveLengthMeasure 1
PARAM 85f61c4c-2be5-4fa0-a029-a832bf01d8be Pset_DiscreteAccessoryAnchorBolt.AnchorBoltProtrusionLength[Type] LENGTH 183 1 IfcPositiveLengthMeasure 1
PARAM b448305d-577d-40b0-bf34-c104850e4e4d Pset_DiscreteAccessoryAnchorBolt.AnchorBoltThreadLength[Type] LENGTH 183 1 IfcPositiveLengthMeasure 1
#
GROUP 184 Pset_DiscreteAccessoryColumnShoe
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 0aebbdab-77bf-4dbb-bd7f-ca10096b2f2b Pset_DiscreteAccessoryColumnShoe.ColumnShoeBasePlateDepth[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
PARAM 92eee213-953b-49a6-848c-7255bcdab023 Pset_DiscreteAccessoryColumnShoe.ColumnShoeBasePlateThickness[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
PARAM 3975044e-9e4e-4b51-8321-35c0f2171b74 Pset_DiscreteAccessoryColumnShoe.ColumnShoeBasePlateWidth[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
PARAM 91a97ec7-0dd2-4af5-ad90-80716b46ffb1 Pset_DiscreteAccessoryColumnShoe.ColumnShoeCasingDepth[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
PARAM d266b84c-0da3-479f-b2e2-8f66ba457aec Pset_DiscreteAccessoryColumnShoe.ColumnShoeCasingHeight[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
PARAM cd959c31-9111-4636-9aac-004c1c3aec21 Pset_DiscreteAccessoryColumnShoe.ColumnShoeCasingWidth[Type] LENGTH 184 1 IfcPositiveLengthMeasure 1
#
GROUP 185 Pset_DiscreteAccessoryCornerFixingPlate
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 1258fcb9-fc48-46ad-83f6-c55b3ce52cba Pset_DiscreteAccessoryCornerFixingPlate.CornerFixingPlateFlangeWidthInPlaneX[Type] LENGTH 185 1 IfcPositiveLengthMeasure 1
PARAM e540f6f9-aa54-4903-8830-b6fa77bdc79e Pset_DiscreteAccessoryCornerFixingPlate.CornerFixingPlateFlangeWidthInPlaneZ[Type] LENGTH 185 1 IfcPositiveLengthMeasure 1
PARAM 549bfe9c-32c1-422e-b475-11b43e66eda9 Pset_DiscreteAccessoryCornerFixingPlate.CornerFixingPlateLength[Type] LENGTH 185 1 IfcPositiveLengthMeasure 1
PARAM b6ce0c8b-1d6d-44bc-94f1-39056d7dbfae Pset_DiscreteAccessoryCornerFixingPlate.CornerFixingPlateThickness[Type] LENGTH 185 1 IfcPositiveLengthMeasure 1
#
GROUP 186 Pset_DiscreteAccessoryDiagonalTrussConnector
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 3fb7472c-489c-4142-b832-8fd1b6d4dbcb Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussBaseBarDiameter[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
PARAM c19bb52c-37d3-49ba-8f64-767d5d05501c Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussCrossBarDiameter[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
PARAM 5d56d3b5-093f-41ea-a395-f35e5b79a872 Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussCrossBarSpacing[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
PARAM 2879f131-7556-444d-910b-ff886e53616d Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussHeight[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
PARAM 409b40be-a35f-4eca-a75a-8319bbcd18ae Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussLength[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
PARAM 07f35153-add9-4c36-8a49-42e08a563269 Pset_DiscreteAccessoryDiagonalTrussConnector.DiagonalTrussSecondaryBarDiameter[Type] LENGTH 186 1 IfcPositiveLengthMeasure 1
#
GROUP 187 Pset_DiscreteAccessoryEdgeFixingPlate
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d14c0077-2937-4411-8f9a-bcf48988a6c0 Pset_DiscreteAccessoryEdgeFixingPlate.EdgeFixingPlateFlangeWidthInPlaneX[Type] LENGTH 187 1 IfcPositiveLengthMeasure 1
PARAM 6b8080c2-0175-4cef-9cb9-9a87310c342e Pset_DiscreteAccessoryEdgeFixingPlate.EdgeFixingPlateFlangeWidthInPlaneZ[Type] LENGTH 187 1 IfcPositiveLengthMeasure 1
PARAM 4b5a2427-c3ae-4c8c-a35a-49cbea5e40d7 Pset_DiscreteAccessoryEdgeFixingPlate.EdgeFixingPlateLength[Type] LENGTH 187 1 IfcPositiveLengthMeasure 1
PARAM 7f65d3b2-5bc2-400d-8186-234d70ec9499 Pset_DiscreteAccessoryEdgeFixingPlate.EdgeFixingPlateThickness[Type] LENGTH 187 1 IfcPositiveLengthMeasure 1
#
GROUP 188 Pset_DiscreteAccessoryFixingSocket
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM de7d547a-a227-4ec0-a06d-742592ae6a63 Pset_DiscreteAccessoryFixingSocket.FixingSocketHeight[Type] LENGTH 188 1 IfcPositiveLengthMeasure 1
PARAM 54afac7d-ab95-4089-9697-014ec1b13406 Pset_DiscreteAccessoryFixingSocket.FixingSocketThreadDiameter[Type] LENGTH 188 1 IfcPositiveLengthMeasure 1
PARAM 14fdb4b3-7bdd-4ed3-9fce-ab9e25904334 Pset_DiscreteAccessoryFixingSocket.FixingSocketThreadLength[Type] LENGTH 188 1 IfcPositiveLengthMeasure 1
PARAM 8dc25762-370f-4462-8f84-653a2fcdc88c Pset_DiscreteAccessoryFixingSocket.FixingSocketTypeReference[Type] MULTILINETEXT 188 1 IfcExternalReference 1
#
GROUP 189 Pset_DiscreteAccessoryLadderTrussConnector
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM d37fc4d3-fa62-4407-b790-b4ed74779e22 Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussBaseBarDiameter[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
PARAM 7457085f-043a-4844-8491-fcd6498300db Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussCrossBarDiameter[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
PARAM ce6fd7f7-4a7b-4fd8-988b-9865fc54e98e Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussCrossBarSpacing[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
PARAM baa09d83-0ccb-436c-9345-f0af2b3343d7 Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussHeight[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
PARAM c6fa26e5-1a5d-4f05-9491-c97c1645bf26 Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussLength[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
PARAM da7e0ceb-b2cb-48a2-90ca-c867bb9a73e2 Pset_DiscreteAccessoryLadderTrussConnector.LadderTrussSecondaryBarDiameter[Type] LENGTH 189 1 IfcPositiveLengthMeasure 1
#
GROUP 190 Pset_DiscreteAccessoryStandardFixingPlate
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 4e359bf4-813d-4711-a69f-c7f44105629c Pset_DiscreteAccessoryStandardFixingPlate.StandardFixingPlateDepth[Type] LENGTH 190 1 IfcPositiveLengthMeasure 1
PARAM a5944b7d-390e-4f4e-99ae-2c180e746cd7 Pset_DiscreteAccessoryStandardFixingPlate.StandardFixingPlateThickness[Type] LENGTH 190 1 IfcPositiveLengthMeasure 1
PARAM 742353a6-0eca-40c7-890e-b76aa4593d6d Pset_DiscreteAccessoryStandardFixingPlate.StandardFixingPlateWidth[Type] LENGTH 190 1 IfcPositiveLengthMeasure 1
#
GROUP 191 Pset_DiscreteAccessoryTypeBracket
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 27d2c3b0-9c69-434e-a05d-6c42b212cf74 Pset_DiscreteAccessoryTypeBracket.IsInsulated[Type] YESNO 191 1 IfcBoolean 1
#
GROUP 192 Pset_DiscreteAccessoryTypeCableArranger
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 2581c8b9-c0b9-4e6c-953d-a6a26da7e093 Pset_DiscreteAccessoryTypeCableArranger.CableArrangerPosition[Type] TEXT 192 1 PEnum_ArrangerPositionEnum 1
#
GROUP 193 Pset_DiscreteAccessoryTypeInsulator
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM a14628a2-e0a7-4846-80a9-4fc7d5d04fe7 Pset_DiscreteAccessoryTypeInsulator.BendingStrength[Type] NUMBER 193 1 IfcPressureMeasure 1
PARAM 8c5a3fde-1b69-484e-af19-ae4ca6c080da Pset_DiscreteAccessoryTypeInsulator.BreakdownVoltageTolerance[Type] NUMBER 193 1 IfcElectricVoltageMeasure 1
PARAM fcca0987-1ab7-4bb9-ab3f-5a46d2571aff Pset_DiscreteAccessoryTypeInsulator.CreepageDistance[Type] LENGTH 193 1 IfcPositiveLengthMeasure 1
PARAM efe306e1-1996-470e-a8c7-d1c1a85a7a7c Pset_DiscreteAccessoryTypeInsulator.InstallationMethod[Type] TEXT 193 1 IfcLabel 1
PARAM bb31987b-9bd7-4c75-ae64-b01222773063 Pset_DiscreteAccessoryTypeInsulator.InsulationMethod[Type] TEXT 193 1 PEnum_InsulatorType 1
PARAM 14abf1bc-2d52-4e49-99ea-994fdacc69a3 Pset_DiscreteAccessoryTypeInsulator.InsulationVoltage[Type] NUMBER 193 1 IfcElectricVoltageMeasure 1
PARAM 8c2dacbd-aaaf-4776-85c2-af6565b39403 Pset_DiscreteAccessoryTypeInsulator.LightningPeakVoltage[Type] NUMBER 193 1 IfcElectricVoltageMeasure 1
PARAM 97cbd5c1-b036-40b6-8955-454194dbd655 Pset_DiscreteAccessoryTypeInsulator.OperationalTemperatureRange[Type] MULTILINETEXT 193 1 PropertyBoundedValue 1
PARAM 88838672-11c4-42f0-8d93-19aa03e28c77 Pset_DiscreteAccessoryTypeInsulator.RatedCurrent[Type] MULTILINETEXT 193 1 PropertyBoundedValue 1
PARAM 232a90f3-e067-400f-b46d-4f84292fe573 Pset_DiscreteAccessoryTypeInsulator.RatedVoltage[Type] MULTILINETEXT 193 1 PropertyBoundedValue 1
PARAM f065df44-bb21-4000-ab24-042693db8eff Pset_DiscreteAccessoryTypeInsulator.RMSWithstandVoltage[Type] NUMBER 193 1 IfcElectricVoltageMeasure 1
PARAM afe371bb-6be5-4fb7-a9bd-5bebef0cd962 Pset_DiscreteAccessoryTypeInsulator.Voltage[Type] MULTILINETEXT 193 1 PropertyBoundedValue 1
#
GROUP 194 Pset_DiscreteAccessoryTypeLock
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 5220d679-69ac-4d3d-aeae-ac19bb9c5fdf Pset_DiscreteAccessoryTypeLock.InstallationPlan[Type] MULTILINETEXT 194 1 IfcExternalReference 1
PARAM 730e874c-0afb-43fc-a9cd-4f4a2280a887 Pset_DiscreteAccessoryTypeLock.RequiredClosureSpacing[Type] LENGTH 194 1 IfcPositiveLengthMeasure 1
#
GROUP 195 Pset_DiscreteAccessoryTypeRailBrace
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DESCRIPTION USERMODIFIABLE
#
PARAM 7263c6ce-78d0-49e2-9741-c79bc8a120af Pset_DiscreteAccessoryTypeRailBrace.IsTemporary[Type] YESNO 195 1 IfcBoolean 1
#
GROUP 196 Pset_DiscreteAccessoryTypeRailLubrication
*PARAM GUID NAME DATATYPE DATACATEGORY GROUP VISIBLE DES
gitextract_j6ddelre/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── ENHANCEMENT-REQUEST-FORM.yml │ ├── INQUIRY-FORM.yml │ ├── PROBLEM-REPORT-FORM.yml │ └── config.yml ├── .gitignore ├── Install/ │ ├── Program Files to Install/ │ │ ├── DefaultUserDefinedParameterSets.txt │ │ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt │ │ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL.txt │ │ ├── IFC-SG Property Mapping Export.txt │ │ ├── IFC2X2_ADD1.exp │ │ ├── IFC2X2_ADD1.xsd │ │ ├── IFC2X3_TC1.exp │ │ ├── IFC2X3_TC1.xsd │ │ ├── IFC2x3 COBie 2.4 Design Deliverable.txt │ │ ├── IFC4.exp │ │ ├── IFC4.xsd │ │ ├── IFC4RV.xsd │ │ ├── IFC4X3.xsd │ │ ├── IFCCertifiedEntitiesAndPSets.json │ │ ├── IFCExporterUIOverride.addin │ │ ├── LICENSE.rtf │ │ ├── Revit.IFC.addin │ │ └── bundle/ │ │ ├── Contents/ │ │ │ └── Resources/ │ │ │ └── ADSKIFCExporterHelp.htm │ │ └── PackageContents.xml │ └── RevitIFCSetupWix/ │ ├── Product.wxs │ ├── RevitIFCSetupWix.csproj │ ├── RevitIFCSetupWix.wixproj │ └── buildInstaller.bat ├── README.md ├── Revit.IFC.sln ├── Source/ │ ├── IFCExporterUIOverride/ │ │ ├── Autodesk.IFC.Export.UI.addin │ │ ├── COBieCompanyInfoTab.xaml │ │ ├── COBieCompanyInfoTab.xaml.cs │ │ ├── COBieProjectInfoTab.xaml │ │ ├── COBieProjectInfoTab.xaml.cs │ │ ├── CreateAddinFile.bat │ │ ├── CreateResource.bat │ │ ├── IFC2X2_ADD1.xsd │ │ ├── IFC2X3_TC1.xsd │ │ ├── IFC4.xsd │ │ ├── IFCAddressInformationUI.xaml │ │ ├── IFCAddressInformationUI.xaml.cs │ │ ├── IFCCategoryMapping/ │ │ │ ├── IFCCategoryMapping.xaml │ │ │ ├── IFCCategoryMapping.xaml.cs │ │ │ ├── IFCCopyTemplate.xaml │ │ │ ├── IFCCopyTemplate.xaml.cs │ │ │ ├── IFCDeleteTemplate.xaml │ │ │ ├── IFCDeleteTemplate.xaml.cs │ │ │ ├── IFCNewTemplate.xaml │ │ │ ├── IFCNewTemplate.xaml.cs │ │ │ ├── IFCRenameTemplate.xaml │ │ │ └── IFCRenameTemplate.xaml.cs │ │ ├── IFCClassificationUI.xaml │ │ ├── IFCClassificationUI.xaml.cs │ │ ├── IFCCommandOverrideApplication.cs │ │ ├── IFCEntityTree/ │ │ │ ├── BrowseIFCEntityServer.cs │ │ │ ├── EntityTree.xaml │ │ │ ├── EntityTree.xaml.cs │ │ │ ├── PredefinedTypeSelection.xaml │ │ │ └── PredefinedTypeSelection.xaml.cs │ │ ├── IFCExport.xaml │ │ ├── IFCExport.xaml.cs │ │ ├── IFCExportResult.cs │ │ ├── IFCExporterUI.csproj │ │ ├── IFCExporterUI.props │ │ ├── IFCExporterUIOverride.csproj │ │ ├── IFCExporterUIWindow.xaml │ │ ├── IFCExporterUIWindow.xaml.cs │ │ ├── IFCFileFormatAttributes.cs │ │ ├── IFCFileHeaderInformationUI.xaml │ │ ├── IFCFileHeaderInformationUI.xaml.cs │ │ ├── IFCLinkedFileExportAs.cs │ │ ├── IFCNewExportSetup.xaml │ │ ├── IFCNewExportSetup.xaml.cs │ │ ├── IFCPropertyMapping/ │ │ │ ├── ComboBoxFilteringUtilities.cs │ │ │ ├── IFCNotificationMessageBox.xaml │ │ │ ├── IFCNotificationMessageBox.xaml.cs │ │ │ ├── IFCPropertyFilter.xaml │ │ │ ├── IFCPropertyFilter.xaml.cs │ │ │ ├── IFCPropertyMapping.xaml │ │ │ ├── IFCPropertyMapping.xaml.cs │ │ │ ├── IFCPropertyMappingModel.cs │ │ │ ├── IFCRevitPropertySelector.xaml │ │ │ ├── IFCRevitPropertySelector.xaml.cs │ │ │ ├── IFCUserDefinedPropertyMapping.xaml │ │ │ └── IFCUserDefinedPropertyMapping.xaml.cs │ │ ├── IFCPropertySets.cs │ │ ├── IFCRenameExportSetup.xaml │ │ ├── IFCRenameExportSetup.xaml.cs │ │ ├── IFCSitePlacementAttributes.cs │ │ ├── IFCSpaceBoundaryAttributes.cs │ │ ├── IFCTemplateData.cs │ │ ├── IFCUIUtility.cs │ │ ├── IFCVersionExtensions.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.de.resx │ │ │ ├── Resources.fr.resx │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Win32API.cs │ ├── Revit.IFC.Common/ │ │ ├── Enums/ │ │ │ ├── CommonEnum.cs │ │ │ ├── IFC2X2_ADD1EntityType.cs │ │ │ ├── IFC2X3_TC1EntityType.cs │ │ │ ├── IFC2xEntityType.cs │ │ │ ├── IFC4EntityType.cs │ │ │ ├── IFC4x1EntityType.cs │ │ │ ├── IFC4x2EntityType.cs │ │ │ ├── IFC4x3EntityType.cs │ │ │ ├── IFCEntityType.cs │ │ │ └── IFCKnownMVDAndER.cs │ │ ├── Extension/ │ │ │ ├── IFCAddress.cs │ │ │ ├── IFCAddressItem.cs │ │ │ ├── IFCClassification.cs │ │ │ ├── IFCClassificationMgr.cs │ │ │ ├── IFCFileHeader.cs │ │ │ └── IFCFileHeaderItem.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Revit.IFC.Common.csproj │ │ └── Utility/ │ │ ├── AllocatedGeometryObjectCache.cs │ │ ├── COBieCompanyInfo.cs │ │ ├── COBieProjectInfo.cs │ │ ├── CoordReferenceInfo.cs │ │ ├── DirectoryUtil.cs │ │ ├── ElementComparer.cs │ │ ├── IFCAnyHandleUtil.cs │ │ ├── IFCCompatibilityType.cs │ │ ├── IFCEntityTrie.cs │ │ ├── IFCFuzzyXYZ.cs │ │ ├── IfcSchemaEntityNode.cs │ │ ├── IfcSchemaEntityTree.cs │ │ ├── MathUtil.cs │ │ ├── OptionsUtil.cs │ │ ├── ProcessIFCXMLSchema.cs │ │ ├── RevitStatusBar.cs │ │ └── SolidMeshGeometryInfo.cs │ ├── Revit.IFC.Export/ │ │ ├── Exporter/ │ │ │ ├── AreaSchemeExporter.cs │ │ │ ├── AssemblyInstanceExporter.cs │ │ │ ├── AssemblyInstanceInfo.cs │ │ │ ├── BeamExporter.cs │ │ │ ├── BodyData.cs │ │ │ ├── BodyExporter.cs │ │ │ ├── BodyExporterOptions.cs │ │ │ ├── BoundingBoxExporter.cs │ │ │ ├── CeilingExporter.cs │ │ │ ├── ConnectorExporter.cs │ │ │ ├── CurtainSystemExporter.cs │ │ │ ├── CurveElementExporter.cs │ │ │ ├── DoorWindowExporter.cs │ │ │ ├── DuctInsulationExporter.cs │ │ │ ├── DuctLiningExporter.cs │ │ │ ├── Exporter.cs │ │ │ ├── ExporterInitializer.cs │ │ │ ├── ExporterInitializer_PredefPset.cs │ │ │ ├── ExporterInitializer_PsetDef.cs │ │ │ ├── ExporterInitializer_QsetDef.cs │ │ │ ├── ExtrusionExporter.cs │ │ │ ├── FabricSheetExporter.cs │ │ │ ├── FabricationPartExporter.cs │ │ │ ├── FamilyInstanceExporter.cs │ │ │ ├── FilledRegionExporter.cs │ │ │ ├── FloorExporter.cs │ │ │ ├── FootingExporter.cs │ │ │ ├── GenericElementExporter.cs │ │ │ ├── GenericMEPExporter.cs │ │ │ ├── GridExporter.cs │ │ │ ├── GroupExporter.cs │ │ │ ├── GroupInfo.cs │ │ │ ├── HandleAndData.cs │ │ │ ├── HostObjectExporter.cs │ │ │ ├── HostedSweepExporter.cs │ │ │ ├── IFCEntityAndPsetList.cs │ │ │ ├── IFCExportBodyParams.cs │ │ │ ├── InsulationExporter.cs │ │ │ ├── PartExporter.cs │ │ │ ├── PileExporter.cs │ │ │ ├── PipeInsulationExporter.cs │ │ │ ├── PropertySet/ │ │ │ │ ├── AttributeEntry.cs │ │ │ │ ├── AttributeEntryMap.cs │ │ │ │ ├── AttributeSetDescription.cs │ │ │ │ ├── Calculators/ │ │ │ │ │ ├── AreaCalculator.cs │ │ │ │ │ ├── ConcealedCalculator.cs │ │ │ │ │ ├── ConcealedCeiling.cs │ │ │ │ │ ├── ConcealedCeilingOffset.cs │ │ │ │ │ ├── ConcealedFlooring.cs │ │ │ │ │ ├── ConcealedFlooringOffset.cs │ │ │ │ │ ├── CounterSlopeCalculator.cs │ │ │ │ │ ├── CrossSectionAreaCalculator.cs │ │ │ │ │ ├── DepthCalculator.cs │ │ │ │ │ ├── DiameterCalculator.cs │ │ │ │ │ ├── ExtendToStructureCalculator.cs │ │ │ │ │ ├── FinishCalculator.cs │ │ │ │ │ ├── FireRatingCalculator.cs │ │ │ │ │ ├── GrossAreaCalculator.cs │ │ │ │ │ ├── GrossCeilingAreaCalculator.cs │ │ │ │ │ ├── GrossCrossSectionAreaCalculator.cs │ │ │ │ │ ├── GrossFloorAreaCalculator.cs │ │ │ │ │ ├── GrossSideAreaCalculator.cs │ │ │ │ │ ├── GrossSurfaceAreaCalculator.cs │ │ │ │ │ ├── GrossVolumeCalculator.cs │ │ │ │ │ ├── GrossWeightCalculator.cs │ │ │ │ │ ├── HeightCalculator.cs │ │ │ │ │ ├── ISOCD3766BendingEndHookCalculator.cs │ │ │ │ │ ├── ISOCD3766BendingStartHookCalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeCode.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterACalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterBCalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterCCalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterDCalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterECalculator.cs │ │ │ │ │ ├── ISOCD3766ShapeParameterRCalculator.cs │ │ │ │ │ ├── IsExternalCalculator.cs │ │ │ │ │ ├── LengthCalculator.cs │ │ │ │ │ ├── LoadBearingCalculator.cs │ │ │ │ │ ├── LongitudinalBarNominalDiameter.cs │ │ │ │ │ ├── LongitudinalBarSpacing.cs │ │ │ │ │ ├── MeshLengthCalculator.cs │ │ │ │ │ ├── MeshWidthCalculator.cs │ │ │ │ │ ├── NetAreaCalculator.cs │ │ │ │ │ ├── NetCrossSectionAreaCalculator.cs │ │ │ │ │ ├── NetFloorAreaCalculator.cs │ │ │ │ │ ├── NetSideAreaCalculator.cs │ │ │ │ │ ├── NetSurfaceAreaCalculator.cs │ │ │ │ │ ├── NetVolumeCalculator.cs │ │ │ │ │ ├── NetWeightCalculator.cs │ │ │ │ │ ├── NosingLengthCalculator.cs │ │ │ │ │ ├── NumberOfRiserCalculator.cs │ │ │ │ │ ├── NumberOfStoreysCalculator.cs │ │ │ │ │ ├── NumberOfTreadsCalculator.cs │ │ │ │ │ ├── OuterSurfaceAreaCalculator.cs │ │ │ │ │ ├── PerimeterCalculator.cs │ │ │ │ │ ├── ProjectedAreaCalculator.cs │ │ │ │ │ ├── ReferenceCalculator.cs │ │ │ │ │ ├── RiserHeightCalculator.cs │ │ │ │ │ ├── RollCalculator.cs │ │ │ │ │ ├── ShapeCalculator.cs │ │ │ │ │ ├── SlabLoadBearingCalculator.cs │ │ │ │ │ ├── SlopeCalculator.cs │ │ │ │ │ ├── SpaceLevelAreaCalculator.cs │ │ │ │ │ ├── SpaceLevelDescriptionCalculator.cs │ │ │ │ │ ├── SpanCalculator.cs │ │ │ │ │ ├── SpecificZoneCalculator.cs │ │ │ │ │ ├── TemperatureCalculator.cs │ │ │ │ │ ├── TransverseBarNominalDiameter.cs │ │ │ │ │ ├── TransverseBarSpacing.cs │ │ │ │ │ ├── TreadLengthAtInnerSideCalculator.cs │ │ │ │ │ ├── TreadLengthAtOffsetCalculator.cs │ │ │ │ │ ├── TreadLengthCalculator.cs │ │ │ │ │ ├── VolumeCalculator.cs │ │ │ │ │ ├── WaistThicknessCalculator.cs │ │ │ │ │ ├── WalkingLineOffsetCalculator.cs │ │ │ │ │ └── WidthCalculator.cs │ │ │ │ ├── ClassificationUtil.cs │ │ │ │ ├── Description.cs │ │ │ │ ├── DescriptionCalculator.cs │ │ │ │ ├── Entry.cs │ │ │ │ ├── EntryMap.cs │ │ │ │ ├── ExporterInitializer_PsetDefIFC2X2Enum.cs │ │ │ │ ├── ExporterInitializer_PsetDefIFC2X3Enum.cs │ │ │ │ ├── ExporterInitializer_PsetDefIFC4Enum.cs │ │ │ │ ├── ExporterInitializer_PsetDefIFC4X3Enum.cs │ │ │ │ ├── PreDefinedPropertySetDescription.cs │ │ │ │ ├── PreDefinedPropertySetEntry.cs │ │ │ │ ├── PreDefinedPropertySetEntryMap.cs │ │ │ │ ├── PropertyCalculator.cs │ │ │ │ ├── PropertySetDescription.cs │ │ │ │ ├── PropertySetEntry.cs │ │ │ │ ├── PropertySetEntryMap.cs │ │ │ │ ├── PropertySetEntryUtil.cs │ │ │ │ ├── PropertyUtil.cs │ │ │ │ ├── QuantityDescription.cs │ │ │ │ ├── QuantityEntry.cs │ │ │ │ └── QuantityEntryMap.cs │ │ │ ├── ProxyElementExporter.cs │ │ │ ├── RailingExporter.cs │ │ │ ├── RampExporter.cs │ │ │ ├── RebarCouplerExporter.cs │ │ │ ├── RebarExporter.cs │ │ │ ├── RoofExporter.cs │ │ │ ├── SiteExporter.cs │ │ │ ├── SpaceBoundary.cs │ │ │ ├── SpaceOccupantInfo.cs │ │ │ ├── SpatialElementExporter.cs │ │ │ ├── StairRampContainerInfo.cs │ │ │ ├── StairsExporter.cs │ │ │ ├── StructuralMemberExporter.cs │ │ │ ├── SurfaceExporter.cs │ │ │ ├── SweptSolidExporter.cs │ │ │ ├── TextNoteExporter.cs │ │ │ ├── TypePropertyInfo.cs │ │ │ ├── WallConnectionData.cs │ │ │ ├── WallExporter.cs │ │ │ ├── WallSweepExporter.cs │ │ │ ├── ZoneExporter.cs │ │ │ └── ZoneInfo.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Revit.IFC.Export.csproj │ │ ├── Toolkit/ │ │ │ ├── IFC4Enums.cs │ │ │ ├── IFC4x3Enums.cs │ │ │ ├── IFCDataUtil.cs │ │ │ ├── IFCEnums.cs │ │ │ ├── IFCInstanceExporter.cs │ │ │ ├── IFCSubElementEnums.cs │ │ │ ├── IFCValidateEntry.cs │ │ │ ├── PlacementSetter.cs │ │ │ └── TransformSetter.cs │ │ └── Utility/ │ │ ├── AssemblyInstanceCache.cs │ │ ├── AttributeCache.cs │ │ ├── BaseRelationsCache.cs │ │ ├── BooleanPropertyInfoCache.cs │ │ ├── CategoryUtil.cs │ │ ├── ClassificationCache.cs │ │ ├── ClassificationLocationCache.cs │ │ ├── ContainmentCache.cs │ │ ├── CurveAnnotationCache.cs │ │ ├── DoorWindowDelayedOpeningCreator.cs │ │ ├── DoorWindowDelayedOpeningCreatorCache.cs │ │ ├── DoorWindowInfo.cs │ │ ├── DoorWindowOpeningInfo.cs │ │ ├── DoorWindowUtil.cs │ │ ├── DoublePropertyInfoCache.cs │ │ ├── DummyHostCache.cs │ │ ├── ElementFilteringUtil.cs │ │ ├── ElementOrConnector.cs │ │ ├── ElementToHandleCache.cs │ │ ├── ElementTypeToHandleCache.cs │ │ ├── ExportOptionsCache.cs │ │ ├── ExportTypeOverrideHelper.cs │ │ ├── ExporterCacheManager.cs │ │ ├── ExporterStateManager.cs │ │ ├── ExporterUtil.cs │ │ ├── FabricParams.cs │ │ ├── FamilyExporterUtil.cs │ │ ├── FamilyTypeInfo.cs │ │ ├── FootPrintInfo.cs │ │ ├── GUIDOptions.cs │ │ ├── GUIDUtil.cs │ │ ├── GeometryUtil.cs │ │ ├── GroupCache.cs │ │ ├── HandleToElementCache.cs │ │ ├── HostPartsCache.cs │ │ ├── IFCEnumExtensions.cs │ │ ├── IFCExchangeRequirements.cs │ │ ├── IFCExportConfiguration.cs │ │ ├── IFCExportConfigurationsMap.cs │ │ ├── IFCExportInfoPair.cs │ │ ├── IFCFacilityTypes.cs │ │ ├── IFCPhaseAttributes.cs │ │ ├── IFCVersionAttributes.cs │ │ ├── IntegerPropertyInfoCache.cs │ │ ├── LevelInfoCache.cs │ │ ├── LevelUtil.cs │ │ ├── LinkedFileExportAs.cs │ │ ├── LogicalPropertyInfoCache.cs │ │ ├── MEPCache.cs │ │ ├── MaterialAndProfile.cs │ │ ├── MaterialConstituentCache.cs │ │ ├── MaterialConstituentSetCache.cs │ │ ├── MaterialLayerSetCache.cs │ │ ├── MaterialLayerSetInfo.cs │ │ ├── MaterialPropertiesUtil.cs │ │ ├── MaterialRelationsCache.cs │ │ ├── MaterialSetUsageCache.cs │ │ ├── NamingOptions.cs │ │ ├── NamingUtil.cs │ │ ├── OpeningUtil.cs │ │ ├── ParamExprErrorListener.cs │ │ ├── ParamExprGrammar.g4 │ │ ├── ParamExprListener.cs │ │ ├── ParamExprLogger.cs │ │ ├── ParamExprResolver.cs │ │ ├── ParamExprResolverParser.g4 │ │ ├── ParameterCache.cs │ │ ├── ParameterElementCache.cs │ │ ├── ParameterUtil.cs │ │ ├── PartExportedCache.cs │ │ ├── PartOrGeometry.cs │ │ ├── PresentationLayerSetCache.cs │ │ ├── PresentationStyleAssignmentCache.cs │ │ ├── ProductWrapper.cs │ │ ├── PropertyInfoCache.cs │ │ ├── PropertyMap.cs │ │ ├── PropertySetCache.cs │ │ ├── PropertySetOptions.cs │ │ ├── RepresentationUtil.cs │ │ ├── SimpleSweptSolidAnalyzer.cs │ │ ├── SiteExportInfo.cs │ │ ├── SpaceBoundaryCache.cs │ │ ├── SpaceBoundingElementUtil.cs │ │ ├── SpaceInfo.cs │ │ ├── SpaceOccupantInfoCache.cs │ │ ├── StairRampContainerInfoCache.cs │ │ ├── StringPropertyInfoCache.cs │ │ ├── SystemsCache.cs │ │ ├── TemporaryPartsCache.cs │ │ ├── TriangleMergeUtil.cs │ │ ├── TypeObjectsCache.cs │ │ ├── TypePropertyInfoCache.cs │ │ ├── TypeRelationsCache.cs │ │ ├── UnitMappingUtil.cs │ │ ├── UnitUtil.cs │ │ ├── UnitsCache.cs │ │ ├── WallConnectionDataCache.cs │ │ ├── WallCrossSectionCache.cs │ │ └── ZoneInfoCache.cs │ ├── Revit.IFC.Import/ │ │ ├── Data/ │ │ │ ├── IFCAddress.cs │ │ │ ├── IFCAdvancedBrep.cs │ │ │ ├── IFCAdvancedFace.cs │ │ │ ├── IFCAnnotation.cs │ │ │ ├── IFCApplication.cs │ │ │ ├── IFCBSplineCurve.cs │ │ │ ├── IFCBSplineCurveWithKnots.cs │ │ │ ├── IFCBSplineSurface.cs │ │ │ ├── IFCBSplineSurfaceWithKnots.cs │ │ │ ├── IFCBlock.cs │ │ │ ├── IFCBooleanOperand.cs │ │ │ ├── IFCBooleanResult.cs │ │ │ ├── IFCBoundedCurve.cs │ │ │ ├── IFCBuilding.cs │ │ │ ├── IFCBuildingElement.cs │ │ │ ├── IFCBuildingElementComponent.cs │ │ │ ├── IFCBuildingElementPart.cs │ │ │ ├── IFCBuildingElementProxy.cs │ │ │ ├── IFCBuildingStorey.cs │ │ │ ├── IFCCSGSolid.cs │ │ │ ├── IFCCartesianPointList3D.cs │ │ │ ├── IFCCartesianTransformOperator.cs │ │ │ ├── IFCCircle.cs │ │ │ ├── IFCClosedShell.cs │ │ │ ├── IFCColourRgb.cs │ │ │ ├── IFCColourRgbList.cs │ │ │ ├── IFCColourSpecification.cs │ │ │ ├── IFCComplexProperty.cs │ │ │ ├── IFCCompositeCurve.cs │ │ │ ├── IFCConic.cs │ │ │ ├── IFCConnectedFaceSet.cs │ │ │ ├── IFCCsgPrimitive3D.cs │ │ │ ├── IFCCurve.cs │ │ │ ├── IFCCylindricalSurface.cs │ │ │ ├── IFCDerivedProfileDef.cs │ │ │ ├── IFCDistributionPort.cs │ │ │ ├── IFCDistributionSystem.cs │ │ │ ├── IFCDoorLiningProperties.cs │ │ │ ├── IFCDoorPanelProperties.cs │ │ │ ├── IFCDoorStyle.cs │ │ │ ├── IFCDoorType.cs │ │ │ ├── IFCDoorWindowPropertyBase.cs │ │ │ ├── IFCEdge.cs │ │ │ ├── IFCEdgeCurve.cs │ │ │ ├── IFCEdgeLoop.cs │ │ │ ├── IFCElement.cs │ │ │ ├── IFCElementAssembly.cs │ │ │ ├── IFCElementComponent.cs │ │ │ ├── IFCElementQuantity.cs │ │ │ ├── IFCElementType.cs │ │ │ ├── IFCElementarySurface.cs │ │ │ ├── IFCEllipse.cs │ │ │ ├── IFCEntity.cs │ │ │ ├── IFCExtrudedAreaSolid.cs │ │ │ ├── IFCFace.cs │ │ │ ├── IFCFaceBasedSurfaceModel.cs │ │ │ ├── IFCFaceBound.cs │ │ │ ├── IFCFaceSurface.cs │ │ │ ├── IFCFacetedBrep.cs │ │ │ ├── IFCFeatureElement.cs │ │ │ ├── IFCFeatureElementSubtraction.cs │ │ │ ├── IFCGeometricSet.cs │ │ │ ├── IFCGeotechnicalElement.cs │ │ │ ├── IFCGeotechnicalStratum.cs │ │ │ ├── IFCGrid.cs │ │ │ ├── IFCGridAxis.cs │ │ │ ├── IFCGroup.cs │ │ │ ├── IFCHalfSpaceSolid.cs │ │ │ ├── IFCImportFile.cs │ │ │ ├── IFCIndexedColourMap.cs │ │ │ ├── IFCIndexedPolyCurve.cs │ │ │ ├── IFCIndexedPolygonalFace.cs │ │ │ ├── IFCLine.cs │ │ │ ├── IFCLocation.cs │ │ │ ├── IFCLoop.cs │ │ │ ├── IFCManifoldSolidBrep.cs │ │ │ ├── IFCMappedItem.cs │ │ │ ├── IFCMaterial.cs │ │ │ ├── IFCMaterialConstituent.cs │ │ │ ├── IFCMaterialConstituentSet.cs │ │ │ ├── IFCMaterialLayer.cs │ │ │ ├── IFCMaterialLayerSet.cs │ │ │ ├── IFCMaterialLayerSetUsage.cs │ │ │ ├── IFCMaterialLayerWithOffsets.cs │ │ │ ├── IFCMaterialList.cs │ │ │ ├── IFCMaterialProfile.cs │ │ │ ├── IFCMaterialProfileSet.cs │ │ │ ├── IFCMaterialProfileSetUsage.cs │ │ │ ├── IFCMaterialProfileSetUsageTapering.cs │ │ │ ├── IFCObject.cs │ │ │ ├── IFCObjectDefinition.cs │ │ │ ├── IFCOffsetCurve2D.cs │ │ │ ├── IFCOffsetCurve3D.cs │ │ │ ├── IFCOpeningElement.cs │ │ │ ├── IFCOrientedEdge.cs │ │ │ ├── IFCOwnerHistory.cs │ │ │ ├── IFCPhysicalComplexQuantity.cs │ │ │ ├── IFCPhysicalQuantity.cs │ │ │ ├── IFCPhysicalSimpleQuantity.cs │ │ │ ├── IFCPlane.cs │ │ │ ├── IFCPolyLoop.cs │ │ │ ├── IFCPolyline.cs │ │ │ ├── IFCPort.cs │ │ │ ├── IFCPostalAddress.cs │ │ │ ├── IFCPresentationItem.cs │ │ │ ├── IFCPresentationLayerAssignment.cs │ │ │ ├── IFCPresentationLayerWithStyle.cs │ │ │ ├── IFCPresentationStyle.cs │ │ │ ├── IFCPresentationStyleAssignment.cs │ │ │ ├── IFCProduct.cs │ │ │ ├── IFCProductRepresentation.cs │ │ │ ├── IFCProfileDef.cs │ │ │ ├── IFCProject.cs │ │ │ ├── IFCProperty.cs │ │ │ ├── IFCPropertyBoundedValue.cs │ │ │ ├── IFCPropertyMapping.cs │ │ │ ├── IFCPropertySet.cs │ │ │ ├── IFCPropertySetDefinition.cs │ │ │ ├── IFCPropertyTableValue.cs │ │ │ ├── IFCPropertyValue.cs │ │ │ ├── IFCProxy.cs │ │ │ ├── IFCRationalBSplineSurfaceWithKnots.cs │ │ │ ├── IFCRepresentation.cs │ │ │ ├── IFCRepresentationContext.cs │ │ │ ├── IFCRepresentationItem.cs │ │ │ ├── IFCRepresentationMap.cs │ │ │ ├── IFCRevolvedAreaSolid.cs │ │ │ ├── IFCRoot.cs │ │ │ ├── IFCSectionedSolid.cs │ │ │ ├── IFCSectionedSolidHorizontal.cs │ │ │ ├── IFCSectionedSurface.cs │ │ │ ├── IFCShellBasedSurfaceModel.cs │ │ │ ├── IFCSimpleProperty.cs │ │ │ ├── IFCSite.cs │ │ │ ├── IFCSolidModel.cs │ │ │ ├── IFCSolidStratum.cs │ │ │ ├── IFCSpace.cs │ │ │ ├── IFCSpatialElement.cs │ │ │ ├── IFCSpatialStructureElement.cs │ │ │ ├── IFCSpatialZone.cs │ │ │ ├── IFCStyledItem.cs │ │ │ ├── IFCSurface.cs │ │ │ ├── IFCSurfaceCurveSweptAreaSolid.cs │ │ │ ├── IFCSurfaceOfLinearExtrusion.cs │ │ │ ├── IFCSurfaceOfRevolution.cs │ │ │ ├── IFCSurfaceStyle.cs │ │ │ ├── IFCSurfaceStyleShading.cs │ │ │ ├── IFCSweptAreaSolid.cs │ │ │ ├── IFCSweptDiskSolid.cs │ │ │ ├── IFCSweptSurface.cs │ │ │ ├── IFCSystem.cs │ │ │ ├── IFCTopologicalRepresentationItem.cs │ │ │ ├── IFCTriangulatedFaceSet.cs │ │ │ ├── IFCTrimmedCurve.cs │ │ │ ├── IFCTypeObject.cs │ │ │ ├── IFCTypeProduct.cs │ │ │ ├── IFCUnit.cs │ │ │ ├── IFCUnits.cs │ │ │ ├── IFCVertex.cs │ │ │ ├── IFCVertexPoint.cs │ │ │ ├── IFCWindowLiningProperties.cs │ │ │ ├── IFCWindowPanelProperties.cs │ │ │ ├── IFCZone.cs │ │ │ ├── IIFCMaterialSelect.cs │ │ │ ├── IfcMaterialProfileWithOffsets.cs │ │ │ ├── IfcPolygonalFaceSet.cs │ │ │ └── IfcTessellatedFaceSet.cs │ │ ├── Enums/ │ │ │ ├── IFCEnums.cs │ │ │ ├── IFCSchemaVersion.cs │ │ │ ├── IFCShapeBuilderType.cs │ │ │ └── IFCSharedParameters.cs │ │ ├── Geometry/ │ │ │ ├── IFCGeometryUtil.cs │ │ │ ├── IFCPoint.cs │ │ │ ├── IFCVirtualGridIntersection.cs │ │ │ └── IIFCBooleanOperand.cs │ │ ├── Importer.cs │ │ ├── Processors/ │ │ │ └── IFCDefaultProcessor.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Revit.IFC.Import.csproj │ │ └── Utility/ │ │ ├── BrepBuilderScope.cs │ │ ├── BuilderScope.cs │ │ ├── IFCCategoryUtil.cs │ │ ├── IFCDataUtil.cs │ │ ├── IFCElementUtil.cs │ │ ├── IFCGUIDUtil.cs │ │ ├── IFCImportCache.cs │ │ ├── IFCImportHandleUtil.cs │ │ ├── IFCImportHybridInfo.cs │ │ ├── IFCImportLog.cs │ │ ├── IFCImportOptions.cs │ │ ├── IFCImportShapeEditScope.cs │ │ ├── IFCMaterialCache.cs │ │ ├── IFCMaterialInfo.cs │ │ ├── IFCNamingUtil.cs │ │ ├── IFCObjectReferenceSelect.cs │ │ ├── IFCParameterSetByGroup.cs │ │ ├── IFCSolidInfo.cs │ │ ├── IFCUnitUtil.cs │ │ ├── ParametersToSet.cs │ │ ├── ProcessIFCRelation.cs │ │ └── TessellatedShapeBuilderScope.cs │ ├── Revit.IFC.Import.Core/ │ │ ├── Processors/ │ │ │ ├── IFCNavisProcessor.cs │ │ │ └── IIFCFileProcessor.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── Revit.IFC.Import.Core.csproj │ └── RevitIFCTools/ │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── GeneratePsetDefWin.xaml │ ├── GeneratePsetDefWin.xaml.cs │ ├── HtmlPsetDefinitionParser.cs │ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type.txt │ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt │ ├── IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL_grouped.txt │ ├── IFC Shared Parameters-RevitIFCBuiltIn.txt │ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL.txt │ ├── IFC Shared Parameters-RevitIFCBuiltIn_ALL_grouped.txt │ ├── IFC2X2_ADD1.exp │ ├── IFC2X2_ADD1.xsd │ ├── IFC2X3_TC1.exp │ ├── IFC2X3_TC1.xsd │ ├── IFC4.exp │ ├── IFC4.xsd │ ├── IFC4RV.xsd │ ├── IFC4X3_ADD2.exp │ ├── IFC4X3_ADD2.xsd │ ├── IFC4_AllProjectParameters_2023.rvt │ ├── IFC4_Shared_Parameters.txt │ ├── IFCCertifiedEntitiesAndPSets.json │ ├── IFCEntityAndPsetList.cs │ ├── IFCEntityListWin.xaml │ ├── IFCEntityListWin.xaml.cs │ ├── IFC_Schemas/ │ │ └── .gitattributes │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ParameterExpr/ │ │ ├── ExprTester.xaml │ │ ├── ExprTester.xaml.cs │ │ ├── Logger.cs │ │ └── ParameterExprParserTest.cs │ ├── ProcessPsetDefinition.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertySet/ │ │ ├── ComplexProperty.cs │ │ ├── LanguageType.cs │ │ ├── NameAlias.cs │ │ ├── PropertyBoundedValue.cs │ │ ├── PropertyDataType.cs │ │ ├── PropertyEnumItem.cs │ │ ├── PropertyEnumeratedValue.cs │ │ ├── PropertyListValue.cs │ │ ├── PropertyReferenceValue.cs │ │ ├── PropertySingleValue.cs │ │ ├── PropertyTableValue.cs │ │ ├── PsetDefinition.cs │ │ └── PsetProperty.cs │ ├── RevitIFCTools.csproj │ └── RevitIFCToolsEnum.cs ├── VSProps/ │ ├── Revit.CSharp.Sdk.props │ ├── Revit.CSharp.Sdk.targets │ ├── Revit.Common.Sdk.props │ ├── Revit.Common.Sdk.targets │ └── Revit.NetVersion.props └── contributing.md
Showing preview only (939K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (8723 symbols across 564 files)
FILE: Source/IFCExporterUIOverride/COBieCompanyInfoTab.xaml.cs
class COBieCompanyInfoTab (line 22) | public partial class COBieCompanyInfoTab : UserControl
method COBieCompanyInfoTab (line 33) | public COBieCompanyInfoTab(string compInfoStr)
method button_TypeSource_Click (line 56) | private void button_TypeSource_Click(object sender, RoutedEventArgs e)
method textBox_TypeSource_TextChanged (line 61) | private void textBox_TypeSource_TextChanged(object sender, TextChanged...
method textBox_CompanyType_GotFocus (line 66) | private void textBox_CompanyType_GotFocus(object sender, RoutedEventAr...
method textBox_CompanyPhone_GotFocus (line 77) | private void textBox_CompanyPhone_GotFocus(object sender, RoutedEventA...
method textBox_CompanyEmail_GotFocus (line 88) | private void textBox_CompanyEmail_GotFocus(object sender, RoutedEventA...
method textBox_CompanyPhone_LostFocus (line 98) | private void textBox_CompanyPhone_LostFocus(object sender, RoutedEvent...
method ValidateCompanyPhone (line 108) | private void ValidateCompanyPhone()
method textBox_CompanyEmail_LostFocus (line 128) | private void textBox_CompanyEmail_LostFocus(object sender, RoutedEvent...
method ValidateCompanyEmail (line 138) | private void ValidateCompanyEmail()
method PopulateCompanyInfo (line 158) | private void PopulateCompanyInfo()
method PopulatePage (line 171) | private void PopulatePage()
FILE: Source/IFCExporterUIOverride/COBieProjectInfoTab.xaml.cs
class COBieProjectInfoTab (line 23) | public partial class COBieProjectInfoTab : UserControl
method COBieProjectInfoTab (line 35) | public COBieProjectInfoTab(string projInfoStr)
method button_Source_Click (line 65) | private void button_Source_Click(object sender, RoutedEventArgs e)
method textBox_TypeSource_TextChanged (line 70) | private void textBox_TypeSource_TextChanged(object sender, TextChanged...
method PopulateProjectInfo (line 75) | private void PopulateProjectInfo()
method PopulatePage (line 87) | private void PopulatePage()
method textBox_BuildingType_TextChanged (line 107) | private void textBox_BuildingType_TextChanged(object sender, TextChang...
method textBox_BuildingType_GotFocus (line 113) | private void textBox_BuildingType_GotFocus(object sender, RoutedEventA...
FILE: Source/IFCExporterUIOverride/IFCAddressInformationUI.xaml.cs
class IFCAddressInformation (line 33) | public partial class IFCAddressInformation : ChildWindow
method getUserDefinedStringFromIFCPurposeList (line 50) | private string getUserDefinedStringFromIFCPurposeList()
method IFCAddressInformation (line 59) | public IFCAddressInformation(IFCExportConfiguration configuration)
method OnInit (line 85) | private void OnInit(object sender, RoutedEventArgs e)
method PurposeComboBox_Initialized (line 95) | private void PurposeComboBox_Initialized(object sender, EventArgs e)
method PurposeComboBox_SelectionChanged (line 108) | private void PurposeComboBox_SelectionChanged(object sender, Selection...
method buttonOK_Click (line 127) | private void buttonOK_Click(object sender, RoutedEventArgs args)
method bottonCancel_Click (line 226) | private void bottonCancel_Click(object sender, RoutedEventArgs e)
method UpdateProjInfocheckBox_Checked (line 236) | private void UpdateProjInfocheckBox_Checked(object sender, RoutedEvent...
method UpdateProjInfocheckBox_Unchecked (line 246) | private void UpdateProjInfocheckBox_Unchecked(object sender, RoutedEve...
method AddressTab_Initialized (line 257) | private void AddressTab_Initialized(object sender, EventArgs e)
method UserDefinedPurposeTextBox_LostFocus (line 288) | private void UserDefinedPurposeTextBox_LostFocus(object sender, Routed...
method Checkbox_AssignToBuilding_Checked (line 297) | private void Checkbox_AssignToBuilding_Checked(object sender, RoutedEv...
method Checkbox_AssignToSite_Checked (line 302) | private void Checkbox_AssignToSite_Checked(object sender, RoutedEventA...
method Checkbox_AssignToBuilding_Unchecked (line 307) | private void Checkbox_AssignToBuilding_Unchecked(object sender, Routed...
method Checkbox_AssignToSite_Unchecked (line 312) | private void Checkbox_AssignToSite_Unchecked(object sender, RoutedEven...
FILE: Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCategoryMapping.xaml.cs
class IFCMappingInfo (line 21) | public class IFCMappingInfo : INotifyPropertyChanged
method OnPropertyChanged (line 112) | protected void OnPropertyChanged([CallerMemberName] string name = null)
class IFCCategoryMapping (line 122) | public partial class IFCCategoryMapping : ChildWindow, INotifyPropertyCh...
method OnPropertyChanged (line 142) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method IFCCategoryMapping (line 155) | public IFCCategoryMapping(Window owner, IFCExportConfiguration configu...
method IFCCategoryMapping (line 163) | public IFCCategoryMapping(Autodesk.Revit.UI.UIApplication app)
method Initialize (line 169) | private void Initialize()
method GetMappingTemplateFromConfiguration (line 183) | private static IFCCategoryTemplate GetMappingTemplateFromConfiguration...
method InitializeTemplateList (line 202) | private void InitializeTemplateList(string activeTemplateName)
method InitializeMappingGrid (line 236) | private void InitializeMappingGrid()
method OnContextHelp (line 314) | protected override bool OnContextHelp()
method IsInSessionTemplate (line 325) | static bool IsInSessionTemplate(string templateName)
method GetInSessionTemplateName (line 334) | static string GetInSessionTemplateName()
method GetAllTemplateNames (line 343) | static IList<string> GetAllTemplateNames()
method GetCurrentTemplate (line 354) | private IFCCategoryTemplate GetCurrentTemplate()
method GetTemplateByName (line 359) | private IFCCategoryTemplate GetTemplateByName(string templateName)
method UpdateTemplateControls (line 377) | private void UpdateTemplateControls(bool isInSessionSelected)
method IsValidName (line 386) | public static bool IsValidName(string templateName, IList<string> exis...
method listBox_MappingTemplates_SelectionChanged (line 394) | private void listBox_MappingTemplates_SelectionChanged(object sender, ...
method textBox_Search_TextChanged (line 427) | private void textBox_Search_TextChanged(object sender, TextChangedEven...
method button_Add_Click (line 477) | private void button_Add_Click(object sender, RoutedEventArgs e)
method ExportFlagClick (line 498) | private void ExportFlagClick(object sender, RoutedEventArgs e)
method UpdateCheckboxFlag (line 555) | private bool? UpdateCheckboxFlag(List<CategoryMappingNode> nodesList)
method ExportFlagAllClick (line 564) | private void ExportFlagAllClick()
method ExpandAllClick (line 603) | private void ExpandAllClick(object sender, RoutedEventArgs e)
method button_Save_Click (line 623) | private void button_Save_Click(object sender, RoutedEventArgs e)
method button_Ok_Click (line 629) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method StartTransactionGroup (line 635) | private void StartTransactionGroup()
method CommitTransactionGroup (line 645) | private void CommitTransactionGroup()
method DiscardTransactionsGroup (line 656) | private void DiscardTransactionsGroup()
method SaveDialogChanges (line 667) | private void SaveDialogChanges()
method button_Cancel_Click (line 674) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
method ChildWindow_PreviewKeyDown (line 680) | private void ChildWindow_PreviewKeyDown(object sender, KeyEventArgs e)
method ChildWindow_Closing (line 689) | private void ChildWindow_Closing(object sender, CancelEventArgs e)
method UpdateTemplateFromGrid (line 694) | private void UpdateTemplateFromGrid(string templateName = null)
method EntityPicker (line 730) | private void EntityPicker(object sender, RoutedEventArgs e)
method button_Export_Click (line 755) | private void button_Export_Click(object sender, RoutedEventArgs e)
method button_Import_Click (line 783) | private void button_Import_Click(object sender, RoutedEventArgs e)
method button_Copy_Click (line 824) | private void button_Copy_Click(object sender, RoutedEventArgs e)
method button_Rename_Click (line 859) | private void button_Rename_Click(object sender, RoutedEventArgs e)
method CreateKeyFromMappingNode (line 882) | private ExportIFCCategoryKey CreateKeyFromMappingNode(CategoryMappingN...
method ResetOneRow (line 898) | private void ResetOneRow(IFCCategoryTemplate currentTemplate, Category...
method ResetOneRowWithChildren (line 923) | private void ResetOneRowWithChildren(IFCCategoryTemplate currentTempla...
method button_Reset_Click (line 968) | private void button_Reset_Click(object sender, RoutedEventArgs e)
method button_ResetAll_Click (line 987) | private void button_ResetAll_Click(object sender, RoutedEventArgs e)
method button_Delete_Click (line 1007) | private void button_Delete_Click(object sender, RoutedEventArgs e)
class CategoryMappingNode (line 1029) | public class CategoryMappingNode : INotifyPropertyChanged
method CategoryMappingNode (line 1034) | public CategoryMappingNode()
method OnPropertyChanged (line 1124) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method AddChild (line 1150) | public void AddChild(CategoryMappingNode node)
method Collapse (line 1160) | private void Collapse()
method Expand (line 1170) | private void Expand()
method HideChildren (line 1183) | private void HideChildren()
method ShowChildren (line 1196) | private void ShowChildren()
class CategoryMappingManager (line 1211) | public class CategoryMappingManager : ObservableCollection<CategoryMappi...
method CategoryMappingManager (line 1216) | public CategoryMappingManager() { Data = new List<CategoryMappingNode>...
method Initialize (line 1226) | public void Initialize()
method Reset (line 1238) | public void Reset(bool resetVisibility)
method AddChildren (line 1262) | public void AddChildren(CategoryMappingNode node)
method RemoveChildren (line 1281) | public void RemoveChildren(CategoryMappingNode node)
class LevelToMarginConverter (line 1295) | public class LevelToMarginConverter : IValueConverter
method Convert (line 1297) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1305) | public object ConvertBack(object value, Type targetType, object parame...
class CheckBoxLevelToMarginConverter (line 1314) | public class CheckBoxLevelToMarginConverter : IValueConverter
method Convert (line 1316) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1324) | public object ConvertBack(object value, Type targetType, object parame...
class RowIndexConverter (line 1334) | public class RowIndexConverter : IValueConverter
method Convert (line 1336) | public object Convert(object value, Type targetType, object parameter,
method ConvertBack (line 1345) | public object ConvertBack(object value, Type targetType, object parame...
class IFCClassNameConverter (line 1355) | public class IFCClassNameConverter : IValueConverter
method Convert (line 1357) | object IValueConverter.Convert(object value, Type targetType, object p...
method ConvertBack (line 1368) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
FILE: Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCopyTemplate.xaml.cs
class IFCCopyTemplate (line 8) | public partial class IFCCopyTemplate : BaseTemplate
method IFCCopyTemplate (line 10) | public IFCCopyTemplate(IFCTemplateData data):base(data)
method GetDialogTitle (line 28) | private string GetDialogTitle()
FILE: Source/IFCExporterUIOverride/IFCCategoryMapping/IFCDeleteTemplate.xaml.cs
class IFCDeleteTemplate (line 21) | public partial class IFCDeleteTemplate : ChildWindow
method IFCDeleteTemplate (line 23) | public IFCDeleteTemplate(String templateName)
method button_Ok_Click (line 29) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 35) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
FILE: Source/IFCExporterUIOverride/IFCCategoryMapping/IFCNewTemplate.xaml.cs
class IFCNewTemplate (line 13) | public partial class IFCNewTemplate : BaseTemplate
method IFCNewTemplate (line 26) | public IFCNewTemplate(IFCTemplateData data) : base(data)
method InitializePropertySetTypes (line 51) | private void InitializePropertySetTypes()
method button_Save_Click (line 63) | private void button_Save_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 73) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
method GetDialogTitle (line 79) | private string GetDialogTitle()
class IFCPropertySetType (line 96) | public class IFCPropertySetType
type PropertySetType (line 98) | public enum PropertySetType
method IFCPropertySetType (line 106) | public IFCPropertySetType(PropertySetType propertySetType)
method ToString (line 111) | public override string ToString()
FILE: Source/IFCExporterUIOverride/IFCCategoryMapping/IFCRenameTemplate.xaml.cs
class IFCRenameTemplate (line 10) | public partial class IFCRenameTemplate : BaseTemplate
method IFCRenameTemplate (line 12) | public IFCRenameTemplate(IFCTemplateData data) : base(data)
FILE: Source/IFCExporterUIOverride/IFCClassificationUI.xaml.cs
class IFCClassificationWindow (line 32) | public partial class IFCClassificationWindow : ChildWindow
method IFCClassificationWindow (line 44) | public IFCClassificationWindow(IFCExportConfiguration configuration)
method Window_Loaded (line 61) | private void Window_Loaded(object sender, RoutedEventArgs e)
method buttonOK_Click (line 71) | private void buttonOK_Click(object sender, RoutedEventArgs args)
method fillMandatoryFields (line 95) | private void fillMandatoryFields(IFCClassification newClassification)
method bottonCancel_Click (line 116) | private void bottonCancel_Click(object sender, RoutedEventArgs e)
method ClassificationTab_Initialized (line 126) | private void ClassificationTab_Initialized(object sender, EventArgs e)
method datePicker1_SelectedDateChanged (line 137) | private void datePicker1_SelectedDateChanged(object sender, System.Win...
FILE: Source/IFCExporterUIOverride/IFCCommandOverrideApplication.cs
class IFCCommandOverrideApplication (line 46) | public class IFCCommandOverrideApplication : IExternalApplication
method OnShutdown (line 60) | public Result OnShutdown(UIControlledApplication application)
method OnStartup (line 73) | public Result OnStartup(UIControlledApplication application)
method ApplicationInitialized (line 95) | private void ApplicationInitialized(object sender, ApplicationInitiali...
method GenerateActiveViewIdFromDocument (line 139) | private ElementId GenerateActiveViewIdFromDocument(Document doc)
method OnIFCExport (line 159) | public void OnIFCExport(object sender, CommandEventArgs args)
method FileNameListToString (line 422) | private string FileNameListToString(IList<string> fileNames)
method ElementIdListToString (line 434) | private string ElementIdListToString(IList<ElementId> elementIds)
method AddExpandedStringContent (line 447) | private void AddExpandedStringContent(ref string messageString, string...
method AddExpandedElementIdContent (line 457) | private void AddExpandedElementIdContent(ref string messageString, str...
method GetLinkFileName (line 466) | private string GetLinkFileName(Document linkDocument, string linkPathN...
method GetLinkedInstanceInfo (line 480) | private (IDictionary<RevitLinkInstance, Transform>, string, int) GetLi...
method IsLinkVisible (line 565) | public bool IsLinkVisible(Element element, View filterView)
method ExportLinkedDocuments (line 579) | public void ExportLinkedDocuments(Document document, string fileName,
method ExportLinkedDocument (line 784) | private void ExportLinkedDocument(Document linkDocument, string path, ...
method SerializeXYZ (line 795) | public static string SerializeXYZ(XYZ value)
method SerializeTransform (line 801) | public static string SerializeTransform(Transform tr)
method CanWriteFilesInDirectory (line 812) | static public bool CanWriteFilesInDirectory(string directoryPath)
FILE: Source/IFCExporterUIOverride/IFCEntityTree/BrowseIFCEntityServer.cs
class BrowseIFCEntityServer (line 16) | public class BrowseIFCEntityServer : IIFCEntityTreeUIServer
method ShowDialogCommon (line 18) | private (bool, string, string) ShowDialogCommon(bool showTypeNodeOnly,
method ShowDialog (line 42) | public bool ShowDialog(IFCExternalServiceUIData data)
method GetServerId (line 180) | public Guid GetServerId()
method GetServiceId (line 193) | public ExternalServiceId GetServiceId()
method GetName (line 202) | public string GetName()
method GetVendorId (line 211) | public string GetVendorId()
method GetDescription (line 220) | public string GetDescription()
FILE: Source/IFCExporterUIOverride/IFCEntityTree/EntityTree.xaml.cs
class EntityTree (line 19) | public partial class EntityTree : ChildWindow
type SelectionStrategyType (line 47) | public enum SelectionStrategyType
method InitAllowedCategoryIdsForIfcAnnotation (line 90) | private static void InitAllowedCategoryIdsForIfcAnnotation()
method InitAllowedCategoriesForIfcAnnotation (line 102) | private static void InitAllowedCategoriesForIfcAnnotation(Document doc...
method IsIfcAnnotationAllowedForCategory (line 115) | private static bool IsIfcAnnotationAllowedForCategory(Document documen...
method IsIfcAnnotationAllowedForCategoryId (line 129) | private static bool IsIfcAnnotationAllowedForCategoryId(BuiltInCategor...
method EntityTree (line 143) | public EntityTree(IList<ElementId> elementIds, bool showTypeNodeOnly, ...
method EntityTree (line 176) | public EntityTree(CategoryMappingNode currMappingNode)
method EntityTree (line 212) | public EntityTree(IFCVersion? ifcVersion, string preselectFilter, stri...
method InitializeEntityTree (line 227) | void InitializeEntityTree(string preSelectEntity, string preSelectPDef...
method PreSelectItem (line 285) | void PreSelectItem(string preSelectEntity, string preSelectPDef)
method AllowSelection (line 323) | private bool AllowSelection()
method AddTreeViewItem (line 331) | private (TreeViewItem, IfcSchemaEntityNode) AddTreeViewItem(bool add, ...
method LoadTreeviewFilterElement (line 373) | void LoadTreeviewFilterElement()
method ProcessPreselectedNode (line 451) | void ProcessPreselectedNode(TreeViewItem node, HashSet<string> presele...
method GetNode (line 467) | TreeViewItem GetNode(IfcSchemaEntityNode ifcNode, TreeViewItem thisNod...
method IsNodeInNonDefaultCheckedState (line 544) | bool IsNodeInNonDefaultCheckedState(TreeViewItem node)
method TreeViewItem_HandleChecked (line 551) | void TreeViewItem_HandleChecked(object sender, RoutedEventArgs eventArgs)
method TreeViewItem_HandleUnchecked (line 561) | void TreeViewItem_HandleUnchecked(object sender, RoutedEventArgs event...
method CheckUncheckSingleSelection (line 571) | void CheckUncheckSingleSelection(TreeViewItem thisNode, bool isChecked)
method CheckOrUnCheckThisNodeAndBelow (line 587) | void CheckOrUnCheckThisNodeAndBelow(TreeViewItem thisNode, bool isChec...
method EnableOrDisableThisNodeAndBelow (line 628) | void EnableOrDisableThisNodeAndBelow(TreeViewItem thisNode, bool enable)
method IsAllDescendantsChecked (line 672) | bool IsAllDescendantsChecked(TreeViewItem thisNode)
method IsAllDescendantsUnhecked (line 697) | bool IsAllDescendantsUnhecked(TreeViewItem thisNode)
method GetUnSelectedEntity (line 726) | public string GetUnSelectedEntity()
method GetSelectedEntity (line 741) | public string GetSelectedEntity()
method GetSelectedEntityParents (line 754) | public string GetSelectedEntityParents()
method GetSelectedEntityParents (line 771) | (string, bool) GetSelectedEntityParents(TreeViewItem tvItem, bool isCh...
method GetSelectedEntity (line 803) | string GetSelectedEntity(TreeViewItem tvItem, bool isChecked)
method ClearTreeViewChecked (line 819) | void ClearTreeViewChecked()
method ClearTreeviewChecked (line 829) | void ClearTreeviewChecked(TreeViewItem tv)
method FillSetFromList (line 841) | HashSet<string> FillSetFromList(string elemList)
method IFCEntityTreeView_SelectedItemChanged (line 854) | private void IFCEntityTreeView_SelectedItemChanged(object sender, Rout...
method Button_Cancel_Click (line 859) | private void Button_Cancel_Click(object sender, RoutedEventArgs e)
method Button_OK_Click (line 866) | private void Button_OK_Click(object sender, RoutedEventArgs e)
method CheckBox_ByCategory_Clicked (line 876) | private void CheckBox_ByCategory_Clicked(object sender, RoutedEventArg...
method ComboBox_IFCSchema_SelectionChanged (line 889) | private void ComboBox_IFCSchema_SelectionChanged(object sender, Select...
method InitializePreDefinedTypeSelection (line 920) | void InitializePreDefinedTypeSelection(string ifcSchema, string ifcEnt...
method PredefSelected_Checked (line 967) | void PredefSelected_Checked(object sender, RoutedEventArgs e)
method PredefSelected_Unchecked (line 984) | void PredefSelected_Unchecked(object sender, RoutedEventArgs e)
method GetSelectedPredefinedType (line 995) | public string GetSelectedPredefinedType()
method TreeViewReturnToDefault (line 1012) | private void TreeViewReturnToDefault()
method textBox_Search_TextChanged (line 1020) | private void textBox_Search_TextChanged(object sender, TextChangedEven...
method SearchItem_Checked (line 1073) | void SearchItem_Checked(object sender, RoutedEventArgs e)
method SearchItem_Unchecked (line 1098) | void SearchItem_Unchecked(object sender, RoutedEventArgs e)
method button_Reset_Click (line 1116) | private void button_Reset_Click(object sender, RoutedEventArgs e)
method ExpandOrCollapseThisNodeAndBelow (line 1124) | void ExpandOrCollapseThisNodeAndBelow(TreeViewItem thisNode, bool expand)
method button_ExpandAll_Click (line 1131) | private void button_ExpandAll_Click(object sender, RoutedEventArgs e)
method button_CollapseAll_Click (line 1137) | private void button_CollapseAll_Click(object sender, RoutedEventArgs e)
method ShowCheckedOrUnChecked (line 1143) | private void ShowCheckedOrUnChecked(bool checkFlag)
method OnContextHelp (line 1188) | protected override bool OnContextHelp()
method comboBox_ShowItems_SelectionChanged (line 1203) | private void comboBox_ShowItems_SelectionChanged(object sender, Select...
FILE: Source/IFCExporterUIOverride/IFCEntityTree/PredefinedTypeSelection.xaml.cs
class PredefinedTypeSelection (line 13) | public partial class PredefinedTypeSelection : ChildWindow
method PredefinedTypeSelection (line 22) | public PredefinedTypeSelection(string ifcEntitySelected)
method PredefinedTypeSelection (line 33) | public PredefinedTypeSelection(IFCVersion ifcVersion, string ifcEntity...
method PredefinedTypeSelection (line 44) | public PredefinedTypeSelection(string ifcSchema, string ifcEntitySelec...
method InitializePreDefinedTypeSelection (line 49) | void InitializePreDefinedTypeSelection(string ifcSchema, string ifcEnt...
method PredefSelected_Checked (line 83) | void PredefSelected_Checked(object sender, RoutedEventArgs e)
method PredefSelected_Unchecked (line 100) | void PredefSelected_Unchecked(object sender, RoutedEventArgs e)
method Button_Cancel_Click (line 108) | private void Button_Cancel_Click(object sender, RoutedEventArgs e)
method Button_OK_Click (line 114) | private void Button_OK_Click(object sender, RoutedEventArgs e)
method GetSelectedPredefinedType (line 124) | public string GetSelectedPredefinedType()
method HasPredefinedType (line 145) | public bool HasPredefinedType()
FILE: Source/IFCExporterUIOverride/IFCExport.xaml.cs
class IFCExport (line 41) | public partial class IFCExport : ChildWindow
method UpdateCurrentSelectedSetupCombo (line 167) | private void UpdateCurrentSelectedSetupCombo(String selected)
method UpdateTextBoxesContent (line 186) | private void UpdateTextBoxesContent(IFCExportConfiguration config)
method IFCExport (line 239) | public IFCExport(Autodesk.Revit.UI.UIApplication app, IFCExportConfigu...
method createCheckBoxForDocument (line 264) | private CheckBox createCheckBoxForDocument(Document doc, int id)
method CanExportDocument (line 285) | private bool CanExportDocument(Document doc)
method UpdateOpenedProject (line 290) | private Document UpdateOpenedProject(Autodesk.Revit.UI.UIApplication app)
method UpdateOpenedProjectsListView (line 299) | private void UpdateOpenedProjectsListView(Autodesk.Revit.UI.UIApplicat...
method AddToConfigList (line 353) | private void AddToConfigList(IFCExportConfiguration configuration)
method GetModifiedConfigurations (line 371) | public IFCExportConfigurationsMap GetModifiedConfigurations()
method GetSelectedConfiguration (line 380) | public IFCExportConfiguration GetSelectedConfiguration()
method GetSelectedConfigurationName (line 393) | public String GetSelectedConfigurationName()
method GetFileExtension (line 405) | public String GetFileExtension()
method GetFileFilter (line 416) | public String GetFileFilter()
method buttonEditSetup_Click (line 428) | private void buttonEditSetup_Click(object sender, RoutedEventArgs args)
method buttonExport_Click (line 463) | private void buttonExport_Click(object sender, RoutedEventArgs args)
method buttonCancel_Click (line 621) | private void buttonCancel_Click(object sender, RoutedEventArgs args)
method GetDocumentExportCount (line 632) | private int GetDocumentExportCount()
method GetFileName (line 655) | private String GetFileName()
method GetDefaultDirectory (line 666) | private String GetDefaultDirectory()
method buttonBrowse_Click (line 700) | private void buttonBrowse_Click(object sender, RoutedEventArgs args)
method currentSelectedSetup_SelectionChanged (line 763) | private void currentSelectedSetup_SelectionChanged(object sender, Sele...
method listView_Click (line 785) | private void listView_Click(object sender, RoutedEventArgs e)
method updateFileName (line 812) | private void updateFileName()
method textBoxSetupDescription_TextChanged (line 834) | private void textBoxSetupDescription_TextChanged(object sender, TextCh...
method OnContextHelp (line 844) | protected override bool OnContextHelp()
method ChildWindow_ContentRendered (line 853) | private void ChildWindow_ContentRendered(object sender, EventArgs e)
FILE: Source/IFCExporterUIOverride/IFCExportResult.cs
type IFCExportResult (line 30) | public enum IFCExportResult
FILE: Source/IFCExporterUIOverride/IFCExporterUIWindow.xaml.cs
class IFCExporterUIWindow (line 42) | public partial class IFCExporterUIWindow : ChildWindow
method IFCExporterUIWindow (line 63) | public IFCExporterUIWindow(IFCExportConfigurationsMap configurationsMa...
method InitParameterMappingUI (line 88) | private void InitParameterMappingUI()
method UpdateMargin (line 132) | private void UpdateMargin(FrameworkElement userControl, double topMarg...
method ResetToOriginalConfigSettings (line 143) | public void ResetToOriginalConfigSettings(string currentConfigName)
method GetGeoReferenceInfo (line 164) | private void GetGeoReferenceInfo(IFCExportConfiguration configuration,...
method SetupGeoReferenceInfo (line 197) | private void SetupGeoReferenceInfo(IFCExportConfiguration configuration)
method InitializeConfigurationList (line 223) | private void InitializeConfigurationList(String currentConfigName)
method UpdateConfigurationsList (line 238) | private void UpdateConfigurationsList(String currentConfigName)
method InitComboBoxCategoryMapping (line 244) | private void InitComboBoxCategoryMapping(Document document)
method UpdateComboBoxPropertyMappingSetups (line 268) | private void UpdateComboBoxPropertyMappingSetups(Document document, IF...
method InitializeConfigurationOptions (line 298) | private void InitializeConfigurationOptions()
method UpdatePhaseAttributes (line 398) | private void UpdatePhaseAttributes(IFCExportConfiguration configuration)
method UpdateActiveConfigurationOptions (line 429) | private void UpdateActiveConfigurationOptions(IFCExportConfiguration c...
method DoCOBieSpecificSetup (line 659) | private void DoCOBieSpecificSetup(IFCExportConfiguration config)
method UndoCOBieSpecificSetup (line 684) | private void UndoCOBieSpecificSetup(IFCExportConfiguration config)
method COBieCompanyInfoUnloaded (line 699) | void COBieCompanyInfoUnloaded(object sender, RoutedEventArgs e)
method COBieCompanyInfoLostFocus (line 713) | void COBieCompanyInfoLostFocus(object sender, RoutedEventArgs e)
method COBieProjectInfoUnloaded (line 719) | void COBieProjectInfoUnloaded(object sender, RoutedEventArgs e)
method COBieProjectInfoLostFocus (line 730) | void COBieProjectInfoLostFocus(object sender, RoutedEventArgs e)
method UpdateConfigurationControls (line 741) | private void UpdateConfigurationControls(bool isBuiltIn, bool isInSess...
method GetCheckbuttonChecked (line 753) | private bool GetCheckbuttonChecked(CheckBox checkBox)
method GetRadiobuttonChecked (line 765) | private bool GetRadiobuttonChecked(RadioButton checkBox)
method buttonOK_Click (line 777) | private void buttonOK_Click(object sender, RoutedEventArgs e)
method buttonCancel_Click (line 807) | private void buttonCancel_Click(object sender, RoutedEventArgs e)
method buttonDeleteSetup_Click (line 819) | private void buttonDeleteSetup_Click(object sender, RoutedEventArgs e)
method GetDefaultDirectory (line 831) | private string GetDefaultDirectory()
method buttonSaveSetup_Click (line 845) | private void buttonSaveSetup_Click(object sender, RoutedEventArgs e)
method buttonLoadSetup_Click (line 880) | private void buttonLoadSetup_Click(object sender, RoutedEventArgs e)
method buttonRenameSetup_Click (line 923) | private void buttonRenameSetup_Click(object sender, RoutedEventArgs e)
method buttonDuplicateSetup_Click (line 947) | private void buttonDuplicateSetup_Click(object sender, RoutedEventArgs e)
method buttonNewSetup_Click (line 964) | private void buttonNewSetup_Click(object sender, RoutedEventArgs e)
method GetNewSetupName (line 980) | private String GetNewSetupName()
method GetDuplicateSetupName (line 990) | private String GetDuplicateSetupName(IFCExportConfiguration configurat...
method GetFirstIncrementalName (line 1002) | private String GetFirstIncrementalName(String nameRoot)
method CreateNewEditableConfiguration (line 1025) | private IFCExportConfiguration CreateNewEditableConfiguration(IFCExpor...
method GetSelectedConfiguration (line 1048) | private IFCExportConfiguration GetSelectedConfiguration()
method GetSelectedConfigurationName (line 1063) | public String GetSelectedConfigurationName()
method listBoxConfigurations_SelectionChanged (line 1073) | private void listBoxConfigurations_SelectionChanged(object sender, Sel...
method checkboxExportBaseQuantities_Checked (line 1111) | private void checkboxExportBaseQuantities_Checked(object sender, Route...
method checkboxExportCeilingGrids_Checked (line 1126) | private void checkboxExportCeilingGrids_Checked(object sender, RoutedE...
method checkboxSplitWalls_Checked (line 1141) | private void checkboxSplitWalls_Checked(object sender, RoutedEventArgs e)
method checkboxInternalPropertySets_Checked (line 1156) | private void checkboxInternalPropertySets_Checked(object sender, Route...
method checkboxIFCCommonPropertySets_Checked (line 1171) | private void checkboxIFCCommonPropertySets_Checked(object sender, Rout...
method checkbox2dElements_Checked (line 1186) | private void checkbox2dElements_Checked(object sender, RoutedEventArgs e)
method checkboxVisibleElementsCurrView_Checked (line 1201) | private void checkboxVisibleElementsCurrView_Checked(object sender, Ro...
method checkBoxUse2DRoomVolumes_Checked (line 1229) | private void checkBoxUse2DRoomVolumes_Checked(object sender, RoutedEve...
method checkBoxFamilyAndTypeName_Checked (line 1244) | private void checkBoxFamilyAndTypeName_Checked(object sender, RoutedEv...
method comboboxIfcType_SelectionChanged (line 1259) | private void comboboxIfcType_SelectionChanged(object sender, Selection...
method comboBoxPlacement_SelectionChanged (line 1302) | private void comboBoxPlacement_SelectionChanged(object sender, Selecti...
method SetupEastingsNorthings (line 1313) | private void SetupEastingsNorthings(IFCExportConfiguration configuration)
method comboboxFileType_SelectionChanged (line 1351) | private void comboboxFileType_SelectionChanged(object sender, Selectio...
method comboboxSpaceBoundaries_SelectionChanged (line 1367) | private void comboboxSpaceBoundaries_SelectionChanged(object sender, S...
method comboboxActivePhase_SelectionChanged (line 1382) | private void comboboxActivePhase_SelectionChanged(object sender, Selec...
method checkBoxExportPartsAsBuildingElements_Checked (line 1397) | private void checkBoxExportPartsAsBuildingElements_Checked(object send...
method checkBoxUseActiveViewGeometry_Checked (line 1412) | private void checkBoxUseActiveViewGeometry_Checked(object sender, Rout...
method checkboxExportBoundingBox_Checked (line 1427) | private void checkboxExportBoundingBox_Checked(object sender, RoutedEv...
method checkboxExportSolidModelRep_Checked (line 1442) | private void checkboxExportSolidModelRep_Checked(object sender, Routed...
method checkboxExportMaterialPsets_Checked (line 1457) | private void checkboxExportMaterialPsets_Checked(object sender, Routed...
method checkboxExportSchedulesAsPsets_Checked (line 1472) | private void checkboxExportSchedulesAsPsets_Checked(object sender, Rou...
method checkboxIfcSiteElevation_Checked (line 1487) | private void checkboxIfcSiteElevation_Checked(object sender, RoutedEve...
method checkboxStoreIFCGUID_Checked (line 1502) | private void checkboxStoreIFCGUID_Checked(object sender, RoutedEventAr...
method checkBoxExportSpecificSchedules_Checked (line 1512) | private void checkBoxExportSpecificSchedules_Checked(object sender, Ro...
method checkboxExportUserDefinedPset_Checked (line 1532) | private void checkboxExportUserDefinedPset_Checked(object sender, Rout...
method checkboxUseTypePropertiesInInstacePSets_Checked (line 1551) | private void checkboxUseTypePropertiesInInstacePSets_Checked(object se...
method checkBoxExportUserDefinedParameterMapping_Checked (line 1566) | private void checkBoxExportUserDefinedParameterMapping_Checked(object ...
method buttonBrowse_Click (line 1583) | private void buttonBrowse_Click(object sender, RoutedEventArgs e)
method buttonParameterMappingBrowse_Click (line 1618) | private void buttonParameterMappingBrowse_Click(object sender, RoutedE...
method checkBoxExportRoomsInView_Checked (line 1654) | private void checkBoxExportRoomsInView_Checked(object sender, RoutedEv...
method comboBoxLOD_SelectionChanged (line 1664) | private void comboBoxLOD_SelectionChanged(object sender, RoutedEventAr...
method buttonFileHeader_Click (line 1684) | private void buttonFileHeader_Click(object sender, RoutedEventArgs e)
method buttonAddressInformation_Click (line 1691) | private void buttonAddressInformation_Click(object sender, RoutedEvent...
method buttonCategoryMapping_Click (line 1701) | private void buttonCategoryMapping_Click(object sender, RoutedEventArg...
method ShowCategoryMappingDialog (line 1706) | private void ShowCategoryMappingDialog()
method ShowPropertyMappingDialog (line 1716) | private void ShowPropertyMappingDialog()
method buttonPropertyMappingSetups_Click (line 1726) | private void buttonPropertyMappingSetups_Click(object sender, RoutedEv...
method buttonClassification_Click (line 1731) | private void buttonClassification_Click(object sender, RoutedEventArgs e)
method checkBox_TriangulationOnly_Checked (line 1739) | private void checkBox_TriangulationOnly_Checked(object sender, RoutedE...
method checkBox_TriangulationOnly_Unchecked (line 1745) | private void checkBox_TriangulationOnly_Unchecked(object sender, Route...
method checkboxIncludeSteelElements_Checked (line 1752) | private void checkboxIncludeSteelElements_Checked(object sender, Route...
method checkboxIncludeSteelElements_Unchecked (line 1758) | private void checkboxIncludeSteelElements_Unchecked(object sender, Rou...
method Checkbox_UseTypeNameOnly_Checked (line 1764) | private void Checkbox_UseTypeNameOnly_Checked(object sender, RoutedEve...
method Checkbox_UseTypeNameOnly_Unchecked (line 1770) | private void Checkbox_UseTypeNameOnly_Unchecked(object sender, RoutedE...
method Checkbox_ExportHostAsSingleEntity_Checked (line 1776) | private void Checkbox_ExportHostAsSingleEntity_Checked(object sender, ...
method Checkbox_ExportHostAsSingleEntity_Unchecked (line 1782) | private void Checkbox_ExportHostAsSingleEntity_Unchecked(object sender...
method Checkbox_OwnerHistoryLastModified_Checked (line 1788) | private void Checkbox_OwnerHistoryLastModified_Checked(object sender, ...
method Checkbox_OwnerHistoryLastModified_Unchecked (line 1794) | private void Checkbox_OwnerHistoryLastModified_Unchecked(object sender...
method checkbox_ExportBarsInUniformSetsAsSeparateIFCEntities_Checked (line 1800) | private void checkbox_ExportBarsInUniformSetsAsSeparateIFCEntities_Che...
method checkbox_ExportBarsInUniformSetsAsSeparateIFCEntities_Unchecked (line 1806) | private void checkbox_ExportBarsInUniformSetsAsSeparateIFCEntities_Unc...
method Checkbox_UseVisibleRevitName_Checked (line 1812) | private void Checkbox_UseVisibleRevitName_Checked(object sender, Route...
method Checkbox_UseVisibleRevitName_Unchecked (line 1818) | private void Checkbox_UseVisibleRevitName_Unchecked(object sender, Rou...
method comboBoxExchangeRequirement_SelectionChanged (line 1824) | private void comboBoxExchangeRequirement_SelectionChanged(object sende...
method comboBoxFacilityType_SelectionChanged (line 1833) | private void comboBoxFacilityType_SelectionChanged(object sender, Sele...
method comboBoxFacilityPredefinedType_SelectionChanged (line 1843) | private void comboBoxFacilityPredefinedType_SelectionChanged(object se...
method comboBoxCategoryMapping_SelectionChanged (line 1854) | private void comboBoxCategoryMapping_SelectionChanged(object sender, S...
method comboBoxPropertyMappingSetups_SelectionChanged (line 1881) | private void comboBoxPropertyMappingSetups_SelectionChanged(object sen...
method UpdateExchangeRequirement (line 1907) | private void UpdateExchangeRequirement(IFCExportConfiguration configur...
method UpdateFacilityPredefinedType (line 1929) | private void UpdateFacilityPredefinedType(IFCExportConfiguration confi...
method UpdateFacilityType (line 1948) | private void UpdateFacilityType(IFCExportConfiguration configuration)
method TextBox_EPSG_TextChanged (line 1971) | private void TextBox_EPSG_TextChanged(object sender, TextChangedEventA...
method TextBox_EPSG_LostKeyboardFocus (line 1975) | private void TextBox_EPSG_LostKeyboardFocus(object sender, System.Wind...
method button_GeoRefReset_Click (line 2014) | private void button_GeoRefReset_Click(object sender, RoutedEventArgs e)
method button_ResetConfigurations_Click (line 2020) | private void button_ResetConfigurations_Click(object sender, RoutedEve...
method comboBoxProjectSite_SelectionChanged (line 2037) | private void comboBoxProjectSite_SelectionChanged(object sender, Selec...
method Button_CRSReset_Click (line 2055) | private void Button_CRSReset_Click(object sender, RoutedEventArgs e)
method Button_CRSOverride_Click (line 2081) | private void Button_CRSOverride_Click(object sender, RoutedEventArgs e)
method button_ExcludeElement_Click (line 2094) | private void button_ExcludeElement_Click(object sender, RoutedEventArg...
method comboboxLinkedFiles_SelectionChanged (line 2111) | private void comboboxLinkedFiles_SelectionChanged(object sender, Selec...
FILE: Source/IFCExporterUIOverride/IFCFileFormatAttributes.cs
class IFCFileFormatAttributes (line 32) | public class IFCFileFormatAttributes
method IFCFileFormatAttributes (line 43) | public IFCFileFormatAttributes(IFCFileFormat fileType)
method ToString (line 52) | public override String ToString()
method GetFileExtension (line 73) | public String GetFileExtension()
method GetFileFilter (line 94) | public String GetFileFilter()
FILE: Source/IFCExporterUIOverride/IFCFileHeaderInformationUI.xaml.cs
class IFCFileHeaderInformation (line 31) | public partial class IFCFileHeaderInformation : ChildWindow
method IFCFileHeaderInformation (line 42) | public IFCFileHeaderInformation()
method Window_Loaded (line 52) | private void Window_Loaded(object sender, RoutedEventArgs e)
method buttonOK_Click (line 62) | private void buttonOK_Click(object sender, RoutedEventArgs args)
method bottonCancel_Click (line 78) | private void bottonCancel_Click(object sender, RoutedEventArgs e)
method FileHeaderTab_Initialized (line 88) | private void FileHeaderTab_Initialized(object sender, EventArgs e)
FILE: Source/IFCExporterUIOverride/IFCLinkedFileExportAs.cs
class IFCLinkedFileExportAs (line 24) | public class IFCLinkedFileExportAs
method IFCLinkedFileExportAs (line 29) | public IFCLinkedFileExportAs(LinkedFileExportAs exportAs)
method ToString (line 34) | public override string ToString()
FILE: Source/IFCExporterUIOverride/IFCNewExportSetup.xaml.cs
class NewExportSetupWindow (line 31) | public partial class NewExportSetupWindow : ChildWindow
method NewExportSetupWindow (line 41) | public NewExportSetupWindow(IFCExportConfigurationsMap configurationMa...
method GetName (line 53) | public String GetName()
method buttonOK_Click (line 63) | private void buttonOK_Click(object sender, RoutedEventArgs e)
method buttonCancel_Click (line 75) | private void buttonCancel_Click(object sender, RoutedEventArgs e)
method textBoxNewSetupName_TextChanged (line 86) | private void textBoxNewSetupName_TextChanged(object sender, TextChange...
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/ComboBoxFilteringUtilities.cs
class ComboBoxFilteringUtilities (line 12) | public static class ComboBoxFilteringUtilities
method GetOrCreateCollection (line 19) | public static ObservableCollection<string> GetOrCreateCollection(Combo...
method GetCaretPosition (line 35) | public static int GetCaretPosition(ComboBox comboBox)
method SetCaretPosition (line 47) | public static void SetCaretPosition(ComboBox comboBox, int position)
method OpenDropDownSuppressingHighlight (line 60) | public static void OpenDropDownSuppressingHighlight(ComboBox comboBox)
method AttachTextChangedHandler (line 78) | public static void AttachTextChangedHandler(ComboBox comboBox, Action<...
method FilterCollection (line 100) | public static void FilterCollection(ComboBox comboBox, ObservableColle...
method RemoveSelectedItemPreservingText (line 162) | public static void RemoveSelectedItemPreservingText(ComboBox comboBox,...
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCNotificationMessageBox.xaml.cs
class IFCNotificationMessageBox (line 15) | public partial class IFCNotificationMessageBox : ChildWindow
method IFCNotificationMessageBox (line 17) | public IFCNotificationMessageBox(String messageText)
method button_Ok_Click (line 23) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 29) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyFilter.xaml.cs
class IFCPropertyFilter (line 12) | public partial class IFCPropertyFilter : ChildWindow
method IFCPropertyFilter (line 18) | public IFCPropertyFilter(string propertySetFilter, string parameterFil...
method button_Apply_Click (line 30) | private void button_Apply_Click(object sender, RoutedEventArgs e)
method button_Remove_Click (line 36) | private void button_Remove_Click(object sender, RoutedEventArgs e)
method button_ParamaterClean_Click (line 42) | private void button_ParamaterClean_Click(object sender, RoutedEventArg...
method button_PropertySetClean_Click (line 47) | private void button_PropertySetClean_Click(object sender, RoutedEventA...
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyMapping.xaml.cs
class IFCPropertyMapping (line 26) | public partial class IFCPropertyMapping : ChildWindow, INotifyPropertyCh...
method OnPropertyChanged (line 154) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method IFCPropertyMapping (line 178) | public IFCPropertyMapping(Window owner, IFCExportConfiguration configu...
method InitializeTemplateList (line 211) | private void InitializeTemplateList(string activeTemplateName)
method InitializeCategoryFilter (line 238) | private void InitializeCategoryFilter()
method button_Add_Click (line 295) | private void button_Add_Click(object sender, RoutedEventArgs e)
method button_Import_Click (line 318) | private void button_Import_Click(object sender, RoutedEventArgs e)
method button_Copy_Click (line 359) | private void button_Copy_Click(object sender, RoutedEventArgs e)
method button_Save_Click (line 393) | private void button_Save_Click(object sender, RoutedEventArgs e)
method button_Export_Click (line 399) | private void button_Export_Click(object sender, RoutedEventArgs e)
method button_Rename_Click (line 427) | private void button_Rename_Click(object sender, RoutedEventArgs e)
method button_Delete_Click (line 450) | private void button_Delete_Click(object sender, RoutedEventArgs e)
method IsValidName (line 470) | public static bool IsValidName(string templateName, IList<string> exis...
method listBox_MappingTemplates_SelectionChanged (line 478) | private void listBox_MappingTemplates_SelectionChanged(object sender, ...
method UpdateSelectedTemplateCaption (line 510) | private void UpdateSelectedTemplateCaption()
method InitializeSetupInfo (line 516) | public void InitializeSetupInfo(IFCParameterTemplate template)
method CreateTemplateDataCache (line 522) | private Dictionary<PropertySetupType, HashSet<string>> CreateTemplateD...
method PopulateSetupInfo (line 537) | public void PopulateSetupInfo(IFCVersion ifcVersion)
method RestoreSelectedPSet (line 555) | private void RestoreSelectedPSet(PropertySetupType? previousSetupType,...
method SaveExpandedState (line 576) | private Dictionary<string, bool> SaveExpandedState()
method RestoreExpandedState (line 594) | private void RestoreExpandedState(Dictionary<string, bool> expandedSta...
method SetSelectedPropertySet (line 613) | private void SetSelectedPropertySet(PSetMappingInfo newSelectedSet)
method UnsubscribeFromPropertyMappingChanges (line 644) | private void UnsubscribeFromPropertyMappingChanges()
method OnPropertyMappingChanged (line 660) | private void OnPropertyMappingChanged(object sender, PropertyChangedEv...
method CreateSetupInfo (line 675) | public SetupMappingInfo CreateSetupInfo(PropertySetupType propertySetu...
method ReadMappingInfoFromTemplate (line 699) | public void ReadMappingInfoFromTemplate(IFCParameterTemplate template)
method treeView_PropertySetups_SelectedItemChanged (line 758) | private void treeView_PropertySetups_SelectedItemChanged(object sender...
method checkBox_PropertySet_Click (line 791) | private void checkBox_PropertySet_Click(object sender, RoutedEventArgs e)
method UpdateTemplateControls (line 814) | private void UpdateTemplateControls(IFCParameterTemplate template)
method UpdateControlsEnabledState (line 829) | private void UpdateControlsEnabledState()
method InitializeSchemaList (line 848) | private void InitializeSchemaList()
method InitializePropertySetupsList (line 897) | private void InitializePropertySetupsList()
type VisibilityState (line 909) | public enum VisibilityState
method UpdateControlsVisibilityState (line 921) | private void UpdateControlsVisibilityState(VisibilityState state)
method GetVisibilityStateForCurrentSelection (line 975) | private VisibilityState GetVisibilityStateForCurrentSelection()
method InitializePropertyDataGrid (line 997) | private void InitializePropertyDataGrid()
method RefreshPropertyGridForCategoryFilter (line 1005) | private void RefreshPropertyGridForCategoryFilter()
method GetPropertyInfosWithCategoryFilter (line 1022) | private IEnumerable<PropertyMappingInfo> GetPropertyInfosWithCategoryF...
method GetCategoryDisplayName (line 1052) | private static string GetCategoryDisplayName(ElementId categoryId)
method ResetCategoryFilterSelection (line 1073) | private void ResetCategoryFilterSelection()
method comboBox_CategoryName_SelectionChanged (line 1084) | private void comboBox_CategoryName_SelectionChanged(object sender, Sel...
class CategoryParameterSet (line 1097) | private sealed class CategoryParameterSet
method CategoryParameterSet (line 1102) | public CategoryParameterSet(IEnumerable<RevitParameterData> parameters)
method AddParameters (line 1107) | public void AddParameters(IEnumerable<RevitParameterData> parameters)
method Contains (line 1127) | public bool Contains(PropertyMappingInfo propertyInfo)
method IsInSessionTemplate (line 1147) | static bool IsInSessionTemplate(string templateName)
method GetInSessionTemplateName (line 1159) | static string GetInSessionTemplateName()
method GetAllTemplateNames (line 1168) | static IList<string> GetAllTemplateNames()
method CleanTemplateName (line 1176) | private static string CleanTemplateName(string templateName)
method GetCurrentTemplate (line 1186) | private IFCParameterTemplate GetCurrentTemplate()
method GetTemplateByName (line 1191) | private IFCParameterTemplate GetTemplateByName(string templateName)
method GetMappingTemplateFromConfiguration (line 1212) | private IFCParameterTemplate GetMappingTemplateFromConfiguration(Docum...
method WriteMappingInfoToTemplate (line 1253) | private void WriteMappingInfoToTemplate(string templateName)
method WriteMappingInfoToTemplate (line 1262) | private void WriteMappingInfoToTemplate(IFCParameterTemplate template)
method NeedToWritePSetToTemplate (line 1342) | private static bool NeedToWritePSetToTemplate(bool isExportingPset, Li...
method WriteSetupExportFlagToTemplate (line 1359) | private static void WriteSetupExportFlagToTemplate(IFCParameterTemplat...
method ReadSetupExportFlagFromTemplate (line 1384) | private static bool ReadSetupExportFlagFromTemplate(IFCParameterTempla...
method CleanMappingTemplate (line 1409) | private void CleanMappingTemplate(IFCParameterTemplate template)
method FindPSetInfo (line 1452) | public PSetMappingInfo FindPSetInfo(PropertySetupType propertySetup, s...
method button_Ok_Click (line 1472) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 1478) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
method OnContextHelp (line 1484) | protected override bool OnContextHelp()
method ChildWindow_PreviewKeyDown (line 1492) | private void ChildWindow_PreviewKeyDown(object sender, KeyEventArgs e)
method ChildWindow_Closing (line 1501) | private void ChildWindow_Closing(object sender, CancelEventArgs e)
method SaveDialogChanges (line 1507) | private void SaveDialogChanges()
method StartTransactionGroup (line 1521) | private void StartTransactionGroup()
method CommitTransactionGroup (line 1531) | private void CommitTransactionGroup()
method DiscardTransactionsGroup (line 1542) | private void DiscardTransactionsGroup()
method comboBox_IFCSchema_SelectionChanged (line 1553) | private void comboBox_IFCSchema_SelectionChanged(object sender, Select...
method textBox_Search_TextChanged (line 1567) | private void textBox_Search_TextChanged(object sender, TextChangedEven...
method button_PropertySetClean_Click (line 1575) | private void button_PropertySetClean_Click(object sender, RoutedEventA...
method ExportFlagAllClick (line 1583) | private void ExportFlagAllClick()
method ExportFlagClick (line 1598) | private void ExportFlagClick(object sender, RoutedEventArgs e)
method button_Reset_Click (line 1603) | private void button_Reset_Click(object sender, RoutedEventArgs e)
method button_ResetAll_Click (line 1617) | private void button_ResetAll_Click(object sender, RoutedEventArgs e)
method ResetSearch (line 1634) | private void ResetSearch()
method UpdateHeaderCheckboxFlag (line 1642) | private bool? UpdateHeaderCheckboxFlag(ObservableCollection<PropertyMa...
method button_RevitPropertyEdit_Click (line 1655) | private void button_RevitPropertyEdit_Click(object sender, RoutedEvent...
method IsTableUserDefinedProperty (line 1689) | private static bool IsTableUserDefinedProperty(string propertySetName,...
method GetApplicableEntitiesIfExist (line 1704) | private IList<string> GetApplicableEntitiesIfExist(PSetMappingInfo pro...
method FilterPropertySet (line 1721) | public bool FilterPropertySet(object obj)
method button_AddPropertySet_Click (line 1740) | private void button_AddPropertySet_Click(object sender, RoutedEventArg...
method GetCaseSensitiveFileNameOnDisk (line 1766) | private static string GetCaseSensitiveFileNameOnDisk(string filePath)
method GetUniqueNameFromFile (line 1792) | public static string GetUniqueNameFromFile(string fullFileName, bool i...
class EditButtonVisibilityConverter (line 1808) | public class EditButtonVisibilityConverter : IValueConverter
method Convert (line 1810) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1838) | public object ConvertBack(object value, Type targetType, object parame...
class IsIFCColumnReadOnlyConverter (line 1844) | public class IsIFCColumnReadOnlyConverter : IValueConverter
method Convert (line 1846) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1865) | public object ConvertBack(object value, Type targetType, object parame...
class EmptyToDefaulConverter (line 1874) | public class EmptyToDefaulConverter : IValueConverter
method Convert (line 1876) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1887) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
class SetupNameToButtonVisibilityConverter (line 1893) | public class SetupNameToButtonVisibilityConverter : IValueConverter
method Convert (line 1895) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1906) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
class SelectedSetupToFilterVisibilityConverter (line 1912) | public class SelectedSetupToFilterVisibilityConverter : IValueConverter
method Convert (line 1914) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1931) | public object ConvertBack(object value, Type targetType, object parame...
class BoolToRowBackgroundColorConverter (line 1940) | public class BoolToRowBackgroundColorConverter : IMultiValueConverter
method Convert (line 1942) | public object Convert(object[] values, Type targetType, object paramet...
method ConvertBack (line 1967) | public object[] ConvertBack(object value, Type[] targetTypes, object p...
class BoolToGlyphColorConverter (line 1976) | public class BoolToGlyphColorConverter : IMultiValueConverter
method Convert (line 1978) | public object Convert(object[] values, Type targetType, object paramet...
method ConvertBack (line 2004) | public object[] ConvertBack(object value, Type[] targetTypes, object p...
class TreeViewIndexConverter (line 2010) | public class TreeViewIndexConverter : IValueConverter
method Convert (line 2012) | public object Convert(object value, Type TargetType, object parameter,...
method ConvertBack (line 2020) | public object ConvertBack(object value, Type targetType, object parame...
class ElementIdToTooltipConverter (line 2029) | public class ElementIdToTooltipConverter : IValueConverter
method Convert (line 2031) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 2042) | public object ConvertBack(object value, Type targetType, object parame...
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyMappingModel.cs
class IFCPropertyMappingModel (line 24) | public class IFCPropertyMappingModel : INotifyPropertyChanged
type MappingType (line 31) | public enum MappingType
method OnPropertyChanged (line 81) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method GetMappingType (line 89) | public static MappingType GetMappingType(PropertySetupType propertySetup)
method GetOrCreateCachedIfcCommonPropertySets (line 97) | private static IList<IList<PropertySetDescription>> GetOrCreateCachedI...
method GetCachedIfcCommonPSetDescription (line 109) | public static PropertySetDescription GetCachedIfcCommonPSetDescription...
method GetOrCreateCachedBaseQuantities (line 128) | private static IList<IList<QuantityDescription>> GetOrCreateCachedBase...
method GetCachedBaseQuantityDescription (line 140) | public static QuantityDescription GetCachedBaseQuantityDescription(str...
method InitializeIFCCommonPropertySets (line 159) | public SetupMappingInfo InitializeIFCCommonPropertySets(IFCVersion ifc...
method InitializeRevitPropertySetsList (line 192) | public SetupMappingInfo InitializeRevitPropertySetsList()
method InitializeBaseQuantities (line 216) | public SetupMappingInfo InitializeBaseQuantities(IFCVersion ifcVersion)
method InitializeMaterialPropertySets (line 249) | public SetupMappingInfo InitializeMaterialPropertySets()
method InitializeSchedules (line 292) | public SetupMappingInfo InitializeSchedules()
method InitializeUserDefinedPropertySets (line 385) | public SetupMappingInfo InitializeUserDefinedPropertySets()
method GetGroupedRevitParameters (line 435) | public static SortedDictionary<string, List<(ElementId parameterId, (s...
method GetBuiltInParameters (line 470) | public static SortedDictionary<string, List<(ElementId parameterId, (s...
method GetNonBuiltInParameters (line 519) | public static SortedDictionary<string, List<(string, string)>> GetNonB...
method ClearCache (line 576) | public void ClearCache()
method GetParameterTooltip (line 587) | public static string GetParameterTooltip(ElementId paramId, string par...
method ExtractTextFromTooltip (line 608) | public static string ExtractTextFromTooltip(RibbonToolTip tooltip)
method FindTextBlocks (line 630) | private static List<TextBlock> FindTextBlocks(DependencyObject parent)
method GetTooltipFromParameterId (line 650) | public static string GetTooltipFromParameterId(long paramId)
method GetPropertySetupName (line 660) | private static string GetPropertySetupName(PropertySetupType propertyS...
class SetupMappingInfo (line 685) | public class SetupMappingInfo : INotifyPropertyChanged
method UpdateChildren (line 731) | private void UpdateChildren(bool value)
method UpdateParent (line 741) | public void UpdateParent()
method OnPropertyChanged (line 763) | protected void OnPropertyChanged([CallerMemberName] string name = null)
class PSetMappingInfo (line 772) | public class PSetMappingInfo : INotifyPropertyChanged
method PSetMappingInfo (line 815) | public PSetMappingInfo(string name, PropertySetupType propertySetup, L...
method TryGetProperty (line 824) | public bool TryGetProperty(IFCPropertyMappingInfo templatePropertyInfo...
method TryGetProperty (line 829) | public bool TryGetProperty(string ifcPropertyName, ElementId revitProp...
method ResetToDefault (line 839) | public void ResetToDefault()
method ConvertQuantitySetNameFrom2x3 (line 851) | public static string ConvertQuantitySetNameFrom2x3(string quantitySet2...
method ConvertQuantitySetNameTo2x3 (line 860) | public static string ConvertQuantitySetNameTo2x3(string quantitySetName)
method OnPropertyChanged (line 870) | protected void OnPropertyChanged([CallerMemberName] string name = null)
class PropertyMappingInfo (line 880) | public class PropertyMappingInfo : INotifyPropertyChanged
method PropertyMappingInfo (line 953) | public PropertyMappingInfo(string ifcPropertyName, string revitPropert...
method Assign (line 976) | public void Assign(IFCPropertyMappingInfo templatePropertyInfo)
method GetPropertyMappingKeyComparator (line 984) | public static Func<PropertyMappingInfo, bool> GetPropertyMappingKeyCom...
method IsDefault (line 994) | public bool IsDefault()
method ResetToDefault (line 1016) | public void ResetToDefault()
method OnPropertyChanged (line 1032) | protected void OnPropertyChanged([CallerMemberName] string name = null)
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCRevitPropertySelector.xaml.cs
class ParameterListItem (line 25) | public class ParameterListItem : INotifyPropertyChanged
method ParameterListItem (line 27) | public ParameterListItem() { }
method ParameterListItem (line 28) | public ParameterListItem(string name, ElementId id, bool isChecked)
method OnPropertyChanged (line 49) | protected void OnPropertyChanged([CallerMemberName] string name = null)
type ParameterType (line 61) | public enum ParameterType
class RevitParameterData (line 72) | public class RevitParameterData
class PropertySelectorModel (line 84) | public class PropertySelectorModel
type PropertyFilterEnum (line 89) | public enum PropertyFilterEnum
method InitializeFromParameterData (line 106) | public void InitializeFromParameterData(Dictionary<ElementId, List<Rev...
class IFCRevitPropertySelector (line 162) | public partial class IFCRevitPropertySelector : ChildWindow, INotifyProp...
method OnPropertyChanged (line 205) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method IFCRevitPropertySelector (line 210) | public IFCRevitPropertySelector(RevitParameterInfo selectedRevitParame...
method CreateApplicableParameterInfo (line 259) | public ApplicableParameterInfo CreateApplicableParameterInfo(PropertyS...
method GetApplicableDataType (line 342) | public (bool success, StorageType, HashSet<ForgeTypeId>) GetApplicable...
method GetApplicableCategories (line 364) | private HashSet<ElementId> GetApplicableCategories(HashSet<IFCEntityTy...
method GetEntityFromEntityType (line 397) | private IFCEntityType GetEntityFromEntityType(IFCEntityType applicable...
method GetCategoryParameters (line 442) | private Dictionary<ElementId, List<RevitParameterData>> GetCategoryPar...
method GetSingleCategoryParameters (line 478) | private static List<RevitParameterData> GetSingleCategoryParameters(Ca...
method PreselectParameter (line 546) | private bool PreselectParameter()
method comboBox_Category_SelectionChanged (line 573) | private void comboBox_Category_SelectionChanged(object sender, Selecti...
method GetCategoryParametersCacheSnapshot (line 592) | internal static IReadOnlyDictionary<ElementId, List<RevitParameterData...
method EnsureCategoryParametersCacheInitialized (line 598) | private static void EnsureCategoryParametersCacheInitialized()
method button_Ok_Click (line 661) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 690) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
method radioButton_Parameter_Checked (line 695) | private void radioButton_Parameter_Checked(object sender, RoutedEventA...
method PropertySelectorWindow_Closing (line 723) | private void PropertySelectorWindow_Closing(object sender, CancelEvent...
method comboBox_PropertyFilter_SelectionChanged (line 729) | private void comboBox_PropertyFilter_SelectionChanged(object sender, S...
method InitEntityToCategoriesCache (line 750) | public static void InitEntityToCategoriesCache(string categoryMappingT...
method GetExportableCategories (line 762) | private static List<Category> GetExportableCategories()
method GetCategoryEntityAndPopulateCache (line 808) | private static void GetCategoryEntityAndPopulateCache(List<Category> c...
method ProcessSpecialCases (line 844) | private static void ProcessSpecialCases(Category category, ref ExportI...
method IsValidCategoryForParameterMapping (line 860) | private static bool IsValidCategoryForParameterMapping(Category category)
class RevitParameterFilter (line 875) | public class RevitParameterFilter
class ApplicableParameterInfo (line 885) | public class ApplicableParameterInfo
method IsApplicableParameter (line 892) | public bool IsApplicableParameter(RevitParameterData parameterData)
class ListBoxIndexConverter (line 923) | public class ListBoxIndexConverter : IValueConverter
method Convert (line 925) | public object Convert(object value, Type TargetType, object parameter,...
method ConvertBack (line 933) | public object ConvertBack(object value, Type targetType, object parame...
FILE: Source/IFCExporterUIOverride/IFCPropertyMapping/IFCUserDefinedPropertyMapping.xaml.cs
class UserDefinedPropertySetValidator (line 26) | public class UserDefinedPropertySetValidator
type PropertyModificationOperation (line 31) | public enum PropertyModificationOperation
method IsReserved (line 52) | public static bool IsReserved(string propertySet)
method ExtendPropertySetNameIfNeeded (line 65) | public (string, bool) ExtendPropertySetNameIfNeeded(string propertySet)
method CanAddProperty (line 81) | public bool CanAddProperty(string propertySet, string property)
method CanModifyProperty (line 97) | public bool CanModifyProperty(string propertySet, string property, Pro...
class UserDefinedPropertyInfo (line 115) | public class UserDefinedPropertyInfo : INotifyPropertyChanged
method ResetRevitParameterInfoIfAssigned (line 211) | private void ResetRevitParameterInfoIfAssigned()
method OnPropertyChanged (line 226) | protected void OnPropertyChanged([CallerMemberName] string name = null)
class RevitParameterInfo (line 236) | public class RevitParameterInfo
method RevitParameterInfo (line 242) | public RevitParameterInfo()
method RevitParameterInfo (line 248) | public RevitParameterInfo(string name, ElementId id)
class IFCUserDefinedPropertyMapping (line 259) | public partial class IFCUserDefinedPropertyMapping : ChildWindow, INotif...
method OnPropertyInfoChanged (line 310) | private void OnPropertyInfoChanged(object sender, PropertyChangedEvent...
method OnObservablePropertiesCollectionChanged (line 321) | private void OnObservablePropertiesCollectionChanged(object sender, Sy...
method OnPropertyChanged (line 394) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method IFCUserDefinedPropertyMapping (line 403) | public IFCUserDefinedPropertyMapping()
method InitializePropertySetList (line 421) | private void InitializePropertySetList()
method button_Add_Click (line 438) | private void button_Add_Click(object sender, RoutedEventArgs e)
method InitializeIFCAttributes (line 489) | public void InitializeIFCAttributes(IFCUserDefinedPropertySet newParam...
method button_Import_Click (line 502) | private void button_Import_Click(object sender, RoutedEventArgs e)
method InitData (line 578) | private void InitData()
method button_Copy_Click (line 585) | private void button_Copy_Click(object sender, RoutedEventArgs e)
method button_Save_Click (line 619) | private void button_Save_Click(object sender, RoutedEventArgs e)
method button_Export_Click (line 626) | private void button_Export_Click(object sender, RoutedEventArgs e)
method button_Delete_Click (line 649) | private void button_Delete_Click(object sender, RoutedEventArgs e)
method GetCurrentPropertySet (line 668) | private IFCUserDefinedPropertySet GetCurrentPropertySet()
method button_Ok_Click (line 676) | private void button_Ok_Click(object sender, RoutedEventArgs e)
method button_Cancel_Click (line 686) | private void button_Cancel_Click(object sender, RoutedEventArgs e)
method OnContextHelp (line 692) | protected override bool OnContextHelp()
method ChildWindow_PreviewKeyDown (line 700) | private void ChildWindow_PreviewKeyDown(object sender, KeyEventArgs e)
method ChildWindow_Closing (line 709) | private void ChildWindow_Closing(object sender, CancelEventArgs e)
method button_SelectEnitites_Click (line 714) | private void button_SelectEnitites_Click(object sender, RoutedEventArg...
method GetSelectedEnititesString (line 741) | private string GetSelectedEnititesString()
method button_Rename_Click (line 751) | private void button_Rename_Click(object sender, RoutedEventArgs e)
method button_ResetEnitites_Click (line 781) | private void button_ResetEnitites_Click(object sender, RoutedEventArgs e)
method button_RevitPropertyEdit_Click (line 786) | private void button_RevitPropertyEdit_Click(object sender, RoutedEvent...
method button_AddRow_Click (line 812) | private void button_AddRow_Click(object sender, RoutedEventArgs e)
method CreatePropertyInfoForSelectedSet (line 820) | private UserDefinedPropertyInfo CreatePropertyInfoForSelectedSet()
method IsValidPropertySetName (line 843) | public static bool IsValidPropertySetName(string propertySetName, ILis...
method IsValidPropertyName (line 853) | public static bool IsValidPropertyName(string propertyName, IList<stri...
method SaveDialogChanges (line 860) | private void SaveDialogChanges()
method StartTransaction (line 865) | private void StartTransaction()
method CommitTransaction (line 871) | private void CommitTransaction()
method DiscardTransactions (line 881) | private void DiscardTransactions()
method listBox_PropertySets_SelectionChanged (line 888) | private void listBox_PropertySets_SelectionChanged(object sender, Sele...
method InitializeDataTypes (line 909) | private void InitializeDataTypes()
method GetDataTypesFromCache (line 931) | private ObservableCollection<string> GetDataTypesFromCache(bool isQuan...
method IsQuantitySetSelected (line 944) | public static bool? IsQuantitySetSelected(string selectedSetName)
method IsIFCAttributeSetSelected (line 958) | public static bool? IsIFCAttributeSetSelected(string selectedSetName)
method WritePropertyInfoToPropertySet (line 972) | private void WritePropertyInfoToPropertySet(string psetName)
method WritePropertyInfoToPropertySet (line 984) | private void WritePropertyInfoToPropertySet(IFCUserDefinedPropertySet ...
method InitializePropertyGrid (line 1004) | private void InitializePropertyGrid()
method InitializeObservableProperties (line 1017) | private void InitializeObservableProperties(IList<IFCUserDefinedProper...
method InitializeApplicableEntitiesList (line 1035) | private void InitializeApplicableEntitiesList()
method button_RemoveRow_Click (line 1054) | private void button_RemoveRow_Click(object sender, RoutedEventArgs e)
method button_RemoveEntity_Click (line 1062) | private void button_RemoveEntity_Click(object sender, RoutedEventArgs e)
method FilterDataTypes (line 1074) | private void FilterDataTypes(string filterText, ComboBox comboBox, boo...
method ComboBox_DataType_Loaded (line 1080) | private void ComboBox_DataType_Loaded(object sender, RoutedEventArgs e)
method ComboBox_DataType_SelectionChanged (line 1103) | private void ComboBox_DataType_SelectionChanged(object sender, Selecti...
method IsTableSpecificDataType (line 1119) | private static bool IsTableSpecificDataType(ComboBox comboBox)
method ComboBox_DataType_DropDownOpened (line 1124) | private void ComboBox_DataType_DropDownOpened(object sender, EventArgs e)
method ComboBox_DataType_TextChanged (line 1142) | private void ComboBox_DataType_TextChanged(ComboBox comboBox, TextChan...
class RowIndexValueConverter (line 1178) | public class RowIndexValueConverter : IValueConverter
method Convert (line 1180) | public object Convert(object value, Type targetType, object parameter,
method ConvertBack (line 1189) | public object ConvertBack(object value, Type targetType, object parame...
class RowIndexSelectedConverter (line 1200) | public class RowIndexSelectedConverter : IValueConverter
method Convert (line 1202) | public object Convert(object value, Type targetType, object parameter,
method ConvertBack (line 1208) | public object ConvertBack(object value, Type targetType, object parame...
class IsPropertySetSelectedConverter (line 1216) | public class IsPropertySetSelectedConverter : IValueConverter
method Convert (line 1218) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1238) | public object ConvertBack(object value, Type targetType, object parame...
class RevitParameterConverter (line 1245) | public class RevitParameterConverter : IValueConverter
method Convert (line 1247) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1257) | public object ConvertBack(object value, Type targetType, object parame...
class QuantityLabelVisibilityConverter (line 1263) | public class QuantityLabelVisibilityConverter : IValueConverter
method Convert (line 1265) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1278) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
class IFCAttributesLabelVisibilityConverter (line 1284) | public class IFCAttributesLabelVisibilityConverter : IValueConverter
method Convert (line 1286) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1299) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
class IFCAttributesColumnReadOnlyConverter (line 1305) | public class IFCAttributesColumnReadOnlyConverter : IValueConverter
method Convert (line 1307) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1330) | object IValueConverter.ConvertBack(object value, Type targetType, obje...
class TablePropertyTypeVisibilityConverter (line 1336) | public class TablePropertyTypeVisibilityConverter : IValueConverter
method Convert (line 1338) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1348) | public object ConvertBack(object value, Type targetType, object parame...
class TablePropertyTypeEnabledConverter (line 1354) | public class TablePropertyTypeEnabledConverter : IValueConverter
method Convert (line 1356) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 1366) | public object ConvertBack(object value, Type targetType, object parame...
FILE: Source/IFCExporterUIOverride/IFCPropertySets.cs
class IFCExportedPropertySets (line 36) | public class IFCExportedPropertySets
method IFCExportedPropertySets (line 50) | public IFCExportedPropertySets(bool exportInternalRevit, bool exportIF...
method ToString (line 59) | public override string ToString()
FILE: Source/IFCExporterUIOverride/IFCRenameExportSetup.xaml.cs
class RenameExportSetupWindow (line 31) | public partial class RenameExportSetupWindow : ChildWindow
method RenameExportSetupWindow (line 41) | public RenameExportSetupWindow(IFCExportConfigurationsMap configuratio...
method GetName (line 54) | public String GetName()
method buttonOK_Click (line 64) | private void buttonOK_Click(object sender, RoutedEventArgs e)
method buttonCancel_Click (line 76) | private void buttonCancel_Click(object sender, RoutedEventArgs e)
method textBoxNewName_TextChanged (line 87) | private void textBoxNewName_TextChanged(object sender, TextChangedEven...
FILE: Source/IFCExporterUIOverride/IFCSitePlacementAttributes.cs
class IFCSitePlacementAttributes (line 26) | public class IFCSitePlacementAttributes
method IFCSitePlacementAttributes (line 31) | public IFCSitePlacementAttributes(SiteTransformBasis transformBasis)
method ToString (line 36) | public override string ToString()
FILE: Source/IFCExporterUIOverride/IFCSpaceBoundaryAttributes.cs
class IFCSpaceBoundariesAttributes (line 35) | public class IFCSpaceBoundariesAttributes
method IFCSpaceBoundariesAttributes (line 46) | public IFCSpaceBoundariesAttributes(int level)
method ToString (line 55) | public override string ToString()
FILE: Source/IFCExporterUIOverride/IFCTemplateData.cs
class BaseTemplate (line 13) | public abstract class BaseTemplate : ChildWindow, IDataErrorInfo, INotif...
method BaseTemplate (line 19) | public BaseTemplate(IFCTemplateData data)
method OnInit (line 25) | internal void OnInit(object obj)
method OnPropertyChanged (line 43) | protected void OnPropertyChanged([CallerMemberName] string name = null)
method GetToolTip (line 84) | public string GetToolTip()
method GetLabelContent (line 105) | public string GetLabelContent()
method SetupEnterKeyHandler (line 123) | protected void SetupEnterKeyHandler(TextBox textBox, Button saveButton)
method SetupSaveClickHandler (line 137) | protected void SetupSaveClickHandler(Button saveButton, TextBox textBox)
method SetupCancelClickHandler (line 156) | protected void SetupCancelClickHandler(Button cancelButton)
class IFCTemplateData (line 173) | public partial class IFCTemplateData
type DialogTypeEnum (line 175) | public enum DialogTypeEnum
method IFCTemplateData (line 191) | public IFCTemplateData(string newName, IList<string> existingNames, bo...
method IsValidName (line 204) | public bool IsValidName(string name)
method RemoveDuplicateNumberIfItExists (line 226) | private (string, int) RemoveDuplicateNumberIfItExists(string initName)
method UpdateName (line 250) | public void UpdateName(string newName)
method MakeUniqueName (line 255) | public string MakeUniqueName()
method GetNewNameFromResources (line 292) | private string GetNewNameFromResources()
method ContainsInvalidTemplateCharacters (line 310) | public static bool ContainsInvalidTemplateCharacters(string name)
method RemoveInvalidCharacters (line 324) | public static string RemoveInvalidCharacters(string name)
class IFCTemplateData (line 306) | public partial class IFCTemplateData
type DialogTypeEnum (line 175) | public enum DialogTypeEnum
method IFCTemplateData (line 191) | public IFCTemplateData(string newName, IList<string> existingNames, bo...
method IsValidName (line 204) | public bool IsValidName(string name)
method RemoveDuplicateNumberIfItExists (line 226) | private (string, int) RemoveDuplicateNumberIfItExists(string initName)
method UpdateName (line 250) | public void UpdateName(string newName)
method MakeUniqueName (line 255) | public string MakeUniqueName()
method GetNewNameFromResources (line 292) | private string GetNewNameFromResources()
method ContainsInvalidTemplateCharacters (line 310) | public static bool ContainsInvalidTemplateCharacters(string name)
method RemoveInvalidCharacters (line 324) | public static string RemoveInvalidCharacters(string name)
class ReservedPsetToLightErrorConverter (line 346) | public class ReservedPsetToLightErrorConverter : IValueConverter
method Convert (line 348) | public object Convert(object value, Type targetType, object parameter,...
method ConvertBack (line 354) | public object ConvertBack(object value, Type targetType, object parame...
FILE: Source/IFCExporterUIOverride/IFCUIUtility.cs
class IFCUISettings (line 35) | static public class IFCUISettings
method GetAssemblyVersion (line 41) | static public string GetAssemblyVersion()
method GetAssemblyVersionForUI (line 56) | static public string GetAssemblyVersionForUI()
method GenerateFileNameFromDocument (line 71) | static public string GenerateFileNameFromDocument(Document doc, ISet<s...
FILE: Source/IFCExporterUIOverride/IFCVersionExtensions.cs
class IFCVersionExtensions (line 25) | internal static class IFCVersionExtensions
method ToLabel (line 31) | public static string ToLabel(this IFCVersion version)
FILE: Source/IFCExporterUIOverride/Properties/Resources.Designer.cs
class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...
FILE: Source/IFCExporterUIOverride/Properties/Settings.Designer.cs
class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
FILE: Source/IFCExporterUIOverride/Win32API.cs
class Win32API (line 24) | public class Win32API
method RtlIsDosDeviceName_U (line 37) | [DllImport("ntdll.dll")]
FILE: Source/Revit.IFC.Common/Enums/CommonEnum.cs
type SiteTransformBasis (line 12) | public enum SiteTransformBasis
type IFCRepresentationIdentifier (line 22) | public enum IFCRepresentationIdentifier
FILE: Source/Revit.IFC.Common/Enums/IFC2X2_ADD1EntityType.cs
type IFCEntityType (line 11) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC2X3_TC1EntityType.cs
type IFCEntityType (line 11) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC2xEntityType.cs
type IFCEntityType (line 29) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC4EntityType.cs
type IFCEntityType (line 11) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC4x1EntityType.cs
type IFCEntityType (line 32) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC4x2EntityType.cs
type IFCEntityType (line 32) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFC4x3EntityType.cs
type IFCEntityType (line 6) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFCEntityType.cs
type IFCEntityType (line 11) | public enum IFCEntityType
FILE: Source/Revit.IFC.Common/Enums/IFCKnownMVDAndER.cs
type KnownERNames (line 12) | public enum KnownERNames
type KnownFacilityTypes (line 20) | public enum KnownFacilityTypes
FILE: Source/Revit.IFC.Common/Extension/IFCAddress.cs
class IFCAddress (line 31) | public class IFCAddress
method IFCAddress (line 54) | public IFCAddress()
method GetAddressInStorage (line 75) | private IList<DataStorage> GetAddressInStorage(Document document, Sche...
method UpdateAddress (line 89) | public void UpdateAddress(Document document, IFCAddressItem addressItem)
method GetSavedAddress (line 143) | public bool GetSavedAddress(Document document, out IFCAddressItem addr...
FILE: Source/Revit.IFC.Common/Extension/IFCAddressItem.cs
class IFCAddressItem (line 29) | public class IFCAddressItem : INotifyPropertyChanged
method isUnchanged (line 228) | public Boolean isUnchanged(IFCAddressItem addressToCheck)
method HasData (line 239) | public bool HasData()
method OnPropertyChanged (line 254) | protected void OnPropertyChanged(string name)
method Clone (line 267) | public IFCAddressItem Clone()
method IFCAddressItem (line 272) | public IFCAddressItem()
method IFCAddressItem (line 280) | private IFCAddressItem(IFCAddressItem other)
FILE: Source/Revit.IFC.Common/Extension/IFCClassification.cs
class IFCClassification (line 28) | public class IFCClassification : INotifyPropertyChanged
method IsUnchanged (line 141) | public bool IsUnchanged(IFCClassification classificationToCheck)
method IsClassificationEmpty (line 161) | public bool IsClassificationEmpty()
method AreMandatoryFieldsFilled (line 174) | public bool AreMandatoryFieldsFilled()
method IsMandatoryEmpty (line 188) | public bool IsMandatoryEmpty()
method OnPropertyChanged (line 199) | protected void OnPropertyChanged(string name)
method Clone (line 212) | public IFCClassification Clone()
method IFCClassification (line 217) | public IFCClassification()
method IFCClassification (line 225) | private IFCClassification(IFCClassification other)
FILE: Source/Revit.IFC.Common/Extension/IFCClassificationMgr.cs
class IFCClassificationMgr (line 30) | public class IFCClassificationMgr
method GetSchema (line 48) | private static Schema GetSchema()
method GetSchemaV1 (line 68) | private static Schema GetSchemaV1()
method DeleteObsoleteSchemas (line 78) | public static void DeleteObsoleteSchemas(Document document)
method GetClassificationInStorage (line 146) | private static IList<DataStorage> GetClassificationInStorage(Document ...
method UpdateClassification (line 160) | public static void UpdateClassification(Document document, IFCClassifi...
method GetSavedClassifications (line 210) | public static bool GetSavedClassifications(Document document, Schema s...
FILE: Source/Revit.IFC.Common/Extension/IFCFileHeader.cs
class IFCFileHeader (line 28) | public class IFCFileHeader
method IFCFileHeader (line 48) | public IFCFileHeader()
method GetFileHeaderInStorage (line 69) | private IList<DataStorage> GetFileHeaderInStorage(Document document, S...
method UpdateFileHeader (line 83) | public void UpdateFileHeader(Document document, IFCFileHeaderItem file...
method GetSavedFileHeader (line 133) | public bool GetSavedFileHeader(Document document, out IFCFileHeaderIte...
FILE: Source/Revit.IFC.Common/Extension/IFCFileHeaderItem.cs
class IFCFileHeaderItem (line 28) | public class IFCFileHeaderItem : INotifyPropertyChanged
method AddDescription (line 41) | public void AddDescription(string descriptionItem)
method AddOrReplaceDescriptionItem (line 52) | public bool AddOrReplaceDescriptionItem(string newDescItem)
method isUnchanged (line 209) | public Boolean isUnchanged(IFCFileHeaderItem headerToCheck)
method OnPropertyChanged (line 220) | protected void OnPropertyChanged(string name)
method Clone (line 233) | public IFCFileHeaderItem Clone()
method IFCFileHeaderItem (line 238) | public IFCFileHeaderItem()
method IFCFileHeaderItem (line 242) | public IFCFileHeaderItem(Document doc)
method IFCFileHeaderItem (line 253) | private IFCFileHeaderItem(IFCFileHeaderItem other)
FILE: Source/Revit.IFC.Common/Utility/AllocatedGeometryObjectCache.cs
class AllocatedGeometryObjectCache (line 34) | public class AllocatedGeometryObjectCache
method AddGeometryObject (line 42) | public void AddGeometryObject(GeometryObject geometryObject)
method DisposeCache (line 50) | public void DisposeCache()
FILE: Source/Revit.IFC.Common/Utility/COBieCompanyInfo.cs
class COBieCompanyInfo (line 11) | public class COBieCompanyInfo
method COBieCompanyInfo (line 23) | public COBieCompanyInfo()
method COBieCompanyInfo (line 28) | public COBieCompanyInfo(string compInfoStr)
method EmailValidator (line 45) | public bool EmailValidator()
method PhoneValidator (line 54) | public bool PhoneValidator()
method ToJsonString (line 63) | public string ToJsonString()
FILE: Source/Revit.IFC.Common/Utility/COBieProjectInfo.cs
class COBieProjectInfo (line 10) | public class COBieProjectInfo
method COBieProjectInfo (line 21) | public COBieProjectInfo()
method COBieProjectInfo (line 26) | public COBieProjectInfo(string projInfoStr)
method ToJsonString (line 42) | public string ToJsonString()
FILE: Source/Revit.IFC.Common/Utility/CoordReferenceInfo.cs
class CoordReferenceInfo (line 14) | public class CoordReferenceInfo
class CRSInfo (line 35) | public class CRSInfo
method Clear (line 75) | public void Clear()
FILE: Source/Revit.IFC.Common/Utility/DirectoryUtil.cs
class DirectoryUtil (line 27) | public class DirectoryUtil
FILE: Source/Revit.IFC.Common/Utility/ElementComparer.cs
type ElementComparer (line 28) | public struct ElementComparer : IComparer<Element>
method Compare (line 38) | public int Compare(Element elem1, Element elem2)
FILE: Source/Revit.IFC.Common/Utility/IFCAnyHandleUtil.cs
class ListExtensions (line 31) | public static class ListExtensions
method AddIfNotNull (line 40) | public static bool AddIfNotNull<T>(this IList<T> myList, T hnd) where ...
class DictionaryExtensionsClass (line 53) | public static class DictionaryExtensionsClass
method AddIfNotNullAndNewKey (line 55) | public static bool AddIfNotNullAndNewKey<T>(this IDictionary<string, T...
class SetExtensions (line 72) | public static class SetExtensions
method AddIfNotNull (line 81) | public static bool AddIfNotNull<T>(this ISet<T> mySet, T hnd) where T ...
class IFCLimits (line 91) | public class IFCLimits
method CalculateMaxAllowedSize (line 110) | public static int CalculateMaxAllowedSize(string str)
class IFCAnyHandleUtil (line 198) | public class IFCAnyHandleUtil
class IfcPointList (line 200) | public class IfcPointList
type PointDimension (line 202) | public enum PointDimension
method Last (line 211) | public PointBase Last() { return Points.Last(); }
method SetOrCheckPointDim (line 223) | private void SetOrCheckPointDim(PointDimension dim)
method AddPoints (line 234) | public void AddPoints(UV beg, UV end)
method AddPoints (line 241) | public void AddPoints(XYZ beg, XYZ end)
method AddPoints (line 248) | public void AddPoints(IList<XYZ> points)
method AddPoints (line 255) | public void AddPoints(IList<UV> points)
method AddPoints (line 262) | public void AddPoints(UV start, UV mid, UV end)
method AddPoints (line 270) | public void AddPoints(XYZ start, XYZ mid, XYZ end)
method AddPointList (line 278) | public void AddPointList(IfcPointList list)
method InsertPointList (line 284) | public void InsertPointList(int index, IfcPointList list)
method OnIFCStringTooLongWarn (line 302) | private static void OnIFCStringTooLongWarn(int stepID, string attrName...
method EventClear (line 307) | public static void EventClear()
method GetIFCEntityTypeName (line 317) | public static string GetIFCEntityTypeName(IFCEntityType entityType)
method GetIFCEntityTypeFromName (line 333) | public static IFCEntityType GetIFCEntityTypeFromName(string entityType...
method CreateInstance (line 350) | public static IFCAnyHandle CreateInstance(IFCFile file, IFCEntityType ...
method OverrideNameAttribute (line 361) | public static void OverrideNameAttribute(IFCAnyHandle handle, string v...
method ValidateSubTypeOf (line 374) | public static void ValidateSubTypeOf(IFCAnyHandle handle, bool nullAll...
method ValidateSubTypeOf (line 400) | public static void ValidateSubTypeOf(IFCAnyHandle handle, bool nullAll...
method ValidateSubTypeOf (line 426) | public static void ValidateSubTypeOf(ICollection<IFCAnyHandle> handles...
method ValidateSubTypeOf (line 451) | public static void ValidateSubTypeOf(ICollection<IFCAnyHandle> handles...
method SetAttribute (line 494) | public static void SetAttribute(IFCAnyHandle handle, string name, stri...
method SetAttribute (line 523) | public static void SetAttribute(IFCAnyHandle handle, string name, Enum...
method SetAttribute (line 532) | public static void SetAttribute(IFCAnyHandle handle, string name, stri...
method SetAttribute (line 551) | public static void SetAttribute(IFCAnyHandle handle, string name, IFCL...
method SetAttribute (line 569) | public static void SetAttribute(IFCAnyHandle handle, string name, IFCL...
method SetAttribute (line 588) | public static void SetAttribute(IFCAnyHandle handle, string name, IFCA...
method SetAttribute (line 604) | public static void SetAttribute(IFCAnyHandle handle, string name, doub...
method SetAttribute (line 622) | public static void SetAttribute(IFCAnyHandle handle, string name, doub...
method SetAttribute (line 638) | public static void SetAttribute(IFCAnyHandle handle, string name, bool...
method SetAttribute (line 656) | public static void SetAttribute(IFCAnyHandle handle, string name, bool...
method SetAttribute (line 672) | public static void SetAttribute(IFCAnyHandle handle, string name, int ...
method SetAttribute (line 690) | public static void SetAttribute(IFCAnyHandle handle, string name, int?...
method SetAttribute (line 710) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 734) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 755) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 772) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 820) | public static void SetAttribute(IFCAnyHandle handle, string name, IFCA...
method SetAttribute (line 877) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 929) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 979) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 1000) | public static void SetAttribute(IFCAnyHandle handle, string name, ILis...
method SetAttribute (line 1032) | public static void SetAttribute(IFCAnyHandle handle, string name, ISet...
method SetAttribute (line 1056) | public static void SetAttribute(IFCAnyHandle handle, string name, ISet...
method SetAttribute (line 1077) | public static void SetAttribute(IFCAnyHandle handle, string name, ISet...
method SetAttribute (line 1098) | public static void SetAttribute(IFCAnyHandle handle, string name, ISet...
method SetAttribute (line 1119) | public static void SetAttribute(IFCAnyHandle handle, string name, ISet...
method SetAttribute (line 1150) | public static void SetAttribute(IFCAnyHandle handle, string name, IFCD...
method GetAggregateAttribute (line 1168) | public static T GetAggregateAttribute<T>(IFCAnyHandle handle, string n...
method GetAggregateIntAttribute (line 1199) | public static T GetAggregateIntAttribute<T>(IFCAnyHandle handle, strin...
method GetAggregateDoubleAttribute (line 1233) | public static T GetAggregateDoubleAttribute<T>(IFCAnyHandle handle, st...
method GetAggregateStringAttribute (line 1267) | public static T GetAggregateStringAttribute<T>(IFCAnyHandle handle, st...
method GetValidAggregateInstanceAttribute (line 1301) | public static T GetValidAggregateInstanceAttribute<T>(IFCAnyHandle han...
method GetAggregateInstanceAttribute (line 1332) | public static T GetAggregateInstanceAttribute<T>(IFCAnyHandle handle, ...
method GetEntityType (line 1345) | public static IFCEntityType GetEntityType(IFCAnyHandle handle)
method GetObjectType (line 1364) | public static string GetObjectType(IFCAnyHandle handle)
method GetCoordinates (line 1381) | public static IList<double> GetCoordinates(IFCAnyHandle cartesianPoint)
method GetValidInstanceAttribute (line 1414) | public static IFCAnyHandle GetValidInstanceAttribute(IFCAnyHandle hnd,...
method GetInstanceAttribute (line 1433) | public static IFCAnyHandle GetInstanceAttribute(IFCAnyHandle hnd, stri...
method GetStringAttribute (line 1447) | public static string GetStringAttribute(IFCAnyHandle hnd, string name)
method GetIntAttribute (line 1469) | public static int? GetIntAttribute(IFCAnyHandle hnd, string name)
method GetDoubleAttribute (line 1491) | public static double? GetDoubleAttribute(IFCAnyHandle hnd, string name)
method GetBooleanAttribute (line 1513) | public static bool? GetBooleanAttribute(IFCAnyHandle hnd, string name)
method GetLogicalAttribute (line 1535) | public static IFCLogical? GetLogicalAttribute(IFCAnyHandle hnd, string...
method GetEnumerationAttribute (line 1561) | public static string GetEnumerationAttribute(IFCAnyHandle hnd, string ...
method GetLocation (line 1582) | public static IFCAnyHandle GetLocation(IFCAnyHandle axisPlacement)
method GetObjectPlacement (line 1595) | public static IFCAnyHandle GetObjectPlacement(IFCAnyHandle product)
method HasRelDecomposes (line 1608) | public static bool HasRelDecomposes(IFCAnyHandle objectHandle)
method GetRelDecomposes (line 1635) | public static HashSet<IFCAnyHandle> GetRelDecomposes(IFCAnyHandle obje...
method GetHasRepresentation (line 1665) | public static HashSet<IFCAnyHandle> GetHasRepresentation(IFCAnyHandle ...
method GetRepresentation (line 1694) | public static IFCAnyHandle GetRepresentation(IFCAnyHandle productHandle)
method GetContextOfItems (line 1713) | public static IFCAnyHandle GetContextOfItems(IFCAnyHandle representation)
method GetRepresentationIdentifier (line 1732) | public static string GetRepresentationIdentifier(IFCAnyHandle represen...
method GetRepresentationType (line 1751) | public static string GetRepresentationType(IFCAnyHandle representation)
method GetBaseRepresentationType (line 1771) | public static string GetBaseRepresentationType(IFCAnyHandle representa...
method GetItems (line 1808) | public static HashSet<IFCAnyHandle> GetItems(IFCAnyHandle representation)
method GetRepresentations (line 1837) | public static List<IFCAnyHandle> GetRepresentations(IFCAnyHandle repre...
method GetOpenings (line 1866) | public static List<IFCAnyHandle> GetOpenings(IFCAnyHandle ifcElement)
method AddRepresentations (line 1897) | public static void AddRepresentations(IFCAnyHandle productRepresentati...
method GetProductDefinitionShapeName (line 1924) | public static string GetProductDefinitionShapeName(IFCAnyHandle produc...
method GetProductDefinitionShapeDescription (line 1943) | public static string GetProductDefinitionShapeDescription(IFCAnyHandle...
method GetProductRepresentations (line 1962) | public static List<IFCAnyHandle> GetProductRepresentations(IFCAnyHandl...
method AddProductRepresentations (line 1981) | public static void AddProductRepresentations(IFCAnyHandle productHandl...
method IsNullOrHasNoValue (line 1998) | public static bool IsNullOrHasNoValue(IFCAnyHandle handle)
method IsTypeOf (line 2009) | public static bool IsTypeOf(IFCAnyHandle handle, IFCEntityType type)
method IsTypeOneOf (line 2023) | public static bool IsTypeOneOf(IFCAnyHandle handle, ISet<IFCEntityType...
method IsSubTypeOf (line 2042) | public static bool IsSubTypeOf(IFCAnyHandle handle, IFCEntityType type)
method IsValidSubTypeOf (line 2056) | public static bool IsValidSubTypeOf(IFCAnyHandle handle, IFCEntityType...
method IsValidSubTypeOf (line 2070) | public static bool IsValidSubTypeOf(IFCAnyHandle handle, IFCEntityType...
method UpdateProject (line 2084) | public static void UpdateProject(IFCAnyHandle project, string projectN...
method Delete (line 2099) | public static void Delete(IFCAnyHandle handle)
FILE: Source/Revit.IFC.Common/Utility/IFCCompatibilityType.cs
class IFCCompatibilityType (line 9) | public static class IFCCompatibilityType
method CheckCompatibleType (line 108) | public static bool CheckCompatibleType(IFCEntityType typeToCheck, out ...
FILE: Source/Revit.IFC.Common/Utility/IFCEntityTrie.cs
class IFCEntityTrie (line 13) | public class IFCEntityTrie
method IFCEntityTrie (line 25) | public IFCEntityTrie()
method AddIFCEntityToDict (line 33) | public void AddIFCEntityToDict(string ifcEntity)
method AddEntry (line 42) | public void AddEntry(string word)
method PartialWordSearch (line 61) | public IList<string> PartialWordSearch(string partialWord)
method dumpInvertedIndex (line 81) | public string dumpInvertedIndex()
method dumpInvertedIndex (line 86) | string dumpInvertedIndex(IFCEntityTrieNode node)
class IFCEntityTrieNode (line 104) | public class IFCEntityTrieNode
method IFCEntityTrieNode (line 111) | public IFCEntityTrieNode(char inputChar = ' ', IFCEntityTrieNode paren...
method GetChild (line 124) | public IFCEntityTrieNode GetChild(char inputChar, IDictionary<short, s...
method CreateChild (line 144) | public IFCEntityTrieNode CreateChild(char inputChar, IDictionary<short...
method Prefix (line 173) | string Prefix()
method PrintIndexedItems (line 186) | public string PrintIndexedItems(IDictionary<short, string> entDict)
FILE: Source/Revit.IFC.Common/Utility/IFCFuzzyXYZ.cs
class IFCXYZFuzzyCompare (line 31) | public class IFCXYZFuzzyCompare
method Compare (line 40) | public static int Compare(XYZ first, XYZ second, double tol)
class IFCXYZFuzzyComparer (line 63) | public class IFCXYZFuzzyComparer : IComparer<XYZ>
method IFCXYZFuzzyComparer (line 72) | public IFCXYZFuzzyComparer(double tol)
method Compare (line 84) | public int Compare(XYZ first, XYZ second)
class IFCFuzzyXYZ (line 94) | public class IFCFuzzyXYZ : XYZ, IComparable
method IFCFuzzyXYZ (line 113) | public IFCFuzzyXYZ() : base() { }
method IFCFuzzyXYZ (line 120) | public IFCFuzzyXYZ(XYZ xyz, double? tol = null) : base(xyz.X, xyz.Y, x...
method CompareTo (line 130) | public int CompareTo(Object obj)
FILE: Source/Revit.IFC.Common/Utility/IfcSchemaEntityNode.cs
class IfcSchemaEntityNode (line 13) | public class IfcSchemaEntityNode
method IfcSchemaEntityNode (line 38) | public IfcSchemaEntityNode(string nodeName, bool abstractEntity = false)
method IfcSchemaEntityNode (line 50) | public IfcSchemaEntityNode(string nodeName, IfcSchemaEntityNode parent...
method AddChildNode (line 64) | public void AddChildNode(IfcSchemaEntityNode childNode)
method SetParentNode (line 78) | public void SetParentNode(IfcSchemaEntityNode parentNode)
method GetParent (line 92) | public IfcSchemaEntityNode GetParent()
method GetChildren (line 101) | public IList<IfcSchemaEntityNode> GetChildren()
method GetAllDescendants (line 113) | public IList<IfcSchemaEntityNode> GetAllDescendants()
method GetAllAncestors (line 128) | public IList<IfcSchemaEntityNode> GetAllAncestors()
method IsSubTypeOf (line 147) | public bool IsSubTypeOf(string superTypeName, bool strict = true)
method IsSuperTypeOf (line 181) | public bool IsSuperTypeOf(string subTypeName)
method PrintBranch (line 191) | public string PrintBranch(int level = 0)
method GetBranch (line 224) | public HashSet<string> GetBranch()
method CheckChildNode (line 248) | public bool CheckChildNode(string entityName)
FILE: Source/Revit.IFC.Common/Utility/IfcSchemaEntityTree.cs
class IfcSchemaEntityTree (line 18) | public class IfcSchemaEntityTree
method IfcSchemaEntityTree (line 44) | public IfcSchemaEntityTree()
method AddPredefinedTypeEnum (line 53) | public void AddPredefinedTypeEnum(string enumType, IList<string> enumL...
method Add (line 73) | public void Add(string entityName, string parentNodeName, string prede...
method Find (line 136) | public IfcSchemaEntityNode Find(string entityName)
method DumpEntityDict (line 148) | public string DumpEntityDict(string listName)
method DumpTree (line 177) | public string DumpTree()
method SchemaName (line 260) | static public string SchemaName(IFCVersion ifcFileVersion)
method VersionName (line 300) | static public IFCVersion VersionName(string schemaName)
method GetEntityDictFor (line 320) | static public IfcSchemaEntityTree GetEntityDictFor(IFCVersion ifcFileV...
method GetEntityDictFor (line 331) | static public IfcSchemaEntityTree GetEntityDictFor(string schemaFile, ...
method PopulateEntityDictFor (line 352) | static IfcSchemaEntityTree PopulateEntityDictFor(string schemaFile, st...
method GenerateEntityTrie (line 383) | public static void GenerateEntityTrie(ref IFCEntityTrie entityTrie)
method ProcessSchemaFile (line 391) | static void ProcessSchemaFile(string dirLocation, ref HashSet<string> ...
method GetAllEntityDict (line 419) | static public void GetAllEntityDict()
method GetAllCachedSchemaTrees (line 443) | static public IList<IfcSchemaEntityTree> GetAllCachedSchemaTrees()
method GetAllCachedSchemaNames (line 452) | static public IList<string> GetAllCachedSchemaNames()
method FindNonAbsInstanceSuperType (line 463) | static public IfcSchemaEntityNode FindNonAbsInstanceSuperType(IFCVersi...
method GetTypeNameFromInstanceName (line 478) | public static string GetTypeNameFromInstanceName(string instanceName, ...
method FindNonAbsInstanceSuperType (line 508) | static public IfcSchemaEntityNode FindNonAbsInstanceSuperType(string c...
method FindNonAbsSuperType (line 561) | static public IfcSchemaEntityNode FindNonAbsSuperType(IFCVersion conte...
method FindNonAbsSuperType (line 574) | static public IfcSchemaEntityNode FindNonAbsSuperType(string context, ...
method FindAllSuperTypes (line 614) | static public IList<IfcSchemaEntityNode> FindAllSuperTypes(IFCVersion ...
method FindAllSuperTypes (line 620) | static public IList<IfcSchemaEntityNode> FindAllSuperTypes(string cont...
method IsSubTypeOf (line 666) | static public bool IsSubTypeOf(IFCVersion ifcVersion, IFCEntityType su...
method IsSubTypeOf (line 679) | static public bool IsSubTypeOf(IFCVersion context, string subTypeName,...
method IsSubTypeOf (line 693) | static public bool IsSubTypeOf(string context, string subTypeName, str...
method IsSuperTypeOf (line 720) | static public bool IsSuperTypeOf(IFCVersion context, string superTypeN...
method IsSuperTypeOf (line 734) | static public bool IsSuperTypeOf(string context, string superTypeName,...
method GetPredefinedTypeList (line 759) | static public IList<string> GetPredefinedTypeList(IFCVersion context, ...
method GetPredefinedTypeList (line 771) | static public IList<string> GetPredefinedTypeList(IfcSchemaEntityTree ...
method IsDeprecatedOrUnsupported (line 805) | public static bool IsDeprecatedOrUnsupported(string schemaName, string...
method IsDeprecatedPredefinedType (line 825) | public static bool IsDeprecatedPredefinedType(string schemaName, strin...
FILE: Source/Revit.IFC.Common/Utility/MathUtil.cs
class PointBase (line 34) | public abstract class PointBase
class Point2D (line 36) | public class Point2D : PointBase
method Point2D (line 38) | public Point2D(UV uv) { coords = uv; }
class Point3D (line 41) | public class Point3D : PointBase
method Point3D (line 43) | public Point3D(XYZ xyz) { coords = xyz; }
class MathUtil (line 49) | public class MathUtil
method Eps (line 55) | public static double Eps() => 1.0e-9;
method SmallGap (line 57) | public static double SmallGap()
method IsAlmostEqual (line 70) | public static bool IsAlmostEqual(double d1, double d2)
method IsAlmostEqual (line 84) | public static bool IsAlmostEqual(double d1, double d2, double eps)
method IsAlmostEqual (line 98) | public static bool IsAlmostEqual(UV uv1, UV uv2)
method IsAlmostEqualAbsolute (line 115) | public static bool IsAlmostEqualAbsolute(XYZ xyz1, XYZ xyz2)
method IsAlmostZero (line 129) | public static bool IsAlmostZero(double dd)
method IsAlmostInteger (line 139) | public static bool IsAlmostInteger(double value)
method AreaIsAlmostZero (line 149) | public static bool AreaIsAlmostZero(double area)
method VolumeIsAlmostZero (line 159) | public static bool VolumeIsAlmostZero(double volume)
method PutInRange (line 171) | public static double PutInRange(double number, double midRange, double...
method VectorsAreParallel (line 205) | public static bool VectorsAreParallel(XYZ a, XYZ b)
method VectorsAreParallel2 (line 218) | public static int VectorsAreParallel2(XYZ a, XYZ b)
method VectorsAreOrthogonal (line 247) | public static bool VectorsAreOrthogonal(XYZ a, XYZ b)
method Swap (line 269) | public static void Swap<T>(ref T left, ref T right)
method SafeAcos (line 283) | public static double SafeAcos(double val)
method SafeAsin (line 299) | public static double SafeAsin(double val)
FILE: Source/Revit.IFC.Common/Utility/OptionsUtil.cs
class OptionsUtil (line 33) | public class OptionsUtil
method UseLegacyParameterMapping (line 41) | public static bool UseLegacyParameterMapping()
method GetNamedBooleanOption (line 61) | public static bool? GetNamedBooleanOption(IDictionary<String, String> ...
method GetNamedStringOption (line 82) | public static string GetNamedStringOption(IDictionary<string, string> ...
method GetNamedIntOption (line 95) | public static int? GetNamedIntOption(IDictionary<String, String> optio...
method GetNamedInt64Option (line 117) | public static Int64? GetNamedInt64Option(IDictionary<string, string> o...
method GetNamedDoubleOption (line 140) | public static double? GetNamedDoubleOption(IDictionary<String, String>...
method ExportAs2x2 (line 160) | public static bool ExportAs2x2 (IFCVersion fileVersion)
method ExportAs2x3CoordinationView1 (line 169) | public static bool ExportAs2x3CoordinationView1 (IFCVersion fileVersion)
method ExportAs2x3CoordinationView2 (line 178) | public static bool ExportAs2x3CoordinationView2 (IFCVersion fileVersion)
method ExportAs2x3ExtendedFMHandoverView (line 187) | public static bool ExportAs2x3ExtendedFMHandoverView (IFCVersion fileV...
method ExportAsCoordinationView2 (line 197) | public static bool ExportAsCoordinationView2 (IFCVersion fileVersion)
method ExportAsOlderThanIFC4 (line 207) | public static bool ExportAsOlderThanIFC4 (IFCVersion fileVersion)
method ExportAsOlderThanIFC4x3 (line 216) | public static bool ExportAsOlderThanIFC4x3(IFCVersion fileVersion)
method ExportAs4 (line 225) | public static bool ExportAs4 (IFCVersion fileVersion)
method ExportAs2x3 (line 235) | public static bool ExportAs2x3 (IFCVersion fileVersion)
method ExportAsCOBIE (line 245) | public static bool ExportAsCOBIE (IFCVersion fileVersion)
method ExportAs4ReferenceView (line 254) | public static bool ExportAs4ReferenceView (IFCVersion fileVersion)
method ExportAs4DesignTransferView (line 263) | public static bool ExportAs4DesignTransferView (IFCVersion fileVersion)
method ExportAs4General (line 273) | public static bool ExportAs4General (IFCVersion fileVersion)
method ExportAs4x3 (line 283) | public static bool ExportAs4x3(IFCVersion fileVersion)
method ExportAs4x3DesignTransferView (line 294) | public static bool ExportAs4x3DesignTransferView(IFCVersion fileVersion)
method ExportAs4x3ReferenceView (line 303) | public static bool ExportAs4x3ReferenceView(IFCVersion fileVersion)
method ExportAs2x3COBIE24DesignDeliverable (line 312) | public static bool ExportAs2x3COBIE24DesignDeliverable (IFCVersion fil...
method GetEPSGCodeFromGeoCoordDef (line 324) | public static (string projectedCRSName, string projectedCRSDesc, strin...
method ScaledGeoReferenceInformation (line 433) | public static (double eastings, double northings, double orthogonalHei...
method ProjectLocationInfo (line 457) | public static (double svNorthings, double svEastings, double svElevati...
method GeoReferenceInformation (line 515) | public static (double eastings, double northings, double orthogonalHei...
method PreIFC4Version (line 608) | public static bool PreIFC4Version(IFCVersion ifcVersion)
FILE: Source/Revit.IFC.Common/Utility/ProcessIFCXMLSchema.cs
class ProcessIFCXMLSchema (line 12) | public class ProcessIFCXMLSchema
method ProcessIFCSchema (line 19) | public static bool ProcessIFCSchema(FileInfo ifcxmlSchemaFile, ref Ifc...
method ValidationCallback (line 121) | static void ValidationCallback(object sender, ValidationEventArgs args)
FILE: Source/Revit.IFC.Common/Utility/RevitStatusBar.cs
class RevitStatusBar (line 29) | public class RevitStatusBar
method FindWindowEx (line 32) | [DllImport("user32.dll",
method SetWindowText (line 40) | [DllImport("user32.dll",
method RevitStatusBar (line 49) | protected RevitStatusBar()
method Set (line 61) | public void Set(string msg)
method Create (line 73) | public static RevitStatusBar Create()
FILE: Source/Revit.IFC.Common/Utility/SolidMeshGeometryInfo.cs
class SolidInfo (line 30) | public class SolidInfo
method SolidInfo (line 37) | public SolidInfo(Solid solid, Element ownerElement)
class SolidMeshGeometryInfo (line 63) | public class SolidMeshGeometryInfo
method SolidMeshGeometryInfo (line 77) | public SolidMeshGeometryInfo()
method AddSolid (line 87) | public void AddSolid(Solid solidToAdd, Element externalElement)
method AddMesh (line 98) | public void AddMesh(Mesh meshToAdd)
method GetSolids (line 107) | public List<Solid> GetSolids()
method GetMeshes (line 120) | public List<Mesh> GetMeshes()
method SolidsCount (line 128) | public int SolidsCount()
method MeshesCount (line 136) | public int MeshesCount()
method ClipSolidsList (line 150) | public void ClipSolidsList(GeometryElement geomElem, IFCRange range)
method GetTransformedGeometry (line 238) | public static GeometryElement GetTransformedGeometry(GeometryElement g...
method CollectSolidMeshGeometry (line 260) | private void CollectSolidMeshGeometry(GeometryElement geomElem,
method CollectSolidMeshGeometry (line 329) | public void CollectSolidMeshGeometry(GeometryElement geomElem, Allocat...
FILE: Source/Revit.IFC.Export/Exporter/AreaSchemeExporter.cs
class AreaSchemeExporter (line 38) | class AreaSchemeExporter
method ExportAreaScheme (line 46) | public static void ExportAreaScheme(IFCFile file, AreaScheme element,
FILE: Source/Revit.IFC.Export/Exporter/AssemblyInstanceExporter.cs
class AssemblyInstanceExporter (line 38) | class AssemblyInstanceExporter
method ExportAssemblyInstanceElement (line 47) | public static bool ExportAssemblyInstanceElement(ExporterIFC exporterI...
method SetLocalPlacementsRelativeToAssembly (line 141) | public static void SetLocalPlacementsRelativeToAssembly(ExporterIFC ex...
method ExportTrussElement (line 176) | public static void ExportTrussElement(ExporterIFC exporterIFC, Truss t...
method ExportBeamSystem (line 192) | public static void ExportBeamSystem(ExporterIFC exporterIFC, BeamSyste...
method ExportAssemblyInstanceWithMembers (line 210) | static void ExportAssemblyInstanceWithMembers(ExporterIFC exporterIFC,...
FILE: Source/Revit.IFC.Export/Exporter/AssemblyInstanceInfo.cs
class AssemblyInstanceInfo (line 29) | public class AssemblyInstanceInfo
FILE: Source/Revit.IFC.Export/Exporter/BeamExporter.cs
class BeamExporter (line 35) | public class BeamExporter
class BeamAxisInfo (line 40) | public class BeamAxisInfo
method BeamAxisInfo (line 45) | public BeamAxisInfo()
class BeamBodyAsExtrusionInfo (line 77) | private class BeamBodyAsExtrusionInfo
method BeamBodyAsExtrusionInfo (line 82) | public BeamBodyAsExtrusionInfo()
method GetBeamAxisTransform (line 121) | public static BeamAxisInfo GetBeamAxisTransform(Element element)
method CreateBeamAxis (line 196) | private static IFCAnyHandle CreateBeamAxis(ExporterIFC exporterIFC, El...
method CreateBeamGeometryAsExtrusion (line 263) | private static BeamBodyAsExtrusionInfo CreateBeamGeometryAsExtrusion(E...
method BeamGeometryToExport (line 330) | private static IList<GeometryObject> BeamGeometryToExport(ExporterIFC ...
method ExportBeamType (line 365) | public static void ExportBeamType(ExporterIFC exporterIFC, ProductWrap...
method ExportBeamAsStandardElement (line 407) | public static IFCAnyHandle ExportBeamAsStandardElement(ExporterIFC exp...
FILE: Source/Revit.IFC.Export/Exporter/BodyData.cs
type ShapeRepresentationType (line 31) | public enum ShapeRepresentationType
class BodyData (line 70) | public class BodyData
method BodyData (line 110) | public BodyData() { }
method BodyData (line 118) | public BodyData(IFCAnyHandle representationHnd, Transform offsetTransf...
method BodyData (line 135) | public BodyData(BodyData bodyData)
method AddMaterial (line 148) | public void AddMaterial(ElementId matId)
method AddRepresentationItemInfo (line 156) | public void AddRepresentationItemInfo(Document document, GraphicsStyle...
method Create (line 194) | public static BodyData Create(BodyData bodyDataIn, bool resetMaterials)
FILE: Source/Revit.IFC.Export/Exporter/BodyExporter.cs
class BodyExporter (line 37) | class BodyExporter
class FaceSetInfo (line 39) | class FaceSetInfo
method FaceSetInfo (line 41) | public FaceSetInfo(HashSet<IFCAnyHandle> faceSetHandles, bool isClosed)
method SetBestMaterialIdInExporter (line 60) | public static ElementId SetBestMaterialIdInExporter(GeometryObject geo...
method GetBestMaterialIdForGeometry (line 79) | public static ElementId GetBestMaterialIdForGeometry(IList<Solid> soli...
method GetBestMaterialIdForGeometry (line 153) | public static ElementId GetBestMaterialIdForGeometry(GeometryElement g...
method GetBestMaterialIdForGeometry (line 174) | public static ElementId GetBestMaterialIdForGeometry(GeometryObject ge...
method IsDuctCategory (line 277) | private static bool IsDuctCategory(ElementId categoryId)
method IsPipeCategory (line 290) | private static bool IsPipeCategory(ElementId categoryId)
method CategoryHasMaterialIdParam (line 304) | private static bool CategoryHasMaterialIdParam(ElementId categoryId)
method CategoryHasStructuralMaterialParam (line 320) | private static bool CategoryHasStructuralMaterialParam(ElementId categ...
method GetBestMaterialIdFromParameter (line 340) | private static ElementId GetBestMaterialIdFromParameter(Element element)
method CalcBestMaterialIdFromParameter (line 358) | private static ElementId CalcBestMaterialIdFromParameter(Element element)
method GetBestMaterialIdFromGeometryOrParameter (line 413) | public static ElementId GetBestMaterialIdFromGeometryOrParameter(IList...
method GetBestMaterialIdFromGeometryOrParameter (line 429) | public static ElementId GetBestMaterialIdFromGeometryOrParameter(Geome...
method GetBestMaterialIdFromGeometryOrParameter (line 445) | public static ElementId GetBestMaterialIdFromGeometryOrParameter(Geome...
method GetBestMaterialIdFromGeometryOrParameter (line 462) | public static ElementId GetBestMaterialIdFromGeometryOrParameter(Geome...
method GetMaterialIdsFromGeometryOrParameters (line 479) | public static IList<ElementId> GetMaterialIdsFromGeometryOrParameters(...
method CreateSurfaceStyleForRepItem (line 504) | public static void CreateSurfaceStyleForRepItem(ExporterIFC exporterIF...
method CreateCurveStyleForRepItem (line 577) | public static IFCAnyHandle CreateCurveStyleForRepItem(ExporterIFC expo...
method CanCreateClosedShell (line 606) | public static bool CanCreateClosedShell(Mesh mesh)
method CanCreateClosedShell (line 669) | public static bool CanCreateClosedShell(ICollection<IList<IList<int>>>...
method CanCreateClosedShell (line 737) | public static bool CanCreateClosedShell(ICollection<IFCAnyHandle> face...
method SafeProjection (line 819) | private static XYZ SafeProjection(PlanarFace face, XYZ originalPoint)
method ExportPlanarBodyIfPossible (line 832) | private static bool ExportPlanarBodyIfPossible(ExporterIFC exporterIFC...
class FuzzyPoint (line 972) | private class FuzzyPoint
method FuzzyPoint (line 976) | public FuzzyPoint(XYZ point)
method Equals (line 1011) | public override bool Equals(object obj)
method GetHashCode (line 1020) | public override int GetHashCode()
class PlanarKey (line 1028) | private class PlanarKey
method PlanarKey (line 1033) | public PlanarKey(XYZ norm, XYZ origin)
method Equals (line 1078) | public override bool Equals(object obj)
method GetHashCode (line 1087) | public override int GetHashCode()
class PlanarInfo (line 1095) | private class PlanarInfo
method AddTriangleIndexToVertexGrouping (line 1101) | public void AddTriangleIndexToVertexGrouping(int triangleIndex, int ...
method GetVertexList (line 1113) | private static IList<int> GetVertexList(TriangleInShellComponent trian...
method ConvertTrianglesToPlanarFacets (line 1121) | private static IList<IList<int>> ConvertTrianglesToPlanarFacets(Triang...
method CreateFaceFromVertexList (line 1354) | public static IFCAnyHandle CreateFaceFromVertexList(IFCFile file, ILis...
method ExportPlanarFacetsIfPossible (line 1389) | private static bool ExportPlanarFacetsIfPossible(IFCFile file, Triangu...
method CreateEdgeCurveFromCurve (line 1438) | private static IFCAnyHandle CreateEdgeCurveFromCurve(IFCFile file, Exp...
method CreateProfileCurveFromCurve (line 1453) | private static IFCAnyHandle CreateProfileCurveFromCurve(IFCFile file, ...
method ConvertRevitKnotsToIFCKnots (line 1503) | private static void ConvertRevitKnotsToIFCKnots(IList<double> original...
method CreateNURBSSurfaceFromFace (line 1523) | private static IFCAnyHandle CreateNURBSSurfaceFromFace(ExporterIFC exp...
method CreatePositionForFace (line 1614) | private static IFCAnyHandle CreatePositionForFace(ExporterIFC exporter...
method GetNonSingularUVPointForRevitFace (line 1630) | private static void GetNonSingularUVPointForRevitFace(Face face, out U...
method IsRightHanded (line 1666) | private static bool IsRightHanded(XYZ testPoint, XYZ axis, XYZ origin,...
method GetOneSurfaceNormal (line 1676) | private static XYZ GetOneSurfaceNormal(Face face, out Transform testPo...
method ExportBodyAsAdvancedBrep (line 1705) | public static IFCAnyHandle ExportBodyAsAdvancedBrep(ExporterIFC export...
method GetGeometriesFromGeometryElement (line 2183) | private static IList<GeometryObject> GetGeometriesFromGeometryElement(
method GetDataForExportPlanarSolidAsPolygonalFaceSet (line 2242) | private static IEnumerable<PlanarFace> GetDataForExportPlanarSolidAsPo...
method ExportPlanarSolidAsPolygonalFaceSet (line 2251) | private static (IFCAnyHandle, int) ExportPlanarSolidAsPolygonalFaceSet...
method AddStyleToFaceSet (line 2373) | private static void AddStyleToFaceSet(ExporterIFC exporterIFC, IFCFile...
method ExportBodyAsPolygonalFaceSet (line 2393) | public static IList<IFCAnyHandle> ExportBodyAsPolygonalFaceSet(Exporte...
method GetOptimalTessellation (line 2537) | private static TriangulatedSolidOrShell GetOptimalTessellation(Solid s...
method GetGeometryObjectListFromGeometryElement (line 2577) | private static List<GeometryObject> GetGeometryObjectListFromGeometryE...
method MergeAndCreateIfcFaces (line 2596) | private static IList<IFCAnyHandle> MergeAndCreateIfcFaces(IFCFile file...
method TooManyFaces (line 2635) | private static bool TooManyFaces(Solid solid, BodyExporterOptions opti...
method TooManyFacets (line 2644) | private static bool TooManyFacets(int numFacets, BodyExporterOptions o...
method TooManyFacets (line 2654) | private static bool TooManyFacets(int numFacets, int numTotalFacets, B...
method GetMeshCoordinateInfo (line 2666) | private static (IList<IList<double>>, IList<IList<int>>) GetMeshCoordi...
method GetSolidCoordinateInfo (line 2708) | private static (IList<IList<double>>, IList<IList<int>>) GetSolidCoord...
method GetGeometryCoordinateInfo (line 2765) | private static (IList<IList<double>>, IList<IList<int>>) GetGeometryCo...
method ExportBodyAsTriangulatedFaceSet (line 2789) | public static IList<IFCAnyHandle> ExportBodyAsTriangulatedFaceSet(Expo...
method ExportBodyAsTessellatedFaceSet (line 2874) | public static IList<IFCAnyHandle> ExportBodyAsTessellatedFaceSet(Expor...
method GetBestColourAndOpacity (line 2891) | private static (Color, double, ElementId) GetBestColourAndOpacity(Elem...
method GetBestColourAndOpacity (line 2917) | private static IFCAnyHandle GetBestColourAndOpacity(IFCFile file, Elem...
method ExportSurfaceAsTriangulatedFaceSet (line 2934) | private static IList<IFCAnyHandle> ExportSurfaceAsTriangulatedFaceSet(
method AreTessellationControlsEqual (line 3023) | private static bool AreTessellationControlsEqual(SolidOrShellTessellat...
method ExportBodyAsSolid (line 3043) | private static (bool exported, bool forceCoarse) ExportBodyAsSolid(Exp...
method ExportBodyAsBRep (line 3213) | private static BodyData ExportBodyAsBRep(ExporterIFC exporterIFC, ILis...
class SolidMetrics (line 3575) | private class SolidMetrics
method SolidMetrics (line 3582) | public SolidMetrics(Solid solid)
method Equals (line 3651) | public override bool Equals(object obj)
method GetHashCode (line 3660) | public override int GetHashCode()
method ExportBody (line 3676) | public static BodyData ExportBody(ExporterIFC exporterIFC,
method ExportBody (line 4260) | public static BodyData ExportBody(ExporterIFC exporterIFC,
method ExportBody (line 4287) | public static BodyData ExportBody(ExporterIFC exporterIFC,
method ExportBody (line 4314) | public static BodyData ExportBody(ExporterIFC exporterIFC,
method SaveMaterialAndFootprintInfo (line 4340) | static BodyData SaveMaterialAndFootprintInfo(BodyData bodyData, Materi...
method GetTriangleListsFromSolid (line 4361) | static IList<(List<List<XYZ>>, Color, double, ElementId)> GetTriangleL...
method GetTriangleListFromMesh (line 4411) | static (List<List<XYZ>>, Color, double, ElementId) GetTriangleListFrom...
method ColorToRgb (line 4433) | static IList<double> ColorToRgb(Color color)
method ColourRgbListFromColor (line 4441) | static IFCAnyHandle ColourRgbListFromColor(IFCFile file, Color matColor)
method ColourRgbListFromColors (line 4447) | static IFCAnyHandle ColourRgbListFromColors(IFCFile file, IList<Color>...
method TransformAndScalePoint (line 4457) | static XYZ TransformAndScalePoint(ExporterIFC exporterIFC, XYZ vertex,...
FILE: Source/Revit.IFC.Export/Exporter/BodyExporterOptions.cs
class BodyExporterOptions (line 28) | public class BodyExporterOptions
type BodyTessellationLevel (line 30) | public enum BodyTessellationLevel
method BodyExporterOptions (line 49) | private BodyExporterOptions() { }
method BodyExporterOptions (line 54) | public BodyExporterOptions(BodyExporterOptions options)
method SetDefaultCoarseTessellationControls (line 71) | static public void SetDefaultCoarseTessellationControls(SolidOrShellTe...
method BodyExporterOptions (line 88) | public BodyExporterOptions(bool tryToExportAsExtrusion, ExportOptionsC...
FILE: Source/Revit.IFC.Export/Exporter/BoundingBoxExporter.cs
class BoundingBoxExporter (line 37) | public class BoundingBoxExporter
method ExportBoundingBoxBase (line 39) | private static IFCAnyHandle ExportBoundingBoxBase(ExporterIFC exporter...
method GetLocalTransform (line 55) | private static Transform GetLocalTransform(ExporterIFC exporterIFC)
method NewMinBound (line 67) | private static XYZ NewMinBound(XYZ oldMinBound, IList<XYZ> vertices)
method NewMaxBound (line 75) | private static XYZ NewMaxBound(XYZ oldMaxBound, IList<XYZ> vertices)
method TransformVertexList (line 83) | private static IList<XYZ> TransformVertexList(IList<XYZ> vertices, Tra...
method ComputeApproximateBoundingBox (line 92) | private static BoundingBoxXYZ ComputeApproximateBoundingBox(IList<Soli...
method ExportBoundingBoxFromGeometry (line 171) | private static IFCAnyHandle ExportBoundingBoxFromGeometry(ExporterIFC ...
method ExportBoundingBox (line 195) | public static IFCAnyHandle ExportBoundingBox(ExporterIFC exporterIFC, ...
method ExportBoundingBox (line 218) | public static IFCAnyHandle ExportBoundingBox(ExporterIFC exporterIFC, ...
method ExportBoundingBox (line 237) | public static IFCAnyHandle ExportBoundingBox(ExporterIFC exporterIFC, ...
FILE: Source/Revit.IFC.Export/Exporter/CeilingExporter.cs
class CeilingExporter (line 35) | class CeilingExporter
method ExportCeilingElement (line 52) | public static void ExportCeilingElement(ExporterIFC exporterIFC, Ceili...
method ExportCovering (line 70) | public static void ExportCovering(ExporterIFC exporterIFC, Element ele...
FILE: Source/Revit.IFC.Export/Exporter/ConnectorExporter.cs
class ConnectorExporter (line 44) | class ConnectorExporter
method Export (line 56) | public static void Export(ExporterIFC exporterIFC)
method ProcessConnections (line 79) | private static void ProcessConnections(ExporterIFC exporterIFC, Connec...
class ConnectorComparer (line 202) | private class ConnectorComparer : IComparer<Connector>
method Compare (line 210) | public int Compare(Connector c1, Connector c2)
method Export (line 235) | private static void Export(ExporterIFC exporterIFC, ConnectorSet conne...
method CreateLocalPlacementForConnector (line 262) | static IFCAnyHandle CreateLocalPlacementForConnector(ExporterIFC expor...
method AddConnection (line 295) | static void AddConnection(ExporterIFC exporterIFC, Connector connector...
method ConnectionExists (line 503) | private static bool ConnectionExists(ElementId inID, ElementId outID)
method AddConnectionInternal (line 514) | private static void AddConnectionInternal(ElementId inID, ElementId ou...
method ClearConnections (line 523) | public static void ClearConnections()
method AddNestedMembership (line 530) | private static void AddNestedMembership(IFCAnyHandle hostElement, IFCA...
method CreateRelNestsFromCache (line 546) | private static void CreateRelNestsFromCache(IFCFile file)
method GetConnectorParameterFromDescription (line 566) | public static string GetConnectorParameterFromDescription(Connector co...
method ExportConnectorProperties (line 626) | private static void ExportConnectorProperties(ExporterIFC exporterIFC,...
method GetPortNameFromFlowDirection (line 672) | private static string GetPortNameFromFlowDirection(IFCFlowDirection fl...
method SetDistributionPortAttributes (line 691) | private static void SetDistributionPortAttributes(IFCAnyHandle port, C...
method GetMappedIFCDistributionPortType (line 741) | private static Toolkit.IFC4.IFCDistributionPortType GetMappedIFCDistri...
method GetMappedIFCDistributionSystem (line 767) | private static Toolkit.IFC4.IFCDistributionSystem GetMappedIFCDistribu...
method GetMappedIFCDistributionSystemFromElement (line 803) | public static Toolkit.IFC4.IFCDistributionSystem GetMappedIFCDistribut...
method GetSystemTypeFromDictionary (line 822) | private static Toolkit.IFC4.IFCDistributionSystem GetSystemTypeFromDic...
method InitializeSystemClassifications (line 840) | private static void InitializeSystemClassifications()
FILE: Source/Revit.IFC.Export/Exporter/CurtainSystemExporter.cs
class CurtainSystemExporter (line 35) | class CurtainSystemExporter
method ExportCurtainObjectCommonAsContainer (line 43) | public static void ExportCurtainObjectCommonAsContainer(ICollection<El...
method ExportCurtainObjectAsOneEntity (line 119) | public static void ExportCurtainObjectAsOneEntity(IFCAnyHandle parentHnd,
method CanExportCurtainWallAsContainer (line 249) | private static bool CanExportCurtainWallAsContainer(Document document,...
method ExportBase (line 283) | private static void ExportBase(ExporterIFC exporterIFC, IFCExportInfoP...
method GetVisiblePanelsForGrid (line 358) | public static ICollection<ElementId> GetVisiblePanelsForGrid(CurtainGr...
method GetSubElements (line 403) | private static ICollection<ElementId> GetSubElements(CurtainGridSet gr...
method ExportBaseWithGrids (line 424) | private static void ExportBaseWithGrids(ExporterIFC exporterIFC, Eleme...
method ExportWall (line 454) | public static void ExportWall(ExporterIFC exporterIFC, Wall hostElemen...
method ExportCurtainRoof (line 466) | public static void ExportCurtainRoof(ExporterIFC exporterIFC, RoofBase...
method ExportCurtainSystem (line 478) | public static void ExportCurtainSystem(ExporterIFC exporterIFC, Curtai...
method ExportLegacyCurtainElement (line 500) | public static void ExportLegacyCurtainElement(ExporterIFC exporterIFC,...
method IsLegacyCurtainElement (line 523) | public static bool IsLegacyCurtainElement(Element element)
method IsLegacyCurtainWall (line 534) | public static bool IsLegacyCurtainWall(Wall wall)
method IsCurtainSystem (line 564) | public static bool IsCurtainSystem(Element element)
method GetCurtainGridSet (line 580) | public static CurtainGridSet GetCurtainGridSet(Element element)
method ExportCurtainWallType (line 620) | public static void ExportCurtainWallType(ExporterIFC exporterIFC, Prod...
FILE: Source/Revit.IFC.Export/Exporter/CurveElementExporter.cs
class CurveElementExporter (line 38) | class CurveElementExporter
method ShouldCurveElementBeExported (line 45) | private static bool ShouldCurveElementBeExported(CurveElement curveEle...
method ExportCurveBasedElementCommon (line 75) | private static void ExportCurveBasedElementCommon(ExporterIFC exporter...
method ExportCurveElement (line 159) | public static void ExportCurveElement(ExporterIFC exporterIFC, CurveEl...
method ExportPropertyLineElement (line 179) | public static void ExportPropertyLineElement(ExporterIFC exporterIFC, ...
method CreateAnnotationProductRepresentation (line 188) | static IFCAnyHandle CreateAnnotationProductRepresentation(ExporterIFC ...
method CreateCurveAnnotation (line 221) | static IFCAnyHandle CreateCurveAnnotation(ExporterIFC exporterIFC, Ele...
method AddCurvesToAnnotation (line 255) | static void AddCurvesToAnnotation(IFCAnyHandle annotation, IList<IFCAn...
FILE: Source/Revit.IFC.Export/Exporter/DoorWindowExporter.cs
class DoorWindowExporter (line 37) | class DoorWindowExporter
method CreateDoor (line 39) | public static DoorWindowInfo CreateDoor(ExporterIFC exporterIFC, Famil...
method CreateWindow (line 45) | public static DoorWindowInfo CreateWindow(ExporterIFC exporterIFC, Fam...
FILE: Source/Revit.IFC.Export/Exporter/DuctInsulationExporter.cs
class DuctInsulationExporter (line 29) | class DuctInsulationExporter : InsulationExporter
method ExportDuctInsulation (line 39) | public static bool ExportDuctInsulation(ExporterIFC exporterIFC, Eleme...
FILE: Source/Revit.IFC.Export/Exporter/DuctLiningExporter.cs
class DuctLiningExporter (line 29) | class DuctLiningExporter
method ExportDuctLining (line 39) | public static bool ExportDuctLining(ExporterIFC exporterIFC, Element e...
FILE: Source/Revit.IFC.Export/Exporter/Exporter.cs
class ExporterApplication (line 49) | class ExporterApplication : IExternalDBApplication
method OnShutdown (line 58) | public ExternalDBApplicationResult OnShutdown(Autodesk.Revit.Applicati...
method OnStartup (line 68) | public ExternalDBApplicationResult OnStartup(Autodesk.Revit.Applicatio...
method OnApplicationInitialized (line 83) | private void OnApplicationInitialized(object sender, EventArgs eventArgs)
class Exporter (line 99) | public class Exporter : IExporterIFC
method InitializeElementExporters (line 131) | protected virtual void InitializeElementExporters()
method ExportHostDocument (line 151) | private void ExportHostDocument(ExporterIFC exporterIFC, Document docu...
method ExportLinkedDocument (line 161) | private void ExportLinkedDocument(ExporterIFC exporterIFC, ElementId l...
method ExportIFC (line 183) | public void ExportIFC(Document document, ExporterIFC exporterIFC, View...
method GetDescription (line 262) | public virtual string GetDescription()
method GetName (line 267) | public virtual string GetName()
method GetServerId (line 272) | public virtual Guid GetServerId()
method GetVendorId (line 277) | public virtual string GetVendorId()
method GetServiceId (line 283) | public Autodesk.Revit.DB.ExternalService.ExternalServiceId GetServiceId()
method ExportAdvanceSteelElements (line 295) | protected void ExportAdvanceSteelElements(ExporterIFC exporterIFC, Aut...
method SpatialElementInSectionBox (line 325) | private bool SpatialElementInSectionBox(BoundingBoxXYZ sectionBox, Ele...
method ShouldCreateTemporaryParts (line 346) | private bool ShouldCreateTemporaryParts(Element element, IFCExportInfo...
method NeedBuilding (line 370) | private bool NeedBuilding()
method ExportSite (line 385) | private void ExportSite(ExporterIFC exporterIFC, Document document)
method ExportSpatialElements (line 444) | protected void ExportSpatialElements(ExporterIFC exporterIFC, Document...
method ExportParts (line 504) | protected void ExportParts(ExporterIFC exporterIFC, Document document)
method ExportNonSpatialElements (line 591) | protected void ExportNonSpatialElements(ExporterIFC exporterIFC, Docum...
method ExportContainers (line 619) | protected void ExportContainers(ExporterIFC exporterIFC, Document docu...
method ExportCachedRailings (line 640) | protected void ExportCachedRailings(ExporterIFC exporterIFC, Autodesk....
method ExportCachedFabricAreas (line 660) | protected void ExportCachedFabricAreas(ExporterIFC exporterIFC, Autode...
method ExportTrusses (line 679) | protected void ExportTrusses(ExporterIFC exporterIFC, Autodesk.Revit.D...
method ExportBeamSystems (line 698) | protected void ExportBeamSystems(ExporterIFC exporterIFC, Autodesk.Rev...
method ExportGroups (line 717) | protected void ExportGroups(ExporterIFC exporterIFC, Autodesk.Revit.DB...
method ExportZones (line 806) | protected void ExportZones(ExporterIFC exporterIFC, Autodesk.Revit.DB....
method ExportAreaSchemes (line 825) | protected void ExportAreaSchemes(ExporterIFC exporterIFC, Autodesk.Rev...
method ExportGrids (line 834) | protected void ExportGrids(ExporterIFC exporterIFC, Autodesk.Revit.DB....
method ExportConnectors (line 840) | protected void ExportConnectors(ExporterIFC exporterIFC, Autodesk.Revi...
method CanExportElement (line 851) | protected virtual bool CanExportElement(ExporterIFC exporterIFC, Autod...
method ExportElement (line 886) | public virtual bool ExportElement(ExporterIFC exporterIFC, Element ele...
method HandleUnexpectedException (line 934) | internal void HandleUnexpectedException(Exception exception, Element e...
method HandleDelayedExportWarnings (line 948) | private void HandleDelayedExportWarnings()
method IsMEPType (line 997) | private bool IsMEPType(Element element, IFCExportInfoPair exportType)
method ExportAsProxy (line 1007) | private bool ExportAsProxy(Element element, IFCExportInfoPair exportType)
method IsStairs (line 1018) | private bool IsStairs(Element element)
method IsRebarType (line 1028) | private bool IsRebarType(Element element)
method ExportElementImpl (line 1039) | public virtual void ExportElementImpl(ExporterIFC exporterIFC, Element...
method CreateIFCFileModelOptions (line 1352) | protected virtual IFCFileModelOptions CreateIFCFileModelOptions(Export...
method InitializePropertySets (line 1378) | protected virtual void InitializePropertySets()
method InitializeQuantities (line 1386) | protected virtual void InitializeQuantities(IFCVersion fileVersion)
method BeginExport (line 1397) | private void BeginExport(ExporterIFC exporterIFC, Document document, V...
method ExportBuilding (line 1420) | private bool ExportBuilding(IList<Level> allLevels)
method BeginHostDocumentExport (line 1430) | private void BeginHostDocumentExport(ExporterIFC exporterIFC, Document...
method BeginLinkedDocumentExport (line 1471) | private void BeginLinkedDocumentExport(ExporterIFC exporterIFC, Docume...
method CreateFacilityPart (line 1478) | private IFCAnyHandle CreateFacilityPart(ExporterIFC exporterIFC, Level...
method BeginDocumentExportCommon (line 1519) | private void BeginDocumentExportCommon(ExporterIFC exporterIFC, Docume...
method GetElementHandles (line 1657) | private void GetElementHandles(ICollection<ElementId> ids, ISet<IFCAny...
method CreateRelServicesBuildings (line 1668) | private static IFCAnyHandle CreateRelServicesBuildings(IFCAnyHandle bu...
method UpdateLocalPlacementForElement (line 1678) | private static void UpdateLocalPlacementForElement(IFCAnyHandle elemHn...
method CreatePresentationLayerAssignments (line 1725) | private void CreatePresentationLayerAssignments(ExporterIFC exporterIF...
method OverrideOneGUID (line 1786) | private void OverrideOneGUID(IFCAnyHandle handle, IDictionary<string, ...
method EndHostDocumentExport (line 1803) | private void EndHostDocumentExport(ExporterIFC exporterIFC, Document d...
method EndLinkedDocumentExport (line 1808) | private void EndLinkedDocumentExport(ExporterIFC exporterIFC, Document...
method EndDocumentExportCommon (line 1827) | private void EndDocumentExportCommon(ExporterIFC exporterIFC, Document...
class IFCFileDocumentInfo (line 2558) | private class IFCFileDocumentInfo
method IFCFileDocumentInfo (line 2578) | public IFCFileDocumentInfo(Document document)
method OrientLink (line 2610) | private void OrientLink(IFCFile file, bool canUseSitePlacement,
method WriteIFCFile (line 2654) | private void WriteIFCFile(IFCFile file, IFCFileDocumentInfo ifcFileDoc...
method GetLanguageExtension (line 2806) | private string GetLanguageExtension(LanguageType langType)
method GetCreationDate (line 2847) | private long GetCreationDate(Document document)
method CreateApplicationInformation (line 2874) | private IFCAnyHandle CreateApplicationInformation(IFCFile file, Docume...
method CreateContextInformation (line 2896) | private HashSet<IFCAnyHandle> CreateContextInformation(ExporterIFC exp...
method GetCOBieContactInfo (line 3030) | private void GetCOBieContactInfo(IFCFile file, Document doc)
method CreateActor (line 3134) | private void CreateActor(string actorName, IFCAnyHandle clientOrg, IFC...
method CreateProject (line 3154) | private void CreateProject(ExporterIFC exporterIFC, Document doc, IFCA...
method CreateContact (line 3321) | private void CreateContact(IFCFile file, string category, string compa...
method GetTelecomAddressFromExtStorage (line 3338) | private IFCAnyHandle GetTelecomAddressFromExtStorage(IFCFile file)
method CreateIFCAddressFromExtStorage (line 3356) | static public IFCAnyHandle CreateIFCAddressFromExtStorage(IFCFile file...
method NeedToCreateAddressForSite (line 3410) | static public bool NeedToCreateAddressForSite(Document document)
method NeedToCreateAddressForBuilding (line 3427) | static public bool NeedToCreateAddressForBuilding(Document document)
method CreateIFCAddress (line 3451) | static public IFCAnyHandle CreateIFCAddress(IFCFile file, Document doc...
method ValidateContainedHandle (line 3529) | private static bool ValidateContainedHandle(IFCAnyHandle initialHandle)
method RemoveContainedHandlesFromSet (line 3551) | public static HashSet<IFCAnyHandle> RemoveContainedHandlesFromSet(ICol...
class IFCLevelExportInfo (line 3567) | private class IFCLevelExportInfo
method IFCLevelExportInfo (line 3569) | public IFCLevelExportInfo() { }
method UnionLevelInfoRelated (line 3576) | public void UnionLevelInfoRelated(ElementId toLevelId, IFCLevelInfo ...
method TransferOrphanedLevelInfo (line 3596) | public void TransferOrphanedLevelInfo(ElementId toLevelId)
method CollectValidHandlesForLevel (line 3618) | public Tuple<HashSet<IFCAnyHandle>, HashSet<IFCAnyHandle>> CollectVa...
method CollectOrphanedHandles (line 3647) | public HashSet<IFCAnyHandle> CollectOrphanedHandles()
method GetExportLevelState (line 3665) | private IFCExportElement GetExportLevelState(Element level)
method NeverExportLevel (line 3677) | private bool NeverExportLevel(Element level)
method AlwaysExportLevel (line 3682) | private bool AlwaysExportLevel(Element level)
method RelateLevels (line 3692) | private void RelateLevels(ExporterIFC exporterIFC, Document document)
method DelegateClear (line 3772) | private void DelegateClear()
method CreateFacilityFromProjectInfo (line 3778) | private IFCAnyHandle CreateFacilityFromProjectInfo(ExporterIFC exporte...
method ExportIFCMapConversion (line 3891) | private bool ExportIFCMapConversion(ExporterIFC exporterIFC, Document ...
method RememberWCSOrGeoReference (line 4117) | private bool RememberWCSOrGeoReference (double eastings, double northi...
method ExportCachedSystem (line 4140) | private bool ExportCachedSystem(ExporterIFC exporterIFC, Document doc,...
method ExportCableTraySystem (line 4304) | private bool ExportCableTraySystem(Document doc, IFCFile file, ISet<El...
method ForceGarbageCollection (line 4379) | private void ForceGarbageCollection()
method GetMaterialNameFromMaterialSelect (line 4392) | private string GetMaterialNameFromMaterialSelect(IFCAnyHandle material...
FILE: Source/Revit.IFC.Export/Exporter/ExporterInitializer.cs
class ExporterInitializer (line 37) | public partial class ExporterInitializer
method InitPset_ProvisionForVoid2x (line 45) | private static void InitPset_ProvisionForVoid2x(IList<PropertySetDescr...
method InitExtraCommonPropertySets (line 90) | public static void InitExtraCommonPropertySets(IList<IList<PropertySet...
method FilterPropertySets (line 106) | public static void FilterPropertySets(IList<IList<PropertySetDescripti...
method InitPropertySets (line 155) | public static void InitPropertySets()
method ExcludeNotExportingPropertySets (line 219) | private static void ExcludeNotExportingPropertySets(IList<PropertySetD...
method ExcludeNotExportingProperties (line 234) | private static void ExcludeNotExportingProperties(IList<PropertySetDes...
method ExcludeNotExportingQuantitySets (line 247) | private static void ExcludeNotExportingQuantitySets(IList<IList<Quanti...
method ExcludeNotExportingQuantities (line 282) | private static void ExcludeNotExportingQuantities(IList<IList<Quantity...
method ExcludeNotExportingQuantities (line 293) | private static void ExcludeNotExportingQuantities(IList<QuantityDescri...
method ExcludeNotExportingAttributes (line 306) | private static void ExcludeNotExportingAttributes()
method ExporterInitializer (line 322) | static ExporterInitializer()
method PopulateIFCCommonPropertySets (line 332) | public static void PopulateIFCCommonPropertySets(IFCVersion fileVersio...
method PopulateBaseQuantitiesPropertySets (line 343) | public static void PopulateBaseQuantitiesPropertySets(IFCVersion fileV...
method InitQuantities (line 365) | public static void InitQuantities(Exporter.QuantitiesToExport quantiti...
method GetListOfRelatedEntities (line 391) | private static ISet<IFCEntityType> GetListOfRelatedEntities(IFCEntityT...
method InitUserDefinedPropertySets (line 408) | private static void InitUserDefinedPropertySets(IList<IList<PropertySe...
method CollectUserDefinedDescriptionsFromTxt (line 424) | private static void CollectUserDefinedDescriptionsFromTxt(out IList<Pr...
method CollectUserDefinedDescriptionsFromDocument (line 520) | private static void CollectUserDefinedDescriptionsFromDocument(out ILi...
method CreateAndAddPropertySetDescription (line 574) | private static PropertySetDescription CreateAndAddPropertySetDescripti...
method CreateAndAddQuantitySetDescription (line 631) | private static QuantityDescription CreateAndAddQuantitySetDescription(...
method CreateAndAddAttributeSetDescription (line 676) | private static AttributeSetDescription CreateAndAddAttributeSetDescrip...
method GetIfcEntityTypesFromStrings (line 718) | public static HashSet<IFCEntityType> GetIfcEntityTypesFromStrings(ILis...
method IsSupportedScheduleField (line 755) | public static bool IsSupportedScheduleField(ScheduleField field)
method InitCustomPropertySets (line 773) | private static void InitCustomPropertySets(Document document, IList<IL...
method InitCOBIEPropertySets (line 945) | private static void InitCOBIEPropertySets(IList<IList<PropertySetDescr...
method InitCOBIEPSetSpaceThermalSimulationProperties (line 960) | private static void InitCOBIEPSetSpaceThermalSimulationProperties(ILis...
method InitCOBIEPSetSpaceVentilationCriteria (line 1001) | private static void InitCOBIEPSetSpaceVentilationCriteria(IList<Proper...
method InitCOBIEPSetBuildingEnergyTarget (line 1022) | private static void InitCOBIEPSetBuildingEnergyTarget(IList<PropertySe...
method InitCOBIEPSetGlazingPropertiesEnergyAnalysis (line 1043) | private static void InitCOBIEPSetGlazingPropertiesEnergyAnalysis(IList...
method InitCOBIEPSetPhotovoltaicArray (line 1060) | private static void InitCOBIEPSetPhotovoltaicArray(IList<PropertySetDe...
method InitCOBIEQuantities (line 1100) | private static void InitCOBIEQuantities(IList<IList<QuantityDescriptio...
method InitCOBIESpaceQuantities (line 1113) | private static void InitCOBIESpaceQuantities(IList<QuantityDescription...
method InitCOBIESpaceLevelQuantities (line 1156) | private static void InitCOBIESpaceLevelQuantities(IList<QuantityDescri...
method InitCOBIEPMSpaceQuantities (line 1176) | private static void InitCOBIEPMSpaceQuantities(IList<QuantityDescripti...
FILE: Source/Revit.IFC.Export/Exporter/ExporterInitializer_PredefPset.cs
class ExporterInitializer (line 23) | partial class ExporterInitializer
method InitPreDefinedPropertySets (line 25) | public static void InitPreDefinedPropertySets(IList<IList<PreDefinedPr...
method InitIfcDoorLiningProperties (line 48) | private static void InitIfcDoorLiningProperties(IList<PreDefinedProper...
method InitIfcDoorPanelProperties (line 392) | private static void InitIfcDoorPanelProperties(IList<PreDefinedPropert...
method InitIfcFuelProperties (line 556) | private static void InitIfcFuelProperties(IList<PreDefinedPropertySetD...
method InitIfcGeneralMaterialProperties (line 641) | private static void InitIfcGeneralMaterialProperties(IList<PreDefinedP...
method InitIfcHygroscopicMaterialProperties (line 710) | private static void InitIfcHygroscopicMaterialProperties(IList<PreDefi...
method InitIfcMechanicalConcreteMaterialProperties (line 811) | private static void InitIfcMechanicalConcreteMaterialProperties(IList<...
method InitIfcMechanicalMaterialProperties (line 928) | private static void InitIfcMechanicalMaterialProperties(IList<PreDefin...
method InitIfcMechanicalSteelMaterialProperties (line 1029) | private static void InitIfcMechanicalSteelMaterialProperties(IList<Pre...
method InitIfcOpticalMaterialProperties (line 1164) | private static void InitIfcOpticalMaterialProperties(IList<PreDefinedP...
method InitIfcPermeableCoveringProperties (line 1329) | private static void InitIfcPermeableCoveringProperties(IList<PreDefine...
method InitIfcProductsOfCombustionProperties (line 1504) | private static void InitIfcProductsOfCombustionProperties(IList<PreDef...
method InitIfcReinforcementDefinitionProperties (line 1589) | private static void InitIfcReinforcementDefinitionProperties(IList<Pre...
method InitIfcThermalMaterialProperties (line 1686) | private static void InitIfcThermalMaterialProperties(IList<PreDefinedP...
method InitIfcWaterProperties (line 1771) | private static void InitIfcWaterProperties(IList<PreDefinedPropertySet...
method InitIfcWindowLiningProperties (line 1904) | private static void InitIfcWindowLiningProperties(IList<PreDefinedProp...
method InitIfcWindowPanelProperties (line 2192) | private static void InitIfcWindowPanelProperties(IList<PreDefinedPrope...
FILE: Source/Revit.IFC.Export/Exporter/ExporterInitializer_PsetDef.cs
class ExporterInitializer (line 23) | partial class ExporterInitializer
method InitCommonPropertySets (line 25) | public static void InitCommonPropertySets(IList<IList<PropertySetDescr...
method InitPset_ActionRequest (line 778) | private static void InitPset_ActionRequest(IList<PropertySetDescriptio...
method InitPset_ActorCommon (line 971) | private static void InitPset_ActorCommon(IList<PropertySetDescription>...
method InitPset_ActuatorPHistory (line 1107) | private static void InitPset_ActuatorPHistory(IList<PropertySetDescrip...
method InitPset_ActuatorTypeCommon (line 1193) | private static void InitPset_ActuatorTypeCommon(IList<PropertySetDescr...
method InitPset_ActuatorTypeElectricActuator (line 1365) | private static void InitPset_ActuatorTypeElectricActuator(IList<Proper...
method InitPset_ActuatorTypeHydraulicActuator (line 1488) | private static void InitPset_ActuatorTypeHydraulicActuator(IList<Prope...
method InitPset_ActuatorTypeLinearActuation (line 1595) | private static void InitPset_ActuatorTypeLinearActuation(IList<Propert...
method InitPset_ActuatorTypePneumaticActuator (line 1697) | private static void InitPset_ActuatorTypePneumaticActuator(IList<Prope...
method InitPset_ActuatorTypeRotationalActuation (line 1804) | private static void InitPset_ActuatorTypeRotationalActuation(IList<Pro...
method InitPset_Address (line 1906) | private static void InitPset_Address(IList<PropertySetDescription> com...
method InitPset_AirSideSystemInformation (line 2061) | private static void InitPset_AirSideSystemInformation(IList<PropertySe...
method InitPset_AirTerminalBoxPHistory (line 2717) | private static void InitPset_AirTerminalBoxPHistory(IList<PropertySetD...
method InitPset_AirTerminalBoxTypeCommon (line 2888) | private static void InitPset_AirTerminalBoxTypeCommon(IList<PropertySe...
method InitPset_AirTerminalOccurrence (line 3483) | private static void InitPset_AirTerminalOccurrence(IList<PropertySetDe...
method InitPset_AirTerminalPHistory (line 3569) | private static void InitPset_AirTerminalPHistory(IList<PropertySetDesc...
method InitPset_AirTerminalTypeCommon (line 3861) | private static void InitPset_AirTerminalTypeCommon(IList<PropertySetDe...
method InitPset_AirTerminalTypeRectangular (line 4821) | private static void InitPset_AirTerminalTypeRectangular(IList<Property...
method InitPset_AirTerminalTypeRound (line 4866) | private static void InitPset_AirTerminalTypeRound(IList<PropertySetDes...
method InitPset_AirTerminalTypeSlot (line 4911) | private static void InitPset_AirTerminalTypeSlot(IList<PropertySetDesc...
method InitPset_AirTerminalTypeSquare (line 4984) | private static void InitPset_AirTerminalTypeSquare(IList<PropertySetDe...
method InitPset_AirToAirHeatRecoveryPHist (line 5029) | private static void InitPset_AirToAirHeatRecoveryPHist(IList<PropertyS...
method InitPset_AirToAirHeatRecoveryPHistory (line 5204) | private static void InitPset_AirToAirHeatRecoveryPHistory(IList<Proper...
method InitPset_AirToAirHeatRecoveryTypeCommon (line 5458) | private static void InitPset_AirToAirHeatRecoveryTypeCommon(IList<Prop...
method InitPset_AlarmPHistory (line 5761) | private static void InitPset_AlarmPHistory(IList<PropertySetDescriptio...
method InitPset_AlarmTypeCommon (line 5879) | private static void InitPset_AlarmTypeCommon(IList<PropertySetDescript...
method InitPset_AlignmentCantSegmentCommon (line 5966) | private static void InitPset_AlignmentCantSegmentCommon(IList<Property...
method InitPset_AlignmentVerticalSegmentCommon (line 6016) | private static void InitPset_AlignmentVerticalSegmentCommon(IList<Prop...
method InitPset_AnalogInput (line 6050) | private static void InitPset_AnalogInput(IList<PropertySetDescription>...
method InitPset_AnalogOutput (line 6191) | private static void InitPset_AnalogOutput(IList<PropertySetDescription...
method InitPset_AnnotationContourLine (line 6332) | private static void InitPset_AnnotationContourLine(IList<PropertySetDe...
method InitPset_AnnotationLineOfSight (line 6377) | private static void InitPset_AnnotationLineOfSight(IList<PropertySetDe...
method InitPset_AnnotationSurveyArea (line 6496) | private static void InitPset_AnnotationSurveyArea(IList<PropertySetDes...
method InitPset_Asset (line 6579) | private static void InitPset_Asset(IList<PropertySetDescription> commo...
method InitPset_AudioVisualAppliancePHistory (line 6752) | private static void InitPset_AudioVisualAppliancePHistory(IList<Proper...
method InitPset_AudioVisualApplianceTypeAmplifier (line 6852) | private static void InitPset_AudioVisualApplianceTypeAmplifier(IList<P...
method InitPset_AudioVisualApplianceTypeCamera (line 6947) | private static void InitPset_AudioVisualApplianceTypeCamera(IList<Prop...
method InitPset_AudioVisualApplianceTypeCommon (line 7220) | private static void InitPset_AudioVisualApplianceTypeCommon(IList<Prop...
method InitPset_AudioVisualApplianceTypeDisplay (line 7330) | private static void InitPset_AudioVisualApplianceTypeDisplay(IList<Pro...
method InitPset_AudioVisualApplianceTypePlayer (line 7646) | private static void InitPset_AudioVisualApplianceTypePlayer(IList<Prop...
method InitPset_AudioVisualApplianceTypeProjector (line 7737) | private static void InitPset_AudioVisualApplianceTypeProjector(IList<P...
method InitPset_AudioVisualApplianceTypeRailwayCommunicationTerminal (line 7893) | private static void InitPset_AudioVisualApplianceTypeRailwayCommunicat...
method InitPset_AudioVisualApplianceTypeReceiver (line 7923) | private static void InitPset_AudioVisualApplianceTypeReceiver(IList<Pr...
method InitPset_AudioVisualApplianceTypeRecordingEquipment (line 8018) | private static void InitPset_AudioVisualApplianceTypeRecordingEquipmen...
method InitPset_AudioVisualApplianceTypeSpeaker (line 8056) | private static void InitPset_AudioVisualApplianceTypeSpeaker(IList<Pro...
method InitPset_AudioVisualApplianceTypeTuner (line 8193) | private static void InitPset_AudioVisualApplianceTypeTuner(IList<Prope...
method InitPset_AxleCountingEquipment (line 8309) | private static void InitPset_AxleCountingEquipment(IList<PropertySetDe...
method InitPset_BalanceWeightTensionerDesignCriteria (line 8413) | private static void InitPset_BalanceWeightTensionerDesignCriteria(ILis...
method InitPset_BeamCommon (line 8453) | private static void InitPset_BeamCommon(IList<PropertySetDescription> ...
method InitPset_BearingCommon (line 8773) | private static void InitPset_BearingCommon(IList<PropertySetDescriptio...
method InitPset_BerthCommon (line 8810) | private static void InitPset_BerthCommon(IList<PropertySetDescription>...
method InitPset_BinaryInput (line 8874) | private static void InitPset_BinaryInput(IList<PropertySetDescription>...
method InitPset_BinaryOutput (line 9043) | private static void InitPset_BinaryOutput(IList<PropertySetDescription...
method InitPset_BoilerPHistory (line 9176) | private static void InitPset_BoilerPHistory(IList<PropertySetDescripti...
method InitPset_BoilerTypeCommon (line 9522) | private static void InitPset_BoilerTypeCommon(IList<PropertySetDescrip...
method InitPset_BoilerTypeSteam (line 10065) | private static void InitPset_BoilerTypeSteam(IList<PropertySetDescript...
method InitPset_BoilerTypeWater (line 10182) | private static void InitPset_BoilerTypeWater(IList<PropertySetDescript...
method InitPset_BoreholeCommon (line 10252) | private static void InitPset_BoreholeCommon(IList<PropertySetDescripti...
method InitPset_BoundedCourseCommon (line 10336) | private static void InitPset_BoundedCourseCommon(IList<PropertySetDesc...
method InitPset_BreakwaterCommon (line 10363) | private static void InitPset_BreakwaterCommon(IList<PropertySetDescrip...
method InitPset_BridgeCommon (line 10398) | private static void InitPset_BridgeCommon(IList<PropertySetDescription...
method InitPset_BuildingCommon (line 10426) | private static void InitPset_BuildingCommon(IList<PropertySetDescripti...
method InitPset_BuildingElementProxyCommon (line 10900) | private static void InitPset_BuildingElementProxyCommon(IList<Property...
method InitPset_BuildingElementProxyProvisionForVoid (line 11065) | private static void InitPset_BuildingElementProxyProvisionForVoid(ILis...
method InitPset_BuildingStoreyCommon (line 11162) | private static void InitPset_BuildingStoreyCommon(IList<PropertySetDes...
method InitPset_BuildingSystemCommon (line 11463) | private static void InitPset_BuildingSystemCommon(IList<PropertySetDes...
method InitPset_BuildingUse (line 11506) | private static void InitPset_BuildingUse(IList<PropertySetDescription>...
method InitPset_BuildingUseAdjacent (line 11969) | private static void InitPset_BuildingUseAdjacent(IList<PropertySetDesc...
method InitPset_BuildingWaterStorage (line 12136) | private static void InitPset_BuildingWaterStorage(IList<PropertySetDes...
method InitPset_BuiltSystemRailwayLine (line 12237) | private static void InitPset_BuiltSystemRailwayLine(IList<PropertySetD...
method InitPset_BuiltSystemRailwayTrack (line 12282) | private static void InitPset_BuiltSystemRailwayTrack(IList<PropertySet...
method InitPset_BurnerTypeCommon (line 12337) | private static void InitPset_BurnerTypeCommon(IList<PropertySetDescrip...
method InitPset_CableCarrierFittingTypeCommon (line 12426) | private static void InitPset_CableCarrierFittingTypeCommon(IList<Prope...
method InitPset_CableCarrierSegmentTypeCableLadderSegment (line 12491) | private static void InitPset_CableCarrierSegmentTypeCableLadderSegment...
method InitPset_CableCarrierSegmentTypeCableTraySegment (line 12633) | private static void InitPset_CableCarrierSegmentTypeCableTraySegment(I...
method InitPset_CableCarrierSegmentTypeCableTrunkingSegment (line 12775) | private static void InitPset_CableCarrierSegmentTypeCableTrunkingSegme...
method InitPset_CableCarrierSegmentTypeCatenaryWire (line 12917) | private static void InitPset_CableCarrierSegmentTypeCatenaryWire(IList...
method InitPset_CableCarrierSegmentTypeCommon (line 13042) | private static void InitPset_CableCarrierSegmentTypeCommon(IList<Prope...
method InitPset_CableCarrierSegmentTypeConduitSegment (line 13107) | private static void InitPset_CableCarrierSegmentTypeConduitSegment(ILi...
method InitPset_CableCarrierSegmentTypeDropper (line 13316) | private static void InitPset_CableCarrierSegmentTypeDropper(IList<Prop...
method InitPset_CableFittingTypeCommon (line 13401) | private static void InitPset_CableFittingTypeCommon(IList<PropertySetD...
method InitPset_CableFittingTypeExit (line 13466) | private static void InitPset_CableFittingTypeExit(IList<PropertySetDes...
method InitPset_CableFittingTypeFanout (line 13494) | private static void InitPset_CableFittingTypeFanout(IList<PropertySetD...
method InitPset_CableSegmentConnector (line 13530) | private static void InitPset_CableSegmentConnector(IList<PropertySetDe...
method InitPset_CableSegmentOccurenceFiberSegment (line 13601) | private static void InitPset_CableSegmentOccurenceFiberSegment(IList<P...
method InitPset_CableSegmentOccurrence (line 13628) | private static void InitPset_CableSegmentOccurrence(IList<PropertySetD...
method InitPset_CableSegmentTypeBusBarSegment (line 13907) | private static void InitPset_CableSegmentTypeBusBarSegment(IList<Prope...
method InitPset_CableSegmentTypeCableSegment (line 14068) | private static void InitPset_CableSegmentTypeCableSegment(IList<Proper...
method InitPset_CableSegmentTypeCommon (line 14588) | private static void InitPset_CableSegmentTypeCommon(IList<PropertySetD...
method InitPset_CableSegmentTypeConductorSegment (line 14653) | private static void InitPset_CableSegmentTypeConductorSegment(IList<Pr...
method InitPset_CableSegmentTypeContactWire (line 15050) | private static void InitPset_CableSegmentTypeContactWire(IList<Propert...
method InitPset_CableSegmentTypeCoreSegment (line 15142) | private static void InitPset_CableSegmentTypeCoreSegment(IList<Propert...
method InitPset_CableSegmentTypeEarthingConductor (line 15484) | private static void InitPset_CableSegmentTypeEarthingConductor(IList<P...
method InitPset_CableSegmentTypeFiberSegment (line 15512) | private static void InitPset_CableSegmentTypeFiberSegment(IList<Proper...
method InitPset_CableSegmentTypeFiberTubeSegment (line 15560) | private static void InitPset_CableSegmentTypeFiberTubeSegment(IList<Pr...
method InitPset_CableSegmentTypeOpticalCableSegment (line 15598) | private static void InitPset_CableSegmentTypeOpticalCableSegment(IList...
method InitPset_CableSegmentTypeStitchWire (line 15670) | private static void InitPset_CableSegmentTypeStitchWire(IList<Property...
method InitPset_CableSegmentTypeWirePairSegment (line 15731) | private static void InitPset_CableSegmentTypeWirePairSegment(IList<Pro...
method InitPset_CargoCommon (line 15801) | private static void InitPset_CargoCommon(IList<PropertySetDescription>...
method InitPset_CessBetweenRails (line 15851) | private static void InitPset_CessBetweenRails(IList<PropertySetDescrip...
method InitPset_ChillerPHistory (line 15909) | private static void InitPset_ChillerPHistory(IList<PropertySetDescript...
method InitPset_ChillerTypeCommon (line 16084) | private static void InitPset_ChillerTypeCommon(IList<PropertySetDescri...
method InitPset_ChimneyCommon (line 16428) | private static void InitPset_ChimneyCommon(IList<PropertySetDescriptio...
method InitPset_CivilElementCommon (line 16602) | private static void InitPset_CivilElementCommon(IList<PropertySetDescr...
method InitPset_CoaxialCable (line 16661) | private static void InitPset_CoaxialCable(IList<PropertySetDescription...
method InitPset_CoilOccurrence (line 16737) | private static void InitPset_CoilOccurrence(IList<PropertySetDescripti...
method InitPset_CoilPHistory (line 16778) | private static void InitPset_CoilPHistory(IList<PropertySetDescription...
method InitPset_CoilTypeCommon (line 16945) | private static void InitPset_CoilTypeCommon(IList<PropertySetDescripti...
method InitPset_CoilTypeHydronic (line 17219) | private static void InitPset_CoilTypeHydronic(IList<PropertySetDescrip...
method InitPset_ColumnCommon (line 17755) | private static void InitPset_ColumnCommon(IList<PropertySetDescription...
method InitPset_CommunicationsAppliancePHistory (line 18038) | private static void InitPset_CommunicationsAppliancePHistory(IList<Pro...
method InitPset_CommunicationsApplianceTypeAntenna (line 18080) | private static void InitPset_CommunicationsApplianceTypeAntenna(IList<...
method InitPset_CommunicationsApplianceTypeAutomaton (line 18138) | private static void InitPset_CommunicationsApplianceTypeAutomaton(ILis...
method InitPset_CommunicationsApplianceTypeCommon (line 18178) | private static void InitPset_CommunicationsApplianceTypeCommon(IList<P...
method InitPset_CommunicationsApplianceTypeComputer (line 18243) | private static void InitPset_CommunicationsApplianceTypeComputer(IList...
method InitPset_CommunicationsApplianceTypeGateway (line 18281) | private static void InitPset_CommunicationsApplianceTypeGateway(IList<...
method InitPset_CommunicationsApplianceTypeIntelligentPeripheral (line 18311) | private static void InitPset_CommunicationsApplianceTypeIntelligentPer...
method InitPset_CommunicationsApplianceTypeIpNetworkEquipment (line 18339) | private static void InitPset_CommunicationsApplianceTypeIpNetworkEquip...
method InitPset_CommunicationsApplianceTypeModem (line 18409) | private static void InitPset_CommunicationsApplianceTypeModem(IList<Pr...
method InitPset_CommunicationsApplianceTypeOpticalLineTerminal (line 18469) | private static void InitPset_CommunicationsApplianceTypeOpticalLineTer...
method InitPset_CommunicationsApplianceTypeOpticalNetworkUnit (line 18507) | private static void InitPset_CommunicationsApplianceTypeOpticalNetwork...
method InitPset_CommunicationsApplianceTypeTelecommand (line 18547) | private static void InitPset_CommunicationsApplianceTypeTelecommand(IL...
method InitPset_CommunicationsApplianceTypeTelephonyExchange (line 18585) | private static void InitPset_CommunicationsApplianceTypeTelephonyExcha...
method InitPset_CommunicationsApplianceTypeTransportEquipment (line 18613) | private static void InitPset_CommunicationsApplianceTypeTransportEquip...
method InitPset_CompressorPHistory (line 18677) | private static void InitPset_CompressorPHistory(IList<PropertySetDescr...
method InitPset_CompressorTypeCommon (line 19188) | private static void InitPset_CompressorTypeCommon(IList<PropertySetDes...
method InitPset_ConcreteElementGeneral (line 19620) | private static void InitPset_ConcreteElementGeneral(IList<PropertySetD...
method InitPset_ConcreteElementQuantityGeneral (line 20112) | private static void InitPset_ConcreteElementQuantityGeneral(IList<Prop...
method InitPset_ConcreteElementSurfaceFinishQuantityGeneral (line 20381) | private static void InitPset_ConcreteElementSurfaceFinishQuantityGener...
method InitPset_CondenserPHistory (line 20534) | private static void InitPset_CondenserPHistory(IList<PropertySetDescri...
method InitPset_CondenserTypeCommon (line 20928) | private static void InitPset_CondenserTypeCommon(IList<PropertySetDesc...
method InitPset_Condition (line 21255) | private static void InitPset_Condition(IList<PropertySetDescription> c...
method InitPset_ConstructionAdministration (line 21376) | private static void InitPset_ConstructionAdministration(IList<Property...
method InitPset_ConstructionOccurence (line 21419) | private static void InitPset_ConstructionOccurence(IList<PropertySetDe...
method InitPset_ConstructionResource (line 21469) | private static void InitPset_ConstructionResource(IList<PropertySetDes...
method InitPset_ControllerPHistory (line 21653) | private static void InitPset_ControllerPHistory(IList<PropertySetDescr...
method InitPset_ControllerTypeCommon (line 21736) | private static void InitPset_ControllerTypeCommon(IList<PropertySetDes...
method InitPset_ControllerTypeFloating (line 21839) | private static void InitPset_ControllerTypeFloating(IList<PropertySetD...
method InitPset_ControllerTypeMultiPosition (line 22000) | private static void InitPset_ControllerTypeMultiPosition(IList<Propert...
method InitPset_ControllerTypeProgrammable (line 22106) | private static void InitPset_ControllerTypeProgrammable(IList<Property...
method InitPset_ControllerTypeProportional (line 22210) | private static void InitPset_ControllerTypeProportional(IList<Property...
method InitPset_ControllerTypeTwoPosition (line 22455) | private static void InitPset_ControllerTypeTwoPosition(IList<PropertyS...
method InitPset_CooledBeamPHistory (line 22582) | private static void InitPset_CooledBeamPHistory(IList<PropertySetDescr...
method InitPset_CooledBeamPHistoryActive (line 23042) | private static void InitPset_CooledBeamPHistoryActive(IList<PropertySe...
method InitPset_CooledBeamTypeActive (line 23178) | private static void InitPset_CooledBeamTypeActive(IList<PropertySetDes...
method InitPset_CooledBeamTypeCommon (line 23368) | private static void InitPset_CooledBeamTypeCommon(IList<PropertySetDes...
method InitPset_CoolingTowerPHistory (line 24145) | private static void InitPset_CoolingTowerPHistory(IList<PropertySetDes...
method InitPset_CoolingTowerTypeCommon (line 24341) | private static void InitPset_CoolingTowerTypeCommon(IList<PropertySetD...
method InitPset_CourseApplicationConditions (line 24934) | private static void InitPset_CourseApplicationConditions(IList<Propert...
method InitPset_CourseCommon (line 24969) | private static void InitPset_CourseCommon(IList<PropertySetDescription...
method InitPset_CoveringCeiling (line 25012) | private static void InitPset_CoveringCeiling(IList<PropertySetDescript...
method InitPset_CoveringCommon (line 25142) | private static void InitPset_CoveringCommon(IList<PropertySetDescripti...
method InitPset_CoveringFlooring (line 25566) | private static void InitPset_CoveringFlooring(IList<PropertySetDescrip...
method InitPset_CoveringTypeMembrane (line 25667) | private static void InitPset_CoveringTypeMembrane(IList<PropertySetDes...
method InitPset_CurrentInstrumentTransformer (line 25703) | private static void InitPset_CurrentInstrumentTransformer(IList<Proper...
method InitPset_CurtainWallCommon (line 25806) | private static void InitPset_CurtainWallCommon(IList<PropertySetDescri...
method InitPset_DamperOccurrence (line 26120) | private static void InitPset_DamperOccurrence(IList<PropertySetDescrip...
method InitPset_DamperPHistory (line 26164) | private static void InitPset_DamperPHistory(IList<PropertySetDescripti...
method InitPset_DamperTypeCommon (line 26393) | private static void InitPset_DamperTypeCommon(IList<PropertySetDescrip...
method InitPset_DamperTypeControlDamper (line 27331) | private static void InitPset_DamperTypeControlDamper(IList<PropertySet...
method InitPset_DamperTypeFireDamper (line 27447) | private static void InitPset_DamperTypeFireDamper(IList<PropertySetDes...
method InitPset_DamperTypeFireSmokeDamper (line 27633) | private static void InitPset_DamperTypeFireSmokeDamper(IList<PropertyS...
method InitPset_DamperTypeSmokeDamper (line 27780) | private static void InitPset_DamperTypeSmokeDamper(IList<PropertySetDe...
method InitPset_DataTransmissionUnit (line 27851) | private static void InitPset_DataTransmissionUnit(IList<PropertySetDes...
method InitPset_DesignPoint (line 27899) | private static void InitPset_DesignPoint(IList<PropertySetDescription>...
method InitPset_DiscreteAccessoryAnchorBolt (line 27936) | private static void InitPset_DiscreteAccessoryAnchorBolt(IList<Propert...
method InitPset_DiscreteAccessoryColumnShoe (line 28027) | private static void InitPset_DiscreteAccessoryColumnShoe(IList<Propert...
method InitPset_DiscreteAccessoryCornerFixingPlate (line 28277) | private static void InitPset_DiscreteAccessoryCornerFixingPlate(IList<...
method InitPset_DiscreteAccessoryDiagonalTrussConnector (line 28456) | private static void InitPset_DiscreteAccessoryDiagonalTrussConnector(I...
method InitPset_DiscreteAccessoryEdgeFixingPlate (line 28705) | private static void InitPset_DiscreteAccessoryEdgeFixingPlate(IList<Pr...
method InitPset_DiscreteAccessoryFixingSocket (line 28884) | private static void InitPset_DiscreteAccessoryFixingSocket(IList<Prope...
method InitPset_DiscreteAccessoryLadderTrussConnector (line 29067) | private static void InitPset_DiscreteAccessoryLadderTrussConnector(ILi...
method InitPset_DiscreteAccessoryStandardFixingPlate (line 29316) | private static void InitPset_DiscreteAccessoryStandardFixingPlate(ILis...
method InitPset_DiscreteAccessoryTypeBracket (line 29460) | private static void InitPset_DiscreteAccessoryTypeBracket(IList<Proper...
method InitPset_DiscreteAccessoryTypeCableArranger (line 29488) | private static void InitPset_DiscreteAccessoryTypeCableArranger(IList<...
method InitPset_DiscreteAccessoryTypeInsulator (line 29518) | private static void InitPset_DiscreteAccessoryTypeInsulator(IList<Prop...
method InitPset_DiscreteAccessoryTypeLock (line 29640) | private static void InitPset_DiscreteAccessoryTypeLock(IList<PropertyS...
method InitPset_DiscreteAccessoryTypeRailBrace (line 29677) | private static void InitPset_DiscreteAccessoryTypeRailBrace(IList<Prop...
method InitPset_DiscreteAccessoryTypeRailLubrication (line 29705) | private static void InitPset_DiscreteAccessoryTypeRailLubrication(ILis...
method InitPset_DiscreteAccessoryTypeRailPad (line 29763) | private static void InitPset_DiscreteAccessoryTypeRailPad(IList<Proper...
method InitPset_DiscreteAccessoryTypeSlidingChair (line 29793) | private static void InitPset_DiscreteAccessoryTypeSlidingChair(IList<P...
method InitPset_DiscreteAccessoryTypeSoundAbsorption (line 29821) | private static void InitPset_DiscreteAccessoryTypeSoundAbsorption(ILis...
method InitPset_DiscreteAccessoryTypeTensioningEquipment (line 29849) | private static void InitPset_DiscreteAccessoryTypeTensioningEquipment(...
method InitPset_DiscreteAccessoryWireLoop (line 29919) | private static void InitPset_DiscreteAccessoryWireLoop(IList<PropertyS...
method InitPset_DistributionBoardOccurrence (line 30168) | private static void InitPset_DistributionBoardOccurrence(IList<Propert...
method InitPset_DistributionBoardTypeCommon (line 30202) | private static void InitPset_DistributionBoardTypeCommon(IList<Propert...
method InitPset_DistributionBoardTypeDispatchingBoard (line 30239) | private static void InitPset_DistributionBoardTypeDispatchingBoard(ILi...
method InitPset_DistributionBoardTypeDistributionFrame (line 30279) | private static void InitPset_DistributionBoardTypeDistributionFrame(IL...
method InitPset_DistributionChamberElementCommon (line 30307) | private static void InitPset_DistributionChamberElementCommon(IList<Pr...
method InitPset_DistributionChamberElementTypeFormedDuct (line 30372) | private static void InitPset_DistributionChamberElementTypeFormedDuct(...
method InitPset_DistributionChamberElementTypeInspectionChamber (line 30664) | private static void InitPset_DistributionChamberElementTypeInspectionC...
method InitPset_DistributionChamberElementTypeInspectionPit (line 31168) | private static void InitPset_DistributionChamberElementTypeInspectionP...
method InitPset_DistributionChamberElementTypeManhole (line 31310) | private static void InitPset_DistributionChamberElementTypeManhole(ILi...
method InitPset_DistributionChamberElementTypeMeterChamber (line 31856) | private static void InitPset_DistributionChamberElementTypeMeterChambe...
method InitPset_DistributionChamberElementTypeSump (line 32150) | private static void InitPset_DistributionChamberElementTypeSump(IList<...
method InitPset_DistributionChamberElementTypeTrench (line 32292) | private static void InitPset_DistributionChamberElementTypeTrench(ILis...
method InitPset_DistributionChamberElementTypeValveChamber (line 32434) | private static void InitPset_DistributionChamberElementTypeValveChambe...
method InitPset_DistributionFlowElementCommon (line 32728) | private static void InitPset_DistributionFlowElementCommon(IList<Prope...
method InitPset_DistributionPortCommon (line 32762) | private static void InitPset_DistributionPortCommon(IList<PropertySetD...
method InitPset_DistributionPortDuct (line 32823) | private static void InitPset_DistributionPortDuct(IList<PropertySetDes...
method InitPset_DistributionPortPHistoryCable (line 32880) | private static void InitPset_DistributionPortPHistoryCable(IList<Prope...
method InitPset_DistributionPortPHistoryDuct (line 33065) | private static void InitPset_DistributionPortPHistoryDuct(IList<Proper...
method InitPset_DistributionPortPHistoryPipe (line 33223) | private static void InitPset_DistributionPortPHistoryPipe(IList<Proper...
method InitPset_DistributionPortPipe (line 33308) | private static void InitPset_DistributionPortPipe(IList<PropertySetDes...
method InitPset_DistributionPortTypeCable (line 33365) | private static void InitPset_DistributionPortTypeCable(IList<PropertyS...
method InitPset_DistributionPortTypeDuct (line 33588) | private static void InitPset_DistributionPortTypeDuct(IList<PropertySe...
method InitPset_DistributionPortTypePipe (line 33797) | private static void InitPset_DistributionPortTypePipe(IList<PropertySe...
method InitPset_DistributionSystemCommon (line 34036) | private static void InitPset_DistributionSystemCommon(IList<PropertySe...
method InitPset_DistributionSystemTypeElectrical (line 34078) | private static void InitPset_DistributionSystemTypeElectrical(IList<Pr...
method InitPset_DistributionSystemTypeOverheadContactlineSystem (line 34232) | private static void InitPset_DistributionSystemTypeOverheadContactline...
method InitPset_DistributionSystemTypeVentilation (line 34342) | private static void InitPset_DistributionSystemTypeVentilation(IList<P...
method InitPset_DoorCommon (line 34582) | private static void InitPset_DoorCommon(IList<PropertySetDescription> ...
method InitPset_DoorLiningProperties (line 35180) | private static void InitPset_DoorLiningProperties(IList<PropertySetDes...
method InitPset_DoorPanelProperties (line 35297) | private static void InitPset_DoorPanelProperties(IList<PropertySetDesc...
method InitPset_DoorTypeTurnstile (line 35354) | private static void InitPset_DoorTypeTurnstile(IList<PropertySetDescri...
method InitPset_DoorWindowGlazingType (line 35408) | private static void InitPset_DoorWindowGlazingType(IList<PropertySetDe...
method InitPset_DoorWindowShadingType (line 36100) | private static void InitPset_DoorWindowShadingType(IList<PropertySetDe...
method InitPset_DrainageCatchment (line 36171) | private static void InitPset_DrainageCatchment(IList<PropertySetDescri...
method InitPset_DrainageCulvert (line 36208) | private static void InitPset_DrainageCulvert(IList<PropertySetDescript...
method InitPset_DrainageOutfall (line 36261) | private static void InitPset_DrainageOutfall(IList<PropertySetDescript...
method InitPset_DrainageReserve (line 36298) | private static void InitPset_DrainageReserve(IList<PropertySetDescript...
method InitPset_Draughting (line 36335) | private static void InitPset_Draughting(IList<PropertySetDescription> ...
method InitPset_DuctConnection (line 36422) | private static void InitPset_DuctConnection(IList<PropertySetDescripti...
method InitPset_DuctDesignCriteria (line 36462) | private static void InitPset_DuctDesignCriteria(IList<PropertySetDescr...
method InitPset_DuctFittingOccurrence (line 36667) | private static void InitPset_DuctFittingOccurrence(IList<PropertySetDe...
method InitPset_DuctFittingPHistory (line 36744) | private static void InitPset_DuctFittingPHistory(IList<PropertySetDesc...
method InitPset_DuctFittingTypeCommon (line 36877) | private static void InitPset_DuctFittingTypeCommon(IList<PropertySetDe...
method InitPset_DuctSegmentOccurrence (line 37179) | private static void InitPset_DuctSegmentOccurrence(IList<PropertySetDe...
method InitPset_DuctSegmentPHistory (line 37256) | private static void InitPset_DuctSegmentPHistory(IList<PropertySetDesc...
method InitPset_DuctSegmentTypeCommon (line 37423) | private static void InitPset_DuctSegmentTypeCommon(IList<PropertySetDe...
method InitPset_DuctSilencerPHistory (line 37905) | private static void InitPset_DuctSilencerPHistory(IList<PropertySetDes...
method InitPset_DuctSilencerTypeCommon (line 38008) | private static void InitPset_DuctSilencerTypeCommon(IList<PropertySetD...
method InitPset_ElectricalCircuit (line 38350) | private static void InitPset_ElectricalCircuit(IList<PropertySetDescri...
method InitPset_ElectricalDeviceCommon (line 38435) | private static void InitPset_ElectricalDeviceCommon(IList<PropertySetD...
method InitPset_ElectricalDeviceCompliance (line 38877) | private static void InitPset_ElectricalDeviceCompliance(IList<Property...
method InitPset_ElectricalFeederLine (line 38936) | private static void InitPset_ElectricalFeederLine(IList<PropertySetDes...
method InitPset_ElectricAppliancePHistory (line 38991) | private static void InitPset_ElectricAppliancePHistory(IList<PropertyS...
method InitPset_ElectricApplianceTypeCommon (line 39033) | private static void InitPset_ElectricApplianceTypeCommon(IList<Propert...
method InitPset_ElectricApplianceTypeDishwasher (line 39098) | private static void InitPset_ElectricApplianceTypeDishwasher(IList<Pro...
method InitPset_ElectricApplianceTypeElectricCooker (line 39147) | private static void InitPset_ElectricApplianceTypeElectricCooker(IList...
method InitPset_ElectricDistributionBoardOccurrence (line 39196) | private static void InitPset_ElectricDistributionBoardOccurrence(IList...
method InitPset_ElectricDistributionBoardTypeCommon (line 39232) | private static void InitPset_ElectricDistributionBoardTypeCommon(IList...
method InitPset_ElectricDistributionPointCommon (line 39273) | private static void InitPset_ElectricDistributionPointCommon(IList<Pro...
method InitPset_ElectricFlowStorageDevicePHistory (line 39376) | private static void InitPset_ElectricFlowStorageDevicePHistory(IList<P...
method InitPset_ElectricFlowStorageDeviceTypeBattery (line 39401) | private static void InitPset_ElectricFlowStorageDeviceTypeBattery(ILis...
method InitPset_ElectricFlowStorageDeviceTypeCapacitor (line 39480) | private static void InitPset_ElectricFlowStorageDeviceTypeCapacitor(IL...
method InitPset_ElectricFlowStorageDeviceTypeCommon (line 39508) | private static void InitPset_ElectricFlowStorageDeviceTypeCommon(IList...
method InitPset_ElectricFlowStorageDeviceTypeInductor (line 39939) | private static void InitPset_ElectricFlowStorageDeviceTypeInductor(ILi...
method InitPset_ElectricFlowStorageDeviceTypeRecharger (line 39975) | private static void InitPset_ElectricFlowStorageDeviceTypeRecharger(IL...
method InitPset_ElectricFlowStorageDeviceTypeUPS (line 40003) | private static void InitPset_ElectricFlowStorageDeviceTypeUPS(IList<Pr...
method InitPset_ElectricFlowTreatmentDeviceTypeElectronicFilter (line 40056) | private static void InitPset_ElectricFlowTreatmentDeviceTypeElectronic...
method InitPset_ElectricGeneratorTypeCommon (line 40127) | private static void InitPset_ElectricGeneratorTypeCommon(IList<Propert...
method InitPset_ElectricHeaterTypeElectricalCableHeater (line 40305) | private static void InitPset_ElectricHeaterTypeElectricalCableHeater(I...
method InitPset_ElectricHeaterTypeElectricalMatHeater (line 40345) | private static void InitPset_ElectricHeaterTypeElectricalMatHeater(ILi...
method InitPset_ElectricHeaterTypeElectricalPointHeater (line 40385) | private static void InitPset_ElectricHeaterTypeElectricalPointHeater(I...
method InitPset_ElectricMotorTypeCommon (line 40425) | private static void InitPset_ElectricMotorTypeCommon(IList<PropertySet...
method InitPset_ElectricTimeControlTypeCommon (line 40828) | private static void InitPset_ElectricTimeControlTypeCommon(IList<Prope...
method InitPset_ElementAssemblyCommon (line 40893) | private static void InitPset_ElementAssemblyCommon(IList<PropertySetDe...
method InitPset_ElementAssemblyTypeCantilever (line 40952) | private static void InitPset_ElementAssemblyTypeCantilever(IList<Prope...
method InitPset_ElementAssemblyTypeDilatationPanel (line 41007) | private static void InitPset_ElementAssemblyTypeDilatationPanel(IList<...
method InitPset_ElementAssemblyTypeHeadSpan (line 41073) | private static void InitPset_ElementAssemblyTypeHeadSpan(IList<Propert...
method InitPset_ElementAssemblyTypeMast (line 41118) | private static void InitPset_ElementAssemblyTypeMast(IList<PropertySet...
method InitPset_ElementAssemblyTypeOCSSuspension (line 41146) | private static void InitPset_ElementAssemblyTypeOCSSuspension(IList<Pr...
method InitPset_ElementAssemblyTypeRigidFrame (line 41182) | private static void InitPset_ElementAssemblyTypeRigidFrame(IList<Prope...
method InitPset_ElementAssemblyTypeSteadyDevice (line 41235) | private static void InitPset_ElementAssemblyTypeSteadyDevice(IList<Pro...
method InitPset_ElementAssemblyTypeSupportingAssembly (line 41290) | private static void InitPset_ElementAssemblyTypeSupportingAssembly(ILi...
method InitPset_ElementAssemblyTypeTrackPanel (line 41328) | private static void InitPset_ElementAssemblyTypeTrackPanel(IList<Prope...
method InitPset_ElementAssemblyTypeTractionSwitchingAssembly (line 41374) | private static void InitPset_ElementAssemblyTypeTractionSwitchingAssem...
method InitPset_ElementAssemblyTypeTurnoutPanel (line 41428) | private static void InitPset_ElementAssemblyTypeTurnoutPanel(IList<Pro...
method InitPset_ElementComponentCommon (line 41592) | private static void InitPset_ElementComponentCommon(IList<PropertySetD...
method InitPset_ElementKinematics (line 41698) | private static void InitPset_ElementKinematics(IList<PropertySetDescri...
method InitPset_ElementShading (line 41777) | private static void InitPset_ElementShading(IList<PropertySetDescripti...
method InitPset_ElementSize (line 41948) | private static void InitPset_ElementSize(IList<PropertySetDescription>...
method InitPset_EmbeddedTrack (line 42003) | private static void InitPset_EmbeddedTrack(IList<PropertySetDescriptio...
method InitPset_EnergyConsumptionPHistoryElectricity (line 42047) | private static void InitPset_EnergyConsumptionPHistoryElectricity(ILis...
method InitPset_EnergyConsumptionPHistoryFuel (line 42152) | private static void InitPset_EnergyConsumptionPHistoryFuel(IList<Prope...
method InitPset_EnergyConsumptionPHistorySteam (line 42215) | private static void InitPset_EnergyConsumptionPHistorySteam(IList<Prop...
method InitPset_EnergyConversionDeviceCoil (line 42292) | private static void InitPset_EnergyConversionDeviceCoil(IList<Property...
method InitPset_EnergyConversionDeviceSpaceHeaterPanel (line 42329) | private static void InitPset_EnergyConversionDeviceSpaceHeaterPanel(IL...
method InitPset_EnergyConversionDeviceSpaceHeaterSectional (line 42370) | private static void InitPset_EnergyConversionDeviceSpaceHeaterSectiona...
method InitPset_EnergyRequirements (line 42411) | private static void InitPset_EnergyRequirements(IList<PropertySetDescr...
method InitPset_EngineTypeCommon (line 42464) | private static void InitPset_EngineTypeCommon(IList<PropertySetDescrip...
method InitPset_EnvironmentalCondition (line 42550) | private static void InitPset_EnvironmentalCondition(IList<PropertySetD...
method InitPset_EnvironmentalEmissions (line 42661) | private static void InitPset_EnvironmentalEmissions(IList<PropertySetD...
method InitPset_EnvironmentalImpactIndicators (line 42722) | private static void InitPset_EnvironmentalImpactIndicators(IList<Prope...
method InitPset_EnvironmentalImpactValues (line 43130) | private static void InitPset_EnvironmentalImpactValues(IList<PropertyS...
method InitPset_EvaporativeCoolerPHistory (line 43485) | private static void InitPset_EvaporativeCoolerPHistory(IList<PropertyS...
method InitPset_EvaporativeCoolerTypeCommon (line 43740) | private static void InitPset_EvaporativeCoolerTypeCommon(IList<Propert...
method InitPset_EvaporatorPHistory (line 44057) | private static void InitPset_EvaporatorPHistory(IList<PropertySetDescr...
method InitPset_EvaporatorTypeCommon (line 44461) | private static void InitPset_EvaporatorTypeCommon(IList<PropertySetDes...
method InitPset_FanCentrifugal (line 44881) | private static void InitPset_FanCentrifugal(IList<PropertySetDescripti...
method InitPset_FanOccurrence (line 44979) | private static void InitPset_FanOccurrence(IList<PropertySetDescriptio...
method InitPset_FanPHistory (line 45148) | private static void InitPset_FanPHistory(IList<PropertySetDescription>...
method InitPset_FanTypeCommon (line 45525) | private static void InitPset_FanTypeCommon(IList<PropertySetDescriptio...
method InitPset_FanTypeSmokeControl (line 46017) | private static void InitPset_FanTypeSmokeControl(IList<PropertySetDesc...
method InitPset_FastenerRailWeld (line 46086) | private static void InitPset_FastenerRailWeld(IList<PropertySetDescrip...
method InitPset_FastenerWeld (line 46142) | private static void InitPset_FastenerWeld(IList<PropertySetDescription...
method InitPset_FenderCommon (line 46440) | private static void InitPset_FenderCommon(IList<PropertySetDescription...
method InitPset_FenderDesignCriteria (line 46542) | private static void InitPset_FenderDesignCriteria(IList<PropertySetDes...
method InitPset_FilterPHistory (line 46652) | private static void InitPset_FilterPHistory(IList<PropertySetDescripti...
method InitPset_FilterTypeAirParticleFilter (line 46782) | private static void InitPset_FilterTypeAirParticleFilter(IList<Propert...
method InitPset_FilterTypeCommon (line 47244) | private static void InitPset_FilterTypeCommon(IList<PropertySetDescrip...
method InitPset_FilterTypeCompressedAirFilter (line 47705) | private static void InitPset_FilterTypeCompressedAirFilter(IList<Prope...
method InitPset_FilterTypeWaterFilter (line 47824) | private static void InitPset_FilterTypeWaterFilter(IList<PropertySetDe...
method InitPset_FireRatingProperties (line 47871) | private static void InitPset_FireRatingProperties(IList<PropertySetDes...
method InitPset_FireSuppressionTerminalTypeBreechingInlet (line 47942) | private static void InitPset_FireSuppressionTerminalTypeBreechingInlet...
method InitPset_FireSuppressionTerminalTypeCommon (line 48183) | private static void InitPset_FireSuppressionTerminalTypeCommon(IList<P...
method InitPset_FireSuppressionTerminalTypeFireHydrant (line 48247) | private static void InitPset_FireSuppressionTerminalTypeFireHydrant(IL...
method InitPset_FireSuppressionTerminalTypeHoseReel (line 48632) | private static void InitPset_FireSuppressionTerminalTypeHoseReel(IList...
method InitPset_FireSuppressionTerminalTypeSprinkler (line 48965) | private static void InitPset_FireSuppressionTerminalTypeSprinkler(ILis...
method InitPset_FittingBend (line 49478) | private static void InitPset_FittingBend(IList<PropertySetDescription>...
method InitPset_FittingJunction (line 49518) | private static void InitPset_FittingJunction(IList<PropertySetDescript...
method InitPset_FittingTransition (line 49586) | private static void InitPset_FittingTransition(IList<PropertySetDescri...
method InitPset_FlowControllerDamper (line 49636) | private static void InitPset_FlowControllerDamper(IList<PropertySetDes...
method InitPset_FlowControllerFlowMeter (line 49677) | private static void InitPset_FlowControllerFlowMeter(IList<PropertySet...
method InitPset_FlowFittingDuctFitting (line 49718) | private static void InitPset_FlowFittingDuctFitting(IList<PropertySetD...
method InitPset_FlowFittingPipeFitting (line 49787) | private static void InitPset_FlowFittingPipeFitting(IList<PropertySetD...
method InitPset_FlowInstrumentPHistory (line 49840) | private static void InitPset_FlowInstrumentPHistory(IList<PropertySetD...
method InitPset_FlowInstrumentTypeCommon (line 49920) | private static void InitPset_FlowInstrumentTypeCommon(IList<PropertySe...
method InitPset_FlowInstrumentTypePressureGauge (line 49985) | private static void InitPset_FlowInstrumentTypePressureGauge(IList<Pro...
method InitPset_FlowInstrumentTypeThermometer (line 50100) | private static void InitPset_FlowInstrumentTypeThermometer(IList<Prope...
method InitPset_FlowMeterOccurrence (line 50215) | private static void InitPset_FlowMeterOccurrence(IList<PropertySetDesc...
method InitPset_FlowMeterTypeCommon (line 50259) | private static void InitPset_FlowMeterTypeCommon(IList<PropertySetDesc...
method InitPset_FlowMeterTypeEnergyMeter (line 50421) | private static void InitPset_FlowMeterTypeEnergyMeter(IList<PropertySe...
method InitPset_FlowMeterTypeGasMeter (line 50525) | private static void InitPset_FlowMeterTypeGasMeter(IList<PropertySetDe...
method InitPset_FlowMeterTypeOilMeter (line 50702) | private static void InitPset_FlowMeterTypeOilMeter(IList<PropertySetDe...
method InitPset_FlowMeterTypeWaterMeter (line 50805) | private static void InitPset_FlowMeterTypeWaterMeter(IList<PropertySet...
method InitPset_FlowMovingDeviceCompressor (line 51023) | private static void InitPset_FlowMovingDeviceCompressor(IList<Property...
method InitPset_FlowMovingDeviceFan (line 51060) | private static void InitPset_FlowMovingDeviceFan(IList<PropertySetDesc...
method InitPset_FlowMovingDeviceFanCentrifugal (line 51213) | private static void InitPset_FlowMovingDeviceFanCentrifugal(IList<Prop...
method InitPset_FlowMovingDevicePump (line 51296) | private static void InitPset_FlowMovingDevicePump(IList<PropertySetDes...
method InitPset_FlowSegmentDuctSegment (line 51373) | private static void InitPset_FlowSegmentDuctSegment(IList<PropertySetD...
method InitPset_FlowSegmentPipeSegment (line 51474) | private static void InitPset_FlowSegmentPipeSegment(IList<PropertySetD...
method InitPset_FlowStorageDeviceTank (line 51575) | private static void InitPset_FlowStorageDeviceTank(IList<PropertySetDe...
method InitPset_FlowTerminalAirTerminal (line 51648) | private static void InitPset_FlowTerminalAirTerminal(IList<PropertySet...
method InitPset_FootingCommon (line 51709) | private static void InitPset_FootingCommon(IList<PropertySetDescriptio...
method InitPset_FootingTypePadFooting (line 51793) | private static void InitPset_FootingTypePadFooting(IList<PropertySetDe...
method InitPset_FurnitureTypeChair (line 51829) | private static void InitPset_FurnitureTypeChair(IList<PropertySetDescr...
method InitPset_FurnitureTypeCommon (line 51962) | private static void InitPset_FurnitureTypeCommon(IList<PropertySetDesc...
method InitPset_FurnitureTypeDesk (line 52228) | private static void InitPset_FurnitureTypeDesk(IList<PropertySetDescri...
method InitPset_FurnitureTypeFileCabinet (line 52295) | private static void InitPset_FurnitureTypeFileCabinet(IList<PropertySe...
method InitPset_FurnitureTypeTable (line 52362) | private static void InitPset_FurnitureTypeTable(IList<PropertySetDescr...
method InitPset_GasTerminalPHistory (line 52462) | private static void InitPset_GasTerminalPHistory(IList<PropertySetDesc...
method InitPset_GasTerminalTypeCommon (line 52497) | private static void InitPset_GasTerminalTypeCommon(IList<PropertySetDe...
method InitPset_GasTerminalTypeGasAppliance (line 52536) | private static void InitPset_GasTerminalTypeGasAppliance(IList<Propert...
method InitPset_GasTerminalTypeGasBurner (line 52601) | private static void InitPset_GasTerminalTypeGasBurner(IList<PropertySe...
method InitPset_GateHeadCommon (line 52646) | private static void InitPset_GateHeadCommon(IList<PropertySetDescripti...
method InitPset_GeotechnicalAssemblyCommon (line 52673) | p
Copy disabled (too large)
Download .json
Condensed preview — 678 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (35,721K chars).
[
{
"path": ".editorconfig",
"chars": 101,
"preview": "# top-most EditorConfig file\nroot = true\n\n# Code files\n[*.cs]\nindent_style = space\nindent_size = 3\n\n\n"
},
{
"path": ".gitattributes",
"chars": 42,
"preview": "*.zip filter=lfs diff=lfs merge=lfs -text\n"
},
{
"path": ".github/ISSUE_TEMPLATE/ENHANCEMENT-REQUEST-FORM.yml",
"chars": 2836,
"preview": "name: Enhancement Request\r\ndescription: File an Enhancement Request\r\ntitle: \"ENH: \"\r\nlabels: [\"enhancement\", \"triage\"]\r\n"
},
{
"path": ".github/ISSUE_TEMPLATE/INQUIRY-FORM.yml",
"chars": 2853,
"preview": "name: Inquiry\r\ndescription: File an Inquiry\r\ntitle: \"INQ: \"\r\nlabels: [\"inquiry\", \"triage\"]\r\nbody:\r\n - type: markdown\r\n "
},
{
"path": ".github/ISSUE_TEMPLATE/PROBLEM-REPORT-FORM.yml",
"chars": 2853,
"preview": "name: Problem Report\r\ndescription: File a Problem Report\r\ntitle: \"PR: \"\r\nlabels: [\"problem\", \"triage\"]\r\nbody:\r\n - type:"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 28,
"preview": "blank_issues_enabled: false\n"
},
{
"path": ".gitignore",
"chars": 2802,
"preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n\n# User"
},
{
"path": "Install/Program Files to Install/DefaultUserDefinedParameterSets.txt",
"chars": 2292,
"preview": "#\r\n# User Defined PropertySet Definition File\r\n#\r\n# Format:\r\n# PropertySet:\t<Pset Name>\tI[nstance]/T[ype]\t<element li"
},
{
"path": "Install/Program Files to Install/IFC Shared Parameters-RevitIFCBuiltIn-Type_ALL.txt",
"chars": 771761,
"preview": "# This is a Revit shared parameter file.\n# Do not edit manually.\n*META\tVERSION\tMINVERSION\nMETA\t2\t1\n*GROUP\tID\tNAME\n#\nGROU"
},
{
"path": "Install/Program Files to Install/IFC Shared Parameters-RevitIFCBuiltIn_ALL.txt",
"chars": 756487,
"preview": "# This is a Revit shared parameter file.\r\n# Do not edit manually.\r\n*META\tVERSION\tMINVERSION\r\nMETA\t2\t1\r\n*GROUP\tID\tNAME\r\n#"
},
{
"path": "Install/Program Files to Install/IFC-SG Property Mapping Export.txt",
"chars": 39470,
"preview": "\n\nPropertySet:\tSGPset_AccessoryLot\tI\tIfcSpace\nAccessoryLotArea\tArea\nAccessoryLotNumber\tLabel\nAppurtenantTo\tLabel\nAreaDes"
},
{
"path": "Install/Program Files to Install/IFC2X2_ADD1.exp",
"chars": 237157,
"preview": "(*\nCopyright by:\nInternational Alliance for Interoperability, 1996-2003\n\nAll rights reserved. No part of this documentat"
},
{
"path": "Install/Program Files to Install/IFC2X2_ADD1.xsd",
"chars": 601044,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- created with EXPTOOL V20070502 (perl 5 program) written by Thomas Liebich, "
},
{
"path": "Install/Program Files to Install/IFC2X3_TC1.exp",
"chars": 257119,
"preview": "(*\nCopyright by:\nInternational Alliance for Interoperability, 1996-2007\n\nAll rights reserved. No part of this documentat"
},
{
"path": "Install/Program Files to Install/IFC2X3_TC1.xsd",
"chars": 716615,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- created with EXPTOOL V20070502 (perl 5 program) written by Thomas Liebich, "
},
{
"path": "Install/Program Files to Install/IFC2x3 COBie 2.4 Design Deliverable.txt",
"chars": 2541,
"preview": "#\n# User Defined PropertySet Definition File\n#\n# Format:\n#\tPropertySet:\t<Pset Name>\tI[nstance]/T[ype]\t<element list sepa"
},
{
"path": "Install/Program Files to Install/IFC4.exp",
"chars": 359976,
"preview": "(*\nCopyright by:\nbuildingSMART International Limited, 1996-2017\n\nAny technical documentation made available by buildingS"
},
{
"path": "Install/Program Files to Install/IFC4.xsd",
"chars": 630462,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xlink=\"http://www.w3"
},
{
"path": "Install/Program Files to Install/IFC4RV.xsd",
"chars": 630462,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xlink=\"http://www.w3"
},
{
"path": "Install/Program Files to Install/IFC4X3.xsd",
"chars": 702599,
"preview": "<?xml version='1.0' encoding='ASCII'?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xlink=\"http://www.w3"
},
{
"path": "Install/Program Files to Install/IFCCertifiedEntitiesAndPSets.json",
"chars": 80268,
"preview": "{\n\t\"IFC2X3CV2\" : {\n\t\t\"Version\" : \"V2.0\",\n\t\t\"EntityList\" : [\n\t\t\t\"IfcActorRole\",\n\t\t\t\"IfcActuatorType\",\n\t\t\t\"IfcAirTerminalB"
},
{
"path": "Install/Program Files to Install/IFCExporterUIOverride.addin",
"chars": 440,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<RevitAddIns>\r\n <AddIn Type=\"Application\">\r\n <Name>IFC override</Name>\r\n "
},
{
"path": "Install/Program Files to Install/LICENSE.rtf",
"chars": 92949,
"preview": "{\\rtf1\\adeflang1025\\ansi\\ansicpg1252\\uc1\\adeff0\\deff0\\stshfdbch31505\\stshfloch31506\\stshfhich31506\\stshfbi0\\deflang1033\\"
},
{
"path": "Install/Program Files to Install/Revit.IFC.addin",
"chars": 1182,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<RevitAddIns>\r\n <AddIn Type=\"Application\">\r\n <Name>IFC UI override</Name>\r\n"
},
{
"path": "Install/Program Files to Install/bundle/Contents/Resources/ADSKIFCExporterHelp.htm",
"chars": 18185,
"preview": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<htm"
},
{
"path": "Install/Program Files to Install/bundle/PackageContents.xml",
"chars": 1151,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<ApplicationPackage SchemaVersion=\"1.0\" AutodeskProduct=\"Revit\" ProductType=\"App"
},
{
"path": "Install/RevitIFCSetupWix/Product.wxs",
"chars": 21722,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<Wix xmlns=\"http://schemas.microsoft.com/wix/2006/wi\"\r\n xmlns:util=\"http://s"
},
{
"path": "Install/RevitIFCSetupWix/RevitIFCSetupWix.csproj",
"chars": 3907,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.micros"
},
{
"path": "Install/RevitIFCSetupWix/RevitIFCSetupWix.wixproj",
"chars": 5109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "Install/RevitIFCSetupWix/buildInstaller.bat",
"chars": 600,
"preview": "echo Build IFC installer\r\n\r\necho %1\r\necho %2\r\n\r\nset ThisBatFileRoot=%~dp0\r\nrem Set this path to your Wix bin directory.\r"
},
{
"path": "README.md",
"chars": 6555,
"preview": "# IFC for Revit and Navisworks (revit-ifc)\n\nThis is the .NET code used by Revit and Revit LT 2019 and later to support I"
},
{
"path": "Revit.IFC.sln",
"chars": 10482,
"preview": "\r\nMicrosoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio Version 17\r\nVisualStudioVersion = 17.8.3"
},
{
"path": "Source/IFCExporterUIOverride/Autodesk.IFC.Export.UI.addin",
"chars": 99,
"preview": "Content of this file is generated by CreateAddinFile.bat\nIt is copied to outdir in post build event"
},
{
"path": "Source/IFCExporterUIOverride/COBieCompanyInfoTab.xaml",
"chars": 5376,
"preview": "<UserControl x:Class=\"BIM.IFC.Export.UI.COBieCompanyInfoTab\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/20"
},
{
"path": "Source/IFCExporterUIOverride/COBieCompanyInfoTab.xaml.cs",
"chars": 7869,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/IFCExporterUIOverride/COBieProjectInfoTab.xaml",
"chars": 4535,
"preview": "<UserControl x:Class=\"BIM.IFC.Export.UI.COBieProjectInfoTab\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/20"
},
{
"path": "Source/IFCExporterUIOverride/COBieProjectInfoTab.xaml.cs",
"chars": 4141,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/IFCExporterUIOverride/CreateAddinFile.bat",
"chars": 909,
"preview": "echo off\r\nSETLOCAL\r\n\r\nset \"print=for /f %%^\" in (\"\"\"\") do echo(%%~\"\"\r\n(\r\n%print%<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n"
},
{
"path": "Source/IFCExporterUIOverride/CreateResource.bat",
"chars": 727,
"preview": "@echo off\n\nset OutputDir=%~1\nset OutputFileShortName=%~2\nSet CreatedResourceShortName=%~3\nset ToolsFolder=%~4\nset Projec"
},
{
"path": "Source/IFCExporterUIOverride/IFC2X2_ADD1.xsd",
"chars": 601044,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- created with EXPTOOL V20070502 (perl 5 program) written by Thomas Liebich, "
},
{
"path": "Source/IFCExporterUIOverride/IFC2X3_TC1.xsd",
"chars": 716615,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- created with EXPTOOL V20070502 (perl 5 program) written by Thomas Liebich, "
},
{
"path": "Source/IFCExporterUIOverride/IFC4.xsd",
"chars": 630462,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xlink=\"http://www.w3"
},
{
"path": "Source/IFCExporterUIOverride/IFCAddressInformationUI.xaml",
"chars": 7685,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCAddressInformation\"\r\n xmlns=\"http://schemas.microsof"
},
{
"path": "Source/IFCExporterUIOverride/IFCAddressInformationUI.xaml.cs",
"chars": 13211,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCategoryMapping.xaml",
"chars": 22528,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCCategoryMapping\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2006"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCategoryMapping.xaml.cs",
"chars": 48091,
"preview": "using Autodesk.Revit.DB;\r\nusing Autodesk.Revit.UI;\r\nusing Autodesk.UI.Windows;\r\nusing BIM.IFC.Export.UI.Properties;\r\nusi"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCopyTemplate.xaml",
"chars": 2330,
"preview": "<local:BaseTemplate x:Class=\"BIM.IFC.Export.UI.IFCCopyTemplate\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2006"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCCopyTemplate.xaml.cs",
"chars": 1250,
"preview": "using System.Windows;\r\n\r\nnamespace BIM.IFC.Export.UI\r\n{\r\n /// <summary>\r\n /// Interaction logic for IFCCopyTemplate"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCDeleteTemplate.xaml",
"chars": 1960,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCDeleteTemplate\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2006"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCDeleteTemplate.xaml.cs",
"chars": 1087,
"preview": "using Autodesk.UI.Windows;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nu"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCNewTemplate.xaml",
"chars": 2507,
"preview": "<local:BaseTemplate x:Class=\"BIM.IFC.Export.UI.IFCNewTemplate\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2006/"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCNewTemplate.xaml.cs",
"chars": 4083,
"preview": "using System;\r\nusing Revit.IFC.Export.Utility;\r\nusing System.Windows;\r\nusing System.Windows.Controls;\r\nusing System.Win"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCRenameTemplate.xaml",
"chars": 2634,
"preview": "<local:BaseTemplate x:Class=\"BIM.IFC.Export.UI.IFCRenameTemplate\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/20"
},
{
"path": "Source/IFCExporterUIOverride/IFCCategoryMapping/IFCRenameTemplate.xaml.cs",
"chars": 1016,
"preview": "using System;\r\nusing System.Windows;\r\nusing System.Windows.Threading;\r\n\r\nnamespace BIM.IFC.Export.UI\r\n{\r\n /// <summar"
},
{
"path": "Source/IFCExporterUIOverride/IFCClassificationUI.xaml",
"chars": 4561,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCClassificationWindow\"\r\n xmlns=\"http://schemas.microsof"
},
{
"path": "Source/IFCExporterUIOverride/IFCClassificationUI.xaml.cs",
"chars": 5818,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCCommandOverrideApplication.cs",
"chars": 36870,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCEntityTree/BrowseIFCEntityServer.cs",
"chars": 8409,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
},
{
"path": "Source/IFCExporterUIOverride/IFCEntityTree/EntityTree.xaml",
"chars": 5364,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.EntityTree\"\n xmlns=\"http://schemas.microsoft.com/winfx/20"
},
{
"path": "Source/IFCExporterUIOverride/IFCEntityTree/EntityTree.xaml.cs",
"chars": 48565,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.IO;\r\nusing System.Windows;\r\nusing Sy"
},
{
"path": "Source/IFCExporterUIOverride/IFCEntityTree/PredefinedTypeSelection.xaml",
"chars": 1789,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.PredefinedTypeSelection\"\n xmlns=\"http://schemas.microsoft"
},
{
"path": "Source/IFCExporterUIOverride/IFCEntityTree/PredefinedTypeSelection.xaml.cs",
"chars": 5579,
"preview": "using System.Collections.Generic;\nusing System.Windows;\nusing System.Windows.Controls;\nusing Autodesk.Revit.DB;\nusing R"
},
{
"path": "Source/IFCExporterUIOverride/IFCExport.xaml",
"chars": 6073,
"preview": "<!-- TODO: use resources to govern externalized strings. (static initialization failure when loaded into Revit even th"
},
{
"path": "Source/IFCExporterUIOverride/IFCExport.xaml.cs",
"chars": 34682,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCExportResult.cs",
"chars": 1583,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCExporterUI.csproj",
"chars": 5575,
"preview": "<Project Sdk=\"\">\n <PropertyGroup>\n <AddinGUID>e78da2e3-7e89-464c-97cd-2212c8be3fa8</AddinGUID>\n <AddinType>INT</"
},
{
"path": "Source/IFCExporterUIOverride/IFCExporterUI.props",
"chars": 1243,
"preview": "<Project xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n <ItemGroup>\n <Reference Include=\"RevitAPI\">\n "
},
{
"path": "Source/IFCExporterUIOverride/IFCExporterUIOverride.csproj",
"chars": 6511,
"preview": "<Project Sdk=\"\">\r\n <PropertyGroup>\r\n <AddinGUID>6DC299D6-F746-47BE-AE93-F00DDC714257</AddinGUID>\r\n <AddinType>LT<"
},
{
"path": "Source/IFCExporterUIOverride/IFCExporterUIWindow.xaml",
"chars": 30036,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCExporterUIWindow\"\r\n xmlns=\"http://schemas.microsoft.co"
},
{
"path": "Source/IFCExporterUIOverride/IFCExporterUIWindow.xaml.cs",
"chars": 98214,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCFileFormatAttributes.cs",
"chars": 3885,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCFileHeaderInformationUI.xaml",
"chars": 6768,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCFileHeaderInformation\"\r\n xmlns=\"http://schemas.microso"
},
{
"path": "Source/IFCExporterUIOverride/IFCFileHeaderInformationUI.xaml.cs",
"chars": 4235,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCLinkedFileExportAs.cs",
"chars": 1878,
"preview": "//\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user in"
},
{
"path": "Source/IFCExporterUIOverride/IFCNewExportSetup.xaml",
"chars": 1255,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.NewExportSetupWindow\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2"
},
{
"path": "Source/IFCExporterUIOverride/IFCNewExportSetup.xaml.cs",
"chars": 3693,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/ComboBoxFilteringUtilities.cs",
"chars": 7308,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Collections.ObjectModel;\r\nusing System.Linq;\r\nusing Syste"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCNotificationMessageBox.xaml",
"chars": 1992,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCNotificationMessageBox\"\r\n xmlns=\"http://schemas.microsoft.com/wi"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCNotificationMessageBox.xaml.cs",
"chars": 864,
"preview": "using Autodesk.UI.Windows;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nu"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyFilter.xaml",
"chars": 3596,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCPropertyFilter\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/2006"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyFilter.xaml.cs",
"chars": 1470,
"preview": "using Autodesk.Revit.DB;\nusing Autodesk.UI.Windows;\nusing System.ComponentModel;\nusing System.Runtime.CompilerServices;"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyMapping.xaml",
"chars": 45527,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCPropertyMapping\"\r\n xmlns=\"http://schemas.microsoft.com/winfx/200"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyMapping.xaml.cs",
"chars": 77930,
"preview": "using Autodesk.Revit.DB;\r\nusing Autodesk.Revit.UI;\r\nusing Autodesk.UI.Windows;\r\nusing BIM.IFC.Export.UI.Properties;\r\nus"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCPropertyMappingModel.cs",
"chars": 38903,
"preview": "using Autodesk.Revit.DB;\r\nusing Autodesk.Windows;\r\nusing BIM.IFC.Export.UI.Properties;\r\nusing Revit.IFC.Export.Exporter"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCRevitPropertySelector.xaml",
"chars": 4858,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCRevitPropertySelector\"\r\n xmlns=\"http://schemas.microsoft.com/win"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCRevitPropertySelector.xaml.cs",
"chars": 36216,
"preview": "using Autodesk.Revit.DB;\nusing Autodesk.UI.Windows;\nusing Revit.IFC.Common.Enums;\nusing Revit.IFC.Common.Utility;\nusing"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCUserDefinedPropertyMapping.xaml",
"chars": 21322,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.IFCUserDefinedPropertyMapping\"\r\n xmlns=\"http://schemas.microsoft.co"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertyMapping/IFCUserDefinedPropertyMapping.xaml.cs",
"chars": 50192,
"preview": "using Autodesk.Revit.DB;\r\nusing Autodesk.Revit.UI;\r\nusing Autodesk.UI.Windows;\r\nusing BIM.IFC.Export.UI.Properties;\r\nus"
},
{
"path": "Source/IFCExporterUIOverride/IFCPropertySets.cs",
"chars": 4380,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCRenameExportSetup.xaml",
"chars": 1686,
"preview": "<auiw:ChildWindow x:Class=\"BIM.IFC.Export.UI.RenameExportSetupWindow\"\r\n xmlns=\"http://schemas.microsof"
},
{
"path": "Source/IFCExporterUIOverride/IFCRenameExportSetup.xaml.cs",
"chars": 3719,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCSitePlacementAttributes.cs",
"chars": 2027,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCSpaceBoundaryAttributes.cs",
"chars": 2638,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCTemplateData.cs",
"chars": 10969,
"preview": "using Autodesk.UI.Windows;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.ComponentModel;\r\nusing Syste"
},
{
"path": "Source/IFCExporterUIOverride/IFCUIUtility.cs",
"chars": 3505,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/IFCExporterUIOverride/IFCVersionExtensions.cs",
"chars": 2216,
"preview": "//\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user in"
},
{
"path": "Source/IFCExporterUIOverride/Properties/AssemblyInfo.cs",
"chars": 3523,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user in"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Resources.Designer.cs",
"chars": 156119,
"preview": "//------------------------------------------------------------------------------\r\n// <auto-generated>\r\n// This code"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Resources.de.resx",
"chars": 34684,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n <!-- \n Microsoft ResX Schema \n \n Version 2.0\n \n The prim"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Resources.fr.resx",
"chars": 36018,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<root>\r\n <!-- \r\n Microsoft ResX Schema \r\n \r\n Version 2.0\r\n \r\n T"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Resources.resx",
"chars": 60207,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<root>\r\n <!-- \r\n Microsoft ResX Schema \r\n \r\n Version 2.0\r\n \r\n T"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Settings.Designer.cs",
"chars": 1570,
"preview": "//------------------------------------------------------------------------------\r\n// <auto-generated>\r\n// This code"
},
{
"path": "Source/IFCExporterUIOverride/Properties/Settings.settings",
"chars": 434,
"preview": "<?xml version='1.0' encoding='utf-8'?>\r\n<SettingsFile xmlns=\"http://schemas.microsoft.com/VisualStudio/2004/01/settings"
},
{
"path": "Source/IFCExporterUIOverride/Win32API.cs",
"chars": 1807,
"preview": "// (C) Copyright 1994-2014 by Autodesk, Inc. All rights reserved.\n//\n// Permission to use, copy, modify, and distribute "
},
{
"path": "Source/Revit.IFC.Common/Enums/CommonEnum.cs",
"chars": 753,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC2X2_ADD1EntityType.cs",
"chars": 9871,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\n\nnamespace Revit.IFC.Common.Enums."
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC2X3_TC1EntityType.cs",
"chars": 18727,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\n\nnamespace Revit.IFC.Common.Enums."
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC2xEntityType.cs",
"chars": 22351,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC4EntityType.cs",
"chars": 22319,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace Revit.IFC.Common.E"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC4x1EntityType.cs",
"chars": 23389,
"preview": "//\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user in"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC4x2EntityType.cs",
"chars": 23754,
"preview": "//\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user in"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFC4x3EntityType.cs",
"chars": 24039,
"preview": "namespace Revit.IFC.Common.Enums.IFC4x3\n{\n /// <summary>\n /// List of Entities for IFC4x3\n /// </summary>\n publi"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFCEntityType.cs",
"chars": 31110,
"preview": "namespace Revit.IFC.Common.Enums\r\n{\r\n /// <summary>\r\n /// IFC entity types. Combining IFC2x2_ADD1, IFC2x3_TC1, IFC4"
},
{
"path": "Source/Revit.IFC.Common/Enums/IFCKnownMVDAndER.cs",
"chars": 498,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCAddress.cs",
"chars": 10202,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCAddressItem.cs",
"chars": 9372,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCClassification.cs",
"chars": 8608,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCClassificationMgr.cs",
"chars": 14242,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCFileHeader.cs",
"chars": 8892,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Extension/IFCFileHeaderItem.cs",
"chars": 8703,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Properties/AssemblyInfo.cs",
"chars": 805,
"preview": "#if IFC_OPENSOURCE\r\nusing System.Reflection;\r\n\r\n// General Information about an assembly is controlled through the follo"
},
{
"path": "Source/Revit.IFC.Common/Revit.IFC.Common.csproj",
"chars": 911,
"preview": "<Project Sdk=\"\">\r\n <PropertyGroup>\r\n <RootNamespace>Revit.IFC.Common</RootNamespace>\r\n <AssemblyName>Revit.IFC.Co"
},
{
"path": "Source/Revit.IFC.Common/Utility/AllocatedGeometryObjectCache.cs",
"chars": 2202,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Common/Utility/COBieCompanyInfo.cs",
"chars": 2151,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Text.RegularExpr"
},
{
"path": "Source/Revit.IFC.Common/Utility/COBieProjectInfo.cs",
"chars": 1503,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/Revit.IFC.Common/Utility/CoordReferenceInfo.cs",
"chars": 3284,
"preview": "using System;\nusing System.IO;\nusing System.Runtime.Serialization;\nusing System.Runtime.Serialization.Formatters.Binary"
},
{
"path": "Source/Revit.IFC.Common/Utility/DirectoryUtil.cs",
"chars": 1927,
"preview": "//\r\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) IFC import and export.\r\n// Copyright (C) "
},
{
"path": "Source/Revit.IFC.Common/Utility/ElementComparer.cs",
"chars": 1802,
"preview": "//\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) to import IFC files.\n// Copyright (C) 2022"
},
{
"path": "Source/Revit.IFC.Common/Utility/IFCAnyHandleUtil.cs",
"chars": 82135,
"preview": "//\r\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) IFC import and export.\r\n// Copyright (C) "
},
{
"path": "Source/Revit.IFC.Common/Utility/IFCCompatibilityType.cs",
"chars": 8513,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing Revit.IFC.Common.Enums;"
},
{
"path": "Source/Revit.IFC.Common/Utility/IFCEntityTrie.cs",
"chars": 6580,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
},
{
"path": "Source/Revit.IFC.Common/Utility/IFCFuzzyXYZ.cs",
"chars": 5006,
"preview": "//\r\n// BIM IFC export alternate UI library: this library works with Autodesk(R) Revit(R) to provide an alternate user i"
},
{
"path": "Source/Revit.IFC.Common/Utility/IfcSchemaEntityNode.cs",
"chars": 8548,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/Revit.IFC.Common/Utility/IfcSchemaEntityTree.cs",
"chars": 36052,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/Revit.IFC.Common/Utility/MathUtil.cs",
"chars": 11200,
"preview": "//\r\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) IFC import and export.\r\n// Copyright (C) "
},
{
"path": "Source/Revit.IFC.Common/Utility/OptionsUtil.cs",
"chars": 28462,
"preview": "//\r\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) IFC import and export.\r\n// Copyright (C) "
},
{
"path": "Source/Revit.IFC.Common/Utility/ProcessIFCXMLSchema.cs",
"chars": 5433,
"preview": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Threading.Tasks;"
},
{
"path": "Source/Revit.IFC.Common/Utility/RevitStatusBar.cs",
"chars": 2615,
"preview": "//\r\n// Revit IFC Common library: this library works with Autodesk(R) Revit(R) to import IFC files.\r\n// Copyright (C) 20"
},
{
"path": "Source/Revit.IFC.Common/Utility/SolidMeshGeometryInfo.cs",
"chars": 12923,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/AreaSchemeExporter.cs",
"chars": 3640,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/AssemblyInstanceExporter.cs",
"chars": 12678,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/AssemblyInstanceInfo.cs",
"chars": 1873,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to import and export IFC files containing model ge"
},
{
"path": "Source/Revit.IFC.Export/Exporter/BeamExporter.cs",
"chars": 28227,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/BodyData.cs",
"chars": 7209,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/BodyExporter.cs",
"chars": 210470,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n// "
},
{
"path": "Source/Revit.IFC.Export/Exporter/BodyExporterOptions.cs",
"chars": 7406,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/BoundingBoxExporter.cs",
"chars": 11175,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/CeilingExporter.cs",
"chars": 13459,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ConnectorExporter.cs",
"chars": 45739,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/CurtainSystemExporter.cs",
"chars": 29194,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/CurveElementExporter.cs",
"chars": 13481,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/DoorWindowExporter.cs",
"chars": 2077,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/DuctInsulationExporter.cs",
"chars": 1939,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/DuctLiningExporter.cs",
"chars": 1933,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/Exporter.cs",
"chars": 213565,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ExporterInitializer.cs",
"chars": 56768,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ExporterInitializer_PredefPset.cs",
"chars": 174500,
"preview": "/***********************************************************************************************************************"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ExporterInitializer_PsetDef.cs",
"chars": 8273203,
"preview": "/***********************************************************************************************************************"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ExporterInitializer_QsetDef.cs",
"chars": 648020,
"preview": "/***********************************************************************************************************************"
},
{
"path": "Source/Revit.IFC.Export/Exporter/ExtrusionExporter.cs",
"chars": 92465,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FabricSheetExporter.cs",
"chars": 15297,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FabricationPartExporter.cs",
"chars": 4427,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FamilyInstanceExporter.cs",
"chars": 99260,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FilledRegionExporter.cs",
"chars": 6499,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FloorExporter.cs",
"chars": 39663,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/FootingExporter.cs",
"chars": 7745,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/GenericElementExporter.cs",
"chars": 18103,
"preview": "using System;\nusing System.Collections.Generic;\nusing Autodesk.Revit.DB;\nusing Autodesk.Revit.DB.IFC;\nusing Revit.IFC.E"
},
{
"path": "Source/Revit.IFC.Export/Exporter/GenericMEPExporter.cs",
"chars": 14326,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/GridExporter.cs",
"chars": 27915,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/GroupExporter.cs",
"chars": 6371,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/GroupInfo.cs",
"chars": 1860,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to import and export IFC files containing model ge"
},
{
"path": "Source/Revit.IFC.Export/Exporter/HandleAndData.cs",
"chars": 2740,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/HostObjectExporter.cs",
"chars": 16932,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/HostedSweepExporter.cs",
"chars": 1832,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/IFCEntityAndPsetList.cs",
"chars": 6618,
"preview": "using System.IO;\nusing System.Collections.Generic;\nusing Newtonsoft.Json;\n\nnamespace Revit.IFC.Export.Utility\n{\n /// "
},
{
"path": "Source/Revit.IFC.Export/Exporter/IFCExportBodyParams.cs",
"chars": 8286,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/InsulationExporter.cs",
"chars": 1940,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PartExporter.cs",
"chars": 79062,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PileExporter.cs",
"chars": 5721,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PipeInsulationExporter.cs",
"chars": 2164,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/AttributeEntry.cs",
"chars": 2485,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/AttributeEntryMap.cs",
"chars": 2119,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/AttributeSetDescription.cs",
"chars": 3802,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/AreaCalculator.cs",
"chars": 4629,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ConcealedCalculator.cs",
"chars": 2700,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ConcealedCeiling.cs",
"chars": 2741,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ConcealedCeilingOffset.cs",
"chars": 2777,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ConcealedFlooring.cs",
"chars": 2747,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ConcealedFlooringOffset.cs",
"chars": 2783,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/CounterSlopeCalculator.cs",
"chars": 3299,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/CrossSectionAreaCalculator.cs",
"chars": 4065,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/DepthCalculator.cs",
"chars": 3657,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/DiameterCalculator.cs",
"chars": 3785,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/ExtendToStructureCalculator.cs",
"chars": 3128,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/FinishCalculator.cs",
"chars": 3697,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/FireRatingCalculator.cs",
"chars": 3057,
"preview": "// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// Copy"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/GrossAreaCalculator.cs",
"chars": 3685,
"preview": "//\r\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\r\n//"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/GrossCeilingAreaCalculator.cs",
"chars": 5209,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/GrossCrossSectionAreaCalculator.cs",
"chars": 3471,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
},
{
"path": "Source/Revit.IFC.Export/Exporter/PropertySet/Calculators/GrossFloorAreaCalculator.cs",
"chars": 4909,
"preview": "//\n// BIM IFC library: this library works with Autodesk(R) Revit(R) to export IFC files containing model geometry.\n// C"
}
]
// ... and 478 more files (download for full content)
About this extraction
This page contains the full source code of the Autodesk/revit-ifc GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 678 files (31.5 MB), approximately 8.3M tokens, and a symbol index with 8723 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.