文档库 最新最全的文档下载
当前位置:文档库 › 【SoCVista】I2C master核规范

【SoCVista】I2C master核规范

【SoCVista】I2C master核规范
【SoCVista】I2C master核规范

I2C-Master Core Specification

Author: Richard Herveille

rherveille@https://www.wendangku.net/doc/766735880.html,

Rev. 0.9

July 3, 2003

This page has been intentionally left blank

Revision History

Rev. Date Author Description

0.1 17/02/01 Richard Herveille First draft release

0.2 01/03/01 Richard Herveille Some cleaning up throughout the document

Added ‘Programming Examples’ section

0.3 Richard Herveille Added some comments after core-changes

-added BUSY bit (status register)

-changed I2C IO for ASIC support

-added comment for FGPA IO

0.4 10/19/01 Richard Herveille Changed core’s databus size to 8bit.

Changed documentation to reflect changes.

Changed port names to new naming convention.

0.5 18/02/02 Richard Herveille Changed table headers.

Added OpenCores logo.

0.5a 05/02/02 Richard Herveille Reviewed entire document.

0.6 21/03/02 Richard Herveille Added Appendix A, Synthesis Results

0.7 25/06/02 Richard Herveille Changed Prescale Register formula

0.8 30/12/02 Richard Herveille Added Multi-Master capabilities.

New timing diagrams.

0.9 03/07/03 Richard Herveille Changed ‘0x5C’ to ‘0xAC’ in Example1.

Changed ‘RW’ to ‘W’ in Command Register.

Changed ‘RW’ to ‘W’ in Transmit Register.

Introduction I2C is a two-wire, bi-directional serial bus that provides a simple and efficient method of data exchange between devices. It is most suitable for applications requiring occasional communication over a short distance between many devices. The I2C standard is a true multi-master bus including collision detection and arbitration that prevents data corruption if two or more masters attempt to control the bus simultaneously.

The interface defines 3 transmission speeds:

-Normal: 100Kbps

-Fast: 400Kbps

-High speed: 3.5Mbps

Only 100Kbps and 400Kbps modes are supported directly. For High speed special IOs are needed. If these IOs are available and used, then High speed is also supported. FEATURES

?Compatible with Philips I2C standard

?Multi Master Operation

?Software programmable clock frequency

?Clock Stretching and Wait state generation

?Software programmable acknowledge bit

?Interrupt or bit-polling driven byte-by-byte data-transfers

?Arbitration lost interrupt, with automatic transfer cancelation

?Start/Stop/Repeated Start/Acknowledge generation

?Start/Stop/Repeated Start detection

?Bus busy detection

?Supports 7 and 10bit addressing mode

?Operates from a wide range of input clock frequencies

?Static synchronous design

?Fully synthesizable

IO ports 2.1 Core Parameters

Parameter Type Default Description

ARST_LVL Bit 1’b0 Asynchronous reset level

2.1.1 ARST_LVL

The asynchronous reset level can be set to either active high (1’b1) or active low (1’b0). 2.2 WISHBONE interface signals

Port Width Direction Description

clock

wb_clk_i 1 Input Master

wb_rst_i 1 Input Synchronous reset, active high

Asynchronous

reset

Input

arst_i 1

wb_adr_i 3 Input Lower address bits

wb_dat_i 8 Input Data towards the core

wb_dat_o 8 Output Data from the core

wb_we_i 1 Input Write enable input

wb_stb_i 1 Input Strobe signal/Core select input

wb_cyc_i 1 Input Valid bus cycle input

wb_ack_o 1 Output Bus cycle acknowledge output

wb_inta_o 1 Output Interrupt signal output

The core features a WISHBONE RevB.3 compliant WISHBONE Classic interface. All output signals are registered. Each access takes 2 clock cycles.

arst_i is not a WISHBONE compatible signal. It is provided for FPGA implementations. Using [arst_i] instead of [wb_rst_i] can result in lower cell-usage and higher performance, because most FPGAs provide a dedicated asynchronous reset path. Use either [arst_i] or [wb_rst_i], tie the other to a negated state.

2.3 External connections

Port Width Direction

Description scl_pad_i 1 Input Serial Clock line input scl_pad_o 1 Output Serial Clock line output scl_pad_oe 1 Output Serial Clock line output enable sda_pad_i 1 Input Serial Data line input sda_pad_o 1 Output Serial Data line output sda_pad_oe 1 Output Serial Data line output enable

The I 2C interface uses a serial data line (SDA) and a serial clock line (SCL) for data transfers. All devices connected to these two signals must have open drain or open collector outputs. Both lines must be pulled-up to VCC by external resistors.

The tri-state buffers for the SCL and SDA lines must be added at a higher hierarchical level. Connections should be made according to the following figure:

For FPGA designs the compiler can automatically insert these buffers using the following VHDL code:

scl <= scl_pad_o when (scl_padoen_oe = ‘0’) else ‘Z’; sda <= sda_pad_o when (sda_padoen_oe = ‘0’) else ‘Z’; scl_pad_i <= scl; scl_pad_i <= sda;

Verilog code: assign scl = scl_padoen_oe ? 1’bz : scl_pad_o; assign sda = sda_padoen_oe ? 1’bz: sda_pad_o; assign scl_pad_i = scl; assign sda_pad_i = sda;

scl_pad_i scl_pad_o scl_padoen_o

sda_pad_i

sda_pad_o sda_padoen_o

SCL

SDA

3

Registers

3.1 Registers list

Name Address Width Access Description PRERlo 0x00 8 RW Clock Prescale register lo-byte PRERhi 0x01 8 RW Clock Prescale register hi-byte CTR 0x02 8 RW Control register TXR 0x03 8 W Transmit register RXR 0x03 8 R Receive register CR 0x04 8 W Command register SR 0x04 8 R Status register

3.2 Register description

3.2.1 Prescale Register

This register is used to prescale the SCL clock line. Due to the structure of the I 2C interface, the core uses a 5*SCL clock internally. The prescale register must be programmed to this 5*SCL frequency (minus 1). Change the value of the prescale register only when the ‘EN’ bit is cleared.

