Skip to main content

工业4.0

http://gengwg.blogspot.com/工业4.0(Industry 4.0)是一个德国政府提出的高科技战略计划[1],由德国联邦教育及研究部和联邦经济及科技部联合资助,投资预计达 2 亿欧元,用来提升制造业的电脑化、数字化、与智能化[2]。目标是创建具有适应性、资源效率、及人因工程学的智能工厂(Smart Factory),在商业流程及价值流程中集成客户以及商业伙伴[3][4]。其技术基础是智能集成感控系统(Cyber-Physical System, CPS)及物联网(Internet of Things, IoT)[5]。如果架构陆续成真,最终将能建构出一个有智能意识的工业世界。

有关工业4.0或第四波工业革命可以实现的时间,各方说法不一,德国电气电子及信息技术协会的会员中只有四分之一认为2020年前会有大规模的实施[6],而工业通信标准、安全性、及人员培训都是较大的问题。专家们相信工业4.0或第四次工业革命会在今后的10至20年实现。[来源请求]

目录  [隐藏]
1 叙述
2 类似计划
3 相关条目
4 参考资料
叙述[编辑]
“工业4.0”一词是指第四次工业革命,第一次工业革命是利用水力及蒸汽的力量作为动力源,第二次工业革命则使用电力为大量生产提供动力,第三次工业革命则是使用电子设备及信息技术(IT)来增进工业制造的自动化[7]。

工业4.0一词最早是在 2011 年的汉诺威工业博览会提出[8]。2012年10月由罗伯特·博世有限公司的 Siegfried Dais 及利奥波第那科学院的孔翰宁组成的工业4.0工作小组,向德国联邦政府提出了工业4.0的实施建议。2013年4月8日的汉诺威工业博览会中,工业4.0工作小组提出了最终报告[9]。

类似计划[编辑]
在美国一个称为“智能制造领导联盟”(Smart Manufacturing Leadership Coalition, SMLC)的组织,也发起倡议致力于制造业的未来。智能制造领导联盟是一个非营利性组织,由制造业公司、供应商、技术公司、制造商集团、大学、政府机构、及实验室所组成。联盟的目标是让这些制造业的利益相关者形成协同研发、实现、及推广的团体,可以发展出相关的方法、标准、平台、及共享的基础架构,促进智能化制造的推动与广泛采用。

通用电气(GE)也在进行一个称为工业互连网(Industrial Internet)的类似计划[10]。工业互连网是要将两次重大转型变革所带来的发展成果汇集在一起:工业革命所带来的众多机器、设备、及制造业大军,与数字革命带来的运算、信息、及通信系统。依照GE的观点,上述的成果结合将带来三大要素,展现出工业互连网的本质:智能机器、先进分析、及参与工作者。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...