Integrated Digital Twin and BIM Approach to Minimize Environmental Loads for In-Situ Production and Yard-Stock Management of Precast Concrete Components
Abstract
1. Introduction
- Development of a BIM–DT integrated model for environmental load reduction;
- Shift in focus from cost/schedule efficiency (common in prior studies) to environmental performance enhancement;
- Validation using data from a large-scale, real-world project.
2. Literature Review
2.1. In Situ Production and Yard-Stock PC Components
2.2. Previous Studies
2.2.1. Integration of BIM and DT in the Construction Industry
2.2.2. DT for Predictive Planning and Risk Management
2.2.3. In Situ PC Production and Stockyard Management
2.2.4. Reducing Carbon Emissions Using DT
2.2.5. Holistic Lifecycle Carbon Assessment Frameworks Using BIM
2.2.6. Precedents in DT–BIM for Environmental Performance Optimization
2.2.7. PC Sustainability Strategies: In Situ vs. Off-Site Trade-Offs
2.2.8. Research Gap
3. Methodology
3.1. Project Analysis
3.2. Data Analysis and Preprocessing
3.3. Basic Model Creation and Data Acquisition from BIM–DT
3.4. CO2 Emission Minimization Simulation
3.4.1. CO2 Emission Quantification
3.4.2. Scenario Definition and CO2 Emission Optimization Process
3.4.3. Optimization Model Design Using Oracle Crystal Ball
4. Result and Sensitivity Analysis
5. Discussion
5.1. CO2 Emission Result Assessment
5.2. Comparison with Previous Studies of This Case Site
5.3. Mechanisms by Which DT–BIM Integration Reduced CO2
5.4. Decision-Making Suggestion
- (1)
- In the data definition and boundary setting phase, the geometry, quantity, and material properties of precast concrete (PC) elements such as columns and beams are defined and extracted from the BIM model. Concurrently, real-time field sensor data and operational information are collected through the digital twin system. This stage also involves clearly delineating the boundaries of environmental load analysis by defining the scope of the life cycle assessment (LCA), for example as cradle-to-gate or cradle-to-site.
- (2)
- The simulation environment setup for in situ production via the DT phase involves constructing a simulation environment that integrates BIM data with real-world site information using a DT platform. Key variables such as the production time, number of workers, productivity rates, transportation paths, and storage area dimensions are modeled. This simulation framework enables real-time tracking of resource inputs and environmental impacts across each construction phase and serves as a basis for scenario-based comparative evaluations.
- (3)
- In the LCA-based CO2 emission estimation phase, CO2 emissions are quantified for each process phase—production, yard-stock, and installation—based on its respective resource and activity inputs (e.g., materials, labor, electricity, and fuel consumption). Each phase’s contribution to total carbon emissions is analyzed to identify major emission drivers, which provides insights for targeted environmental interventions.
- (4)
- In the optimization scenario design phase, based on the calculated CO2 emission data, various optimization scenarios are developed (e.g., carbon-reduction-oriented, schedule-driven, cost-saving, or multi-objective scenarios). Monte Carlo simulations are conducted using tools such as AI-based models or Oracle Crystal Ball. Input variables (e.g., working hours, manpower, storage area) are treated as probabilistic distributions—typically normal distributions—that reflect their statistical characteristics. The output includes optimized plans for in situ production, yard storage allocation, and installation sequencing.
- (5)
- The risk evaluation phase evaluates potential risks associated with each scenario, including spatial congestion, scheduling delays, and material interference. Through the DT, dynamic feedback mechanisms are established, which enables real-time scenario adjustments. For example, if excessive stacking occurs in a yard area, simulation reruns can automatically reallocate PC components to alternative zones or revise installation sequences.
- (6)
- In the final decision-making and visualization reporting phase, all analytical outcomes are visualized in 3D using the BIM environment. Dashboards provide real-time insights into CO2 emission contributions by phase as a result of space utilization rates, process durations, and scenario comparisons. Stakeholders, including owners, contractors, and engineers, can use this information to select and implement the most sustainable and operationally efficient strategies.
5.5. Discuss Trade-Offs (Digital Overhead vs. Savings)
5.6. Present Limitations and Future Research Directions
6. Conclusions
- Integrating real-time sensor data for dynamic feedback control;
- Applying machine learning techniques to improve CO2 emission forecasting;
- Enhancing safety and risk management through predictive analytics;
- Developing cloud-based visualization dashboards for intelligent site monitoring.
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
Abbreviations
DT | Digital Twin |
BIM | Building Information Modeling |
PC | Precast concrete |
SRC | Steel-reinforced concrete |
RC | Reinforced concrete |
Appendix A
Algorithm A1. The framework of CO2 emission optimization. |
Require: CO2 emission of each stage and each parameter. Ensure: Optimal CO2 emission |
def calculate_ CO2 emission(N_m, N_c, N_w, A_y, L_t, stage_params, A_m, CO2_factors): “““ Calculate total CO2 emission for PC production stages. Parameters: - N_m: Number of molds (dict: {‘column’: int, ‘beam’: int}) - N_c: Number of cranes - N_w: Number of workers per stage (dict: {stage: int}) - A_y: Stockyard area (m2) - stage_params: Dict of stage parameters {stage: {‘workload’: float, ‘productivity’: float, ‘contingency’: float}} - A_m: Area per mold (m2) - CO2_factors: CO2 emission factors {stage: float} (kg CO2 per workhour) Returns: - Total CO2 emissions (kg), stage-wise breakdown “““ # Initialize variables stage_CO2 = {} total_CO2 = 0 days_per_month = 30 # Assumption for conversion # Maximum molds based on stockyard area N_m_max = A_y // A_m batch_count = max(1, (N_m[‘column’] + N_m[‘beam’]) / N_m_max) # Process each stage for stage in [‘MP’, ‘RP’, ‘CP’, ‘CU’, ‘DM’, ‘FI’]: workload = stage_params[stage][‘workload’] # hours per mold productivity = stage_params[stage][‘productivity’] # mold per worker-hour contingency = stage_params[stage][‘contingency’] # Time per mold for the stage T_s = workload / (N_w[stage] * productivity) # hours per mold considering number of workers # Total time for stage T_s_total = (N_m[‘column’] + N_m[‘beam’]) / (N_w[stage] * productivity) * T_s * (1 + contingency) T_s_total *= batch_count # batch effect # CO2 emission calculation CO2_stage = T_s_total * CO2_factors[stage] # kg CO2 stage_CO2[stage] = CO2_stage total_CO2 += CO2_stage # Installation stage (IN) T_IN_unit = stage_params[‘IN’][‘workload’] # Time per component (hours) C_c = stage_params[‘IN’][‘crane_capacity’] # Components per crane per unit time T_IN = ((N_m[‘column’] + N_m[‘beam’]) / (N_c * C_c)) * T_IN_unit CO2_IN = T_IN * CO2_factors[‘IN’] # kg CO2 stage_CO2[‘IN’] = CO2_IN total_CO2 += CO2_IN return total_CO2, stage_CO2 # Example usage stage_params = { ‘MP’: {‘workload’: 8, ‘productivity’: 1, ‘contingency’: 0.1}, ‘RP’: {‘workload’: 6, ‘productivity’: 1, ‘contingency’: 0.1}, ‘CP’: {‘workload’: 4, ‘productivity’: 1, ‘contingency’: 0.1}, ‘CU’: {‘workload’: 24, ‘productivity’: 1, ‘contingency’: 0.1}, ‘DM’: {‘workload’: 4, ‘productivity’: 1, ‘contingency’: 0.1}, ‘FI’: {‘workload’: 3, ‘productivity’: 1, ‘contingency’: 0.1}, ‘IN’: {‘workload’: 2, ‘crane_capacity’: 1, ‘contingency’: 0.1} } CO2_factors = { ‘MP’: 5.0, # kg CO2 per workhour ‘RP’: 4.0, ‘CP’: 3.0, ‘CU’: 6.0, ‘DM’: 3.5, ‘FI’: 2.5, ‘IN’: 7.0 } N_m = {‘column’: 30, ‘beam’: 91} N_c = 2 N_w = {‘MP’: 10, ‘RP’: 8, ‘CP’: 6, ‘CU’: 4, ‘DM’: 6, ‘FI’: 5, ‘IN’: 10} A_y = 15729 A_m = 50 L_t = 5.1 total_CO2, stage_CO2 = calculate_CO2_emission(N_m, N_c, N_w, A_y, L_t, stage_params, A_m, CO2_factors) print(f”Total CO2 Emission: {total_CO2:.2f} kg”) print(“Stage-wise CO2 Breakdown:”) for stage, co2 in stage_CO2.items(): print(f”{stage}: {co2:.2f} kg”) |
References
- Merschbrock, C.; Munkvold, B.E. The digital transformation of the construction industry: A review. Ind. Commer. Train. 2024, 56, 123–140. [Google Scholar] [CrossRef]
- Nyqvist, R.; Peltokorpi, A.; Lavikka, R.; Ainamo, A. Building the digital age: Management of digital transformation in the construction industry. Constr. Manag. Econ. 2025, 43, 262–283. [Google Scholar] [CrossRef]
- Qi, Q.; Tao, F. Digital twins and big data towards smart manufacturing and Industry 4.0: 360-degree comparison. Adv. Eng. Inform. 2021, 59, 101542. [Google Scholar] [CrossRef]
- Boje, C.; Guerriero, A.; Kubicki, S.; Rezgui, Y. Towards a semantic construction digital twin: Directions for future research. Autom. Constr. 2020, 114, 103179. [Google Scholar] [CrossRef]
- Jeong, S.-H.; Kim, G.-H. Development of BIM Utilization Level Evaluation Model in Construction Management Company. Korean J. Constr. Eng. Manag. 2024, 25, 24–33. [Google Scholar] [CrossRef]
- Hwang, J.; Song, S.H.; Lee, C.; Ahn, H.; Cho, H.; Kang, K.-I. BIM and OpenAI-based Model for Supporting Initial Construction Planning of Bridges and Tunnels. Korean J. Constr. Eng. Manag. 2024, 25, 24–33. [Google Scholar] [CrossRef]
- Kang, H.; Seong, H. Conceptual Model for Quality Risk Assessment and Reserve Cost Estimation for Construction Projects based on BIM. Korean J. Constr. Eng. Manag. 2025, 26, 62–71. [Google Scholar] [CrossRef]
- Kim, H.; Nam, J. Applying BIM Standard Guideline to Expressway BIM Results and Drawing Its Improvement Measure for Project Management. Korean J. Constr. Eng. Manag. 2025, 26, 82–88. [Google Scholar] [CrossRef]
- Kim, I.; Shah, S.H. A Proposal for Evaluation Criteria of Decision Support System for BIM. Korean J. Constr. Eng. Manag. 2025, 26, 89–102. [Google Scholar] [CrossRef]
- Sacks, R.; Brilakis, I.; Pikas, E.; Xie, H.S.; Girolami, M. Construction with digital twin information systems. Data-Centric Eng. 2020, 1, e14. [Google Scholar] [CrossRef]
- Lu, Q.; Parlikad, A.K.; Woodall, P.; Ranasinghe, G.D.; Xie, Y.; Liang, Z.; Konstantinou, E. Developing a digital twin at building and city levels: Case study of West Cambridge campus. J. Manag. Eng. 2020, 36, 05020004. [Google Scholar] [CrossRef]
- Jiang, Y.; Li, M.; Guo, D.; Wu, W.; Zhong, R.Y.; Huang, G.Q. Digital twin-enabled smart modular integrated construction system for on-site assembly. Comput. Ind. 2022, 136, 103594. [Google Scholar] [CrossRef]
- Guo, J.; Zhao, N.; Sun, L.; Zhang, S. Modular based flexible digital twin for factory design. J. Ambient. Intell Hum. Comput. 2019, 10, 1189–1200. [Google Scholar] [CrossRef]
- Al-Kahwati, K.; Birk, W.; Nilsfors, E.F.; Nilsen, R. Experiences of a digital twin based predictive maintenance solution for belt conveyor systems. PHM Soc. Eur. Conf. 2022, 7, 1–8. [Google Scholar] [CrossRef]
- Chen, Z.; Tan, Y.; Zhang, A. Integrating digital twin and blockchain for smart building management. Sustain. Cities Soc. 2023, 99, 104514. [Google Scholar] [CrossRef]
- Lim, J.; Kim, J.J. Dynamic optimization model for estimating in-situ production quantity of PC members to minimize envi-ronmental loads. Sustainability 2020, 12, 8202. [Google Scholar] [CrossRef]
- Hong, W.-K.; Lee, G.; Lee, S.; Kim, S. Algorithms for in-situ production layout of composite precast concrete members. Autom. Constr. 2014, 41, 50–59. [Google Scholar] [CrossRef]
- Na, Y.J.; Kim, S.K. A process for the efficient in-situ production of precast concrete members. J. Reg. Assoc. Archit. Inst. Korea 2017, 19, 153–161. [Google Scholar]
- Lim, C. Construction Planning Model for In Situ Production and Installation of Composite Precast Concrete Frame. Ph.D. Thesis, Kyung Hee University, Seoul, Republic of Korea, 2016. [Google Scholar]
- Lim, J.; Son, C.-B.; Kim, S. Scenario-based 4D dynamic simulation model for in situ production and yard stock of precast concrete members. J. Asian Arch. Build. Eng. 2022, 22, 2320–2334. [Google Scholar] [CrossRef]
- Lim, J.; Kim, S. Environmental Impact Minimization Model for Storage Yard of In-situ Produced PC Components: Comparison of Dung Beetle Algorithm and Improved Dung Beetle Algorithm. Buildings 2024, 14, 3753. [Google Scholar] [CrossRef]
- Jung, H.T.; Lee, M.S. A Study on the Site-production Possibility of the Prefabricated PC Components. In Proceedings of the 1992 Autumn Annual Conference of the Architectural Institute of Korea, Seoul, Republic of Korea, 24 October 1992; Volume 12, pp. 629–636. [Google Scholar]
- Li, H.; Love, P.E. Genetic search for solving construction site-level unequal-area facility layout problems. Autom. Constr. 2000, 9, 217–226. [Google Scholar] [CrossRef]
- Won, I.; Na, Y.; Kim, J.T.; Kim, S. Energy-efficient algorithms of the steam curing for the in situ production of precast concrete members. Energy Build. 2013, 64, 275–284. [Google Scholar] [CrossRef]
- Kim, S.; Kim, G.; Kang, K. A Study on the effective inventory management by optimizing lot size in building construction. J. Korea Inst. Build. Constr. 2004, 4, 73–80. [Google Scholar] [CrossRef]
- Lee, J.M.; Yu, J.H.; Kim, C.D. A Economic Order Quantity (EOQ) Determination Method Considering Stock Yard Size; Korea Institute of Construction Engineering and Management: Seoul, Republic of Korea, 2007; pp. 549–552. [Google Scholar]
- Lee, J.M.; Yu, J.H.; Kim, C.D.; Lee, K.J.; Lim, B.S. Order Point Determination Method considering Materials Demand Variation of Construction Site. J. Archit. Inst. Korea 2008, 24, 117–125. [Google Scholar]
- Thomas, H.R.; Horman, M.J.; Minchin, R.E.; Chen, D. Improving labor flow reliability for better productivity as lean construction principle. J. Constr. Eng. Manag. 2003, 129, 251–261. [Google Scholar] [CrossRef]
- Yun, J.-S.; Yu, J.-H.; Kim, C.-D. Economic Order Quantity (EOQ) Determination Process for Construction Material considering Demand Variation and Stockyard Availability. Korean J. Constr. Eng. Manag. 2011, 12, 33–42. [Google Scholar] [CrossRef]
- Dobson, D.W.; Sourani, A.; Sertyesilisik, B.; Tunstall, A. Sustainable construction: Analysis of its costs and benefits. Am. J. Civ. Eng. Archit. 2013, 1, 32–38. [Google Scholar]
- Volk, R.; Stengel, J.; Schultmann, F. Building Information Modeling (BIM) for existing buildings—Literature review and future needs. Autom. Constr. 2014, 38, 109–127. [Google Scholar] [CrossRef]
- Osman, H.M.; Georgy, M.E.; Ibrahim, M.E. A hybrid CAD-based construction site layout planning system using genetic algo-rithms. Autom. Constr. 2003, 12, 749–764. [Google Scholar] [CrossRef]
- Ning, X.; Lam, K.-C.; Lam, M.C.-K. Dynamic construction site layout planning using max-min ant system. Autom. Constr. 2009, 19, 55–65. [Google Scholar] [CrossRef]
- Abdul-Rahman, H.; Wang, C.; Eng, K.S. Repertory grid technique in the development of Tacit-based Decision Support System (TDSS) for sustainable site layout planning. Autom. Constr. 2011, 20, 818–829. [Google Scholar] [CrossRef]
- Lee, G.J. A Study of In-Situ Production Management Model of Composite Precast Concrete Members. Ph.D. Thesis, Kyung Hee University, Seoul, Republic of Korea, 2012. [Google Scholar]
- Lim, J.; Kim, S. Evaluation of CO2 Emission Reduction Effect Using In-situ Production of Precast Concrete Components. J. Asian Arch. Build. Eng. 2020, 19, 176–186. [Google Scholar] [CrossRef]
- Gao, M.Y.; Han, J.; Yang, Y.; Tiong, R.L.; Zhao, C.; Han, C. BIM-based and IoT-driven smart tracking for precast construction dynamic scheduling. J. Constr. Eng. Manag. 2024, 150, 04024117. [Google Scholar] [CrossRef]
- Su, R.; Aviles, J.S. Construction Scheduling Optimization of Prefabricated Buildings Under Resource Constraints Based on an Improved Whale Optimization Algorithm. Int. J. Comput. Intell. Syst. 2025, 18, 166. [Google Scholar] [CrossRef]
- Pradhan, P.; Verma, M.S.; Sahu, M.S. Optimization of Cast-In-Situ and Precast Concrete Methods Through BIM and Structural Simulations. Optimization 2025. [Google Scholar]
- Cotoarbă, D.; Straub, D.; Smith, I.F. Probabilistic digital twins for geotechnical design and construction. Data-Centric Eng. 2025, 6, e30. [Google Scholar] [CrossRef]
- Lim, J.; Kim, S.; Kim, J.J. Dynamic simulation model for estimating in-situ production quantity of pc members. Int. J. Civ. Eng. 2020, 18, 935–950. [Google Scholar] [CrossRef]
- Lim, J.; Park, K.; Son, S.; Kim, S. Cost reduction effects of in-situ PC production for heavily loaded long-span buildings. J. Asian Arch. Build. Eng. 2020, 19, 242–253. [Google Scholar] [CrossRef]
- Opoku, D.G.J.; Perera, S.; Osei-Kyei, R. Digital Twins for the Built Environment: Learning from Conceptual and Process Models in Manufacturing. Smart Sustain. Built Environ. 2021, 10, 557–575. [Google Scholar]
- Kassem, M.; Kelly, G.; Dawood, N.; Serginson, M.; Lockley, S. BIM in Facilities Management Applications: A Case Study of a Large University Complex. Built Environ. Proj. Asset Manag. 2015, 5, 261–277. [Google Scholar] [CrossRef]
- Xu, Q.; Wang, J.; Gao, W.; Ren, S.; Li, Z. Digital Twin: State-of-the-Art and Future Perspectives. In Proceedings of the 2024 5th International Conference on Computer Science and Management Technology, Xiamen, China, 18–20 October 2024; pp. 731–740. [Google Scholar]
- Alizadehsalehi, S.; Hadavi, A.; Huang, J.C. From BIM to Extended Reality in AEC Industry. Autom. Constr. 2020, 116, 1–13. [Google Scholar] [CrossRef]
- Chen, C.; Zhao, Z.; Xiao, J.; Tiong, R. A conceptual framework for estimating building embodied carbon based on digital twin technology and life cycle assessment. Sustainability 2021, 13, 13875. [Google Scholar] [CrossRef]
- Tagliabue, L.C.; Brazzalle, T.F.; Rinaldi, S.; Dotelli, G. Cognitive Digital Twin Framework for Life Cycle Assessment Supporting Building Sustainability. In Cognitive Digital Twins for Smart Lifecycle Management of Built Environment and Infrastructure; CRC Press: Boca Raton, FL, USA, 2023; pp. 177–205. [Google Scholar]
- Zhang, Z.; Wei, Z.; Court, S.; Yang, L.; Wang, S.; Thirunavukarasu, A.; Zhao, Y. A review of digital twin technologies for enhanced sustainability in the construction industry. Buildings 2024, 14, 1113. [Google Scholar] [CrossRef]
- Agostinelli, S.; Cinquepalmi, F.; Ruperto, F. 5D BIM: Tools and methods for digital project construction management. WIT Trans. Built Environ. 2019, 192, 205–215. [Google Scholar] [CrossRef]
- Gonzalez, J.; Soares, C.A.P.; Najjar, M.; Haddad, A.N. BIM and BEM methodologies integration in energy-efficient buildings using experimental design. Buildings 2021, 11, 491. [Google Scholar] [CrossRef]
- Rodrigues, F.; Baptista, J.S.; Pinto, D. BIM approach in construction safety—A case study on preventing falls from height. Buildings 2022, 12, 73. [Google Scholar] [CrossRef]
- Muzi, F.; Marzo, R.; Nardi, F. Digital information management in the built environment: Data-driven approaches for building process optimization. In Technological Imagination in the Green and Digital Transition; Springer International Publishing: Cham, Switzerland, 2022; pp. 123–132. [Google Scholar] [CrossRef]
- Bakhshi, S.; Ghaffarianhoseini, A.; Ghaffarianhoseini, A.; Najafi, M.; Rahimian, F.; Park, C.; Lee, D. Digital twin applications for overcoming construction supply chain challenges. Autom. Constr. 2024, 167, 105679. [Google Scholar] [CrossRef]
- Kosse, S.; Forman, P.; Stindt, J.; Hoppe, J.; Konig, M.; Mark, P. Industry 4.0 enabled modular precast concrete components: A case study. In International RILEM Conference on Synergising Expertise Towards Sustainability and Robustness of CBMs and Concrete Structures; Springer Nature: Cham, Switzerland, 2023; pp. 229–240. [Google Scholar]
- Wang, Q.; Yin, Y.; Chen, Y.; Liu, Y. Carbon peak management strategies for achieving net-zero emissions in smart buildings: Advances and modeling in digital twin. Sustain. Energy Technol. Assess. 2024, 64, 103661. [Google Scholar] [CrossRef]
- Filippova, E.; Hedayat, S.; Ziarati, T.; Manganelli, M. Artificial Intelligence and Digital Twins for Bioclimatic Building Design: Innovations in Sustainability and Efficiency. Preprints 2025. [Google Scholar] [CrossRef]
- Hosamo, H.; Hosamo, M.H.; Nielsen, H.K.; Svennevig, P.R.; Svidt, K. Digital Twin of HVAC system (HVACDT) for multiobjective optimization of energy consumption and thermal comfort based on BIM framework with ANN-MOGA. Adv. Build. Energy Res. 2023, 17, 125–171. [Google Scholar] [CrossRef]
- Sohail, A.; Shen, B.; Cheema, M.A.; Ali, M.E.; Ulhaq, A.; Babar, M.A.; Qureshi, A. Beyond data, towards sustainability: A Sydney case study on urban digital twins. PFG J. Photogramm. Remote Sens. Geoinf. Sci. 2025, 93, 365–377. [Google Scholar] [CrossRef]
- ISO 14040; Environmental Management-Life Cycle Assessment-Principles and Framework. International Organization for Standardization: Geneva, Switzerland, 2006. Available online: https://www.iso.org/standard/37456.html (accessed on 25 August 2025).
- ISO 14044; Environmental Management-Life Cycle Assessment-Requirements and Guidelines. International Organization for Standardization: Geneva, Switzerland, 2006. Available online: https://www.iso.org/standard/38498.html (accessed on 25 August 2025).
- EN 15978; Sustainability of Construction Works—Assessment of Environmental Performance Of Buildings—Calculation Method. The British Standards Institution: London, UK, 2011. Available online: https://shop.bsigroup.com/ProductDetail?pid=000000000030256638 (accessed on 25 August 2025).
- Hollberg, A.; Genova, G.; Habert, G. Evaluation of BIM-based LCA results for building design. Autom. Constr. 2020, 109, 102972. [Google Scholar] [CrossRef]
- Berges-Alvarez, I.; Martinez-Rocamora, A.; Marrero, M. A Systematic Review of BIM-Based Life Cycle Sustainability Assessment for Buildings. Sustainability 2024, 16, 11070. [Google Scholar] [CrossRef]
- Mazur, Ł.; Olenchuk, A. Life cycle assessment and building information modeling integrated approach: Carbon footprint of masonry and timber-frame constructions in Single-Family houses. Sustainability 2023, 15, 15486. [Google Scholar] [CrossRef]
- Badenko, V.; Bolshakov, N.; Celani, A.; Puglisi, V. Principles for Sustainable Integration of BIM and Digital Twin Technologies in Industrial Infrastructure. Sustainability 2024, 16, 9885. [Google Scholar] [CrossRef]
- Kosse, S.; Vogt, O.; Wolf, M.; Konig, M.; Gerhard, D. Digital twin framework for enabling serial construction. Front. Built Environ. 2022, 8, 864722. [Google Scholar] [CrossRef]
- Widjaja, D.D.; Lim, J.; Kim, S. Integrating Digital Twin and BIM for Special-Length-Based Rebar Layout Optimization in Reinforced Concrete Construction. Buildings 2025, 15, 2617. [Google Scholar] [CrossRef]
- Dong, Y.H.; Jaillon, L.; Chu, P.; Poon, C.S. Comparing carbon emissions of precast and cast-in-situ construction methods—A case study of high-rise private building. Constr. Build. Mater. 2015, 99, 39–53. [Google Scholar] [CrossRef]
- Zhou, F.; Ning, Y.; Guo, X.; Guo, S. Analyze differences in carbon emissions from traditional and prefabricated buildings combining the life cycle. Buildings 2023, 13, 874. [Google Scholar] [CrossRef]
- Afsahi, I. Comparison Between Precast Versus In Situ Structures in Terms of Sustainability. Master’s Thesis, Universitat Politecnica de Catalunya, Barcelona, Spain, 2024. [Google Scholar]
- Gong, T.; Yang, J.; Hu, H.; Xu, F. Construction technology of off-site precast concrete buildings. Front. Eng. Manag. 2015, 2, 122. [Google Scholar] [CrossRef]
- Tharma, R.; Winter, R.; Eigner, M. An approach for the implementation of the digital twin in the automotive wiring harness field. In Proceedings of the DS 92: DESIGN 2018 15th International Design Conference 2018, Dubrovnik, Croatia, 21–24 May 2018; pp. 3023–3032. [Google Scholar] [CrossRef]
- Kritzinger, W.; Karner, M.; Traar, G.; Henjes, J.; Sihn, W. Digital Twin in manufacturing: A categorical literature review and classification. IFAC-Pap. 2018, 51, 1016–1022. [Google Scholar] [CrossRef]
- Lim, J.; Kim, S. BIM-Driven Scheduling Optimization for In-situ Production and Yard-stock Integration of Precast Concrete Members. Ain Shams Eng. J. 2025; manuscript in preparation. [Google Scholar]
- Kim, S.; Oh, J.; Lim, J. Development of an algorithm for crane trajectory distance calculation for erection of precast concrete members. Buildings 2023, 14, 11. [Google Scholar] [CrossRef]
- Hong, W.K.; Park, S.C.; Lee, H.C.; Kim, J.M.; Kim, S.I.; Lee, S.G.; Yoon, K.J. Composite beam composed of steel and precast concrete (modularized hybrid system). Part III: Application for a 19-storey building. Struct. Des. Tall Spec. Build. 2010, 19, 679–706. [Google Scholar] [CrossRef]
- Rajput, B.L.; Hussain, M.A.; Shaikh, N.N.; Vadodaria, J. Time and Cost Comparison of Construction of RCC, Steel and Composite Structure Building. IUP J. Struct. Eng. 2013, 6, 50. Available online: https://research.ebsco.com/c/akl6ox/viewer/pdf/lxkljxp5wn (accessed on 4 June 2025).
- Ghayeb, H.H.; Razak, H.A.; Sulong, N.R. Evaluation of the CO2 emissions of an innovative composite precast concrete structure building frame. J. Clean. Prod. 2020, 242, 118567. [Google Scholar] [CrossRef]
- Kudo, S.; Kapfudzaruwa, F.; Broadhurst, J.L.; Edusah, S.E.; Awere, K.G.; Matsuyama, K.; Nagao, M.; Mino, T. Moving towards Transdisciplinarity: Framing Sustainability Challenges in Africa. Sustain. Dev. Afr. Concepts Methodol. Approaches 2019, 5, 1. [Google Scholar]
Work | Item | Unit | A Column | B Column | A Girder | B Girder | Total |
---|---|---|---|---|---|---|---|
Concrete work | Concrete | m3 | 6.444 | 6.745 | 20.957 | 21.238 | 30,457 |
Reinforcement work | HD10 | t | 0.302 | 0.333 | 0.171 | 0.156 | 729 |
HD13 | t | 0.104 | 0.175 | 0.314 | 0.238 | 609 | |
HD16 | t | 0.050 | 0.112 | - | - | 441 | |
HD 19 | t | - | - | - | 254 | ||
HD 22 | t | 1.212 | 1.301 | 0.971 | 1.117 | 2284 | |
HD 32 | t | - | - | 1.269 | 1.532 | 1110 | |
Steel joint | t | 0.461 | 0.461 | 0.922 | 0.922 | 1797 | |
Sub-total | t | 2.129 | 2.382 | 3.647 | 3.965 | 7070 | |
Form work | Steel form | t | 0.016 | 0.016 | 0.010 | 0.010 | 38 |
Item | Unit | Quantity | |
---|---|---|---|
Labor | Equipment operator | Day | 59 |
common labor | Day | 144 | |
Material | Diesel | L | 12,900 |
Equipment | Crane (550 ton) | Day | 430 |
Classification | Production | Yard-Stock and Erection |
---|---|---|
Material use | 37,940 | - |
Labor use | 243 | 120 |
Oil use | 987 | 23,785 |
Electricity use | 543 | 146 |
Lighting, and heating use | 287 | 65 |
Environmental conservation | 202 | 37 |
Total | 40,002 | 24,153 |
No. | Assumptions |
---|---|
1 | The cost and time satisfy the client’s requirements. |
2 | All PC components are produced, stored, and installed in situ. |
3 | The PC components production and yard-stock location is near the installation location. |
4 | As this site has a large floor area and not many floors, a mobile crane is used. |
5 | The production cycle for each PC component is consistently maintained at two days. |
6 | For material transportation routes and each individual transport line, both transport efficiency and unit cost can be applied. |
No. | Constraints |
---|---|
1 | During the estimation of yard-stock areas, unnecessary secondary transport must be minimized to reduce energy consumption from equipment operation. |
2 | The use of cranes and transport equipment must be limited to the minimum level required to prevent excessive energy waste. |
3 | Formworks must be reused at least 40–50 times as a principle. |
4 | The production and yard-stock processes of all columns and beams must be included, and the installation processes of all columns, beams, and slabs shall be incorporated. |
Category | Details | Units | Distribution Types | ||
---|---|---|---|---|---|
Fixed Variables | Required Construction Duration | 18 | month | - | |
Quantity | Column | 850 | ea | - | |
Beam | 1371 | ea | - | ||
Parameters | Planned Construction Duration | 8 | month | Normal Distribution | |
Number of Molds | Column | 32 | ea | Normal Distribution | |
Beam | 90 | ea | Normal Distribution | ||
Number of Cranes | 3 | ea | Normal Distribution | ||
Maximum Yard-Stock Area | 15,235 | m3 | Normal Distribution | ||
CO2 emission | 113,744 | T-CO2 | Normal Distribution |
Daily area | D + 17 | D + 34 | D + 51 | D + 68 | D + 85 | D + 102 | D + 119 | D + 134 |
Production area | 12.1 | 12.1 | 12.1 | 12.1 | 12.1 | 0.0 | 0.0 | 0.0 |
Yard-stock area | 2.8 | 5.7 | 8.5 | 11.3 | 13.9 | 8.2 | 4.1 | 0.0 |
Item | Unit | Value | |
---|---|---|---|
CO2 emission | T-CO2 | 64,355 | |
Construction time | month | 6.5 | |
Number of molds | Column | ea | 30 |
Beam | ea | 91 | |
Cranes | ea | 2 | |
Yard-stock area | m2 | 15,729 |
Variable Pair | Correlation (r) | p-Value | R2 |
---|---|---|---|
Cranes—CO2 Emission | 0.47 | 0.000076 | 0.22 |
Molds—CO2 Emission | 0.22 | 0.00051 | 0.05 |
Duration—CO2 Emission | 0.00 | 0.00054 | 0.00 |
CO2 Emission—Yard-stock Area | −0.05 | 0.00023 | 0.00 |
Item | Min | Mean | Max | Std. Dev. |
---|---|---|---|---|
CO2 Emission | 55,603 | 58,297 | 62,862 | 1421.12 |
Classification | This Study | Lim and Kim (2020) [36] | Kim et al. (2023) [76] | |||
---|---|---|---|---|---|---|
In Situ Production, Yard-Stock and Erection | CO2 Optimization | In Situ Production | In-Plant Production | Actual Erection | Simulation-Calculated Erection | |
Material use | 37,940 | 37,940 | 32,169 | 32,169 | - | - |
Labor use | 363 | 283 | - | - | 372 | 341 |
Oil use | 24,772 | 19,371 | 987 | 987 | 73,004 | 53,965 |
Electricity use | 689 | 538 | 543 | 543 | 427 | 307 |
Transport equipment use | - | - | - | 5397 | - | - |
Lighting, and heating use | 352 | 275 | - | - | 197 | 153 |
Environmental conservation | 239 | 186 | - | - | 110 | 83 |
Total | 64,355 | 58,597 | 33,699 | 39,095 | 74,110 | 54,850 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Park, J.; Kim, S.; Lim, J. Integrated Digital Twin and BIM Approach to Minimize Environmental Loads for In-Situ Production and Yard-Stock Management of Precast Concrete Components. Appl. Sci. 2025, 15, 9846. https://doi.org/10.3390/app15179846
Park J, Kim S, Lim J. Integrated Digital Twin and BIM Approach to Minimize Environmental Loads for In-Situ Production and Yard-Stock Management of Precast Concrete Components. Applied Sciences. 2025; 15(17):9846. https://doi.org/10.3390/app15179846
Chicago/Turabian StylePark, Junyoung, Sunkuk Kim, and Jeeyoung Lim. 2025. "Integrated Digital Twin and BIM Approach to Minimize Environmental Loads for In-Situ Production and Yard-Stock Management of Precast Concrete Components" Applied Sciences 15, no. 17: 9846. https://doi.org/10.3390/app15179846
APA StylePark, J., Kim, S., & Lim, J. (2025). Integrated Digital Twin and BIM Approach to Minimize Environmental Loads for In-Situ Production and Yard-Stock Management of Precast Concrete Components. Applied Sciences, 15(17), 9846. https://doi.org/10.3390/app15179846