Skip to main content

ArchiCAD project-based eBook

When looking at the Graphisoft site, in the list of books, I’m always disappointed by the lack of ArchiCAD specific books. There are a few mentioned, but they are for older versions, usually (down to version 9 still, which is when the whole Publishing workflow was still in the external PlotMaker software). This is not usable today.

The first book in the list, however, was a recent eBook, by Nicola Petkovic: it consist of 4 separate books. And that is what I’ll discuss in this blogpost.

Master Class - Step by step guidebook

You can order them separately or as a bundle, with discount. There is also the option to buy it as a hard-copy.

  • Masterclass 1 (beginners level) - basics, tools (wall, slab, door, window, stair…), Priority-Based Connections, editing, basic floor plans and layout…
  • Appendix 1 for Master Class 1 (Intermediate level) - plan & layout, building materials & PBE, window- and door markers, 3D sections/cutaway, Zone tool in 2D and 3D
  • Appendix 2 for Master Class 2 (Intermediate level) - object, morph, shell and lamp and energy analysis
  • Masterclass 2 (intermediate level) - customisation, DWG, truss, shell, grid, roof maker, curtain wall, morph and landscape.

You can register for this book at: https://sites.google.com/site/shuabook/

Chapters are provided as PDF files, readable online, but to prevent piracy, you can not download or print them. Drawings are provided as PDF (for underlay) and in ArchiCAD PLN format, both for metric and imperial units.

 

PastedGraphic-2014-06-21-10-02.png

 

It is self-published and upon registration, you get an invitation for a shared Google Drive folder per book. This implies that you need a gMail address, which is accessible to everybody, if needed.

PastedGraphic1-2014-06-21-10-02.png

The books follow a Project-based approach, based on two existing designs: the 4x4 house by Tadao Ando and the Artek Pavillion by Shigeru Ban. These designs are started from scratch for a first, basic model, prepared for 1:100 representations and further elaborated throughout the project. This is a good concept, as it better reflects how architects would approach such a project. It also implies that you are not simply going through all the tools, but revisit them at different stages of design elaboration.

1__%252524%252521%252540%252521__PastedGraphic-2014-06-21-10-02.png

 

Some Comments

While I haven’t been able to read them front to cover (yet), I was planning to revise my own understanding of ArchiCAD and the project-based approach seems worthwhile. The price is fair and although it seems mostly self-published, this probably cuts down on publication and distribution and overhead costs, so you get a lot of value (and the author probably a larger return).

The books are richly illustrated and the pages are quite filled to the limits. This is not a light, in-between text for reading, but requires attention, as it is filled with tips, annotations, screenshots and other valuable information.

Rebuilding existing architectural projects is a valid approach to learning a BIM or CAD software system. You will get a nice end result and are not being distracted by the need to elaborate the full design or project deadlines. If you are more advanced, you could work on your own project, but you might not have the required details at the right time during elaboration.

Finally, maybe this is nit-picking, but for my own classes, which have become video-tutorial based self-paced learning, I am looking to revise my older ArchiCAD 16 tutorials and translate them into ArchiCAD 18. The previous example project was fairly representative, but lacked following characteristics: no sloped roof, no neighbours (so no common wall), no basement and no renovation requirements. This thus leaves out a fair share of necessary subjects.

In this book, there is a sloped roof in the second Masterclass, although more focused on pavilion steel structures. Depending on where you live in the world, the building project might or might not be a good fit for your regional construction habits. And for beginners, that might be still quite limiting. I do remember from my classes how often I need to explain construction details, to be able to properly model them.

All in all, this books are highly recommended, for their project-based approach and for the fact that the choice of ArchiCAD-focused books is still very limited, certainly when comparing with a certain, US-based well-known alternative software.

Comments

Popular posts from this blog

Improve usage of BIM during early design phases

When I was collecting ideas for a book chapter on BIM (that seemed to never have emerged after that), I collected 10 ideas, which I believe still reflect good recommendations to improve the usage of BIM during the early design phases. These ideas are related to BIM software, but you can apply them in any flavor, as long as you can model with Building Elements, Spaces and have control over representation. Introduction This article gives an overview of several recommendations and tips, to better apply BIM applications and BIM methodologies, in the context of the early design phases. Many of these tips are applicable in any BIM application and they are based on experience gathered from teaching, researching and using BIM software. Sometimes they could help software developers to improve the workflow of their particular BIM implementation. Tip 1 : Gradually increase the amount of information In the early design phases, the architect makes assumptions and lays out the main design in...

Getting BIM data into Unity (Part 0 - Introduction)

This post reflects on work that I carried out, elaborated during my guidance of a few Master thesis students, to better integrate BIM models into Unity. This will be a multi-part post. This makes each article a bit shorter to read, but allows more in-depth information overall. Hope you like it. Please comment with feedback and further improvements. Basic methodology Unity can import geometry from FBX and Collada (DAE) files primarily. There are a few other formats, but these are the preferred ones. When integrating CAD or BIM files into a realtime environment, you have to convert the geometry. During my Unity teaching and the writing of the book Unity for Architectural Visualization ( buy from Packt ), I’ve come up with a basic diagram explaining geometry exchange between CAD and BIM software and Unity. Throughout these posts, we’ll go more into detail. We start with ArchiCAD, but will tackle Revit in a follow-up post. Promised!

PythonOCC : Open Source interactive CAD shell (and how to run it on OSX)

What is PythonOCC? PythonOCC is an Open Source (LGPL) Python-wrapper for OpenCASCADE. So what is OpenCASCADE (OCC)? This is an advanced Open Source (custom license) modeling kernel, comparable to commercial engines, such as ACIS or Parasolid, which are used in quite some commercial CAD programs. When you want to develop CAD software, you could use OCC and write programs in C++. And why using Python? With this wrapper, you can create CAD and geometry scripts in Python, which is an interpreted Object-oriented scripting language. You can write almost "on-the-fly" and seriously reduce the implementation effort, by skipping the compiling-phase. You can even interact with a running program in the Python interpreter. Want to read more about this? The OpenCASCADE official website  (currently Linux and Windows are officially supported) The PythonOCC website/blog  (beware that the core of the actions happen in the development repositories). So far so good. Now the nasty, techn...