-
Notifications
You must be signed in to change notification settings - Fork 612
Eclipse Modeling Framework
Building Information Models (BIM) are typically Object Oriented and tend to be large. For example the Industry Foundations Classes (IFC) have more than one thousand different classes. Because the BIMserver has been written in Java (an Object Oriented Language), it is very useful to have typed Java classes in the used BIM model. This is where the Eclipse Modelling Framework (EMF) comes into play. For now, the BIMserver uses IFC2x3tc1 internally.
Most BIM meta models are described in a data format. As IFC is based on STEP/EXPRESS technology, the schema is available as an .EXP file. This file has been converted to an EMF Core file with the BuildingSMARTLibrary.
The EMF framework generates Java classes with the given ECore file, these classes are used to store BIM models and passed to the database layer .
If you load a model from an IFC-Step file, the String values of floating point numbers are being stored as a String as well. If you change the float values programatically, you should update (or clear) the string value.
BIMserver consists of 5 different EMF models:
- The IFC2x3tc1 Schema model (as described above) that holds IFC data.
- The IFC4 Schema model (as described above) that holds IFC data.
- The Log schema for logging
- The Store model that holds typical BIMserver data like projects, users, revisions etc.
- The Geometry model that stores geometry like vertices/indices/normals/colors
Get Started
- Quick Guide
- Requirements Version 1.2
- Requirements Version 1.3
- Requirements Version 1.4
- Requirements Version 1.4 > 2015-09-12
- Requirements Version 1.5
- Download
- JAR Starter
- Setup
Deployment
- Ubuntu installation 1.3
- Windows installation
- Security
- Memory Usage
- More memory
- Performance statistics
- Large databases
Developers
- Service Interfaces
- Common functions
- Data Model
- Low Level Calls
- Endpoints
Clients
BIMServer Developers
- Plugins in 1.5
- Plugin Development
- Eclipse
- Eclipse Modeling Framework
- Embedding
- Terminology
- Database/Versioning
- IFC STEP Encoding
- Communication
- Global changes in 1.5
- Writing a service
- Services/Notifications
- BIMserver 1.5 Developers
- Extended data
- Extended data schema
- Object IDM
New developments
- New remote service interface
- Plugins new
- Deprecated
- New query language
- Visual query language
- Reorganizing BIMserver JavaScript API
General