SlideShare a Scribd company logo
1 of 8
Download to read offline
BIMSERVER.ORG – AN OPEN SOURCE IFC MODEL SERVER

Jakob Beetz, Assistant Professor, j.beetz@tue.nl
Eindhoven University of Technology, Eindhoven, The Netherlands
Léon van Berlo, Researcher, leon.vanberlo@tno.nl
Ruben de Laat, Researcher, ruben.delaat@tno.nl
Pim van den Helm, Researcher, pim.vandenhelm@tno.nl
TNO Built Environment and Geosciences, Delft, The Netherlands



ABSTRACT

In this paper the Open Source IFC model server project bimserver.org is introduced. A brief overview of existing
IFC toolkits and model servers both as commercial applications as well as research prototypes is given. An
implementation-independent meta-model from current IFC STEP EXPRESS schemas is generated and used as a
venture point for a database persistency framework. A model server application is introduced that is based on this
framework which enables the storage, maintenance and query of IFC based building information models for the
collaboration among different stakeholders.

Keywords: IFC, model server, BIM, CAD, collaboration

    1. INTRODUCTION
Currently, only very few implementations of model servers exist that enable stakeholders in AEC/FM projects to
collaborate on central repositories of building information models (BIM). Most of the few existing commercial
implementations are built on the basis of general purpose STEP or PLM/PLCS technologies. Up to now, both the
underlying business models as well as the operation of the servers themselves are tailored to the needs of large
corporations from other industry domains such as shipbuilding, automotive, and petrochemical. Design and
engineering processes as well as the resulting end-products in these domains differ significantly from the building
industry. Here, one-of-a-kind artifacts are designed in a collaborative effort by nonrecurring, temporary and multi-
disciplinary teams that are mainly composed of members of small and medium enterprises (SMEs). Furthermore,
very few of these stakeholders have sufficient data modeling knowledge to the degree needed for an effective use
of present day model server products. In order to achieve the long-standing goal of shared product data models
throughout the lifecycle of a building, not only open technical, methodological and standardization issues to be
solved. The availability of affordable and end-user friendly model server technology is crucial for the
advancement of the industry as a whole.
     Open, accessible frameworks that focused on the demands of the building industry that have been proposed in
the past, such as the IMSvr (IMSvr 2003) and SABLE (Houbaux 2003) projects, which have been reviewed in
(Kivinimi et al 2005) and (Howard & Björk 2007), unfortunately have been discontinued and only a small amount
of dedicated research has been done to address the specific problems of shared building information models for
collaboration purposes (Weise 2006). However, among the promising open initiatives (Nour et al 2006,
OpenIFCtools 2009) that have been started also in more recent years, no common platform for a shared research
and development effort has gained enough traction yet to drive a collaborative development of an open source
platform forward.
     By creating a free software platform (licensed under the GPL v 3) and model server implementation presented
in this paper, end-users from the building industry are encouraged to use shared building information models that



                                   Proceedings of the CIB W78 2010: 27th International Conference –Cairo, Egypt, 16-18 November
have been advocated for such a long time now. As a second goal, the results *-presented here offer a considerably
valuable development environment for both fellow academic researchers and commercial software developers.
    In the following sections a brief overview of the internal architecture of the platform as a whole and describe
the use of an implemented browser based interface from an end user perspective is given. A summary and
indications of future work conclude this paper.

    2. FRAMEWORK ARCHITECTURE
The bimserver.org development framework has a multi-layered design with a generative, model-driven
architecture based on the existing IFC STEP Express models that are transformed into more widely accepted data
modeling languages and frameworks to simplify and streamline development with these models. A generic
persistency layer using a key-value database approach allows versioning of data models on an object level.




                                    Figure 1: Simplified architecture diagram

   At the core of the framework, a generic EXPRESS parser based on the Open Source EXPRESS parser
(OSEXpress, 2001) by Lubel and others from NIST is used to create an in-memory meta model of schemas like
IFC2x3. With this internal model as a basis, a Meta-Object Facility (MOF) has been created in the Eclipse
Modeling Framework (EMF) format, which is a meta model comparable to OMG’s XML Metadata Interchange
(XMI) (Gerber and Raymond 2003). For most EXPRESS constructs, the mapping and conversion to their EMF
counterparts is straightforward: EXPRESSS Entities are converted to corresponding EClass instances, EXPRESS
attributes including the bounds of aggregations such as LIST, BAG, etc are stored as their EAttribute counterparts.
Optional EXPRESS attributes (which are the dominant citizens in IFC schemas) are made unsettable in the
corresponding ECore model and EXPRESS enumeration types are transformed into EEnum classifiers in return.
However for certain EXPRESSS language features, work-arounds had to be introduced since no straight-forward
mapping to EMF is possible: EXPRESS TYPEs that are derived from primitive types (integer, string, float etc.)
are boxed into wrapper classes, since a similar inheritance feature for primitive classes does not exist in EMF or
in its main target language Java. While this constitutes a minor inconvenience for developers at the moment,
casting operators may be introduced in future versions of the project. In rare occasions inverse relationships
cannot be generated in straight forward manners as their EOpposite EMF counterparts due to inheritance issues
and manually coded work-around had to be introduced into the model. Other work-abounds include the storage of
original string values alongside with their converted floating-point representations to prevent rounding and
notation issues in round-tripping read/write cycles, a tristate wrapper type that to capture the difference between
STEP’s $ and Undefined and an additional NULL value for enumerations that are disallowed in the EMF
representation.
     Figure 1 shows the various layers that allows for exchangeable components. For example another
implementation of the ServiceInterface could provide the BIMserver services based on an in-memory
representation of data, or even a network of other services. Another implementation of the BimDatabase interface
would allow other types of database (for example relational databases) to be used. The ColumnDatabase interface
at last makes it possible to switch to another key-value database like for example the distributed (Project
Voldemort 2009).
     The generated EMF model is used as the input for a code generator that creates early-binding classes for all
entities and types found in the schemas. With this, the bimserver.org initiative also offers a generic early-binding
IFC library that hopefully makes the framework a convenient tool for both academic researchers and industrial
developers.
     Upon the upload of a new revision by an end-user, a parser for IFC instance models, encoded in a Part 21
STEP Physical File Formats (SPFF) notation instantiates instances of the generated early-binding classes. Other
parsers, like the part 28 ifcXML notation parser are work in progress. For the main purpose of database-persisted,
versioned models, a persistency meta model has been developed that stores revisions of IFC models on a per-
object basis: For each entity instance in the model, a unique key is generated composed of an object id, the id of
the project and the revision number itself. This enables the generation of version deltas referred to as Change Sets
in the bimserver.org platform: For a model M={A,B}of two entities A and B, where A contains a reference
attribute to B, two records in the database are created along with their attribute values (either primitive types or
object references). If a change of B is uploaded, a new record B’ will be created while the original B is kept in the
DB resulting in M’={A,B,B’}. Even if a changed object A’ refers to a new object C in a later revision of the
model M’’={A,A’,B,B’,C}, the initial model state M can still be reconstructed by choosing the appropriate earlier
revision ids. Currently, the creation of these Change Sets is left to the client-side application. In future versions of
the framework this is replaced by automated server-side processes that generate version deltas autonomously. The
absence of unique, non-ambiguous object identifiers that is inherent to the IFC model schema, in which only a
fraction of instances are equipped with a GUID, and the file-oriented nature of STEP models in general, makes
such automated delta-generations a non-trivial task. Candidate approaches for such detection mechanisms have
been suggested by (Weise 2006) and (Arhaud & Lombardo, 2006), however a clean solution of this generally
recognized, yet still unsolved problem domain might require a fundamental change of underlying data structures
and modeling methods altogether. Apart from these graph-topology comparison approaches, we are also looking
into spatial-heuristic comparisons of model versions based on the geometric representation of building
components. In such an approach, spatial comparison operators could be used to match seemingly disparate
components in two model versions (old and new) which cannot be aligned by their GUIDs based on their level of
geometric incidence. The framework provides a branching system based on the notion of sub projects. By adding
IFC object data to a project that is a sub project of another, the data automatically extents both projects. A main
project joins the database objects that are common to all subprojects.
     To retrieve complete revisions or partial models that have been checked into the server, a number of query
