SlideShare a Scribd company logo
1 of 50
Download to read offline
4TH Industrial revolution,
construction and block chain
BIM, IoT, AI
2018.9.9
Korea Institute of Civil engineering and building Technology
강태욱 공학박사
Ph.D Taewook, Kang
laputa99999@gmail.com
sites.google.com/site/bimprinciple
AI
GPU
Open
data
Open
source
Collective
Intelligence
TPU
Ph.D. KICT senior researcher
ISO/TC211 committee member. 11 books author
Industry 4.0
https://www.i-scoop.eu/industry-4-0/
KICT
Industry 4.0 – Construction perspective
AEC-CPS
CPS
Structural
health
monitoring
Track and
trace
Remote
diagnosis
Remote
services
Remote
control
Condition
monitoring
Systems
health
monitoring
BIM
as i-DB
IoT…
AI
Sensor device
ICBM
MRRobotics
Scan-Vision
Smart contract
based on Blockchain
AEC
Orderindustry
Non-
reusable
LaborDivision
Silo
Env-Dep
Field control
difficulty
Orderindutry
BIM
Prefabrication
Modularization.
LaborDivision
BEP
IPD
Lean Process
Env-Dep
AEC-IoT
Field Visualization
Big data analysis
Smart construction
Techniques and methods for
effectively implementing AEC services
through IoT Big Data Analysis
KICT
IoT-BIM connection
BIM
W1
D2
F3
R4
Geo-information
W1
= {LOD1, LOD2, LOD3, LOD4}
D2
= {LOD1, LOD2, LOD3, LOD4}
F3
= {LOD1, LOD2, LOD3, LOD4}
R4
= {LOD1, LOD2, LOD3, LOD4}
B2G LM
B2G EM
IoT
+External
Data Set
• In example, W1 = Wall#1, D2 = Door#2, F3 = Floor#3, R4 = Roof#4.
• External Data Set – External data set related to the specific use-cases such as the facility
management
E1
E2
E3
E4
B2G PDElement Mapping
LOD Mapping
Property Mapping
from External Data
Set using PD
ISO N19166 - B2GM Data Mapping Flow
Data
= {Maker,
Code, Serial
No, Date,
Manual Links,
Drawing
Links,
Historical
Record…}
Object =
Geometry + Data
1
2
3
KICT
Machine learning & Intelligent
KICT
AI
GPU
Open
data
Open
source
Collective
Intelligence
TPU
Machine learning & Intelligent
CNN
(convolution neural network)
Deep Learning
Feature – classification
Learning
KICT
AI Machine Learning (ML) for space scan
Oxford Robotics Institute, 2017, Vote3Deep: Fast Object Detection in
3D Point Clouds Using Efficient Convolutional Neural Networks, ICRA
Open data & policy
Machine Processable
Interface
RESTful API…
KICT
Blockchain-based smart contract
KICT
Blockchain-based smart contract
KICT
Albawaba business, 2017
BIM-COIN
DUBAI CITY
BIM principle, 2018.1, 블록체인과 BIM
- 스마트 계약을 위한 블록체인 기술
Blockchain-based smart contract
KICT
Blockchain & Transaction Hash (Wikipedia)
Merkle Trees
Blockchain-based smart contract
KICT
Bitcoin wiki
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
비트코인 구조
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
sykhaulage.com, ontract Mining
Bitcoin Tx Mine Cloud Mining
Blockchain-based smart contract
KICT
Sha256 hash bitcoin - Satoshi bitcoin, Neural
network bitcoin mining
Secure
Hash
Algorithm
Blockchain-based smart contract
KICT
Learningspot, 2017, The task of
Bitcoin miners
10 min
Blockchain-based smart contract
KICT
Daddy Maker, 2018, 비트코인 소스 코드
빌드, 사용 및 블록체인 코드 구조 분석
2000 TX
TX TREE
KEY CONTRACT
Merkle Trees
Blockchain-based smart contract
KICT
https://www.coindesk.com/ethereum-price/
Blockchain-based smart contract
KICT
MyEtherWallet, 2018, What is Gas
Blockchain-based smart contract
KICT
Distributing Business Processes using Finite State
Machines in the Blockchain
Blockchain-based smart contract
KICT web3j.readthedocs.io
Blockchain-based smart contract
KICT
Pragma solidity ^0.4.0
Contract Lottery {
uint count = 0;
uint prize_money = 0;
function () payable public {
count++;
prize_money += msg.value;
if(count % 7 == 0) {
msg.sender.transfer(prize_money);
prize_money = 0;
}
}
}
Ethereum wiki
Blockchain-based smart contract
KICTFabio Jose Moraes, 2018, Building a Smart Contract to Sell Goods, DZone
Contract
+
Token
Blockchain-based smart contract
KICTBlockchainHub
Initial Coin Offering (ICO) or token sale refers to a
type of crowdfunding campaign conducted on the
blockchain.
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
pragma solidity ^0.4.4;
contract Token {
function totalSupply() constant returns (uint256 supply) {}
function balanceOf(address _owner) constant returns
(uint256 balance) {}
function transfer(address _to, uint256 _value) returns (bool
success) {}
function transferFrom(address _from, address _to, uint256
_value) returns (bool success) {}
function approve(address _spender, uint256 _value) returns
(bool success) {}
function allowance(address _owner, address _spender)
constant returns (uint256 remaining) {}
event Transfer(address indexed _from, address indexed _to,
uint256 _value);
event Approval(address indexed _owner, address indexed
_spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool
success) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to,
uint256 _value) returns (bool success) {
if (balances[_from] >= _value &&
allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function balanceOf(address _owner) constant returns
(uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value)
returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender)
constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256))
allowed;
uint256 public totalSupply;
Coding Your Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Create Wallet by using Mist, MetaMask(Chrome) etc
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Remix IDE to compile your Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Verify and publish the Token
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
Test
Blockchain-based smart contract
KICT
Sandeep Panda, 2017. 12, How to build your own
Ethereum based ERC20 Token and launch an ICO in
next 20 minutes, hashnode.com
For ICO, develop webpage by using web3.js
Use cases
Home
Building
Infra
City
Energy
FM/OM
Automation
Safety
Smart
Construction
KICT
Use cases
Intel Smart Tiny house based on IoT platform (intel)
KICT
Use cases
Watson IoT is connecting the workplace of the future (1:36, IBM)
KICT
Use cases
Watson IoT is connecting the workplace of the future, IBM
KICT
Use cases
Prototyping the boards behind Pointelist and Concept (KieranTimberlake)
Survey of the green roof at the Yale Sculpture Building and
Gallery, designed by Kieran Timberlake
Yale University Sculpture Building and School of
Art Gallery, 2011
KICT
Use cases
Leadenhall building (The Leadenhall Building, 2011)
80% off-site prefab
KICT
Use cases
Wipro's cloud-based IoT platform (JCB India)
KICT
Use cases
Smart construction (2:00, 2:20, KOMATSU)
KICT
Use cases
Smart construction (KOMATSU)
KICT
Use cases
KICT
DFAB House(ETH Zurich University), MESH MOULD: AN ON SITE, ROBOTICALLY FABRICATED, FUNCTIONAL FORMWORK
Use cases
Occupational Health and Safety Administration(US), HCS
wearable device (HCS)
KICT
Use cases
Inside Human Condition Safety Network Operations
Center (NOC). Courtesy Human Condition Safety
KICT
Conclusion
https://www.i-
scoop.eu/industry-4-0/
IoT + BIM
Big data
AI / ML
VR/AR
Robotics
Smart contract
based on Blockchain
Conclusion - Change & culture
FOSS4G
BPMN Books and Templates
Wikimedia Hackathon 2013
Tools
Open & Share
Process
KICT
Attitude
Tools
1. 강태욱, 임지순 역, 2015.2, 스마트 홈 오토메이션, 씨아이알
2. 강태욱, 현소영 역, 2014.12, 스마트 빌딩 시스템, 씨아이알
3. 강태욱, 김호중, 2014.1, BIM기반 건축 협업 디자인, SpaceTime
4. 강태욱, 2011.6, BIM의 원리, SpaceTime
5. Alan Safe, 2016.2.12, How the Internet of Things is Impacting the Construction Industry, For Construction Pros.com
6. Rachel Burger, 2015.7.28, Three Ways the Internet of Things Can Benefit Your Construction Project, Construction
Management
7. Jacqi Levy, 2016.4.28, 4 BIG ways the IoT is impacting design and construction, Internet of Things blog, IBM
8. whitelight group, 2014.8.18, How the Internet of Things is transforming the construction industry
9. Rachel Burger, 2016.8.5, How "The Internet of Things" is Affecting the Construction Industry, the balance.com
10. AIG, Human Condition Safety: Using Sensors to Improve Worker Safety
11. Niina Gromov, 2015.11.23, Offering Value through Internet of Things Case: Construction Companies in Finland, School of
Science, Aalto University
12. Wipro Digital, 2016.4.1, CASE STUDY: INCREASING CUSTOMER VALUE THROUGH IOT FOR JCB INDIA
13. Monitor Deloitte, 2015.7, Every. Thing. Connected.
14. Laura Black, 2015.8.12, An Inside Look at Autodesk’s Project Aquila, ConstructionTech
15. Jeff Walsh, 2015.10.1, Human Condition Aims to Transform Construction-Site Safety With Wearables, Line shape space.com
16. Insights, IoT Logistics Are Transforming the Trucking Industry
17. Chris Topham, 2015.9.10, Case Study: Northumbria Specialist Care Hospital Pushes KNX into the IoT, Abtec Building
Technologies
18. Mike Chino, 2015.11.6, Intel’s Smart Tiny House packs futuristic technology into 264 square feet, inhabitat
19. Wanda Lau, 2016.5.9, KieranTimberlake Offers a New Tool for Architects Wanting an In on IoT
20. CADDIGEST, 2016.7.7, IBM Watson IoT Platform to Add Intelligence to Buildings Worldwide
Reference
KICT

