How to perform total cost calculation if the unit cost changes with respect to floor level?

How to perform total cost calculation if the unit cost changes with respect to floor level?

faisalahmed3374
Participant Participant
1,307 Views
9 Replies
Message 1 of 10

How to perform total cost calculation if the unit cost changes with respect to floor level?

faisalahmed3374
Participant
Participant

Hi. I am a civil engineering student. I have been working on a school model as a student project. I am trying to find the total cost of the project. But in some cases, the unit price of a material or element changes with respect to change of floor level. For example, each concrete column construction costs 10,000 BDT for the first 3 floors. But after the 3rd floor, the cost increases by 2,000 BDT for each additional floor. My model has 5 floors. So, I will need to increase the unit price for these additional floors and find out the total cost of the project. This change of unit price also occurs for other concrete members such as beam, slab, etc. I am trying to figure out the best way to deal with this. But still not sure how to do that.

0 Likes
Accepted solutions (1)
1,308 Views
9 Replies
Replies (9)
Message 2 of 10

RDAOU
Mentor
Mentor
Accepted solution

@faisalahmed3374 

 

Add an instance project parameter for the cost increment (Currency) and add a calculated value in the schedule

 

Use the OOTB Cost parameter for the basic cost 10,000BDT

 

 

YOUTUBE | BIM | COMPUTATIONAL DESIGN | PARAMETRIC DESIGN | GENERATIVE DESIGN | VISUAL PROGRAMMING
If you find this reply helpful kindly hit the LIKE BUTTON and if applicable please ACCEPT AS SOLUTION


0 Likes
Message 3 of 10

barthbradley
Consultant
Consultant

Well first off, "Cost" would need to be an Instance Parameter.  The In-Built "Cost" Parameter is not. Where are you pulling unit cost from?  

0 Likes
Message 4 of 10

RDAOU
Mentor
Mentor

It can be a type...it is the base cost which is constant. 

The calculated value would then be

Level 1 to 3: Cost + 0 

Level 4: Cost + Cost Increment *1 

Level 5: Cost + Cost Increment *2

Level 6: Cost + Cost Increment *3

...and so on

YOUTUBE | BIM | COMPUTATIONAL DESIGN | PARAMETRIC DESIGN | GENERATIVE DESIGN | VISUAL PROGRAMMING
If you find this reply helpful kindly hit the LIKE BUTTON and if applicable please ACCEPT AS SOLUTION


0 Likes
Message 5 of 10

barthbradley
Consultant
Consultant

Exactly what I was driving at. The in-built "Cost" is a Type Parameter. The OP can't use it alone.  He needs a Calculated Parameter - or another method, such as a Cost per Instance Parameter.  

0 Likes
Message 6 of 10

ToanDN
Consultant
Consultant

@barthbradley wrote:

Exactly what I was driving at. The in-built "Cost" is a Type Parameter. The OP can't use it alone.  He needs a Calculated Parameter - or another method, such as a Cost per Instance Parameter.  


The base cost can be Type.  The increased costs are Calculated value parameter with a formula, for instance:

if (Level < 4, Base Cost, Base Cost + (Delta Cost * (Actual level -3)))

 

0 Likes
Message 7 of 10

barthbradley
Consultant
Consultant

Exactly!  

0 Likes
Message 8 of 10

RDAOU
Mentor
Mentor

@barthbradley wrote:

Exactly!  


How exactly??? When all OTHER replies (#2, 4 and 6) match and tally your first off was...

 

RDAOU_1-1627586289992.png

I am not sure what is going on! are we trying to help the users of this forum or confuse them

 

 

 

 

 

YOUTUBE | BIM | COMPUTATIONAL DESIGN | PARAMETRIC DESIGN | GENERATIVE DESIGN | VISUAL PROGRAMMING
If you find this reply helpful kindly hit the LIKE BUTTON and if applicable please ACCEPT AS SOLUTION


0 Likes
Message 9 of 10

barthbradley
Consultant
Consultant

I'm not sure what you are calling out in this re-post of mine - or what explanation you need.  I see "Well, first off" underlined in red, "'Cost' would need to be an Instance Parameter." underlined in blue, and "The In-Built 'Cost' Parameter is not." underlined in mustard yellow.  Is the color of the underlines significant? Or maybe the lack of underlining?  I notice that "Where are you pulling unit cost from?" is not underlined.  That mean something?

 

Let me know what's "confusing" to you and I'll clear it up for you.  

 

Peace be with you, Bro.  

 

 

Message 10 of 10

faisalahmed3374
Participant
Participant

Thank you. After creating the instance parameter, I calculated the total cost using dynamo easily.

0 Likes