mechanisms have been implemented. Single objects can be extracted by their unique object identifiers, IfcRoot-
descendants can be retrieved by their IFC GUID, all instances of a class can be retrieved (e.g. all doors) and for
more sophisticated queries Java query code can be sent to the server where it is compiled and executed at runtime.
As an illustration of such query code, consider the code snippet in fig. 2, which also illustrates the use of the early
binding model API and the wrappedValue solution. Here, a model is queried for all doors on the first storey that
exceed a height of two meters.
public class Query implements QueryInterface {

        private IfcDatabase<Long> model;
        private PrintWriter out;

        @Override
        public void query(IfcDatabase<Long> model, PrintWriter out) {
                List<IfcBuildingStorey> stories = model.getAll(IfcBuildingStorey.class);
                Map<Float, IfcBuildingStorey>orderedStories = new TreeMap<Float, IfcBuildingStorey>();
                for (IfcBuildingStorey storey : stories) {
                    orderedStories.put(storey.getElevation().getWrappedValue(), storey);
                }
                if (orderedStories.size() > 1) {
                    IfcBuildingStorey firstFloor = stories.get(1);
                    for (IfcRelContainedInSpatialStructure rel : firstFloor.getContainsElements()) {
                       for (IfcProduct product : rel.getRelatedElements()) {
                           if (product instanceof IfcDoor) {
                               IfcDoor ifcDoor = (IfcDoor)product;
                                  if (ifcDoor.getOverallHeight().getWrappedValue() > 2) {
                                    out.println(ifcDoor.getName().getWrappedValue()+
                                    " " + ifcDoor.getOverallHeight().getWrappedValue());
                                  }
                           }
                       }
                    }
                }
        }
    }
                                         Figure 2: example custom query code

XML configuration files that are editable by end users allow a fine-grained control over classes, attributes and
relationships that should either be left out of query results or included. In future, this mechanism can be used to
allow the extraction of sub models according to predefined Model View Definitions (MVD) in the context of the
Information Delivery Manual (IDM) initiative or project specific filter lenses.
    Based on TNO’s IfcEngine library (TNO IFC Engine 2002), a number of geometry operations have been
integrated into the framework using a Java Native Interface JNA that run on Windows, Apple (unix) and Linux
platforms. The current main applications of this functionality are the generation of export formats (CityGML
including GeoBIM extension, Collada, KML/KMZ) based on complete model revisions or as partial models based
on the queries described earlier, an O3D viewer that is integrated into the web client and clash detection
functionality that is reported in (Helm et al 2010).
    The choice of the key-value database BerkeleyDB engine as the backbone of the persistency framework (after
less successful experiments with traditional object-relational mapping frameworks) led to a robust, well-
performing and transactional framework that allows the handling of large models such as the HITOS reference
model (Lê et al 2006, Howard & Björk 2007) with its more than a million entity instances.
    Many of the functions provided are also exposed as SOAP interfaces through a WSDL file, which allows
developers the integration of remote server interaction into their own applications. The ability to refer to distinct
revisions of objects in a RESTful manner provides a powerful mechanism for distributed models.
3. SERVER AND WEB CLIENT FROM AN END-USER PERSPECTIVE




    Figure 3: screenshots of different modules of the model server exposed through the web browser client: a)
 visualization module (upper left), b) query module (upper right), c) revision overview (lower left) and d) object
                                              browsers (lower right)

After downloading the platform either as a stand-alone JAR executable or as a WAR archive for deployment on
servlet containers like Apache Tomcat, interested end-users can start the server with a single mouse click, since
the default configuration needs little to no adaption to run on common Windows, Apple (unix) or Linux in both
32bit or 64bit environments. Next to the server that also contains a built-in Jetty web server, a web browser based
client is currently the main interface for end users. Here, users can be set up that will be assigned to projects. After
creating a new project and adding users that are allowed to check revisions in, an initial upload is made.
     Different modules now allow a number of operations directly in the web browser:
An O3D-based visualization allows the visual control of uploaded models (Fig.3a). This module can also be used
for the visualization of query results. Models can be queried using different approaches described in section two
(Fig. 3b). A revision interface lets users download revisions and browse their history (Fig. 3c) and an object
browser provides statistical overviews of objects, primitives and relations within a given revision of the model
(Fig. 3d). Furthermore, clash detection results of arbitrary revisions can be displayed and a sub projects module
allows the creation of version branches for the management of design alternatives.

    4. USER EXPERIENCES
Numerous users have experimented with the software since its initial release. A growing amount of informal user
feedback is collected through the mailing lists and during hands-on workshops. The spectrum of reported user
experiences is very broad. Almost all users agree that the archiving function, and the certainty that the latest
information is in one place, make the BIMserver software added value for any engineering consortium.
     The most appreciated features of the BIMserver software are the authentication and merging concept on top
of the subprojects. Most experts agree that the merging as it is implemented in the BIMserver so far (June 2010)
needs improvement. The software ‘just’ places all IFC objects found in the subprojects into one IFC file. Using
the same objects in subprojects will result in double objects in the main project. For most users however this
doesn’t seem to be a problem. They use the merging capabilities to evaluate the geometry consistence of the main
model. The authentication system provides users with write access to their own subproject, but also grants them
read access to download and evaluate (other parts of) the model.
     A frequent request is the finer control of changes introduced by different users in the collaboration process
the. Currently, the BIMserver software supports this with a ‘early warning system’ that warns users to avoid
model inconsistency between different users. This feature is seen as a highly important feature by almost all users,
but no users have really tried it in practice. The same goes for the RSS feed for model updates; the GUID based
change finder and the model summary: all users recognize the importance and are enthusiastic about the feature,
but usage in practice is minimal.
     Relatively insignificant features like the ability to upload/download IFC models in a ZIP file are highly
appreciated because of the reduction of upload/download time on slow internet connections. The Google Earth
network link is popular with architects. Architects send the URL of the latest model in KMZ to their clients at the
start of a project. Clients can check the status of the design at any given moment. Also the export features for IFC
to Collada, CityGML and ifcXML are reasons for users to install and use the software.
     Advanced users are looking forward to the configurable clash detection. In this new feature users can filter
objects based on subproject or object type to check collision between them. Early adopters agree that this could be
the most important reason for new users to use the software.
     A prospective connection between IFC objects in the BIMserver to Document Management Systems (DMS)
and client side software (for example by using the SOAP interface) is regarded as one of the most promising
future additions to the BIMserver software. The current web client user interface receives negative feedback. It is
perceived as being too technical. Professional user interface design could mean a higher user rating.

    5. SUMMARY AND OUTLOOK
In this paper the IFC-based Open Source building information model server bimserver.org has been introduced.
Being both a software development platform as well as a working IFC server available to both SME and large
enterprise end-users at no cost and with minimal technical knowledge required, the project aims to gain traction in
both research and development communities. The platform provides granular revision control on an object-level
for IFC model populations and can be adapted to work with other EXPRESS schemas in the future. It is based on
an early-binding API provided by layered code generators on accepted (meta) modeling languages that allows
comfortable interactions with IFC instances programmatically and provides flexible interfaces for versioned BIM
models both by a SOAP API as well as by a web client interface prototype for end users. It features a number of
modules such as visualizations, clash control and flexible query and filter mechanisms and is extendable. A small
but vivid multi-national developer community and a few hundred subscribers to mailinglists have provided
valuable feedback. The platform has been installed in several companies for test purposes and frequent user
meetings in the Netherlands have been very positive and encouraging for the project.
     A number of improvements and extensions will be added to the platform in the near future. Some of these