More Related Content

What's hot

IoT–smart contracts in data trusted exchange supplied chain based on block ch...
IoT–smart contracts in data trusted exchange supplied chain based on block ch...IoT–smart contracts in data trusted exchange supplied chain based on block ch...
IoT–smart contracts in data trusted exchange supplied chain based on block ch...IJECEIAES
 
AI and Blockchain Fusion
AI and Blockchain FusionAI and Blockchain Fusion
AI and Blockchain FusionIvan Kukanov
 
Smart City and Digital Twin
Smart City and Digital TwinSmart City and Digital Twin
Smart City and Digital TwinSANGHEE SHIN
 
AI Blockchain IoT Convergence System Technology & Business Development
AI Blockchain IoT Convergence System Technology & Business DevelopmentAI Blockchain IoT Convergence System Technology & Business Development
AI Blockchain IoT Convergence System Technology & Business DevelopmentAlex G. Lee, Ph.D. Esq. CLP
 
Creating Smart Buildings through Digital Twins
Creating Smart Buildings through Digital TwinsCreating Smart Buildings through Digital Twins
Creating Smart Buildings through Digital TwinsMemoori
 
Integration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealityIntegration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealitySANGHEE SHIN
 
Digital Twin. As enabler of predictive models. Marco Poggi, Bridgestone
Digital Twin. As enabler of predictive models. Marco Poggi, BridgestoneDigital Twin. As enabler of predictive models. Marco Poggi, Bridgestone
Digital Twin. As enabler of predictive models. Marco Poggi, BridgestoneData Driven Innovation
 