Example: wb_clk_i = 32MHz, desired SCL = 100KHz

)(3)(631100532hex F dec KHz

MHz

prescale ==??=

Reset value: 0xFFFF

3.2.2 Control register

Bit # Access Description 7 RW EN, I 2C core enable bit.

When set to ‘1’, the core is enabled. When set to ‘0’, the core is disabled.

6 RW IEN, I 2C core interrupt enable bit.

When set to ‘1’, interrupt is enabled. When set to ‘0’, interrupt is disabled.

5:0 RW Reserved

The core responds to new commands only when the ‘EN’ bit is set. Pending commands are finished. Clear the ‘EN’ bit only when no transfer is in progress, i.e. after a STOP command, or when the command register has the STO bit set. When halted during a transfer, the core can hang the I2C bus.

3.2.3 Transmit register

Bit # Access Description

7:1 W Next byte to transmit via I2C

0 W In case of a data transfer this bit represent the data’s LSB.

In case of a slave address transfer this bit represents the RW bit.

‘1’ = reading from slave

‘0’ = writing to slave

Reset value: 0x00

3.2.4 Receive register

Bit # Access Description

7:0 R Last byte received via I2C

Reset value: 0x00

3.2.5 Command register

Bit # Access Description

7 W STA, generate (repeated) start condition

6 W STO, generate stop condition

5 W RD, read from slave

4 W WR, write to slave

3 W ACK, when a receiver, sent ACK (ACK = ‘0’) or NACK (ACK = ‘1’) 2:1 W Reserved

0 W IACK, Interrupt acknowledge. When set, clears a pending interrupt. The STA, STO, RD, WR, and IACK bits are cleared automatically. These bits are always read as zeros.

3.2.6 Status register

Bit # Access Description

7 R RxACK, Received acknowledge from slave.

This flag represents acknowledge from the addressed slave.

‘1’ = No acknowledge received

‘0’ = Acknowledge received

6 R Busy,

I2C bus busy

‘1’ after START signal detected

‘0’ after STOP signal detected

lost

Arbitration

5 R AL,

This bit is set when the core lost arbitration. Arbitration is lost when:

? a STOP signal is detected, but non requested

?The master drives SDA high, but SDA is low.

See bus-arbitration section for more information.

4:2 R Reserved

1 R TIP, Transfer in progress.

‘1’ when transferring data

‘0’ when transfer complete

0 R IF, Interrupt Flag. This bit is set when an interrupt is pending, which

will cause a processor interrupt request if the IEN bit is set.

The Interrupt Flag is set when:

?one byte transfer has been completed

?arbitration is lost

Reset Value: 0x00

Please note that all reserved bits are read as zeros. To ensure forward compatibility, they should be written as zeros.

4

Operation

4.1 System Configuration

The I 2C system uses a serial data line (SDA) and a serial clock line (SCL) for data transfers. All devices connected to these two signals must have open drain or open

collector outputs. The logic AND function is exercised on both lines with external pull-up resistors.

Data is transferred between a Master and a Slave synchronously to SCL on the SDA line on a byte-by-byte basis. Each data byte is 8 bits long. There is one SCL clock pulse for each data bit with the MSB being transmitted first. An acknowledge bit follows each transferred byte. Each bit is sampled during the high period of SCL; therefore, the SDA line may be changed only during the low period of SCL and must be held stable during the high period of SCL. A transition on the SDA line while SCL is high is interpreted as a command (see START and STOP signals).

4.2 I 2C Protocol

Normally, a standard communication consists of four parts: 1) START signal generation 2) Slave address transfer 3) Data transfer

4) STOP signal generation

SCL SDA

MSB

LSB MSB LSB

4.2.1 START signal

When the bus is free/idle, meaning no master device is engaging the bus (both SCL and SDA lines are high), a master can initiate a transfer by sending a START signal. A START signal, usually referred to as the S-bit, is defined as a high-to-low transition of SDA while SCL is high. The START signal denotes the beginning of a new data transfer. A Repeated START is a START signal without first generating a STOP signal. The master uses this method to communicate with another slave or the same slave in a

different transfer direction (e.g. from writing to a device to reading from a device) without releasing the bus.

The core generates a START signal when the STA-bit in the Command Register is set and the RD or WR bits are set. Depending on the current status of the SCL line, a START or Repeated START is generated.

4.2.2 Slave Address Transfer

The first byte of data transferred by the master immediately after the START signal is the slave address. This is a seven-bits calling address followed by a RW bit. The RW bit signals the slave the data transfer direction. No two slaves in the system can have the same address. Only the slave with an address that matches the one transmitted by the master will respond by returning an acknowledge bit by pulling the SDA low at the 9th SCL clock cycle.

Note: The core supports 10bit slave addresses by generating two address transfers. See the Philips I2C specifications for more details.

The core treats a Slave Address Transfer as any other write action. Store the slave device’s address in the Transmit Register and set the WR bit. The core will then transfer the slave address on the bus.

4.2.3 Data Transfer

Once successful slave addressing has been achieved, the data transfer can proceed on a byte-by-byte basis in the direction specified by the RW bit sent by the master. Each transferred byte is followed by an acknowledge bit on the 9th SCL clock cycle. If the slave signals a No Acknowledge, the master can generate a STOP signal to abort the data transfer or generate a Repeated START signal and start a new transfer cycle.

If the master, as the receiving device, does not acknowledge the slave, the slave releases the SDA line for the master to generate a STOP or Repeated START signal.

To write data to a slave, store the data to be transmitted in the Transmit Register and set the WR bit. To read data from a slave, set the RD bit. During a transfer the core set the TIP flag, indicating that a Transfer is In Progress. When the transfer is done the TIP flag is reset, the IF flag set and, when enabled, an interrupt generated. The Receive Register contains valid data after the IF flag has been set. The user may issue a new write or read command when the TIP flag is reset.

4.2.4 STOP signal

The master can terminate the communication by generating a STOP signal. A STOP signal, usually referred to as the P-bit, is defined as a low-to-high transition of SDA while SCL is at logical ‘1’.

4.3 Arbitration Procedure

4.3.1 Clock Synchronization

The I 2C bus is a true multimaster bus that allows more than one master to be connected on it. If two or more masters simultaneously try to control the bus, a clock

synchronization procedure determines the bus clock. Because of the wired-AND

connection of the I 2C signals a high to low transition affects all devices connected to the bus. Therefore a high to low transition on the SCL line causes all concerned devices to count off their low period. Once a device clock has gone low it will hold the SCL line in that state until the clock high state is reached. Due to the wired-AND connection the SCL line will therefore be held low by the device with the longest low period, and held high by the device with the shortest high period.

Start counting

Start counting SCL1SCL2SCL

Master1 SCL Master2 SCL wired-AND SCL

4.3.2 Clock Stretching

Slave devices can use the clock synchronization mechanism to slow down the transfer bit rate. After the master has driven SCL low, the slave can drive SCL low for the required period and then release it. If the slave’s SCL low period is greater than the master’s SCL low period, the resulting SCL bus signal low period is stretched, thus inserting wait-states.

5

Architecture The I2C core is built around four primary blocks; the Clock Generator, the Byte Command Controller, the Bit Command Controller and the DataIO Shift Register.

All other blocks are used for interfacing or for storing temporary values.

Fig. 5.1 Internal structure I2C Master Core

5.1 Clock Generator

The Clock Generator generates an internal 4*Fscl clock enable signal that triggers all synchronous elements in the Bit Command Controller. It also handles clock stretching needed by some slaves.

5.2 Byte Command Controller

The Byte Command Controller handles I2C traffic at the byte level. It takes data from the Command Register and translates it into sequences based on the transmission of a single byte. By setting the START, STOP, and READ bit in the Command Register, for example, the Byte Command Controller generates a sequence that results in the

generation of a START signal, the reading of a byte from the slave device, and the generation of a STOP signal. It does this by dividing each byte operation into separate bit-operations, which are then sent to the Bit Command Controller.

5.3 Bit Command Controller

The Bit Command Controller handles the actual transmission of data and the generation of the specific levels for START, Repeated START, and STOP signals by controlling the SCL and SDA lines. The Byte Command Controller tells the Bit Command Controller which operation has to be performed. For a single byte read, the Bit Command Controller receives 8 separate read commands. Each bit-operation is divided into 5 pieces (idle and A, B, C, and D), except for a STOP operation which is divided into 4 pieces (idle and A, B, and C).

Start

Rep Start

Stop

Write

Read

5.4 DataIO Shift Register

The DataIO Shift Register contains the data associated with the current transfer. During a read action, data is shifted in from the SDA line. After a byte has been read the contents are copied into the Receive Register. During a write action, the Transmit Register’s contents are copied into the DataIO Shift Register and are then transmitted onto the SDA line.