developments are the implementation of more intelligent model merge strategies, the extension of query
possibilities and the addition of further export formats such as gbXML. In the long run, an integration with other
initiatives such as IDM, MVD, and ongoing work in the application of Semantic Web technologies (Böhms et al
2008), (Beetz 2009) would be as desirable as the more tight integration of a native geometry kernel. All this
depends on future funding and community contributions, making the BIMserver.org initiative a valuable addition
to the tool chain that drives open standards in model-based collaboration in the building industry forward.

REFERENCES
Arthaud, G., & Lombardo, J. (2006)“Automatic Semantic Comparison of STEP Product Models”. Innovations in
    Design & Decision Support Systems in Architecture and Urban Planning, 447–463.
Beetz, J. (2009).”Facilitating distributed collaboration in the AEC/FM sector using Semantic Web Technologies”
    PhD Thesis, Eindhoven University of Technology. ISBN 978-90-6814-618-9
Böhms, H. M., Bonsma, P., Bourdeau, M., & Josefiak, F. (2008). “Semantic Product Modelling with SWOP’s
    PMO”. In Proceedings of the international conference on EWork and EBusiness in Architecture, Engineering
    and Construction: ECPPM 2008, p. 95.
Gerber, A., & Raymond, K. (2003). “MOF to EMF: there and back again”. In Proceedings of the 2003 OOPSLA
    workshop on eclipse technology eXchange 60-64.
Helm, P. van den, Böhms, M. & Berlo, L. van (2010) ”IFC-based clash detection for the open-source BIMserver”.
   To appear in the Proceedings of the International Conference on Computing in Civil and Building Engineering
   ICCCBE 2010.
Houbaux, P., (2003) “ SABLE (2005) Simple Access to Building Lifecycle Exchange project by Eurostep”..
     URL: http://www.blis-project.org/~sable/, last accessed 01.06.2010
Howard, R., & Björk, B. C. (2007). “Building Information Models–Experts’ view on BIM/IFC developments”. In
   Proceedings of the 24th CIB-W78 Conference, Maribor.
Jørgensen, K., Skauge J., Christiansson, P., Svidt K., Sørensen K.B., Mitchell, J. (2008) “Use of IFC Model
   Servers. Modelling Collaboration Possibilities in Practice”. Technical report by Aalborg University and
   Aarhus School of Architecture. http://it.civil.aau.dk/it/reports/2008_Ifc_model_server.pdf
Kiviniemi, A., Fischer, M., & Bazjanac, V. (2005). “Integration of multiple product models: Ifc model servers as
   a potential solution”. In Proceedings of the 22nd CIB-W78 Conference on Information Technology in
   Construction.
Lê, M. A. T., Mohus, F., Kvarsvik, O. K., & Lie, M. (2006). “The HITOS project-A full scale IFC test”. In eWork
   and eBusiness in architecture, engineering and construction: proceedings of the 6th European Conference on
   Product and Process Modelling, 13-15 September 2006, Valencia, Spain, p. 191
Nour, M., Firmenich, B., Richter, T., & Koch, C. (2006). „A versioned IFC database for multidisciplinary
   synchronous cooperation”. In Proceedings of the Joint International Conference on Computing and Decision
   Making in Civil and Building Engineering, Montreal, Canada. pp. 636-645
OpenIFCTools (2009) “Open IFC Tools”,http://www.openifctools.org/. Last accessed 01.06.2010
OSExpress,(2001), “Open Source EXPRESS Parser”, http://osexpress.sourceforge.net, last accessed 01.06.2010
Project Voldemort (2009) “Project Voldemort: A distributed database”. http://project-voldemort.com/, last
    accessed 01.06.2010.
TNO IFC engine, (2002),”TNO IFC Engine series”, http://www.ifcbrowser.com/. Last accessed 01.06.2010
Weise M. (2006). “Ein Ansatz zur Abbildung von Änderungen in der model-basierten Objektplanung. (An
    approach for the representation of changes in model-based design)” Doctoral Thesis, Institute of construction
    Informatics, Report 4 (Ed. R. J. Scherer), Technische Universität Dresden, Germany, ISBN 3-86005-557-7

More Related Content

What's hot

BIM Show Live 2015 - Collaboration and IFC in the Netherlands
BIM Show Live 2015 - Collaboration and IFC in the NetherlandsBIM Show Live 2015 - Collaboration and IFC in the Netherlands
BIM Show Live 2015 - Collaboration and IFC in the NetherlandsLéon Berlo
 
Development of 3 d interfaces for mobile BIM applications by João Poças Martins
Development of 3 d interfaces for mobile BIM applications by João Poças MartinsDevelopment of 3 d interfaces for mobile BIM applications by João Poças Martins
Development of 3 d interfaces for mobile BIM applications by João Poças MartinsJoao Rio
 
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...Andy Ward
 
Xbim flex webinar 20 Jan 2021
Xbim flex webinar 20 Jan 2021Xbim flex webinar 20 Jan 2021
Xbim flex webinar 20 Jan 2021Andy Ward
 
GeoBIM development presentation on 3D geoinfo Berlin 2010
GeoBIM development presentation on 3D geoinfo Berlin 2010GeoBIM development presentation on 3D geoinfo Berlin 2010
GeoBIM development presentation on 3D geoinfo Berlin 2010Léon Berlo
 
Design and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open PlatformDesign and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open Platformslhead1
 
CityGML extension for BIM and IFC
CityGML extension for BIM and IFCCityGML extension for BIM and IFC
CityGML extension for BIM and IFCLéon Berlo
 
Noha saleeb middlesex uniwersity
Noha saleeb middlesex uniwersityNoha saleeb middlesex uniwersity
Noha saleeb middlesex uniwersityHanna Wincenciak
 
Bim pres 120319
Bim pres  120319Bim pres  120319
Bim pres 120319nadia1w
 
Omni Class 2010 11 Chapter
Omni Class 2010 11 ChapterOmni Class 2010 11 Chapter
Omni Class 2010 11 ChapterCooperArch
 
ABT: Transforming the Delivery of Reinforced Concrete Designs
ABT: Transforming the Delivery of Reinforced Concrete DesignsABT: Transforming the Delivery of Reinforced Concrete Designs
ABT: Transforming the Delivery of Reinforced Concrete DesignsSander Lijbers
 
BIM to GIS Interoperability
BIM to GIS InteroperabilityBIM to GIS Interoperability
BIM to GIS InteroperabilitySafe Software
 

What's hot (20)

BIM Show Live 2015 - Collaboration and IFC in the Netherlands
BIM Show Live 2015 - Collaboration and IFC in the NetherlandsBIM Show Live 2015 - Collaboration and IFC in the Netherlands
BIM Show Live 2015 - Collaboration and IFC in the Netherlands
 
Development of 3 d interfaces for mobile BIM applications by João Poças Martins
Development of 3 d interfaces for mobile BIM applications by João Poças MartinsDevelopment of 3 d interfaces for mobile BIM applications by João Poças Martins
Development of 3 d interfaces for mobile BIM applications by João Poças Martins
 
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...
xbim flex July 2021 webinar: how you can use Flex to manage your BIM data ove...
 
Xbim flex webinar 20 Jan 2021
Xbim flex webinar 20 Jan 2021Xbim flex webinar 20 Jan 2021
Xbim flex webinar 20 Jan 2021
 
GeoBIM development presentation on 3D geoinfo Berlin 2010
GeoBIM development presentation on 3D geoinfo Berlin 2010GeoBIM development presentation on 3D geoinfo Berlin 2010
GeoBIM development presentation on 3D geoinfo Berlin 2010
 