Beyond Today’s Applications
Beyond Today’s ApplicationsBeyond Today’s Applications
Beyond Today’s ApplicationsUS-Ignite
 
What I've learned from implementing GeoBIM in real cases
What I've learned from implementing GeoBIM in real casesWhat I've learned from implementing GeoBIM in real cases
What I've learned from implementing GeoBIM in real casesSANGHEE SHIN
 
Ubiquity e Autonomy : the autonomous car and the outcome economy
Ubiquity e Autonomy : the autonomous car and the outcome economyUbiquity e Autonomy : the autonomous car and the outcome economy
Ubiquity e Autonomy : the autonomous car and the outcome economyRoberto Siagri
 
Next IIoT wave: embedded digital twin for manufacturing
Next IIoT wave: embedded digital twin for manufacturing Next IIoT wave: embedded digital twin for manufacturing
Next IIoT wave: embedded digital twin for manufacturing IRS srl
 
Cloud, Big Data, IoT, ML - together to build a real world use case!
Cloud, Big Data, IoT, ML - together to build a real world use case!Cloud, Big Data, IoT, ML - together to build a real world use case!
Cloud, Big Data, IoT, ML - together to build a real world use case!Krishna-Kumar
 
Karim Baina Society 5.0/Industry5.0 15072021
Karim Baina Society 5.0/Industry5.0 15072021Karim Baina Society 5.0/Industry5.0 15072021
Karim Baina Society 5.0/Industry5.0 15072021Karim Baïna
 
l'IoT è alla base della servitizzazione
l'IoT è alla base della servitizzazionel'IoT è alla base della servitizzazione
l'IoT è alla base della servitizzazioneRoberto Siagri
 
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - Empreendedor
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - EmpreendedorSWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - Empreendedor
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - EmpreendedorMarcia C. Santos
 

What's hot (20)

IoT–smart contracts in data trusted exchange supplied chain based on block ch...
IoT–smart contracts in data trusted exchange supplied chain based on block ch...IoT–smart contracts in data trusted exchange supplied chain based on block ch...
IoT–smart contracts in data trusted exchange supplied chain based on block ch...
 
AI and Blockchain Fusion
AI and Blockchain FusionAI and Blockchain Fusion
AI and Blockchain Fusion
 
Smart City and Digital Twin
Smart City and Digital TwinSmart City and Digital Twin
Smart City and Digital Twin
 
AI Blockchain IoT Convergence System Technology & Business Development
AI Blockchain IoT Convergence System Technology & Business DevelopmentAI Blockchain IoT Convergence System Technology & Business Development
AI Blockchain IoT Convergence System Technology & Business Development
 
Creating Smart Buildings through Digital Twins
Creating Smart Buildings through Digital TwinsCreating Smart Buildings through Digital Twins
Creating Smart Buildings through Digital Twins
 