6 Programming examples

Example 1

Write 1 byte of data to a slave.

Slave address = 0x51 (b”1010001”)

Data to write = 0xAC

I2C Sequence:

1)generate start command

2)write slave address + write bit

3)receive acknowledge from slave

4)write data

5)receive acknowledge from slave

6)generate stop command

Commands:

1)write 0xA2 (address + write bit) to Transmit Register, set STA bit, set WR bit.

-- wait for interrupt or TIP flag to negate --

2)read RxACK bit from Status Register, should be ‘0’.

write 0xAC to Transmit register, set STO bit, set WR bit.

-- wait for interrupt or TIP flag to negate --

3)read RxACK bit from Status Register, should be ‘0’.

Please note that the time for the Interrupt Service Routine is not shown here. It is assumed that the ISR is much faster then the I2C cycle time, and therefore not visible.

Example 2

Read a byte of data from an I2C memory device.

Slave address = 0x4E

Memory location to read from = 0x20

I2C sequence:

1) generate start signal

2) write slave address + write bit 3) receive acknowledge from slave 4) write memory location

5) receive acknowledge from slave 6) generate repeated start signal 7) write slave address + read bit 8) receive acknowledge from slave 9) read byte from slave

10) write no acknowledge (NACK) to slave, indicating end of transfer 11) generate stop signal

Commands:

1) write 0x9C (address + write bit) to Transmit Register, set STA bit, set WR bit. -- wait for interrupt or TIP flag to negate --

2) read RxACK bit from Status Register, should be ‘0’. write 0x20 to Transmit register, set WR bit. -- wait for interrupt or TIP flag to negate --

3) read RxACK bit from Status Register, should be ‘0’.

write 0x9D (address + read bit) to Transmit Register, set STA bit, set WR bit. -- wait for interrupt or TIP flag to negate --

4) set RD bit, set ACK to ‘1’ (NACK), set STO bit

Please note that the time for the Interrupt Service Routine is not shown here. It is assumed that the ISR is much faster then the I 2

C cycle time, and therefore not visible.

Appendix A

Synthesis results Synthesis tool: Synplify Pro

Fmax Resource usage Technology Device Speed

grade

352 ACTEL A54SX16ATQ100 std

Modules:

58MHz

LCs:

294

82MHz

Altera EP10K50ETC144 -3

257

ATOMS:

74MHz

EP20K30ETC144

-3

229

LUTs:

Xilinx 2s15CS144 -5

82MHz

230

LUTs:

-8

XCV50ECS144

118MHz

灯光设计规范及照度标准值

照明系统工程设计常用的标准及规范(摘录) 一、照明系统工程设计常用标准及规范 照明系统工程设计常用标准及规范有以下几个: ①GBJ 133——90《民用建筑照明设计标准》, ②WH 0201——94《歌舞厅照明及光污染限定标准》 ③JGJ 57--2000《剧场建筑设计规范》 ④GB/T 50314——2000《智能建筑设计标准》 ⑤GYJ 45——92 《电视演播室灯光系统设计规范》已被GY5045-2006取代 ⑥JGJ 31——2003《体育建筑设计规范》 ⑦GB/T 14076——93《电影电视舞台灯具通用技术条件》; ⑧GB 15734——1995《电子调光设备无线电骚扰特性限值及测量方法》; ⑨GB /T 14218——93《电子调光设备性能参数与测试方法》; ⑩WH 0202——1995《舞台灯光图符代号及制图规则》; ?JGJ / T 119——98《建筑照明术语标准》。 ?GB 50034——2004《建筑照明设计标准》 二、照明设计标准的典型数据 (1)GY5045-2006《电视演播室灯光系统设计规范》(详见附录D) 达到现场摄影和拍电视的要求是:照度≥20001x;色温3050 ± 150K;显色指数R≥85。 (2)WH 0201——94《歌舞厅照明及光污染限定标准》 歌舞厅:表演区100~1501x;自娱区20lx;观赏休息区51x;通道101x。 (3)GBJ 133——90《民用建筑照明设计标准》 报告厅、会议室100-2001x;影院观众席30~751x;剧场观众席:75~150lx;大宴会厅150~3001x;体育馆:无彩电转播750 lx;有彩电转播15001x。 (4)JGJ 57——2000《剧场建筑设计规范》(详见附录C) 剧场观众厅:75~150lx,平滑调光;化妆室、绘景室与舞台的色温接近;调光回路; 甲等歌舞剧剧场480路,话剧剧场360路,戏曲剧场240路。 (5) GB/T 50314 ——2000《智能建筑设计标准》 智能化建筑:甲级500lx,乙级400lx,丙级3001x。 三、照明数量和质量 1.照度均匀度 ①作业面应尽可能地均匀照亮,公共建筑的工作房间和工业建筑作业区域内的一般照明照度均匀度不应小于0.7,而作业面周围的照度均匀度不应小于0.5。 ②房间或场所内的通道和其他非作业区域的一般照明照度值不宜低于作业区域一般照明照度值的1/3。 ③在有彩电转播的体育场馆,其主摄像方向上的照明应符合下列要求: ?场地垂直照度最小值与最大值之比不宜小于0.4; ?场地平均垂直照度与平均水平照度之比不宜小于0.25; ?场地水平照度最小值与最大值之比不宜小于0.5; ?观众席前排的垂直照度不宜小于场地垂直照度的0.25。观众席前排的垂直照度一般 是指主席台前各排座席的照度。

核安全一级阀门的力学分析_张征明

文章编号:1002-5855(2007)02-0018-05 作者简介:张征明(1967-),男,副研究员,从事反应堆结构设计与结构力学分析工作。 核安全一级阀门的力学分析 张征明,吴莘馨 (清华大学核能与新能源技术研究院,北京100084) 摘要 介绍了核安全一级阀门结构应力分析方法在阀门设计中的重要作用。以核安全一级电动截止阀为例,采用规范法和分析法对阀门的承压边界进行了力学分析和计算,并对阀门主法兰和连接螺栓的计算结果作了对比和评价。 关键词 核安全一级;核工业用阀;力学分析 中图分类号:TH134 文献标识码:A Mechanical analysis of the nuclear safety class 1valve ZHANG Zheng -ming ,WU Xin -xin (I nstitute of Nuclear and new Energ y T echno logy ,Tsing hua University ,Beijing 100084,China ) A bstract :Design by analysis method must be used for the nuclear safety class 1valve as the regula -tio ns of nuclear safety codes .Detailed stress distribution in the valve structure should be analyzed and evaluated .This paper introduces the mechanical analysis of a nuclear safety class 1electric shutoff v alve .The introduction w ill focus on the com munications betw een the designer and the analy zer of the v alve .Some advisements are given by the analy zer based on the mechanical analysis results of the valve structure . Key words :nuclear safety class 1;valve ;mechanical analysis 1 前言 核安全级阀门在设计、制造和检验等各个环节上均有远高于普通阀门的要求,尤其是核安全一级阀门,按照核安全法规的要求,必须采用分析方法进行设计,对阀门结构进行详细的应力分析和评价。因此,一般为设计人员所熟悉的按规范进行设计将无法满足核安全级一级阀门的要求。针对阀门结构的力学分析主要按照ASM E -Ⅲ-1-NB -3200中有关分析法设计的原则进行〔1〕。有关采用通用有限元软件进行阀门结构的力学分析和力学评价的基本过程,可参见文献〔2〕。2 阀门参数 本文以一个核安全一级电动截止阀为例,着重介绍了在进行力学计算的过程中,在详细的应力分析基础上,对一些设计理念提出了建议。 核安全一级电动截止阀的主体由阀体、阀盖和电动装置组成(图1)。其中阀体和阀盖通过一对 中法兰和8个中法兰螺柱连接成为一个整体,其内 部有阀瓣、阀杆以及填料等部件。在阀盖的中法兰上还连接有2个压板螺柱,通过该螺柱压紧填料压板以实现填料的密封功能。在阀盖的顶法兰上通过4个顶法兰螺栓固定电动装置,同时,顶法兰的侧面还对称焊接4个抗震支耳,安装后这些支耳将电动装置的重力传递到基础上去。 阀门主要设计参数 安全等级 核一级公称通径 DN50设计压力 25M Pa 设计温度 350℃ 阀门重量 83.5kg 阀门主要材料 SA182M -F316螺栓主要材料 SA564M -630 电动装置质量 100kg 3 主法兰及其连接螺栓的计算 —18— 阀 门 2007年第2期DOI :10.16630/j .cn ki .1002-5855.2007.02.006