Design and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open PlatformDesign and Development of BIM on GIS Interoperability Open Platform
Design and Development of BIM on GIS Interoperability Open Platform
 
CityGML extension for BIM and IFC
CityGML extension for BIM and IFCCityGML extension for BIM and IFC
CityGML extension for BIM and IFC
 
Noha saleeb middlesex uniwersity
Noha saleeb middlesex uniwersityNoha saleeb middlesex uniwersity
Noha saleeb middlesex uniwersity
 
BIM: A Definition
BIM: A DefinitionBIM: A Definition
BIM: A Definition
 
Bim pres 120319
Bim pres  120319Bim pres  120319
Bim pres 120319
 
Omni Class 2010 11 Chapter
Omni Class 2010 11 ChapterOmni Class 2010 11 Chapter
Omni Class 2010 11 Chapter
 
COBie
COBieCOBie
COBie
 
BIM awareness
BIM awarenessBIM awareness
BIM awareness
 
ABT: Transforming the Delivery of Reinforced Concrete Designs
ABT: Transforming the Delivery of Reinforced Concrete DesignsABT: Transforming the Delivery of Reinforced Concrete Designs
ABT: Transforming the Delivery of Reinforced Concrete Designs
 
bim+ Presentation BIM Manager
bim+ Presentation BIM Managerbim+ Presentation BIM Manager
bim+ Presentation BIM Manager
 
Bim service presentation
Bim service presentationBim service presentation
Bim service presentation
 
BIM in Project Management: Keynote Speech by Mr. Kevin POOLE
BIM in Project Management: Keynote Speech by Mr. Kevin POOLEBIM in Project Management: Keynote Speech by Mr. Kevin POOLE
BIM in Project Management: Keynote Speech by Mr. Kevin POOLE
 
A Holistic BIM Framework for Structural Engineering Practices in Hong Kong - ...
A Holistic BIM Framework for Structural Engineering Practices in Hong Kong - ...A Holistic BIM Framework for Structural Engineering Practices in Hong Kong - ...
A Holistic BIM Framework for Structural Engineering Practices in Hong Kong - ...
 
BIM to GIS Interoperability
BIM to GIS InteroperabilityBIM to GIS Interoperability
BIM to GIS Interoperability
 
ARCHICAD 20 - BIM Product of the Year
ARCHICAD 20 - BIM Product of the YearARCHICAD 20 - BIM Product of the Year
ARCHICAD 20 - BIM Product of the Year
 

Viewers also liked

FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING
 FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING
FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKINGLéon Berlo
 
D-studio 4D visualisation for Google SketchUp
D-studio 4D visualisation for Google SketchUpD-studio 4D visualisation for Google SketchUp
D-studio 4D visualisation for Google SketchUpKoenraad Nys
 
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013Koenraad Nys
 
Where Do I Find That part 2
Where Do I Find That part 2Where Do I Find That part 2
Where Do I Find That part 2Kelly Sowards
 
BIMserver presentation at Digital Mix, BuildingSMART week Copenhagen
BIMserver presentation at Digital Mix, BuildingSMART week CopenhagenBIMserver presentation at Digital Mix, BuildingSMART week Copenhagen
BIMserver presentation at Digital Mix, BuildingSMART week CopenhagenLéon Berlo
 
Factsheet/FAQ open source BIMserver
Factsheet/FAQ open source BIMserverFactsheet/FAQ open source BIMserver
Factsheet/FAQ open source BIMserverLéon Berlo
 
BIM woordenboek (2e druk)
BIM woordenboek (2e druk)BIM woordenboek (2e druk)
BIM woordenboek (2e druk)Léon Berlo
 
OpenBIM presentatie tijdens Open source Geo dag
OpenBIM presentatie tijdens Open source Geo dagOpenBIM presentatie tijdens Open source Geo dag
OpenBIM presentatie tijdens Open source Geo dagLéon Berlo
 
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, Florida
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, FloridaBIMserver.org snippets from the bim acceleration workshop 2014 Orlando, Florida
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, FloridaLéon Berlo
 
Open Source COINS API server
Open Source COINS API server Open Source COINS API server
Open Source COINS API server Léon Berlo
 
Wat gebeurt er bij het COINS API project?
Wat gebeurt er bij het COINS API project?Wat gebeurt er bij het COINS API project?
Wat gebeurt er bij het COINS API project?Léon Berlo
 
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...Automated BIM data checking: Facilitating the BIM coordinator and empowering ...
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...Léon Berlo
 
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...Giacomo Bergonzoni
 
CIB W78: the Dutch BIM Information levels
CIB W78: the Dutch BIM Information levelsCIB W78: the Dutch BIM Information levels
CIB W78: the Dutch BIM Information levelsLéon Berlo
 
[DUTCH] TNO Technologie update BIM
[DUTCH] TNO Technologie update BIM[DUTCH] TNO Technologie update BIM
[DUTCH] TNO Technologie update BIMLéon Berlo
 
Federated BIM and BIMSie
Federated BIM and BIMSieFederated BIM and BIMSie
Federated BIM and BIMSieLéon Berlo
 
David Philp - BIM: an update from the UK Government BIM Task Group
David Philp - BIM: an update from the UK Government BIM Task Group  David Philp - BIM: an update from the UK Government BIM Task Group
David Philp - BIM: an update from the UK Government BIM Task Group Be2camp Admin
 

Viewers also liked (20)

FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING
 FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING
FACILITATING THE BIM COORDINATOR WITH AUTOMATED DATA COMPLIANCE CHECKING
 
Building Information Modeling (BIM)
Building Information Modeling (BIM)Building Information Modeling (BIM)
Building Information Modeling (BIM)
 
D-studio 4D visualisation for Google SketchUp
D-studio 4D visualisation for Google SketchUpD-studio 4D visualisation for Google SketchUp
D-studio 4D visualisation for Google SketchUp
 
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013
Presenting D-studio projects at IE_NET BIM Conference, Antwerp 16 october 2013
 
Where Do I Find That part 2
Where Do I Find That part 2Where Do I Find That part 2
Where Do I Find That part 2
 
Bim ifma besix_web
Bim ifma besix_webBim ifma besix_web
Bim ifma besix_web
 
BIMserver presentation at Digital Mix, BuildingSMART week Copenhagen
BIMserver presentation at Digital Mix, BuildingSMART week CopenhagenBIMserver presentation at Digital Mix, BuildingSMART week Copenhagen
BIMserver presentation at Digital Mix, BuildingSMART week Copenhagen
 
Factsheet/FAQ open source BIMserver
Factsheet/FAQ open source BIMserverFactsheet/FAQ open source BIMserver
Factsheet/FAQ open source BIMserver
 
BIM woordenboek (2e druk)
BIM woordenboek (2e druk)BIM woordenboek (2e druk)
BIM woordenboek (2e druk)
 
OpenBIM presentatie tijdens Open source Geo dag
OpenBIM presentatie tijdens Open source Geo dagOpenBIM presentatie tijdens Open source Geo dag
OpenBIM presentatie tijdens Open source Geo dag
 
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, Florida
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, FloridaBIMserver.org snippets from the bim acceleration workshop 2014 Orlando, Florida
BIMserver.org snippets from the bim acceleration workshop 2014 Orlando, Florida
 
Open Source COINS API server
Open Source COINS API server Open Source COINS API server
Open Source COINS API server
 
Wat gebeurt er bij het COINS API project?
Wat gebeurt er bij het COINS API project?Wat gebeurt er bij het COINS API project?
Wat gebeurt er bij het COINS API project?
 
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...Automated BIM data checking: Facilitating the BIM coordinator and empowering ...
Automated BIM data checking: Facilitating the BIM coordinator and empowering ...
 
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...
Introducing to BIM and its benefits across disciplines - Bilal Succar at OICE...
 