Integration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to RealityIntegration of BIM and GIS: From Ideal to Reality
Integration of BIM and GIS: From Ideal to Reality
 
Digital Twin. As enabler of predictive models. Marco Poggi, Bridgestone
Digital Twin. As enabler of predictive models. Marco Poggi, BridgestoneDigital Twin. As enabler of predictive models. Marco Poggi, Bridgestone
Digital Twin. As enabler of predictive models. Marco Poggi, Bridgestone
 
Beyond Today’s Applications
Beyond Today’s ApplicationsBeyond Today’s Applications
Beyond Today’s Applications
 
Digital Twin Innovation Insights from Patents
Digital Twin Innovation Insights from PatentsDigital Twin Innovation Insights from Patents
Digital Twin Innovation Insights from Patents
 
Irish Building Magazine[1]
Irish Building Magazine[1]Irish Building Magazine[1]
Irish Building Magazine[1]
 
NVIDIA GTC21 AI Conference Highlights
NVIDIA GTC21 AI Conference Highlights NVIDIA GTC21 AI Conference Highlights
NVIDIA GTC21 AI Conference Highlights
 
What I've learned from implementing GeoBIM in real cases
What I've learned from implementing GeoBIM in real casesWhat I've learned from implementing GeoBIM in real cases
What I've learned from implementing GeoBIM in real cases
 
Open factory 2019
Open factory 2019Open factory 2019
Open factory 2019
 
Ubiquity e Autonomy : the autonomous car and the outcome economy
Ubiquity e Autonomy : the autonomous car and the outcome economyUbiquity e Autonomy : the autonomous car and the outcome economy
Ubiquity e Autonomy : the autonomous car and the outcome economy
 
Next IIoT wave: embedded digital twin for manufacturing
Next IIoT wave: embedded digital twin for manufacturing Next IIoT wave: embedded digital twin for manufacturing
Next IIoT wave: embedded digital twin for manufacturing
 
Cloud, Big Data, IoT, ML - together to build a real world use case!
Cloud, Big Data, IoT, ML - together to build a real world use case!Cloud, Big Data, IoT, ML - together to build a real world use case!
Cloud, Big Data, IoT, ML - together to build a real world use case!
 
Karim Baina Society 5.0/Industry5.0 15072021
Karim Baina Society 5.0/Industry5.0 15072021Karim Baina Society 5.0/Industry5.0 15072021
Karim Baina Society 5.0/Industry5.0 15072021
 
l'IoT è alla base della servitizzazione
l'IoT è alla base della servitizzazionel'IoT è alla base della servitizzazione
l'IoT è alla base della servitizzazione
 
Blockchain with iot
Blockchain with iotBlockchain with iot
Blockchain with iot
 
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - Empreendedor
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - EmpreendedorSWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - Empreendedor
SWBR2014 - Disrupção Digital no Mundo Físico - Flávio Maeda - Empreendedor
 

Similar to 4차산업혁명과 건설, 그리고 블록체인

apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays
 
Technical perspectives of an ICO on the Ethereum platform
Technical perspectives of an ICO on the Ethereum platformTechnical perspectives of an ICO on the Ethereum platform
Technical perspectives of an ICO on the Ethereum platformMobileInception
 
Digital Economy Forum Seoul 2018-Blockchain and Platform Revolution
Digital Economy Forum Seoul 2018-Blockchain and Platform RevolutionDigital Economy Forum Seoul 2018-Blockchain and Platform Revolution
Digital Economy Forum Seoul 2018-Blockchain and Platform RevolutionICON Foundation
 
Space based BIM technology
Space based BIM technologySpace based BIM technology
Space based BIM technologySeungkyu Yang
 
Steve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer ResumeSteve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer Resume?? Stephen Bennett ??
 
Trusto Artificial Intelligence Blockchain platform 2018
Trusto Artificial Intelligence Blockchain  platform 2018 Trusto Artificial Intelligence Blockchain  platform 2018
Trusto Artificial Intelligence Blockchain platform 2018 Aurel Ispas
 
Blockchain and smart contracts: infrastructure and platforms
Blockchain and smart contracts: infrastructure and platformsBlockchain and smart contracts: infrastructure and platforms
Blockchain and smart contracts: infrastructure and platformsClaudio Di Ciccio
 
Asset tokenization Real Estate Reinvented
Asset tokenization Real Estate ReinventedAsset tokenization Real Estate Reinvented
Asset tokenization Real Estate ReinventedJongseung Kim
 
Introduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformIntroduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformSANGHEE SHIN
 
Eclipsecon Europe: Blockchain, Ethereum and Business Applications
Eclipsecon Europe: Blockchain, Ethereum and Business ApplicationsEclipsecon Europe: Blockchain, Ethereum and Business Applications
Eclipsecon Europe: Blockchain, Ethereum and Business ApplicationsMatthias Zimmermann
 
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...SANGHEE SHIN
 
