Java SECS管理系统 SECS 客户端(Passive) 管理系统 springboot集成SECS通信协议 配方管理S7FX 上位机集成SECS PLC集成SECS

本文探讨了半导体行业中SECS/GEM协议中的关键概念——配方和PPID,阐述了它们在设备操作中的重要性,如配方选择、版本管理和生产过程追溯。通过PPID,设备能精确执行预设工艺,提升生产效率和产品质量。
摘要由CSDN通过智能技术生成

拥有完善的方案 ,软件开发时间可缩短80% 。

已经集成大量的逻辑和各类的应用场景,稳定运行于多家工厂

源代码   下载

在半导体行业,SECS/GEM(Semiconductor Equipment Communication Standard / Generic Equipment Model)协议中,“配方”(Recipe)是一个关键概念,它指的是设备进行特定工艺步骤时所需的一组详细参数集合。这些参数可能包括温度、压力、气体流量、时间周期等,决定了设备如何执行特定的生产过程,如薄膜沉积、光刻或蚀刻等。

“PPID”(Process Parameter ID 或 Process Program ID)是与配方相关的术语,在SECS/GEM通信中通常用来标识一个具体的配方。每个PPID对应一个独一无二的工艺程序或者配方版本,当设备从制造执行系统(MES)接收指令时,会根据提供的PPID来调用相应的配方数据,并按照这些数据配置和控制设备执行相关操作。

作用上,PPID的主要作用有:

  1. 配方选择与加载:通过传输指定的PPID,设备可以准确无误地加载并应用正确的工艺配方。
  2. 版本控制:不同的PPID可以帮助实现不同产品型号、批次或改进工艺的区分和管理,确保在生产过程中使用的是经过验证和批准的最新或指定版本的工艺参数。
  3. 追溯性:记录和追踪生产过程中的具体使用的PPID有助于实现生产过程的追溯性和质量保证体系。

因此,在SECS/GEM通信中,PPID起到了确保设备精确执行预设工艺流程的关键作用,对于提高生产效率、保证产品质量以及满足严格的质量管理体系要求至关重要。

 ① 获取所有配方编号

 ② 通过配方编号删除配方

③ 获取指定配方PPID资料明细 

④ 上传配方到设备资料库,以在生产下达指令时使用对应的PPID 

半导体行业-SECS/GEM协议 JAVA与SECS/GEM通信 什么是配方springboot集成SECS通信协议 配方管理S7FX 上位机PLC集成SECS

<template>
  <div class="app-container">
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button
          type="primary"
          plain
          icon="el-icon-plus"
          size="mini"
          @click="handleAdd"
          v-hasPermi="['system:notice:add']"
        >新增</el-button>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <el-table v-loading="loading" :data="ppidList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />
      <el-table-column label="配方ID" align="center"  prop="ppid" />
      <el-table-column label="湿度%RH" align="center" prop="ph" />
      <el-table-column label="温度" align="center" prop="temp" />
      <el-table-column label="mdln" align="center" prop="mdln" />
      <el-table-column label="softrev" align="center" prop="softrev" />
      <el-table-column label="ccode" align="center" prop="ccode" />
      <el-table-column label="备注信息" align="center" prop="remarks" />
      <el-table-column label="更新时间" align="center" prop="operTime" width="100">
        <template slot-scope="scope">
          <span>{{ scope.row.operTime.substring(0, 10)}}</span>
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width"  width="200">
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['system:notice:edit']"
          >修改</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['system:notice:remove']"
          >删除</el-button>
        </template>
      </el-table-column>
    </el-table>

    <pagination
      v-show="total>0"
      :total="total"
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />

    <!-- 添加或修改公告对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="950px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
        <el-row>
          <el-col :span="8">
            <el-form-item label="配方ID" prop="ppid">
              <el-input v-model="form.ppid" placeholder="指令名称" />
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="湿度%RH" prop="ph">
              <el-input v-model="form.ph" placeholder="相对湿度" />
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="温度" prop="temp">
              <el-input v-model="form.temp" placeholder="温度" />
            </el-form-item>
          </el-col>
        </el-row>
        <el-row>
          <el-col :span="8">
            <el-form-item label="mdln" prop="mdln">
              <el-input v-model="form.mdln" placeholder="mdln" />
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="softrev" prop="softrev">
              <el-input v-model="form.softrev" placeholder="softrev" />
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="ccode" prop="ccode">
              <el-input v-model="form.ccode" placeholder="ccode" />
            </el-form-item>
          </el-col>
        </el-row>
        <el-row>
          <el-col :span="8">
            <el-form-item label="备注信息" prop="remarks">
              <el-input v-model="form.remarks" placeholder="remarks" />
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { listPPID, getPPID, delPPID, addPPID, updatePPID } from "@/api/secs/ppid";

export default {
  name: "Notice",
  dicts: ['sys_notice_status', 'sys_notice_type'],
  data() {
    return {
      // 遮罩层
      loading: true,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      ppidList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        noticeTitle: undefined,
        createBy: undefined,
        status: undefined
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        ppid: [
          { required: true, message: "配方ID不能为空", trigger: "blur" }
        ]
      }
    };
  },
  created() {
    this.getList();
  },
  methods: {
    /** 查询公告列表 */
    getList() {
      this.loading = true;
      listPPID(this.queryParams).then(response => {
        this.ppidList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      this.form = {
        noticeId: undefined,
        noticeTitle: undefined,
        noticeType: undefined,
        noticeContent: undefined,
        status: "0"
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.resetForm("queryForm");
      this.handleQuery();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.ppidId)
      this.single = selection.length!=1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
      this.title = "添加Rmote";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id
      getPPID(id).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "修改Rmote";
      });
    },
    /** 提交按钮 */
    submitForm: function() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.form.id != undefined) {
                updatePPID(this.form).then(response => {
                  this.$modal.msgSuccess("修改成功");
                  this.open = false;
                  this.getList();
                });
              } else {
                addPPID(this.form).then(response => {
                  this.$modal.msgSuccess("新增成功");
                  this.open = false;
                  this.getList();
                });
              }
        }
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id 
      this.$modal.confirm('是否确认删除配方ID为"' + row.ppid + '"的数据项?').then(function() {
        return delPPID(id);
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess("删除成功");
      }).catch(() => {});
    }
  }
};
</script>
<style scoped lang="scss">
  .el-form-item__label{
    width: 100px;
  }
</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值