code to calculate embodied energy

6 views (last 30 days)
Henry Ifechukwude
Henry Ifechukwude on 23 Mar 2024
Answered: Voss on 23 Mar 2024
Please I need an idea to calculate the embodied energy considering various inputs such as volume, area, mass, such that EE=Mass x Ei, where Ei is the energy per unit material. Addition for multiple number of materials

Accepted Answer

Voss
Voss on 23 Mar 2024
Mass = [10 50 30]; % mass of three materials
Ei = [ 4 2 1]; % embodied energy per unit mass for those materials
EE = sum(Mass.*Ei); % total embodied energy
If you have no mass but you have density and volume, mass is density*volume.

More Answers (0)

Categories

Find more on Particle & Nuclear Physics in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!