FIWARE Global Summit - FIWARE Overview
FIWARE Global Summit - FIWARE OverviewFIWARE Global Summit - FIWARE Overview
FIWARE Global Summit - FIWARE OverviewFIWARE
 
Silicon Valley Code Camp Blockchain Oct 2017
Silicon Valley Code Camp Blockchain Oct 2017Silicon Valley Code Camp Blockchain Oct 2017
Silicon Valley Code Camp Blockchain Oct 2017Nelson Petracek
 
Permissioned and Permissionless Blockchain A game Changer
 Permissioned and Permissionless Blockchain   A game Changer Permissioned and Permissionless Blockchain   A game Changer
Permissioned and Permissionless Blockchain A game ChangerJaskaranSingh471091
 
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEALéo Lemordant
 
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICES
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICESA LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICES
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICESIRJET Journal
 
Nov 2 security for blockchain and analytics ulf mattsson 2020 nov 2b
Nov 2 security for blockchain and analytics   ulf mattsson 2020 nov 2bNov 2 security for blockchain and analytics   ulf mattsson 2020 nov 2b
Nov 2 security for blockchain and analytics ulf mattsson 2020 nov 2bUlf Mattsson
 

Similar to 4차산업혁명과 건설, 그리고 블록체인 (20)

Ethereum Smart Contracts 101 with Cryptizens.io
Ethereum Smart Contracts 101 with Cryptizens.ioEthereum Smart Contracts 101 with Cryptizens.io
Ethereum Smart Contracts 101 with Cryptizens.io
 
apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...apidays LIVE Australia - From micro to macro-coordination through domain-cent...
apidays LIVE Australia - From micro to macro-coordination through domain-cent...
 
Technical perspectives of an ICO on the Ethereum platform
Technical perspectives of an ICO on the Ethereum platformTechnical perspectives of an ICO on the Ethereum platform
Technical perspectives of an ICO on the Ethereum platform
 
IoT and Embedded OS Lecture - Cristian Toma and George Iosif
IoT and Embedded OS Lecture - Cristian Toma and George IosifIoT and Embedded OS Lecture - Cristian Toma and George Iosif
IoT and Embedded OS Lecture - Cristian Toma and George Iosif
 
Digital Economy Forum Seoul 2018-Blockchain and Platform Revolution
Digital Economy Forum Seoul 2018-Blockchain and Platform RevolutionDigital Economy Forum Seoul 2018-Blockchain and Platform Revolution
Digital Economy Forum Seoul 2018-Blockchain and Platform Revolution
 
Blockchain
BlockchainBlockchain
Blockchain
 
Space based BIM technology
Space based BIM technologySpace based BIM technology
Space based BIM technology
 
Steve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer ResumeSteve Bennett .Net Architect/Developer Resume
Steve Bennett .Net Architect/Developer Resume
 
Trusto Artificial Intelligence Blockchain platform 2018
Trusto Artificial Intelligence Blockchain  platform 2018 Trusto Artificial Intelligence Blockchain  platform 2018
Trusto Artificial Intelligence Blockchain platform 2018
 
Blockchain and smart contracts: infrastructure and platforms
Blockchain and smart contracts: infrastructure and platformsBlockchain and smart contracts: infrastructure and platforms
Blockchain and smart contracts: infrastructure and platforms
 
Asset tokenization Real Estate Reinvented
Asset tokenization Real Estate ReinventedAsset tokenization Real Estate Reinvented
Asset tokenization Real Estate Reinvented
 
Introduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin PlatformIntroduction to mago3D, an Open Source Based Digital Twin Platform
Introduction to mago3D, an Open Source Based Digital Twin Platform
 
Eclipsecon Europe: Blockchain, Ethereum and Business Applications
Eclipsecon Europe: Blockchain, Ethereum and Business ApplicationsEclipsecon Europe: Blockchain, Ethereum and Business Applications
Eclipsecon Europe: Blockchain, Ethereum and Business Applications
 
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...What we've done so far with mago3D, an open source based 'Digital Twin' platf...
What we've done so far with mago3D, an open source based 'Digital Twin' platf...
 
FIWARE Global Summit - FIWARE Overview
FIWARE Global Summit - FIWARE OverviewFIWARE Global Summit - FIWARE Overview
FIWARE Global Summit - FIWARE Overview
 
Silicon Valley Code Camp Blockchain Oct 2017
Silicon Valley Code Camp Blockchain Oct 2017Silicon Valley Code Camp Blockchain Oct 2017
Silicon Valley Code Camp Blockchain Oct 2017
 