保税核注清单-核扣状态逻辑

保税核注清单-核扣状态逻辑 进口核注清单 入区报关单审结或进出境货物过卡口就可以核扣;如果发现没有核扣,便是异常;向海关查询核放单或进境备案清单是否有查验;如果没有查验则属于异常 易触发结关失败的原因,主要有三类:一是一车多票(中间某一票有小概率结关失败),二是区外企业使用H2010的E账册(小概率),三是过卡时仍有未处理完毕的报关单查验(100%无法结关) 出口核注清单 核注清单做为报关单的一份随附单证进行关联使用;且报关单成功结关后,出区必须结关后才能核扣数据;出口核注清单中的清单进出卡口状态并不是核放单过卡出区就触发状态变为已过卡,从实际状况来看也是要报关单结关来进行触发 特殊区域查验模式要点

①一线核放单查验(布控原因有:金二系统随机抽核、直属海关风险防控分局(简 称“二控”)随机布控、核放单某一项目数值超阀值、物控部门即决布控),特殊区域主管海关查。 ②一线备案清单查验,在口岸监管区由过卡操作或运抵报文触发(不在特殊区域 卡口触发),由口岸海关查。 ③二线核放单查验(布控原因有:系统随机抽核、二控随机布控、核放单某一项 目数值超阀值、物控部门即决布控),特殊区域主管海关查。 ④二线报关单查布控原因有报关单随机预定即决布控),由于金二凭核放单过卡, 为拦住被查验货物,系统同时布控所有与被布控报关单关联的核放单。过卡时本关物控平台会提示“因XX报关单被布控,该核放单被布控“类似信息,金二核放单审核模块提示“报关单被布控”(提示:故建议用本关物控平台过核放单。需再次确认核放单布控指令,可通过核放单布控管理”功能“布控原因” 栏目查询此类查验由特殊区域主管海关查,先在查二系统查报关单查验,若正常,则把查验结果填在核放单查验结果录入中,选予以放行;若异常,则先按报关单查验结果进行后续处置,处置完毕后,将查验结果与处置结果一起录在核放单查验结果录入中,仍选予以放行(提示:选拒绝放行将无法过卡,须删核放单,因此不选)。

保税核注清单填制规范

附件 保税核注清单填制规范 为规范和统一保税核注清单管理,便利加工贸易及保税监管企业按照规定格式填制和向海关报送保税核注清单数据,特制定本填制规范。 一、预录入编号 本栏目填报核注清单预录入编号,预录入编号由系统根据接受申报的海关确定的规则自动生成。 二、清单编号 本栏目填报海关接受保税核注清单报送时给予保税核注清单的编号,一份保税核注清单对应一个清单编号。 保税核注清单海关编号为18位,其中第1-2位为QD,表示核注清单,第3-6位为接受申报海关的编号(海关规定的《关区代码表》中相应海关代码),第7-8位为海关接受申报的公历年份,第9位为进出口标志(“I”为进口,“E”为出口),后9位为顺序编号。 三、清单类型 本栏目按照相关保税监管业务类型填报,包括普通清单、分送集报清单、先入区后报关清单、简单加工清单、保税展示交易清单、区内流转清单、异常补录清单等。 四、手(账)册编号 本栏目填报经海关核发的金关工程二期加工贸易及保税监管各类手(账)册的编号。 五、经营企业 本栏目填报手(账)册中经营企业海关编码、经营企业的社会信用代码、经营企业名称。 六、加工企业

本栏目填报手(账)册中加工企业海关编码、加工企业的社会信用代码、加工企业名称,保税监管场所名称(保税物流中心(B型)填报中心内企业名称)。 七、申报单位编码 本栏目填报保税核注清单申报单位海关编码、申报单位社会信用代码、申报单位名称。 八、企业内部编号 本栏目填写保税核注清单的企业内部编号或由系统生成流水号。 九、录入日期 本栏目填写保税核注清单的录入日期,由系统自动生成。 十、清单申报日期 申报日期指海关接受保税核注清单申报数据的日期。 十一、料件、成品标志 本栏目根据保税核注清单中的进出口商品为手(账)册中的料件或成品填写。料件、边角料、物流商品、设备商品填写“I”,成品填写“E”。 十二、监管方式 本栏目按照报关单填制规范要求填写。 特殊情形下填制要求如下: 调整库存核注清单,填写AAAA;设备解除监管核注清单,填写BBBB。 十三、运输方式 本栏目按照报关单填制规范要求填写。 十四、进(出)口口岸 本栏目按照报关单填制规范要求填写。 十五、主管海关

照度标准

照明标准值 1、居住建筑 居住建筑照明标准值 房间或场参考平面及其高照度标准(LxR 100 一般活 0.75m水平起居80 300书写、阅 75 一般活80 0.75m卧水平150 床头、阅 80 餐1500.75m餐桌100 0.75m水平一般活 80 厨 150台操作

100 80 0.75m 水平面卫生间 注:宜用混合照明。 2、公共建筑 商业建筑照明标准值 房间或场所参考平面及其高度照度标准值(Lx) UGR Ra 80 300 水平面一般商店营业厅0.75m 22 80 500 高档商店营业厅 0.75m 水平面22 80 一般超市营业厅300 餐桌面0.75m 22 80 500 22 高档超市营业厅水平面0.75m 80 - 收款台台面500 图书馆建筑照明标准值

房间或场所参考平面及其高度照度标准值(Lx) UGR Ra 80 19 0.75m 一般阅览室水平面 300 省市及其他重要图书馆的阅国家0.75m水平5001980 览0.75m餐桌老年龄阅览5001980 805000.75m水平19珍善本与图书阅览80陈列室、目录300190.75m水平出纳8050-书0.25m水平80 水平工作300 19 0.75m 办公建筑照明标准值

房间或场参考平面及其高照度标准(LxUGR 80300水平19普通办公0.75m 805000.75m水平19高档办公 80 300 19 0.75m 餐桌面会议室80 300 水平面0.75m - 接待室、前台80 0.75m 水平面300 22 营业厅80 500 实际工作面19 设计室文件整理、复印、发行0.75m 水平面 300 - 80 室0.75m 水平面 200 - 资料档案室 80 旅馆建筑照明标准值 房间或场所参考平面及其高度照度标准值(Lx) UGR Ra 80 -

核级阀门简介

核级阀门电动执行机构简介核级阀门电动执行机构用以控制各类阀门开启和关闭,能对阀门实现远方和就地操作,尤其适用于核电站中不宜于直接操作的环境。核级阀门电动执行机构主要由电机、减速器、行程控制机构、转矩控制机构、开度位置指示器、手/电动切换机构等部分组成。我厂是在A/M基础上开发研制出HA/HM系列核级阀门电动执行机构的,HA/HM 的结构及原理与A/M基本相同。 核级阀门电动执行机构共分三类:K1、K2和K3类,K1类要求最高,可覆盖K2、K3类执行机构的要求。K1类阀门电动执行机构可安装在核电厂安全壳内,在正常环境条件下和安全停堆地震载荷下以及事故(LOCA)期间和事故之后仍能执行其规定的功能。 根据1E级阀门电动执行机构的40年寿命要求及与安全相关的其它要求,核级阀门电动执行机构除需做寿命试验外,还需做以下各项试验: 1、热老化试验:采用加速热老化方法进行试验,环境温度138℃,老化试验时间680h。 2、辐照试验:包括辐照老化和事故辐照,两者可合并起来做,总剂量为1500kGy(150Mrad),剂量率为0.2kGy/h。 3、机械磨损老化试验:阀门电动执行机构在加载情况下操作2000次循环,穿插在热老化试验中和辐照试验前后进行。 4、振动试验和抗震试验:要求在阀门电动执行机构三个正交轴方向都要做以下试验:

a)动态特性检查试验:寻找固有频率; b)振动试验:加速度为0.75g; c)OBE(运行基准地震)地震试验:加速度为5g;d)SSE(安全停堆地震)地震试验: SSE正弦拍波试验:加速度为5g; SSE随机波试验:加速度为5g; 在振动过程中执行机构需带负载按要求操作。

