Jump to content
  • 0

WORKSHEET - Database list of all materials present in wall/slab/roof styles components


drelARCH

Question

17 answers to this question

Recommended Posts

  • 0

Thanks Pat,

 

I should have put it differently: what is the easiest way to list all materials present on one specific layer (in my case materials present in wall/slab/roof components)?

 

Here is layer with wall/slab/roof styles:

 

198167625_Snmkaobrazovky2020-11-09o23_32_10.thumb.png.d58f8c51af3319a059cc5b1212891694.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I might be missing something but with criteria like this one:

1087314169_Snmkaobrazovky2020-11-10o8_23_50.thumb.png.73f24c9ddc9009169986e56ee66b796b.png

 

 

 

 

 

 

 

 

 

 

 

and report like this:

404149989_Snmkaobrazovky2020-11-09o23_32_36.thumb.png.76d874e244f6bdbeccd21808230ae0e6.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I get list of materials but only from components of slab objects.  NO wall components listed. Why only slabs components....?

Here resulted worksheet:

1815013158_Snmkaobrazovky2020-11-09o23_35_56.thumb.png.edbd01ea859e81ad4bbdbe50d3ae5b64.png

 

 

 

 

 

 

 

 

 

 

 

 

 

Whenever I change criteria to the one you suggested with same report:

1083778554_Snmkaobrazovky2020-11-10o9_36_23.thumb.png.965d9dd790bc57690d0a039bca075951.png

 

 

 

 

 

 

 

 

 

I get nothing.

-----

I was hoping that it is very straightforward process to present all materials present in file on specific layer, kind of simplest task without need to go into component 1, component 2, component 3 structure...

 

I have tested this with materials applied to extrudes and it does work as expected.

 

I dont know maybe my report is not set correctly...?

 

I want to simply provide client a list with all materials and their characteristics present in designed building.

Any idea how to achieve it?

 

Thanks a lot in advance.

 

Edited by drelARCH
Link to comment
  • 0

Kind of.

 

=ComponentName(1) will return the name of the first component

=ComponentMaterial(1) will return the name of the material of the first component.

 

What I have not found is a function that will return the number of components so you could use and IF statement to not display more components than exist in the object.

 

The criteria for the database I used had to be entered manually. The criteria is Component='*'. This is the equivalent of what you get when you enter Material Any is Present, but it only gets you subrows for components, not the other objects that might be contained inside the Wall/Slab/Roof. Just choose any component name from the Criteria Dialog box and then manually edit the formula to replace that Component name with the *.

 

Ask again if you need more help.

Link to comment
  • 0

I am not sure I understand completely what you are suggesting...

Is it like this?

Criteria

1859460259_Snmkaobrazovky2020-11-13o15_17_12.thumb.png.2541544cba9a6c89f561ff8a99d19387.png

 

 

 

 

 

 

 

 

 

 

 

Report

100236898_Snmkaobrazovky2020-11-13o15_17_40.thumb.png.bc2a246d520bbfe35ff389fb40ab4e8b.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

If I understand correctly it is not possible to combine all components in one list?

If I substitute ComponentMaterial(1) with ComponentMaterial(*) I get zero list items...?

 

Pat thanks a lot for your effort to help.

 

Edited by drelARCH
Link to comment
  • 0

The way it is designed now, you have to specify the component (the 1 in my example above, but it could be any component number) to get the ComponentName or ComponentMaterial to display.

 

It is really designed to have different components display in different columns.

 

It would be possible to use a Concat statement to display the data for different components in a single column.

 

Let's take a step back. Please post a mockup of what you are actually trying to accomplish and then we will see how close we can get.

Link to comment
  • 0
4 hours ago, Pat Stanford said:

It would be possible to use a Concat statement to display the data for different components in a single column.

This is it. I need to display material data for different components in single column so I can easily summarise them and sort them.

First column: material name

next columns: properties of specific material from first column (see report print-screen in my earlier posts)

 

I am not familiar with concat function, how it can be utilise in this scenario?

 

Hope it is clear for you now.

Thanks a lot.

 

Link to comment
  • 0

Based on a more detailed reading of what you are trying to do, I am not certain it will help you in this instance.


Concat takes a number of different strings and combines them together into one long string.

 

=Concat(ComponentMaterial(1), ' – ', ComponentMaterial(2))

 

Will return a string consisting of the Material of the first component , a space, a long dash, a space, and the Material of the second component. You can extrapolate  this for as many components as you want.

Link to comment
  • 0

I am not sure that I understand what you want, but take a look at this file.

 

The database in Row 8 seems close to what you want. Columns A/B/C were just there while I was testing.

 

Column D is the Material Name of the first Material.  Column E is the name of the component that uses that material.

 

I hope this helps you get where you are trying to go.

Material of components.vwx

Link to comment
  • 0

Hi,

 

Thanks Pat again ...hm not really what I want to achieve.

Peter I was afraid to hear your message. I strongly wonder why what appear to me as a basic task has to be done through script...?

 

I should have included example file with worksheet in it. Here it is.

You can see that in column B there are listed all components materials from slabs (thats how it works with material present any, dont why)  but not components from walls.

I know we have already discussed that in earlier posts but I wanted to send you file with initial state of things.

 

To make sure that I am clear enough with the task:  I want to simply collect materials (material names) from all components within slab/roof/wall styles into one database column = column B.

 

If it is not definitely possible as Peter is writing I start to think what would be the best way to approach it and get desired result...I have zero knowledge of scripting.

I have been thinking to create marionette that will generate extrudes (lets say cubes 1m x 1m x 1m) on one layer (maybe laid out on evenl spaced grid) and assign all materials in given file from resource manager. Then I can easily generate database list of all materials from extrudes and I get benefit of image preview (3D thumbnail) in database which is not possible with components...

Do you think this is feasible with marionetee?

 

 

materials from components.vwx

Edited by drelARCH
Link to comment
  • 0

More detail of what you want please.  

 

Do you have one wall and want each of the textures on that wall (Overall, Top, Bottom, Left, Right, etc.)

Do you have multiple walls and want to know every texture applied to any of them?

Do you have multiple walls and want to know every texture applied to each of them?

Do you have Components and want the texture of each component in a wall? In every wall?

 

 

Link to comment
  • 0

Hello Pat

 

I have walls with multiple components. So I want a worksheet with the surface area of the inner component in one column, this can be done via the formula = surfacearea('right net'), and in the other column, I would like to see the name of this texture from the inner component. It could be that the inner component has a texture with the name A, but that I use the texture tool from the basic tools to place a different texture on that inner component, for example, texture B, so that I then see the name of texture B in the worksheet

Link to comment
  • 0

Please post a file showing a couple of walls. One using the component texture, and maybe a couple showing walls that you have changed the texture on the wall.

 

I only tried for about 2 minutes, but I could not get the Texture Tool to apply to a component, but only to the face of a wall.

 

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...