CIB W78: the Dutch BIM Information levels
CIB W78: the Dutch BIM Information levelsCIB W78: the Dutch BIM Information levels
CIB W78: the Dutch BIM Information levels
 
[DUTCH] TNO Technologie update BIM
[DUTCH] TNO Technologie update BIM[DUTCH] TNO Technologie update BIM
[DUTCH] TNO Technologie update BIM
 
Federated BIM and BIMSie
Federated BIM and BIMSieFederated BIM and BIMSie
Federated BIM and BIMSie
 
David Philp - BIM: an update from the UK Government BIM Task Group
David Philp - BIM: an update from the UK Government BIM Task Group  David Philp - BIM: an update from the UK Government BIM Task Group
David Philp - BIM: an update from the UK Government BIM Task Group
 
BIM Bots
BIM BotsBIM Bots
BIM Bots
 

Similar to BIMSERVER.ORG – AN OPEN SOURCE IFC MODEL SERVER, 2010

Model-Driven Development of Web Applications
Model-Driven Development of Web ApplicationsModel-Driven Development of Web Applications
Model-Driven Development of Web Applicationsidescitation
 
Improved Presentation and Facade Layer Operations for Software Engineering Pr...
Improved Presentation and Facade Layer Operations for Software Engineering Pr...Improved Presentation and Facade Layer Operations for Software Engineering Pr...
Improved Presentation and Facade Layer Operations for Software Engineering Pr...Dr. Amarjeet Singh
 
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSE
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSEMODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSE
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSEAnže Vodovnik
 
Analyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyAnalyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyIJECEIAES
 
Intake 38 data access 4
Intake 38 data access 4Intake 38 data access 4
Intake 38 data access 4Mahmoud Ouf
 
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...FIAT/IFTA
 
SustainablePlaces_ifcOWL_applications_2015-09-17
SustainablePlaces_ifcOWL_applications_2015-09-17SustainablePlaces_ifcOWL_applications_2015-09-17
SustainablePlaces_ifcOWL_applications_2015-09-17Pieter Pauwels
 
Aspect Oriented Programming Through C#.NET
Aspect Oriented Programming Through C#.NETAspect Oriented Programming Through C#.NET
Aspect Oriented Programming Through C#.NETWaqas Tariq
 
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...ijseajournal
 
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...ijseajournal
 
BPM-X Pattern-based model transformations (v2)
BPM-X Pattern-based model transformations (v2)BPM-X Pattern-based model transformations (v2)
BPM-X Pattern-based model transformations (v2)BPM-Xchange
 
2014_report
2014_report2014_report
2014_reportK SEZER
 
Getting relational database from legacy data mdre approach
Getting relational database from legacy data mdre approachGetting relational database from legacy data mdre approach
Getting relational database from legacy data mdre approachAlexander Decker
 
MDD and modeling tools research
MDD and modeling tools researchMDD and modeling tools research
MDD and modeling tools researchRoger Xia
 

Similar to BIMSERVER.ORG – AN OPEN SOURCE IFC MODEL SERVER, 2010 (20)

Model-Driven Development of Web Applications
Model-Driven Development of Web ApplicationsModel-Driven Development of Web Applications
Model-Driven Development of Web Applications
 
Improved Presentation and Facade Layer Operations for Software Engineering Pr...
Improved Presentation and Facade Layer Operations for Software Engineering Pr...Improved Presentation and Facade Layer Operations for Software Engineering Pr...
Improved Presentation and Facade Layer Operations for Software Engineering Pr...
 
java
javajava
java
 
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSE
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSEMODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSE
MODEL DRIVEN ARCHITECTURE, CONTROL SYSTEMS AND ECLIPSE
 
ALT
ALTALT
ALT
 
Analyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative studyAnalyzing bootsrap and foundation font-end frameworks : a comparative study
Analyzing bootsrap and foundation font-end frameworks : a comparative study
 
Onine exam 1
Onine exam 1Onine exam 1
Onine exam 1
 
Intake 38 data access 4
Intake 38 data access 4Intake 38 data access 4
Intake 38 data access 4
 
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...
QEBU: AN ADVANCED GRAPHICAL EDITOR FOR THE EBUCORE METADATA SET | Paolo PASIN...
 
SustainablePlaces_ifcOWL_applications_2015-09-17
SustainablePlaces_ifcOWL_applications_2015-09-17SustainablePlaces_ifcOWL_applications_2015-09-17
SustainablePlaces_ifcOWL_applications_2015-09-17
 
Aspect Oriented Programming Through C#.NET
Aspect Oriented Programming Through C#.NETAspect Oriented Programming Through C#.NET
Aspect Oriented Programming Through C#.NET
 
Ef overview
Ef overviewEf overview
Ef overview
 
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...
DOOML: A NEW DATABASE & OBJECT-ORIENTED MODELING LANGUAGE FOR DATABASE-DRIVEN...
 
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...
DOOML: A New Database & Object-Oriented Modeling Language for Database-Driven...
 
BPM-X Pattern-based model transformations (v2)
BPM-X Pattern-based model transformations (v2)BPM-X Pattern-based model transformations (v2)
BPM-X Pattern-based model transformations (v2)
 
UDMS 2004
UDMS 2004UDMS 2004
UDMS 2004
 
2014_report
2014_report2014_report
2014_report
 
Getting relational database from legacy data mdre approach
Getting relational database from legacy data mdre approachGetting relational database from legacy data mdre approach
Getting relational database from legacy data mdre approach
 
MDD and modeling tools research
MDD and modeling tools researchMDD and modeling tools research
MDD and modeling tools research
 
.Net Core
.Net Core.Net Core
.Net Core
 

More from Léon Berlo

ECPPM Keynote: don't forget about data consumption
ECPPM Keynote: don't forget about data consumptionECPPM Keynote: don't forget about data consumption
ECPPM Keynote: don't forget about data consumptionLéon Berlo
 
LOC presentation 2020: Future of openBIM standards
LOC presentation 2020: Future of openBIM standardsLOC presentation 2020: Future of openBIM standards
LOC presentation 2020: Future of openBIM standardsLéon Berlo
 
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)Léon Berlo
 
BIM in The Netherlands
BIM in The NetherlandsBIM in The Netherlands
BIM in The NetherlandsLéon Berlo
 
Collaboration with BIM: Stop being efficient, start being effective
Collaboration with BIM: Stop being efficient, start being effectiveCollaboration with BIM: Stop being efficient, start being effective
Collaboration with BIM: Stop being efficient, start being effectiveLéon Berlo
 
GEO Desing + BIM Conference: Data sharing is not collaboration
GEO Desing + BIM Conference: Data sharing is not collaborationGEO Desing + BIM Conference: Data sharing is not collaboration
GEO Desing + BIM Conference: Data sharing is not collaborationLéon Berlo
 
20181012 Collaborative Design and Engineering with IFC
20181012 Collaborative Design and Engineering with IFC20181012 Collaborative Design and Engineering with IFC
20181012 Collaborative Design and Engineering with IFCLéon Berlo
 
Kubus openBIM Roadshow Rotterdam
Kubus openBIM Roadshow RotterdamKubus openBIM Roadshow Rotterdam
Kubus openBIM Roadshow RotterdamLéon Berlo
 
20171012 BIM in the Netherlands: situation and challenges
20171012 BIM in the Netherlands: situation and challenges20171012 BIM in the Netherlands: situation and challenges
20171012 BIM in the Netherlands: situation and challengesLéon Berlo
 
Introducing Process mining in the AECFM
Introducing Process mining in the AECFMIntroducing Process mining in the AECFM
Introducing Process mining in the AECFMLéon Berlo
 