Permissioned and Permissionless Blockchain A game Changer
 Permissioned and Permissionless Blockchain   A game Changer Permissioned and Permissionless Blockchain   A game Changer
Permissioned and Permissionless Blockchain A game Changer
 
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA
[Meetup 9] Nuit de la Blockchain #2, François Le Fevre du CEA
 
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICES
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICESA LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICES
A LIGHTWEIGHT PAYMENT VERIFICATION USING BLOCKCHAIN ALGORITHM ON IoT DEVICES
 
Nov 2 security for blockchain and analytics ulf mattsson 2020 nov 2b
Nov 2 security for blockchain and analytics   ulf mattsson 2020 nov 2bNov 2 security for blockchain and analytics   ulf mattsson 2020 nov 2b
Nov 2 security for blockchain and analytics ulf mattsson 2020 nov 2b
 

More from Tae wook kang

3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약Tae wook kang
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdfTae wook kang
 
Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Tae wook kang
 
BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)Tae wook kang
 
ISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingTae wook kang
 
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발Tae wook kang
 
오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발Tae wook kang
 
Coding, maker and SDP
Coding, maker and SDPCoding, maker and SDP
Coding, maker and SDPTae wook kang
 
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingTae wook kang
 
Case Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelCase Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelTae wook kang
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 Tae wook kang
 
Smart BIM for Facility Management
Smart BIM for Facility ManagementSmart BIM for Facility Management
Smart BIM for Facility ManagementTae wook kang
 
메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것Tae wook kang
 
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용Tae wook kang
 
스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계Tae wook kang
 
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준Tae wook kang
 
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계Tae wook kang
 
Arduino 특강 강태욱
Arduino 특강   강태욱Arduino 특강   강태욱
Arduino 특강 강태욱Tae wook kang
 
도시 설계와 GIS 기술의 관계
도시 설계와 GIS 기술의 관계도시 설계와 GIS 기술의 관계
도시 설계와 GIS 기술의 관계Tae wook kang
 
스마트 시티 동향과 기술
스마트 시티 동향과 기술스마트 시티 동향과 기술
스마트 시티 동향과 기술Tae wook kang
 

More from Tae wook kang (20)

3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약3D 모델러 ADDIN 개발과정 요약
3D 모델러 ADDIN 개발과정 요약
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
 
Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화Python과 node.js기반 데이터 분석 및 가시화
Python과 node.js기반 데이터 분석 및 가시화
 
BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)BIM 표준과 구현 (standard and development)
BIM 표준과 구현 (standard and development)
 
ISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mappingISO 19166 BIM-GIS conceptual mapping
ISO 19166 BIM-GIS conceptual mapping
 
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
SBF(Scan-BIM-Field) 기반 스마트 시설물 관리 기술 개발
 
오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발오픈소스 ROS기반 건설 로보틱스 기술 개발
오픈소스 ROS기반 건설 로보틱스 기술 개발
 
Coding, maker and SDP
Coding, maker and SDPCoding, maker and SDP
Coding, maker and SDP
 
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meetingISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
ISO 19166 BIM to GIS conceptual mapping China (WUHAN) meeting
 
Case Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard modelCase Study about BIM on GIS platform development project with the standard model
Case Study about BIM on GIS platform development project with the standard model
 
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기 도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
도시 인프라 공간정보 데이터 커넥션-통합 기술 표준화를 위한 ISO TC211 19166 개발 이야기
 
Smart BIM for Facility Management
Smart BIM for Facility ManagementSmart BIM for Facility Management
Smart BIM for Facility Management
 
메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것메이커 시티와 메이커 운동 참여를 통해 얻은 것
메이커 시티와 메이커 운동 참여를 통해 얻은 것
 
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
최신 3차원 이미지 스캔 역설계 기술 전망 및 건설 활용
 
스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계스마트시티 프레임웍과 기술분류체계
스마트시티 프레임웍과 기술분류체계
 
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
스마트시티 공간정보 서비스 지원을 위한 BIM-GIS 객체 맵핑 표준
 
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
연구원 체험교실 프로그램 - 스케치업으로 만드는 우리 집 설계
 
Arduino 특강 강태욱
Arduino 특강   강태욱Arduino 특강   강태욱
Arduino 특강 강태욱
 
도시 설계와 GIS 기술의 관계
도시 설계와 GIS 기술의 관계도시 설계와 GIS 기술의 관계
도시 설계와 GIS 기술의 관계
 
스마트 시티 동향과 기술
스마트 시티 동향과 기술스마트 시티 동향과 기술
스마트 시티 동향과 기술
 

Recently uploaded

Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...Pooja Nehwal
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...Suhani Kapoor
 
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...shivangimorya083
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...Suhani Kapoor
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 

Recently uploaded (20)

꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
 
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
 
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
VIP High Class Call Girls Jamshedpur Anushka 8250192130 Independent Escort Se...
 