金二实操丨核注清单对应的报关单序号

金二实操丨核注清单对应的报关单序号 法规依据:海关总署公告2018年第23号(关于启用保税核注清单的公告) 四、企业报送保税核注清单后需要办理报关单(备案清单)申报手续的,报关单(备案清单)申报数据由保税核注清单数据归并生成 八、符合下列条件的保税核注清单商品项可归并为报关单(备案清单)同一商品项: (一)料号级料件同时满足:10位商品编码相同;申报计量单位相同;中文商品名称相同;币制相同;原产国相同的可予以归并。其中,根据相关规定可予保税的消耗性物料与其他保税料件不得归并;因管理需要,海关或企业认为需要单列的商品不得归并。 (二)出口成品同时满足:10位商品编码相同;申报计量单位相同;中文商品名称相同;币制相同;最终目的国相同的可予以归并。其中,出口应税商品不得归并;涉及单耗标准与不涉及单耗标准的料号级成品不得归并;因管理需要,海关或企业认为需要单列的商品不得归并。 自动归并 如果我们在操作核注清单时候不进行任何额外的处理,系统会默认自动归并,也就是会按照上面海关总署公告2018年第23号(关于启用保税核注清单的公告)中的原则进行归并;咱们用简短的语言概况下海关的归并要求: 1、核注清单的商品信息必须符合海关五同的原则,商品编码、申报计量单位、商品名称、币制、原产国/目的国相同 2、一份清单只能对应一份报关单,所以归并后报关单商品项数不能超过50项。

报关单商品序号这一列就是对应或关联报关单商品的表体序号 手动归并 有些时候我们不希望自动合并,可以在填写核注清单时,在“报关单商品序号”处手工录入每项商品在报关单中的序号(排序),则生成的报关单的内容顺序将与核注清单的内部顺序一致,一对一,核注清单与报关单商品保持一一对应,不进行归并。这样做:操作简单,数据对应清晰; 退单异常

照度标准

第一章总则 第1.0.1条为了在工业企业照明设计中贯彻执行国家有关的技术经济政策,有利于保护视力、提高产品质量和劳动生产率,做到节约能源、技术先进、经济合理、使用安全、维修方便,特制定本标准。 第条本标准适用于工业企业中的新建、改建和扩建工程。不适用于地下建筑、地下矿井、无窗厂房等。 第条工业企业照明设计,除应遵守本标准外,尚应符合现行国家有关标准和规范的要求。 第三章照度标准 第一节一般规定 第3.1.1条工业企业照明的照度标准值,应按以下系列分级:、1、2、3、5、10、15、20、30、50、75、100、150、200、300、500、750、1000、1500、2000和3000Lx。 第条照明设计标准值应为生产场所作业面上的平均照度值。 第条作业面上的照度标准值,根据工作场所和视觉作业的具体要求,应按高、中、低选取适当的标准值,一般情况下采用照度范围的中间值。 第条凡符合下列条件之一时,作业面上的照度标准值,应采用照度范围的高值: 一、Ⅰ~V等的视觉作业,当眼睛至识别对象的距离大于500m时; 二、连续长时间紧张的视觉作业,对视觉器官有不良影响时; 三、识别对象在活动面上,识别时间短促而辨认困难时; 四、视觉作业对操作安全有特殊要求时; 五、识别对象反射比小时; 六、当作业精度要求较高,且产生差错会造成很大损失时。 第条凡符合下列条件之一时,作业面上的照度标准值,应采用照度范围的低值: 一、进行临时性工作时; 二、当精度或速度无关紧要时。 第二节照度标准值 第3.2.1条工作场所作业面上的照度标准值,应符合表的规定。

不宜低于50Lx 。 第条 混合照明中的一般照明,其照度值应按该等级混合照明照度值的5%~15%选取,不宜低于30Lx 。但采用高强气体放电灯时,不宜低于50Lx 。 第条 对于一般生产车间和工作场所作业面上的照度标准值,可按本标准附录二采用。 第条 工业企业辅助建筑的照度标准值,应符合本标准附录三的规定。 第条 厂区露天工作场所和交通运输线的照度标准值,应符合本标准附录四的规定。 第条 对于备用照明的照度标准值,不应低于表中一般照明的10%。而安全照明的照度标准值,不应低于表中的一般照明的5%。疏散照明主要通道上的疏散照明照度标准值,不应低于。 第条 照明设计计算照度值应为表、附录二、附录三和附录四的照度标准值除以表所规定的维护系数值。 第4.0.1条 照明光源宜采用荧光灯、白炽灯、高强气体放电灯(高压钠灯、金属卤化物灯、荧光高压汞灯)等。 第条 当悬挂高度在4m 及以下时,宜采用荧光灯;当悬挂高度在4m 以上时,宜采用高强气体放电灯;当不宜采用高强气体放电灯时,也可采用白炽灯。 第条 在下列工作场所的照明光源,可选用白炽灯: 一、局部照明的场所; 二、防止电磁波干扰的场所; 三、因光源频闪效应影响视觉效果的场所; 四、经常开闭灯的场所; 五、照度不高,且照明时间较短的场所。 第条 应急照明应采用能瞬时可靠点燃的白炽灯、荧光灯等。当应急照明作为正常照明的一部分经常点燃且不需要切换电源时,可采用其它光源。 第条 当采用一种光源不能满足光色或显色性要求时,可采用两种光源形式的混光光源. 混光光源的混光光通量比,宜按表选取。

阀门技术规范