BIM Bots (Summer 2016)
BIM Bots (Summer 2016)BIM Bots (Summer 2016)
BIM Bots (Summer 2016)Léon Berlo
 
keynote Beyond BIM 2015 (Ghent)
keynote Beyond BIM 2015 (Ghent)keynote Beyond BIM 2015 (Ghent)
keynote Beyond BIM 2015 (Ghent)Léon Berlo
 
20151112 CITA BIM Gathering Keynote Dublin
20151112 CITA BIM Gathering Keynote Dublin20151112 CITA BIM Gathering Keynote Dublin
20151112 CITA BIM Gathering Keynote DublinLéon Berlo
 
CIB W78 - Collaborative engineering with IFC in the Netherlands
CIB W78 - Collaborative engineering with IFC in the NetherlandsCIB W78 - Collaborative engineering with IFC in the Netherlands
CIB W78 - Collaborative engineering with IFC in the NetherlandsLéon Berlo
 
5 things about BIM you did not know
5 things about BIM you did not know5 things about BIM you did not know
5 things about BIM you did not knowLéon Berlo
 

More from Léon Berlo (16)

ECPPM Keynote: don't forget about data consumption
ECPPM Keynote: don't forget about data consumptionECPPM Keynote: don't forget about data consumption
ECPPM Keynote: don't forget about data consumption
 
LOC presentation 2020: Future of openBIM standards
LOC presentation 2020: Future of openBIM standardsLOC presentation 2020: Future of openBIM standards
LOC presentation 2020: Future of openBIM standards
 
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)
20200903 The 2020 buildingSMART Data Dictionary prototype (bSDD)
 
BIM in The Netherlands
BIM in The NetherlandsBIM in The Netherlands
BIM in The Netherlands
 
Collaboration with BIM: Stop being efficient, start being effective
Collaboration with BIM: Stop being efficient, start being effectiveCollaboration with BIM: Stop being efficient, start being effective
Collaboration with BIM: Stop being efficient, start being effective
 
GEO Desing + BIM Conference: Data sharing is not collaboration
GEO Desing + BIM Conference: Data sharing is not collaborationGEO Desing + BIM Conference: Data sharing is not collaboration
GEO Desing + BIM Conference: Data sharing is not collaboration
 
20181012 Collaborative Design and Engineering with IFC
20181012 Collaborative Design and Engineering with IFC20181012 Collaborative Design and Engineering with IFC
20181012 Collaborative Design and Engineering with IFC
 
Kubus openBIM Roadshow Rotterdam
Kubus openBIM Roadshow RotterdamKubus openBIM Roadshow Rotterdam
Kubus openBIM Roadshow Rotterdam
 
20171012 BIM in the Netherlands: situation and challenges
20171012 BIM in the Netherlands: situation and challenges20171012 BIM in the Netherlands: situation and challenges
20171012 BIM in the Netherlands: situation and challenges
 
CityGML and BIM
CityGML and BIMCityGML and BIM
CityGML and BIM
 
Introducing Process mining in the AECFM
Introducing Process mining in the AECFMIntroducing Process mining in the AECFM
Introducing Process mining in the AECFM
 
BIM Bots (Summer 2016)
BIM Bots (Summer 2016)BIM Bots (Summer 2016)
BIM Bots (Summer 2016)
 
keynote Beyond BIM 2015 (Ghent)
keynote Beyond BIM 2015 (Ghent)keynote Beyond BIM 2015 (Ghent)
keynote Beyond BIM 2015 (Ghent)
 
20151112 CITA BIM Gathering Keynote Dublin
20151112 CITA BIM Gathering Keynote Dublin20151112 CITA BIM Gathering Keynote Dublin
20151112 CITA BIM Gathering Keynote Dublin
 
CIB W78 - Collaborative engineering with IFC in the Netherlands
CIB W78 - Collaborative engineering with IFC in the NetherlandsCIB W78 - Collaborative engineering with IFC in the Netherlands
CIB W78 - Collaborative engineering with IFC in the Netherlands
 
5 things about BIM you did not know
5 things about BIM you did not know5 things about BIM you did not know
5 things about BIM you did not know
 

Recently uploaded

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetEnjoy Anytime
 