Russian Call Girls Dwarka Sector 15 💓 Delhi 9999965857 @Sabina Modi VVIP MODE...
Russian Call Girls Dwarka Sector 15 💓 Delhi 9999965857 @Sabina Modi VVIP MODE...Russian Call Girls Dwarka Sector 15 💓 Delhi 9999965857 @Sabina Modi VVIP MODE...
Russian Call Girls Dwarka Sector 15 💓 Delhi 9999965857 @Sabina Modi VVIP MODE...
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 

4차산업혁명과 건설, 그리고 블록체인

  • 1. 4TH Industrial revolution, construction and block chain BIM, IoT, AI 2018.9.9 Korea Institute of Civil engineering and building Technology 강태욱 공학박사 Ph.D Taewook, Kang laputa99999@gmail.com sites.google.com/site/bimprinciple AI GPU Open data Open source Collective Intelligence TPU
  • 2. Ph.D. KICT senior researcher ISO/TC211 committee member. 11 books author
  • 4. Industry 4.0 – Construction perspective AEC-CPS CPS Structural health monitoring Track and trace Remote diagnosis Remote services Remote control Condition monitoring Systems health monitoring BIM as i-DB IoT… AI Sensor device ICBM MRRobotics Scan-Vision Smart contract based on Blockchain
  • 5. AEC Orderindustry Non- reusable LaborDivision Silo Env-Dep Field control difficulty Orderindutry BIM Prefabrication Modularization. LaborDivision BEP IPD Lean Process Env-Dep AEC-IoT Field Visualization Big data analysis Smart construction Techniques and methods for effectively implementing AEC services through IoT Big Data Analysis KICT
  • 6. IoT-BIM connection BIM W1 D2 F3 R4 Geo-information W1 = {LOD1, LOD2, LOD3, LOD4} D2 = {LOD1, LOD2, LOD3, LOD4} F3 = {LOD1, LOD2, LOD3, LOD4} R4 = {LOD1, LOD2, LOD3, LOD4} B2G LM B2G EM IoT +External Data Set • In example, W1 = Wall#1, D2 = Door#2, F3 = Floor#3, R4 = Roof#4. • External Data Set – External data set related to the specific use-cases such as the facility management E1 E2 E3 E4 B2G PDElement Mapping LOD Mapping Property Mapping from External Data Set using PD ISO N19166 - B2GM Data Mapping Flow Data = {Maker, Code, Serial No, Date, Manual Links, Drawing Links, Historical Record…} Object = Geometry + Data 1 2 3 KICT
  • 7. Machine learning & Intelligent KICT AI GPU Open data Open source Collective Intelligence TPU
  • 8. Machine learning & Intelligent CNN (convolution neural network) Deep Learning Feature – classification Learning KICT
  • 9. AI Machine Learning (ML) for space scan Oxford Robotics Institute, 2017, Vote3Deep: Fast Object Detection in 3D Point Clouds Using Efficient Convolutional Neural Networks, ICRA
  • 10. Open data & policy Machine Processable Interface RESTful API… KICT
  • 12. Blockchain-based smart contract KICT Albawaba business, 2017 BIM-COIN DUBAI CITY BIM principle, 2018.1, 블록체인과 BIM - 스마트 계약을 위한 블록체인 기술
  • 13. Blockchain-based smart contract KICT Blockchain & Transaction Hash (Wikipedia) Merkle Trees
  • 15. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 16. Blockchain-based smart contract KICT 비트코인 구조 sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 17. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 18. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 19. Blockchain-based smart contract KICT sykhaulage.com, ontract Mining Bitcoin Tx Mine Cloud Mining
  • 20. Blockchain-based smart contract KICT Sha256 hash bitcoin - Satoshi bitcoin, Neural network bitcoin mining Secure Hash Algorithm
  • 21. Blockchain-based smart contract KICT Learningspot, 2017, The task of Bitcoin miners 10 min
  • 22. Blockchain-based smart contract KICT Daddy Maker, 2018, 비트코인 소스 코드 빌드, 사용 및 블록체인 코드 구조 분석 2000 TX TX TREE KEY CONTRACT Merkle Trees
  • 25. Blockchain-based smart contract KICT Distributing Business Processes using Finite State Machines in the Blockchain
  • 26. Blockchain-based smart contract KICT web3j.readthedocs.io
  • 27. Blockchain-based smart contract KICT Pragma solidity ^0.4.0 Contract Lottery { uint count = 0; uint prize_money = 0; function () payable public { count++; prize_money += msg.value; if(count % 7 == 0) { msg.sender.transfer(prize_money); prize_money = 0; } } } Ethereum wiki
  • 28. Blockchain-based smart contract KICTFabio Jose Moraes, 2018, Building a Smart Contract to Sell Goods, DZone Contract + Token
  • 29. Blockchain-based smart contract KICTBlockchainHub Initial Coin Offering (ICO) or token sale refers to a type of crowdfunding campaign conducted on the blockchain.
  • 30. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com pragma solidity ^0.4.4; contract Token { function totalSupply() constant returns (uint256 supply) {} function balanceOf(address _owner) constant returns (uint256 balance) {} function transfer(address _to, uint256 _value) returns (bool success) {} function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {} function approve(address _spender, uint256 _value) returns (bool success) {} function allowance(address _owner, address _spender) constant returns (uint256 remaining) {} event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) returns (bool success) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; Coding Your Token
  • 31. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Create Wallet by using Mist, MetaMask(Chrome) etc
  • 32. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Remix IDE to compile your Token
  • 33. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Verify and publish the Token
  • 34. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com Test
  • 35. Blockchain-based smart contract KICT Sandeep Panda, 2017. 12, How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes, hashnode.com For ICO, develop webpage by using web3.js
  • 37. Use cases Intel Smart Tiny house based on IoT platform (intel) KICT
  • 38. Use cases Watson IoT is connecting the workplace of the future (1:36, IBM) KICT
  • 39. Use cases Watson IoT is connecting the workplace of the future, IBM KICT
  • 40. Use cases Prototyping the boards behind Pointelist and Concept (KieranTimberlake) Survey of the green roof at the Yale Sculpture Building and Gallery, designed by Kieran Timberlake Yale University Sculpture Building and School of Art Gallery, 2011 KICT
  • 41. Use cases Leadenhall building (The Leadenhall Building, 2011) 80% off-site prefab KICT
  • 42. Use cases Wipro's cloud-based IoT platform (JCB India) KICT
  • 43. Use cases Smart construction (2:00, 2:20, KOMATSU) KICT
  • 45. Use cases KICT DFAB House(ETH Zurich University), MESH MOULD: AN ON SITE, ROBOTICALLY FABRICATED, FUNCTIONAL FORMWORK
  • 46. Use cases Occupational Health and Safety Administration(US), HCS wearable device (HCS) KICT
  • 47. Use cases Inside Human Condition Safety Network Operations Center (NOC). Courtesy Human Condition Safety KICT
  • 48. Conclusion https://www.i- scoop.eu/industry-4-0/ IoT + BIM Big data AI / ML VR/AR Robotics Smart contract based on Blockchain
  • 49. Conclusion - Change & culture FOSS4G BPMN Books and Templates Wikimedia Hackathon 2013 Tools Open & Share Process KICT Attitude Tools
  • 50. 1. 강태욱, 임지순 역, 2015.2, 스마트 홈 오토메이션, 씨아이알 2. 강태욱, 현소영 역, 2014.12, 스마트 빌딩 시스템, 씨아이알 3. 강태욱, 김호중, 2014.1, BIM기반 건축 협업 디자인, SpaceTime 4. 강태욱, 2011.6, BIM의 원리, SpaceTime 5. Alan Safe, 2016.2.12, How the Internet of Things is Impacting the Construction Industry, For Construction Pros.com 6. Rachel Burger, 2015.7.28, Three Ways the Internet of Things Can Benefit Your Construction Project, Construction Management 7. Jacqi Levy, 2016.4.28, 4 BIG ways the IoT is impacting design and construction, Internet of Things blog, IBM 8. whitelight group, 2014.8.18, How the Internet of Things is transforming the construction industry 9. Rachel Burger, 2016.8.5, How "The Internet of Things" is Affecting the Construction Industry, the balance.com 10. AIG, Human Condition Safety: Using Sensors to Improve Worker Safety 11. Niina Gromov, 2015.11.23, Offering Value through Internet of Things Case: Construction Companies in Finland, School of Science, Aalto University 12. Wipro Digital, 2016.4.1, CASE STUDY: INCREASING CUSTOMER VALUE THROUGH IOT FOR JCB INDIA 13. Monitor Deloitte, 2015.7, Every. Thing. Connected. 14. Laura Black, 2015.8.12, An Inside Look at Autodesk’s Project Aquila, ConstructionTech 15. Jeff Walsh, 2015.10.1, Human Condition Aims to Transform Construction-Site Safety With Wearables, Line shape space.com 16. Insights, IoT Logistics Are Transforming the Trucking Industry 17. Chris Topham, 2015.9.10, Case Study: Northumbria Specialist Care Hospital Pushes KNX into the IoT, Abtec Building Technologies 18. Mike Chino, 2015.11.6, Intel’s Smart Tiny House packs futuristic technology into 264 square feet, inhabitat 19. Wanda Lau, 2016.5.9, KieranTimberlake Offers a New Tool for Architects Wanting an In on IoT 20. CADDIGEST, 2016.7.7, IBM Watson IoT Platform to Add Intelligence to Buildings Worldwide Reference KICT