附件 1 技术规范 1.总则 1.1 本技术规范书适用于淮南矿业集团煤矸石综合利用顾桥电厂的各系统进口 调节阀。它提出了进口调节阀的功能设计、结构、性能、安装和试验等方面的技 术要求。 1.2 本技术规范提出的是最低限度的技术要求,并未对一切技术要求作出详 细规定,也未充分引述有关标准和规范的条文,卖方应保证提供符合本协议和相 关的国际国内工业标准的优质产品。 1.3卖方对进口调节阀(包括附件)负有全责,即包括分包(或采购)的产 品。分包(或采购)的产品制造商应事先征得买方的认可。 1.4本技术规范所使用的标准若与卖方书执行的标准发生矛盾时,按较严格 的标准执行。 1.5本技术规范经买卖双方共同确认和签字后将作为订货合同的附件,与订 货合同正文具有同等效力。未尽事宜由双方协商解决。 1.6在合同签订后,买方有权因规范、标准、规程发生变化而提出一些补充 要求,具体内容双方共同商定。 1.7 本工程采用 KKS标识系统。卖方在中标后提供的技术资料(包括图纸) 和设备、系统标识必须有 KKS编码。 2.环境条件 略。 3.设备规范 3.1调节阀的设计参数、配管管径、连接方式、数量、泄漏等级、噪音、气 源条件等详细的技术参数参见“进口调节阀技术参数一览表”。卖方应按此要求提供相应的技术数据表和各附件的配置情况。 3.2阀门设计寿命为30年。 4.技术要求 4.1设备的性能要求 4.1.1调节阀的设计满足用户介质温度、压力、流量、流向、调节范围以及

严密性的要求,阀体及阀内件的结构型式应使闪蒸降到最低限度,并耐闪蒸冲蚀。 有闪蒸和气蚀时必须使用笼罩式结构。 4.1.2调节阀的口径能满足工艺上对流量的要求,通过阀门的介质流速限制 在允许范围之内以防止磨损、腐蚀、震动的发生。供方应提供表明其产品满足要 求的相关计算。 4.1.3阀门在不同工况下能平稳地控制流体。 4.1.4供方提供调节阀的流量特性曲线,调节阀的流量特性应能对调节系统 进行适量补偿。在最大运行工况下,其阀门开度不超过85%。 4.1.5阀门具有密封好、泄漏小及阀杆不平衡力小等特点。常闭调节阀泄漏 等级应不小于 ANSI B16.104-V 级标准,常开调节阀泄漏等级应不小于ANSI B16.104-IV 级标准。 4.1.6所有调节阀设计应考虑汽蚀问题,如果流体经阀门的最小压力(静压)小于流体的汽化压力,可分为两种情况考虑: a、如果流体经阀门的出口压力(数据表中出口最小压力)小于流体的汽 化压力,会出现闪蒸现象,阀门应考虑防磨损措施。 b、如果流体经阀门的出口压力又回升到大于汽化压力,会发生“空化” 现象,从阀体设计而言,必须采用多级降压措施,以使阀内各点压力均大于汽化压力,从而保证不发生汽蚀,需厂家提供相应的计算进行核实,为防止汽蚀发生,阀 门应采用流关式。 4.1.7 调节阀必须按 ANSI标准设计、选材、制造及实验。 4.1.8 调节阀压力等级应按表中系统最大压力和设计温度选取。 4.1.9 所有阀门均应进行噪声计算,并提供计算结果,噪声标准是距离阀体 1 米处不超过 85dB(a) 。 4.1.10 对于调节阀的出口压力处于真空状态,外部的空气可能通过阀杆泄 漏,会破坏真空,所以阀杆密封应严密,不得有空气泄漏而破坏真空,并且阀杆 及执行机构的强度也应按真空状态计算,阀门采用流关式,并做真空密封实验。 4.1.11 阀体口径应小于或等于进口管径,同时应大于或等于1/2 进口管径,这样设计才趋于合理。 4.1.12调节阀压降应在投标时注明。 4.2设备的制造要求。 4.2.1阀体型式采用直通式。 4.2.2阀门的连接方式为焊接连接。 4.2.3阀门阀盖和阀芯的设计应方便维护和检修,更换填料时不需拆下执行 器和阀杆。 4.2.4阀门接口规格按“进口调节阀技术参数一览表”中的连接管道的规格 要求制造。阀门与管道采用对口焊接时,阀体进出口规格、材料与接管口径应取

照明设计手册第2章照明标准

第二章照明标准 第一节照明质量 优良的室内照明质量由以下五个要素构成:(1)适当的照度水平;(2)舒适的亮度分布;(3)宜人的光色和良好的显色性;(4)没有眩光干扰;(5)正确的投光方向与完美的造型立体感。不同的应用场合对质量要求的重点可能不同,现分别说明如下。一、照度水平1.照度为特定的用途选择适当的照度时,要考虑的主要因素是:(1)视觉功效;(2)视觉满意程度; 图2—1分辨视角、亮度对比、照度 和视觉功效关系曲线 (3)经济水平和能源的有效利用。 视觉功效是人借助视觉器官完成作业的效能,通常用工作的速度和精度来表示。增加作业照度(或亮度),视觉功效随之提高,但达到一定的照度水平以后,视觉功效的改善就不明显了。图2—1说明标准作业的视觉功效JD(相对单位)在一定情况下,照度E、作业的实际亮度对比c和分辨视角a的关系曲线。 对于非工业区,如交通区和休息空间,不能用视觉功效来确定照度水平,而应考虑定向和视觉舒适的要求。为选择最佳照度水平进行的大量现场评价和调研表明,就照明所创造的舒适和愉悦而言的视觉满意程度,是各 类室内环境(包括工作环境)在选择适宜照度时必须考虑的重要附加因素。 在实际应用中,无论根据视觉功效还是从视觉满意角度选择照度,都要受经济条件和能源供应的制约。所以,综合上述三方面因素确定的照度标准往往不是理想的,而只能是适当的、折衷的标准。 北美照明学会(IESNA)2000年将推荐照度值分为三类,七级。第1类是简单的视觉作业和定向要求。主要是指公共空间;第Ⅱ类是普通视觉作业,包括商业、办公、工业和住宅等大多数场所;第Ⅲ类是特殊视觉作业,包括尺寸很小、对比很低,而视觉效能又极其重要的作业对象。表2—1列出了IESNA推荐的各级照度值,这种简单明了的照度级别规定可供照明设计人员选择设计照度时参考。 表2—1IESNA推荐照度分级 我国于2004年12月发布执行新的国家标准GB50034-2004《建筑照明设计标准》,其中详细规定了居住建筑及各类公共建筑、工业建筑不同房间或场所的照度标准值。新标准大幅度提高了照度水平,基本上与国际接轨,详见本章第二节。

核安全级阀门的试验研究

