虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

FANUC-O<b>I-ma</b>

  • 《电力工程电缆设计规范》

    电力工程电缆设计规范 GB 50217-2007 3 电缆型式与截面选择 3.1 电缆导体材质  3.2 电力电缆芯数  3.3 电缆绝缘水平  3.4 电缆绝缘类型  3.5 电缆护层类型  3.6 控制电缆及其金属屏蔽  3.7 电力电缆导体截面  4 电缆附件的选择与配置 4.1 一般规定  4.2 自容式充油电缆的供油系统  5 电缆敷设 5.1 一般规定  5.2敷设方式选择  5.3地下直埋敷设 5.4保护管敷设 5.5电缆构筑物敷设 5.6其他公用设施中敷设 5.7水下敷设 6电缆的支持与固定 6.1 一般规定  6.2 电缆支架和桥架  7 电缆防火与阻止延燃 附录A 常用电力电缆导体的最高允许温度  附录B 10kV及以下电力电缆经济电流截面选用方法  附录C 10kV及以下常用电力电缆允许100%持续载流量  附录D 敷设条件不同时电缆允许持续载流量的校正系数  附录E 按短路热稳定条件计算电缆导体允许最小截面的方法

    标签: 电力工程 电缆 设计规范

    上传时间: 2016-05-31

    上传用户:fffvvv

  • SpringMVC设计

       springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认: l   <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是说:上面这个定义和不定义都是一样的。 不定义: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> 直接使用:hello.do来访问。 <!-- 简单的url映射处理器 --> l   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">                    <property name="mappings">                             <props>          那么上面的这个映射配置:表示多个*.do文件可以访问多个Controller或者一个Controller。          前提是:都必须依赖:          <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean>          <!-- /WEB-INF/jsp/index.jsp -->          <bean class="org.springframework.web.servl                                      <prop key="/hello1.do">testController</prop>                                      <prop key="/a.do">testController</prop>                             </props>                    </property> </bean> et.view.InternalResourceViewResolver">                    <property name="prefix" value="/WEB-INF/jsp/"></property>                    <property name="suffix" value=".jsp"></property>          </bean>

    标签: SpringMVC

    上传时间: 2016-06-03

    上传用户:hthunder

  • 101个面试难题及结构化面试题库

    HR工具书   101个面试难题及 结构化面试题库

    标签: 101 面试题

    上传时间: 2016-06-03

    上传用户:慢调写手

  • OFDM抗多径机理分析与系统仿真

    抗多径衰落是正交频分复用(OFDM)系统的显著特点之一。具体分析了 OFDM 抗多径的机理,说明了两种不同情况下多径对信号频谱的影响,并提出了相应的减轻多径影响的方法。通过仿真分析验证了HiperLAN Type2 标准规定的 OFDM 系统的抗多径性能,并提出了一些改善系统性能的方法。  关键词:正交频分复用;多径信道;循环前缀;信道

    标签: OFDM 多径 机理分析 系统仿真

    上传时间: 2016-06-05

    上传用户:mengmeng

  • 离散实验 一个包的传递 用warshall

     实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以

  • 函数波形发生器设计

    设计任务           设计方波——三角波——正弦波函数波形发生器的原理图 2.3课程设计的要求 1.使用protel设计电路原理图; 2.根据原理图生成pcb 3.  写好试验报告分析原理与制作过程 4.  课题交流与展示

    标签: 函数 波形发生器 protel

    上传时间: 2017-03-10

    上传用户:fjxychm@qq.com

  • 树形结构及其应用

    1.学会二叉树这一数据结构的用法,掌握二叉树的存储结构,包括二叉树顺序存储结构和链式存储结构。 2.熟练掌握二叉树与广义表之间的相互转换方法。 3.熟练掌握二叉树的先序、中序、后序,递归与非递归遍历算法。 4.学会二叉树线索化方法,并掌握线索二叉树的存储结构。 5.熟练掌握线索二叉树的先序、中序、后序的遍历算法。

    标签:

    上传时间: 2017-12-03

    上传用户:mxs1234

  • Fire and fury

    Fire and Fury。 This article is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump about the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • Fire and fury

    This article is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump abot the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • 基于可信计算的远程证明的研究

    摘要:基于可信计算的远程证明是可信加密模块TPM的核心功能之一。本文首先介绍了远程证明基本概念和逻辑流程,其次详细介绍了基于隐私证书中心PCA的远程证明方案,然后分析了基于隐私证书中心PCA的远程证明方案的缺点,最后提出了基于安全属性的远程证明方案作为改进。 关键词:可信计算 远程证明 可信加密模块TPM 平台状态度量日志SML 平台状态寄存器PCR

    标签: 可信计算 远程

    上传时间: 2018-12-20

    上传用户:1569496102