"WPS焊接工艺规程(AWS版)详解:制造符合规范要求的焊缝指南"

版权申诉
0 下载量 113 浏览量 更新于2024-04-05 收藏 1.59MB PPT 举报
A Welding Procedure Specification (WPS) is a document that provides guidance and direction for the welding process to ensure compliance with industry standards. It is a qualified welding procedure that outlines the specific parameters and techniques required to produce quality welds. The WPS includes essential information such as welding materials, welding techniques, pre-heat and post-heat requirements, welding positions, and testing procedures. The purpose of a WPS is to ensure that welds meet the specified criteria and are performed in a consistent and reliable manner. It is essential for maintaining quality control and ensuring the safety and integrity of welded components. Additionally, the WPS provides a standardized approach to welding that can be followed by welders and welding operators to achieve consistent results. In summary, a Welding Procedure Specification is a critical document that serves as a guideline for welding processes, ensuring that welds meet industry standards and requirements. It is an essential tool for quality control, safety, and the overall integrity of welded components. By following the guidelines outlined in the WPS, welders can achieve consistent and high-quality welds that adhere to Code requirements.

解释下Peoplesoft的这段代码 Component array of array of any &tmpArray; Local Record &rec1, &rec2; &rec1 = CreateRecord(Record.HIK_IPSANRS_TBL); &rec2 = CreateRecord(Record.HIK_IPSAN_TBL); Local Rowset &rsLvl1, &rsDtl; Local number &i, &j; Local Row &row; &rsLvl1 = GetLevel0()(1).GetRowset(Scroll.WPS_STR_INF_TBL); For &i = 1 To &rsLvl1.ActiveRowCount &rsDtl = &rsLvl1(&i).GetRowset(Scroll.WPS_STR_DTL_TBL); For &j = 1 To &rsDtl.ActiveRowCount &row = &rsDtl(&j); If Not &row.IsDeleted Then If All(&row.WPS_STR_DTL_TBL.WPS_GP_AMT_ID.Value) Then &rec1 = CreateRecord(Record.WPS_IPSANRS_TBL); &rec1.WPS_GP_AMT_ID.Value = &row.WPS_STR_DTL_TBL.WPS_GP_AMT_ID.Value; &rec1.EFFDT.Value = &row.WPS_STR_DTL_TBL.EFFDT.Value; If &rec1.SelectByKey() Then &rec1.WPS_GP_AMT_ID.Value = &row.WPS_STR_DTL_TBL.WPS_GP_AMT_ID.Value; &rec1.EFFDT.Value = &row.WPS_STR_DTL_TBL.EFFDT.Value; &rec1.STATUS.Value = &rsLvl1(&i).WPS_STR_INF_TBL.STATUS.Value; &rec1.Update(); Else &rec1.WPS_GP_AMT_ID.Value = &row.WPS_STR_DTL_TBL.WPS_GP_AMT_ID.Value; &rec1.EFFDT.Value = &row.WPS_STR_DTL_TBL.EFFDT.Value; &rec1.STATUS.Value = "A"; &rec1.Insert(); End-If; &rec2 = CreateRecord(Record.WPS_IPSAN_TBL); &rec2.WPS_GP_AMT_ID.Value = &row.WPS_STR_DTL_TBL.WPS_GP_AMT_ID.Value; &rec2.EFFDT.Value = &row.WPS_STR_DTL_TBL.EFFDT.Value; &rec2.WPS_STORID.Value = &row.WPS_STR_DTL_TBL.WPS_STORID.Value; &rec2.WPS_GP_WAGECODE.Value = &row.WPS_STR_DTL_TBL.WPS_GP_WAGECODE.Value; If Not &rec2.Insert() Then &rec2.Update(); End-If; End-If; End-If; End-For; End-For;

2023-06-13 上传