文章编号:100225855(2010)022******* 作者简介:杨伟(1955-)男,辽宁沈阳人,工程师,从事阀门工艺设计、营销及营销管理工作。 核安全级阀门的试验研究 杨 伟1,王明珊2,魏彦学1,贾安迅1,张景艳1,潘明旭3 (11沈阳盛世高中压阀门有限公司,辽宁沈阳110142;21核物理与化学研究所,四川绵阳621900; 31东北林业大学,黑龙江哈尔滨150000) 摘要 介绍了核安全2级和3级钠截止阀和止回阀样机的寿命试验和抗地震试验方法。 关键词 反应堆;安全;阀门;抗震试验 中图分类号:TH134 文献标识码:A Test and study of nuclear s afety va lves YANG W ei 1 ,W ANG M ing 2shan 2 ,W EI Yan 2xue 1 ,J I A A n 2xun 1 ,ZHANG J ing 2yan 1 ,P AN M ing 2xu 3 (11Shenyang S hengshi H igh&m edium p ressure valve co 1,L td 1,S henyang 110142,C hina; 21Institute of nuclear physics and chem istry,M ianyang 621900,C hina; 31N ortheast Forestry U niversity,H arbin 150000,C hina ) Abstract:In trodcing the m ethods of the life test and earthquake 2resistant test on nuclear safety 2E 3E check valve and cut 2off p rototypes w ith sodium. Key words:nuclear reactor ;safety;valve;earthquake 2resistant test 1 概述 随着新能源技术的快速发展,核能作为清洁能 源已得到世界各国的公认,并争相发展。我国出台的有关能源规划表明,从2010~2020年,中国将新建核电站31座,核电装机容量达到4000万k W ,核电比重由现在的1169%提升到4%。这也标志着核电将在中国未来的电力发展中扮演更重要的角色。阀门是核电装置中的安全附件之一,其作为流体介质管路传输中的重要控制设备,功能性是否满足要求直接关系到整个核设施的安全。本文以用于中国实验快堆(CEFR )的核安全2级钠截止阀(DN40-T 形、DN40-Z 形)和止回阀(DN40-T 形)为例,介绍该产品寿命试验和抗地震试验的方法。2 参照标准 CEFR 的核安全2级钠截止阀(DN40-T 形、DN40-Z 形)和止回阀(DN40-T 形)在制造过程中 遵循的主要标准和规范如下。 AS ME BP V -Ⅲ-1-95ND 级设备AS ME BP V -Ⅱ-95材料技术条件AS ME BP V -Ⅴ-95无损检验 HAF0902-95民用核承压设备无损检验人员 培训、考核和取证管理办法 G B 911511-G B9115126-88对焊钢制管法兰G B 12221-2005金属阀门结构长度3 试验311 寿命试验 核级阀门设计使用寿命为40年。阀门按EJ /T 1022111标准进行了机械磨损、热老化和辐照老化 等相关试验。 (1)机械磨损试验 机械磨损试验是驱动装置加载情况下(相当于与阀门连接带动阀门开或关时所受到的力),经2000次循环动作试验。试验后,驱动装置应运转正 常。 (2)热老化试验 热老化试验是试验过程中,驱动装置经过2000次连续循环操作,并在加载情况下进行。驱动装置置于干燥空气中加热至135℃,试验950h 。 (3)辐照老化试验 辐照老化试验前,驱动装置在加载情况下,完成 —41— 阀 门 2010年第2期

以企业为单元—基于规范运营的加工贸易便利模式20180227