Recently uploaded (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 

BIMSERVER.ORG – AN OPEN SOURCE IFC MODEL SERVER, 2010

  • 1. BIMSERVER.ORG – AN OPEN SOURCE IFC MODEL SERVER Jakob Beetz, Assistant Professor, j.beetz@tue.nl Eindhoven University of Technology, Eindhoven, The Netherlands Léon van Berlo, Researcher, leon.vanberlo@tno.nl Ruben de Laat, Researcher, ruben.delaat@tno.nl Pim van den Helm, Researcher, pim.vandenhelm@tno.nl TNO Built Environment and Geosciences, Delft, The Netherlands ABSTRACT In this paper the Open Source IFC model server project bimserver.org is introduced. A brief overview of existing IFC toolkits and model servers both as commercial applications as well as research prototypes is given. An implementation-independent meta-model from current IFC STEP EXPRESS schemas is generated and used as a venture point for a database persistency framework. A model server application is introduced that is based on this framework which enables the storage, maintenance and query of IFC based building information models for the collaboration among different stakeholders. Keywords: IFC, model server, BIM, CAD, collaboration 1. INTRODUCTION Currently, only very few implementations of model servers exist that enable stakeholders in AEC/FM projects to collaborate on central repositories of building information models (BIM). Most of the few existing commercial implementations are built on the basis of general purpose STEP or PLM/PLCS technologies. Up to now, both the underlying business models as well as the operation of the servers themselves are tailored to the needs of large corporations from other industry domains such as shipbuilding, automotive, and petrochemical. Design and engineering processes as well as the resulting end-products in these domains differ significantly from the building industry. Here, one-of-a-kind artifacts are designed in a collaborative effort by nonrecurring, temporary and multi- disciplinary teams that are mainly composed of members of small and medium enterprises (SMEs). Furthermore, very few of these stakeholders have sufficient data modeling knowledge to the degree needed for an effective use of present day model server products. In order to achieve the long-standing goal of shared product data models throughout the lifecycle of a building, not only open technical, methodological and standardization issues to be solved. The availability of affordable and end-user friendly model server technology is crucial for the advancement of the industry as a whole. Open, accessible frameworks that focused on the demands of the building industry that have been proposed in the past, such as the IMSvr (IMSvr 2003) and SABLE (Houbaux 2003) projects, which have been reviewed in (Kivinimi et al 2005) and (Howard & Björk 2007), unfortunately have been discontinued and only a small amount of dedicated research has been done to address the specific problems of shared building information models for collaboration purposes (Weise 2006). However, among the promising open initiatives (Nour et al 2006, OpenIFCtools 2009) that have been started also in more recent years, no common platform for a shared research and development effort has gained enough traction yet to drive a collaborative development of an open source platform forward. By creating a free software platform (licensed under the GPL v 3) and model server implementation presented in this paper, end-users from the building industry are encouraged to use shared building information models that Proceedings of the CIB W78 2010: 27th International Conference –Cairo, Egypt, 16-18 November
  • 2. have been advocated for such a long time now. As a second goal, the results *-presented here offer a considerably valuable development environment for both fellow academic researchers and commercial software developers. In the following sections a brief overview of the internal architecture of the platform as a whole and describe the use of an implemented browser based interface from an end user perspective is given. A summary and indications of future work conclude this paper. 2. FRAMEWORK ARCHITECTURE The bimserver.org development framework has a multi-layered design with a generative, model-driven architecture based on the existing IFC STEP Express models that are transformed into more widely accepted data modeling languages and frameworks to simplify and streamline development with these models. A generic persistency layer using a key-value database approach allows versioning of data models on an object level. Figure 1: Simplified architecture diagram At the core of the framework, a generic EXPRESS parser based on the Open Source EXPRESS parser (OSEXpress, 2001) by Lubel and others from NIST is used to create an in-memory meta model of schemas like IFC2x3. With this internal model as a basis, a Meta-Object Facility (MOF) has been created in the Eclipse Modeling Framework (EMF) format, which is a meta model comparable to OMG’s XML Metadata Interchange (XMI) (Gerber and Raymond 2003). For most EXPRESS constructs, the mapping and conversion to their EMF counterparts is straightforward: EXPRESSS Entities are converted to corresponding EClass instances, EXPRESS
  • 3. attributes including the bounds of aggregations such as LIST, BAG, etc are stored as their EAttribute counterparts. Optional EXPRESS attributes (which are the dominant citizens in IFC schemas) are made unsettable in the corresponding ECore model and EXPRESS enumeration types are transformed into EEnum classifiers in return. However for certain EXPRESSS language features, work-arounds had to be introduced since no straight-forward mapping to EMF is possible: EXPRESS TYPEs that are derived from primitive types (integer, string, float etc.) are boxed into wrapper classes, since a similar inheritance feature for primitive classes does not exist in EMF or in its main target language Java. While this constitutes a minor inconvenience for developers at the moment, casting operators may be introduced in future versions of the project. In rare occasions inverse relationships cannot be generated in straight forward manners as their EOpposite EMF counterparts due to inheritance issues and manually coded work-around had to be introduced into the model. Other work-abounds include the storage of original string values alongside with their converted floating-point representations to prevent rounding and notation issues in round-tripping read/write cycles, a tristate wrapper type that to capture the difference between STEP’s $ and Undefined and an additional NULL value for enumerations that are disallowed in the EMF representation. Figure 1 shows the various layers that allows for exchangeable components. For example another implementation of the ServiceInterface could provide the BIMserver services based on an in-memory representation of data, or even a network of other services. Another implementation of the BimDatabase interface would allow other types of database (for example relational databases) to be used. The ColumnDatabase interface at last makes it possible to switch to another key-value database like for example the distributed (Project Voldemort 2009). The generated EMF model is used as the input for a code generator that creates early-binding classes for all entities and types found in the schemas. With this, the bimserver.org initiative also offers a generic early-binding IFC library that hopefully makes the framework a convenient tool for both academic researchers and industrial developers. Upon the upload of a new revision by an end-user, a parser for IFC instance models, encoded in a Part 21 STEP Physical File Formats (SPFF) notation instantiates instances of the generated early-binding classes. Other parsers, like the part 28 ifcXML notation parser are work in progress. For the main purpose of database-persisted, versioned models, a persistency meta model has been developed that stores revisions of IFC models on a per- object basis: For each entity instance in the model, a unique key is generated composed of an object id, the id of the project and the revision number itself. This enables the generation of version deltas referred to as Change Sets in the bimserver.org platform: For a model M={A,B}of two entities A and B, where A contains a reference attribute to B, two records in the database are created along with their attribute values (either primitive types or object references). If a change of B is uploaded, a new record B’ will be created while the original B is kept in the DB resulting in M’={A,B,B’}. Even if a changed object A’ refers to a new object C in a later revision of the model M’’={A,A’,B,B’,C}, the initial model state M can still be reconstructed by choosing the appropriate earlier revision ids. Currently, the creation of these Change Sets is left to the client-side application. In future versions of the framework this is replaced by automated server-side processes that generate version deltas autonomously. The absence of unique, non-ambiguous object identifiers that is inherent to the IFC model schema, in which only a fraction of instances are equipped with a GUID, and the file-oriented nature of STEP models in general, makes such automated delta-generations a non-trivial task. Candidate approaches for such detection mechanisms have been suggested by (Weise 2006) and (Arhaud & Lombardo, 2006), however a clean solution of this generally recognized, yet still unsolved problem domain might require a fundamental change of underlying data structures and modeling methods altogether. Apart from these graph-topology comparison approaches, we are also looking into spatial-heuristic comparisons of model versions based on the geometric representation of building components. In such an approach, spatial comparison operators could be used to match seemingly disparate components in two model versions (old and new) which cannot be aligned by their GUIDs based on their level of geometric incidence. The framework provides a branching system based on the notion of sub projects. By adding IFC object data to a project that is a sub project of another, the data automatically extents both projects. A main project joins the database objects that are common to all subprojects. To retrieve complete revisions or partial models that have been checked into the server, a number of query mechanisms have been implemented. Single objects can be extracted by their unique object identifiers, IfcRoot-
  • 4. descendants can be retrieved by their IFC GUID, all instances of a class can be retrieved (e.g. all doors) and for more sophisticated queries Java query code can be sent to the server where it is compiled and executed at runtime. As an illustration of such query code, consider the code snippet in fig. 2, which also illustrates the use of the early binding model API and the wrappedValue solution. Here, a model is queried for all doors on the first storey that exceed a height of two meters.
  • 5. public class Query implements QueryInterface { private IfcDatabase<Long> model; private PrintWriter out; @Override public void query(IfcDatabase<Long> model, PrintWriter out) { List<IfcBuildingStorey> stories = model.getAll(IfcBuildingStorey.class); Map<Float, IfcBuildingStorey>orderedStories = new TreeMap<Float, IfcBuildingStorey>(); for (IfcBuildingStorey storey : stories) { orderedStories.put(storey.getElevation().getWrappedValue(), storey); } if (orderedStories.size() > 1) { IfcBuildingStorey firstFloor = stories.get(1); for (IfcRelContainedInSpatialStructure rel : firstFloor.getContainsElements()) { for (IfcProduct product : rel.getRelatedElements()) { if (product instanceof IfcDoor) { IfcDoor ifcDoor = (IfcDoor)product; if (ifcDoor.getOverallHeight().getWrappedValue() > 2) { out.println(ifcDoor.getName().getWrappedValue()+ " " + ifcDoor.getOverallHeight().getWrappedValue()); } } } } } } } Figure 2: example custom query code XML configuration files that are editable by end users allow a fine-grained control over classes, attributes and relationships that should either be left out of query results or included. In future, this mechanism can be used to allow the extraction of sub models according to predefined Model View Definitions (MVD) in the context of the Information Delivery Manual (IDM) initiative or project specific filter lenses. Based on TNO’s IfcEngine library (TNO IFC Engine 2002), a number of geometry operations have been integrated into the framework using a Java Native Interface JNA that run on Windows, Apple (unix) and Linux platforms. The current main applications of this functionality are the generation of export formats (CityGML including GeoBIM extension, Collada, KML/KMZ) based on complete model revisions or as partial models based on the queries described earlier, an O3D viewer that is integrated into the web client and clash detection functionality that is reported in (Helm et al 2010). The choice of the key-value database BerkeleyDB engine as the backbone of the persistency framework (after less successful experiments with traditional object-relational mapping frameworks) led to a robust, well- performing and transactional framework that allows the handling of large models such as the HITOS reference model (Lê et al 2006, Howard & Björk 2007) with its more than a million entity instances. Many of the functions provided are also exposed as SOAP interfaces through a WSDL file, which allows developers the integration of remote server interaction into their own applications. The ability to refer to distinct revisions of objects in a RESTful manner provides a powerful mechanism for distributed models.
  • 6. 3. SERVER AND WEB CLIENT FROM AN END-USER PERSPECTIVE Figure 3: screenshots of different modules of the model server exposed through the web browser client: a) visualization module (upper left), b) query module (upper right), c) revision overview (lower left) and d) object browsers (lower right) After downloading the platform either as a stand-alone JAR executable or as a WAR archive for deployment on servlet containers like Apache Tomcat, interested end-users can start the server with a single mouse click, since the default configuration needs little to no adaption to run on common Windows, Apple (unix) or Linux in both 32bit or 64bit environments. Next to the server that also contains a built-in Jetty web server, a web browser based client is currently the main interface for end users. Here, users can be set up that will be assigned to projects. After creating a new project and adding users that are allowed to check revisions in, an initial upload is made. Different modules now allow a number of operations directly in the web browser: An O3D-based visualization allows the visual control of uploaded models (Fig.3a). This module can also be used for the visualization of query results. Models can be queried using different approaches described in section two (Fig. 3b). A revision interface lets users download revisions and browse their history (Fig. 3c) and an object browser provides statistical overviews of objects, primitives and relations within a given revision of the model
  • 7. (Fig. 3d). Furthermore, clash detection results of arbitrary revisions can be displayed and a sub projects module allows the creation of version branches for the management of design alternatives. 4. USER EXPERIENCES Numerous users have experimented with the software since its initial release. A growing amount of informal user feedback is collected through the mailing lists and during hands-on workshops. The spectrum of reported user experiences is very broad. Almost all users agree that the archiving function, and the certainty that the latest information is in one place, make the BIMserver software added value for any engineering consortium. The most appreciated features of the BIMserver software are the authentication and merging concept on top of the subprojects. Most experts agree that the merging as it is implemented in the BIMserver so far (June 2010) needs improvement. The software ‘just’ places all IFC objects found in the subprojects into one IFC file. Using the same objects in subprojects will result in double objects in the main project. For most users however this doesn’t seem to be a problem. They use the merging capabilities to evaluate the geometry consistence of the main model. The authentication system provides users with write access to their own subproject, but also grants them read access to download and evaluate (other parts of) the model. A frequent request is the finer control of changes introduced by different users in the collaboration process the. Currently, the BIMserver software supports this with a ‘early warning system’ that warns users to avoid model inconsistency between different users. This feature is seen as a highly important feature by almost all users, but no users have really tried it in practice. The same goes for the RSS feed for model updates; the GUID based change finder and the model summary: all users recognize the importance and are enthusiastic about the feature, but usage in practice is minimal. Relatively insignificant features like the ability to upload/download IFC models in a ZIP file are highly appreciated because of the reduction of upload/download time on slow internet connections. The Google Earth network link is popular with architects. Architects send the URL of the latest model in KMZ to their clients at the start of a project. Clients can check the status of the design at any given moment. Also the export features for IFC to Collada, CityGML and ifcXML are reasons for users to install and use the software. Advanced users are looking forward to the configurable clash detection. In this new feature users can filter objects based on subproject or object type to check collision between them. Early adopters agree that this could be the most important reason for new users to use the software. A prospective connection between IFC objects in the BIMserver to Document Management Systems (DMS) and client side software (for example by using the SOAP interface) is regarded as one of the most promising future additions to the BIMserver software. The current web client user interface receives negative feedback. It is perceived as being too technical. Professional user interface design could mean a higher user rating. 5. SUMMARY AND OUTLOOK In this paper the IFC-based Open Source building information model server bimserver.org has been introduced. Being both a software development platform as well as a working IFC server available to both SME and large enterprise end-users at no cost and with minimal technical knowledge required, the project aims to gain traction in both research and development communities. The platform provides granular revision control on an object-level for IFC model populations and can be adapted to work with other EXPRESS schemas in the future. It is based on an early-binding API provided by layered code generators on accepted (meta) modeling languages that allows comfortable interactions with IFC instances programmatically and provides flexible interfaces for versioned BIM models both by a SOAP API as well as by a web client interface prototype for end users. It features a number of modules such as visualizations, clash control and flexible query and filter mechanisms and is extendable. A small but vivid multi-national developer community and a few hundred subscribers to mailinglists have provided valuable feedback. The platform has been installed in several companies for test purposes and frequent user meetings in the Netherlands have been very positive and encouraging for the project. A number of improvements and extensions will be added to the platform in the near future. Some of these developments are the implementation of more intelligent model merge strategies, the extension of query
  • 8. possibilities and the addition of further export formats such as gbXML. In the long run, an integration with other initiatives such as IDM, MVD, and ongoing work in the application of Semantic Web technologies (Böhms et al 2008), (Beetz 2009) would be as desirable as the more tight integration of a native geometry kernel. All this depends on future funding and community contributions, making the BIMserver.org initiative a valuable addition to the tool chain that drives open standards in model-based collaboration in the building industry forward. REFERENCES Arthaud, G., & Lombardo, J. (2006)“Automatic Semantic Comparison of STEP Product Models”. Innovations in Design & Decision Support Systems in Architecture and Urban Planning, 447–463. Beetz, J. (2009).”Facilitating distributed collaboration in the AEC/FM sector using Semantic Web Technologies” PhD Thesis, Eindhoven University of Technology. ISBN 978-90-6814-618-9 Böhms, H. M., Bonsma, P., Bourdeau, M., & Josefiak, F. (2008). “Semantic Product Modelling with SWOP’s PMO”. In Proceedings of the international conference on EWork and EBusiness in Architecture, Engineering and Construction: ECPPM 2008, p. 95. Gerber, A., & Raymond, K. (2003). “MOF to EMF: there and back again”. In Proceedings of the 2003 OOPSLA workshop on eclipse technology eXchange 60-64. Helm, P. van den, Böhms, M. & Berlo, L. van (2010) ”IFC-based clash detection for the open-source BIMserver”. To appear in the Proceedings of the International Conference on Computing in Civil and Building Engineering ICCCBE 2010. Houbaux, P., (2003) “ SABLE (2005) Simple Access to Building Lifecycle Exchange project by Eurostep”.. URL: http://www.blis-project.org/~sable/, last accessed 01.06.2010 Howard, R., & Björk, B. C. (2007). “Building Information Models–Experts’ view on BIM/IFC developments”. In Proceedings of the 24th CIB-W78 Conference, Maribor. Jørgensen, K., Skauge J., Christiansson, P., Svidt K., Sørensen K.B., Mitchell, J. (2008) “Use of IFC Model Servers. Modelling Collaboration Possibilities in Practice”. Technical report by Aalborg University and Aarhus School of Architecture. http://it.civil.aau.dk/it/reports/2008_Ifc_model_server.pdf Kiviniemi, A., Fischer, M., & Bazjanac, V. (2005). “Integration of multiple product models: Ifc model servers as a potential solution”. In Proceedings of the 22nd CIB-W78 Conference on Information Technology in Construction. Lê, M. A. T., Mohus, F., Kvarsvik, O. K., & Lie, M. (2006). “The HITOS project-A full scale IFC test”. In eWork and eBusiness in architecture, engineering and construction: proceedings of the 6th European Conference on Product and Process Modelling, 13-15 September 2006, Valencia, Spain, p. 191 Nour, M., Firmenich, B., Richter, T., & Koch, C. (2006). „A versioned IFC database for multidisciplinary synchronous cooperation”. In Proceedings of the Joint International Conference on Computing and Decision Making in Civil and Building Engineering, Montreal, Canada. pp. 636-645 OpenIFCTools (2009) “Open IFC Tools”,http://www.openifctools.org/. Last accessed 01.06.2010 OSExpress,(2001), “Open Source EXPRESS Parser”, http://osexpress.sourceforge.net, last accessed 01.06.2010 Project Voldemort (2009) “Project Voldemort: A distributed database”. http://project-voldemort.com/, last accessed 01.06.2010. TNO IFC engine, (2002),”TNO IFC Engine series”, http://www.ifcbrowser.com/. Last accessed 01.06.2010 Weise M. (2006). “Ein Ansatz zur Abbildung von Änderungen in der model-basierten Objektplanung. (An approach for the representation of changes in model-based design)” Doctoral Thesis, Institute of construction Informatics, Report 4 (Ed. R. J. Scherer), Technische Universität Dresden, Germany, ISBN 3-86005-557-7