以企业为单元—基于企业自律管理的加工贸易便利模式 深圳市天地纵横企业管理顾问有限公司熊斌 为贯彻中央关于全面深化改革的指示精神,落实海关总署《海关全面深化改革总体方案》、《加工贸易及保税监管业务改革方案》,海关总署于2017年7月13日发布海关总署公告2017年第29号《关于以企业为单元加工贸易监管模式改革试点的公告》(以下简称为29号公告,自2017年8月1日起,在9个海关实施“以企业为单元加工贸易监管模式”(以下简称“以企业为单元模式”)改革试点。 2017年第29号公告,明确首批试点地区为部分与自由贸易试验区相关的天津、沈阳、杭州、武汉、拱北、重庆、成都海关辖区和具备改革基础的南京、黄埔海关辖区。同时明确了各海关可结合关区实际先行试点或者全国海关统一版信息化系统上线后全面开展试点两 种方式。 2018年2月26日,海关总署发布2018年第19号公告《关于以企业为单元加工贸易监管模式改革扩大试点的公告》,将以企业为单元模式试点海关范围扩充到天津、呼和浩特、满洲里、沈阳、长春、哈尔滨、上海、南京、杭州、宁波、合肥、厦门、南昌、青岛、郑州、武汉、广州、深圳、拱北、黄埔、湛江、南宁、重庆、成都、西安、乌鲁木齐等26个海关。 展试点。 以企业为单元模式实行“自主备案、自主核报、自主缴税、自定核销周期”等管理方式,势必进一步提速通关效率,促进贸易便利化,在明晰关企权责、促进企业自律、改进监管服 务等方面产生积极的影响。 以企业为单元模式的特点分析 以企业为单元模式是指海关实施的以企业为单元,以账册为主线,以与企业物料编码对应的海关商品编号(料号)或经企业自主归并后形成的海关商品编码(项号)为基础,周转量控制,定期核销的加工贸易监管模式。 以企业为单元模式综合了电子化手册、电子账册加工贸易监管模式的优点并且更为便利。以企业为单元与电子化手册、电子账册对比情况如下表所示。

G40非核级阀门试验规程

核电阀门 非核级阀门试验规程Hydrostatic Test Specification of Non-safety Valves 慎江阀门有限公司发布 Released By Shenjiang Valve CO., ltd

前言 FOREWORD 本规程由慎江阀门有限公司提出 This specification is proposed by Shenjiang Valve Co., Ltd. 本规程由慎江阀门有限公司技术部负责起草 This specification is drafted by the technology Dept of Shenjiang Valve Co., Ltd. 本规程主要起草人:孟庆联2013.8.10 Main drafter: 本规程审核人:董杰2013.8.10 Reviewed by: 本规程批准人:殷连波2013.8.10 Approved by:

修改记录

本规程规定了按CAP1400规范设计的PV33、PV40、PV41等非核级阀门压力试验(如壳体水压试验,填料、阀座密封试验等)的要求。 本规程适用于按CAP1400规范设计的非核级闸阀、球阀、旋塞阀、蝶阀、止回阀、截止阀等,其他类型的阀门也可参照使用。 This specification identifies the hydraulic shell test, packing seal, valve seat seal tests etc. requirements for CAP1400 design non- safety related PV33、PV40、PV41 valves. This specification is applicable to the CAP1400 design non- safety related gate valve, ball valve, plug valve, butterfly valve, check valve, globe valve and so on; other types of valves can also reference this specification. 2 引用标准及规范Reference standards and norms SNG-PV33-Z0-001 大于等于3”的手动闸阀、截止阀、止回阀,ASME B16.34 3” and larger manually operated gate,globe and check valves,ASME B16.34 SNG -PV40-Z0-001 球阀和旋塞阀,ASME B16.34 Ball and plug Valves, ASME B16.34 SNG -PV41-Z0-001 蝶阀,ASME B16.34 Butterfly Valves, ASME B16.34 ASME B16.34-1981 法兰、螺纹和焊接连接阀门 Flanged, threaded and welded connection valve ASME BPVC-Ⅲ-2001 核动力装置设备建造准则 Rules for the construction of nuclear facility components MSS SP-61-1985 钢制阀门压力测试Pressure test of steel valves MSS SP-68-1997 高压偏心结构蝶阀 High-pressure eccentric structure butterfly valve SNG -GW-Z0-602 CAP1400使用在核电蒸汽和相关系统的设备清洗和清洁度要求 CAP1400 cleaning and cleanliness requirements for the equipment used in nuclear steam supply and related system 以上文件的版本号应与客户提供的最新技术文件清单中的文件版本号保持一致。 The revision of documents shall be the same as provide customers with the latest technical documents list。 3 试验条件的检验Check of experimental conditions 3.1 阀门试验场地应清洁,试验用装置必须满足试验条件要求,试验装置的 泄漏应不影响阀门的试验; Valve test site should be clean and test equipment must meet the requirements of the test conditions, test devices leakage should not affect the valve test;

以企业为单元加工贸易监管模式电子账册

符合贸易合规 系统管理 有效防护系统的数据安全,有效监管每个操作人员的系统操作使用权限,符合AEO认证(支持aeo认证)要求密码定时修改。 基础资料 及时规范保存企业通关的申报大数据、支持单一窗口数据对接、有效对接企业ERP系统的基础数据的对应管控。 智能快速备案 授权管理 管理者有效监管每个操作人员的系统操作使用权限。 备案管理 与企业ERP系统的对接,并实现智慧备案、有效实现关务风险的提前防范,原有的旧模式备案与新的金关二期模式(支持金关二期新模式核注清单)备案可同时执行。 模拟海关审单 通关单证管理 可视化对待进出口业务的数据进行规范化制单,支持报关单证制作,全套报关单通关数据一键生成,可支持一键上传单一窗口,也可同时生成加工贸易与一般贸

易走货模式,规范化的通关业务处理、过程化节点管理、智慧逻辑审单、真正满足最严格的AEO的管理。 内部协同管理 内销征税管理支持以企业为单元联网试点监管 以企业为单元企业的内销征税的相关信息化管理,实现内销征税相关对接海关的一健申报与内销征税数据化管控。 自动统计报表 发票管理支持报关单证制作 根据下载的正式的出口报关单、进行发票制作,与自动与金税盘的对接,完成发票的开据。 报表中心 加工贸易和一般贸易业务相关业务的相关报表,16张报表一健自动生成加工贸易和一般贸易业务相关业务的相关报表,可支持关务规划贸易合规 对企业加工贸易业务流程设计管理要求更严格 企业内部需要建立单耗相关制度和应对机制来保证账册管理(支持核销合同手册账册)、系统管理与实物管理的一致性,完整记录并反映实际单耗情况,以确保“自主核报”的准确性。

对企业加工贸易业务流程设计管理要求更严格 一方面,只有通过完善内控达到较高海关信用等级的企业才有机会实施新监管模式;另一方面,“主动披露”给守法企业提供了容错空间,但企业只有完备的内控手段、快速的响应机制,才能提前发现问题,争取到主动权。 对企业信息化水平要求将更高 支持以企业为单元联网试点监管

车间作业照明标准(审核版)

车间作业照明标准 发放编号:编制: 受控状态:审核: 版本:C/0 批准: 2018-02-10发布 2018-02-10实施发布

1.目的 对生产车间各作业区域进行照明规范,防止因为照度不足而引起的安全事故或产品质量事故。 2.适用范围 生产车间各作业区域。 3.职责和权限 3.1.技术部为该标准的制定及解释部门 3.2.车间各作业区域负责人按照此标准规范作业照度要求。 4.照度标准 4.1.作业区域照明的照度标准值,按以下系列分级:0.1、1、2、3、5、10、15、20、30、50、75、100、150、200、300、500、750、1000、1500、2000和3000Lx。 4.2.照度标准值为生产场所作业面上的平均照度值。 4.3.作业面上的照度标准值,根据工作场所和视觉作业的具体要求,按高、中、低选取适当的标准值,一般情况下采用照度范围的中间值。 4.4.凡符合下列条件之一时,作业面上的照度标准值,应采用照度范围的高值: ①Ⅰ~V等的视觉作业,当眼睛至识别对象的距离大于500mm时; ②连续长时间紧张的视觉作业,对视觉器官有不良影响时; ③识别对象在活动面上,识别时间短促而辨认困难时; ④视觉作业对操作安全有特殊要求时; ⑤识别对象反射比小时; ⑥当作业精度要求较高,且产生差错会造成很大损失时。 4.5.凡符合下列条件之一时,作业面上的照度标准值,应采用照度范围的低值: ①进行临时性工作时; ②当精度或速度无关紧要时。

4.6.工作场所作业面上的照度标准值,应符合表4.6.1的规定。 表4.6.1 4.7.生产车间工作面上的照度标准值,应符合表4.7.1的规定。 表4.7.1

阀门编号规范标准

附件十二:阀门编号规定 本阀门规定不包括液压控制阀门、气动阀门和电动阀门的电驱动装置。阀门的设计、制造、检验应符合ASME B16.34《法兰端、螺纹端和焊接端阀门》。 1.阀门设计、制造要求以及结构长度、检验要求见下表 阀门连接端:法兰尺寸: HG/T 20615-2009 HG/T20623B-2009 承插口尺寸: GB/T 14383-2008 螺纹端尺寸: GB/T 14383-2008 阀门对焊端(坡口)执行标准:GB 50316-2000(2008版)、GB50236-2011。 对焊端接管尺寸执行标准:HG/T20553-2011 Ia系列低温碳钢阀门法兰连接端尺寸:ASME B16.5 ASME B16.47B 低温碳钢阀门对焊端接管尺寸执行标准:ASME B36.10M 2.阀门编号执行以下规定 阀门编号(订货号)由9个(组)数字(字母)组成,它规定了阀门的类型、压力等级、 阀体材料、连接方式以及内件材料。 阀门编号:X X X X XXX X X – X X 1 2 3 4 5 6 7 8 9

其中: 1单元:表示阀门类型 2单元:表示阀门结构型式 若为栓接阀盖(B.B)、轭式明杆外螺纹(0S&Y)支架式可省略,压力自紧密封阀盖用P表示。 3 单元:表示压力等级

4 单元:表示阀门连接方式 5 单元:表示阀门内件材料代号5.1 闸阀、截止阀、止回阀

5.2 蝶阀 5.3 球阀

5.4 旋塞阀 6 单元:表示阀体材料(括号外的材料牌号为铸钢、括号内的材料牌号为锻钢)

7单元:阀门填料、垫片对应表如下: (闸阀、截止阀、球阀、蝶阀对应填料、垫片;止回阀对应垫片) 8单元: 对于低温阀门:工况0∽-45℃:S; 工况-46∽-70℃:D; 工况-71∽-196℃:K S、D 、K表示低温阀门在低温下各温度区间对阀杆的加长长度要求(根据相应标准并结合项目地区实际情况)、制造技术要求和检验要求。 低温阀门应遵照低温阀门技术条件JB/T7749-95,特别要指出: (1)工况为0∽-45℃的低温碳钢阀门要用干冰对所有零部件材料进行100%冷处理,这主要是为了材料在低温下进行冷缩变形。 工况为-46∽-196℃的不锈钢阀门要求按JB/T7749-95中 5.7条款将阀门各零部件100%进行深冷处理,防止材料的相变及体积变化。 (2)相同铸造条件,按每一熔炼炉次,每五个或不足五个的各抽取一个进行RT 检查,不合格时其余件应全部检查。 (3)低温不锈钢阀门材料按规范做-196℃下的低温冲击试验,低温碳钢阀门材料按规范做-45℃下的低温冲击试验。 (4)组装后的低温阀门的低温试验:以检验阀门在低温下的开启、关闭性能、密封性能等。 对于工况为-71∽-196℃的阀门要求按JB/T7749-95中6 条款进行100%逐个低温试

相关文档
相关文档 最新文档