1.4 C
New York
Wednesday, February 12, 2025

Speed up Trade 4.0 Adoption utilizing Containerized Gateway Companies


As a part of the Manufacturing sector’s digitization course of, Trade 4.0 automation drives real-time, information acquisition from industrial tools on the plant ground. This information and rapid suggestions have develop into a mission-critical requirement. As well as, latest provide chain disruptions have elevated the lead time to acquire edge {hardware} leading to a number of months delays to modernization tasks. A few of the most difficult features of the modernization course of contain organising gadget connectivity, establishing a number of communication protocols, and buying the correct {hardware} to deploy at scale and throughout industrial websites. This weblog submit explains how one can deploy a number of cases of edge software program on a single gadget. On this resolution, we deploy one occasion for every atmosphere (improvement and high quality) to keep away from needing to acquire extra {hardware} for every atmosphere. The sting software program that we focus on embody AWS IoT SiteWise Edge utilizing AWS IoT Greengrass because the runtime atmosphere and runs in a Docker container. You deploy the software program utilizing the AWS Cloud Improvement Equipment (AWS CDK) and the GNU Make utility.

Conditions

  1. AWS Accounts_ – Two AWS accounts with default Amazon Digital Personal Cloud (Amazon VPC) subnet configuration. The accounts must have ample AWS Id and Entry Administration (IAM) permissions to launch Amazon EC2 cases, provision IoT Greengrass units, and arrange AWS IoT SiteWise fashions and belongings. Notice that the Amazon Machine Picture (AMI) we use within the setup is out there solely within the Northern Virginia (us-east-1) Area. You will want to repeat the AMI for deployment to different Areas.
  2. Set up Docker and Docker Compose in your edge gateway gadget to construct and deploy containers.
  3. In your native improvement machine,
    1. Set up and configure the AWS Command Line Interface (AWS CLI) following the steps supplied at Arrange the AWS CLI.
    2. Set up AWS Cloud Improvement Equipment (AWS CDK) to provision cloud sources. Consult with the AWS CDK Workshop to achieve hands-on expertise utilizing the AWS CDK.
    3. Clone the run-multiple-sitewise-gateways-using-containers pattern repo from GitHub following the steps supplied at Cloning a repository.

Resolution Walkthrough

For demonstration functions, let’s contemplate an automotive manufacturing plant with a stamping manufacturing line comprising of two stamping presses. You ingest real-time measurement information from every stamping press into two AWS environments (named improvement and high quality) utilizing two cases of the sting software program working on the identical edge {hardware}.

First, you simulate temperature and strain measurement values each 1 second utilizing Ignition software program put in on an Amazon Elastic Compute Cloud (Amazon EC2) occasion. Subsequent, you create a digital illustration of the 2 stamping presses in AWS IoT SiteWise in each the event and high quality environments.

Lastly, you put together the sting gateway gadget and deploy two cases of AWS IoT SiteWise Edge. You check the end-to-end information circulate from the Stamping Presses to AWS IoT SiteWise in each the event and high quality environments. Beneath is the structure diagram of the answer that we simply described:

Architecture Diagram of the Solution

Steps

  1. Put together your environments

Use two AWS accounts to characterize the event and high quality environments. You possibly can both use current accounts or create new ones.

Notice: Write down the 12-digit AWS account ID for every account as you will want them within the following steps.

   2. Simulate real-time measurement information for industrial tools

Use the Ignition software program to arrange an OPC Unified Structure (OPC UA) simulator server. Set up the software program on an Amazon EC2 occasion, and configure pattern tags to simulate temperature and strain information for the stamping presses.

   2.1 Select your goal atmosphere

Choose the atmosphere the place you’ll deploy your cloud sources. First, you select the AWS account that represents your improvement atmosphere.

If you return to this part for deploying the answer a second time on the standard atmosphere, choose the AWS account that represents your high quality atmosphere.

To decide on the goal atmosphere, replace the account and area parameters within the iot-factory-cdk/cdk.json file.

Notice: The Neighborhood Amazon Machine Picture (AMI) for Ignition is at present out there solely within the us-east-1 Area. Should you want to deploy the answer in one other Area, you’ll be able to copy the AMI utilizing the steps supplied at Copy an AMI.

2.2 Set up Ignition software program

Launch an Amazon EC2 occasion and set up the Ignition software program utilizing AWS CDK. (In a real-world state of affairs, as an alternative of an Amazon EC2 occasion, you possibly can use edge {hardware} inside your manufacturing facility.)

Change the listing to iot-factory-cdk and subject the next command to deploy a CDK stack, which incorporates all of the sources wanted to run Ignition.

cdk deploy OPCUAInstanceStack

Navigate to the AWS CloudFormation Console to confirm the deployment and search for a stack named OPCUAInstanceStack.

Cloudformation Ouptut

Notice: Write down the EC2IP, EC2PublicIP, and EC2Port parameter values. You’ll use them within the following steps.

2.3 Configure the Ignition software program to simulate information

Now that you’ve got put in Ignition software program, let’s configure it to simulate the information for the stamping presses. (In a real-world state of affairs, Ignition sometimes collects information from industrial tools, reminiscent of stamping presses, by way of Programmable Logic Controllers (PLCs).

To configure Ignition, entry an online browser. Enable inbound HTTP site visitors to the underlying Amazon EC2 occasion internet hosting Ignition by following the directions at Authorize inbound site visitors to your Linux cases. Alternatively, chances are you’ll contemplate organising port forwarding as demonstrated in this weblog submit to keep away from entry to the occasion from the general public IP tackle by securely create tunnels between your cases.

Launch Ignition utilizing the URL http://<EC2PublicIP> and log in utilizing the default credentials (username: admin, password: password). Substitute EC2PublicIP with the worth famous in step 2.2.

Chances are you’ll need to change the default credentials following the directions at Gateway Safety earlier than continuing.

Now, create a knowledge simulator gadget to characterize manufacturing line 1 and two stamping presses following the steps beneath:

  • Navigate to Config > OPC UA > Gadget Connections.
  • Create a brand new gadget utilizing Create new Gadget > Programmable Gadget Simulator > Subsequent and use Manufacturing Line 1 as its identify. Then, select Create New Gadget.
  • Load an current program to simulate information for temperature and strain measurements.
    • Select Extra > edit program > Load Simulator Program > Load from CSV choice.
    • Browse to iot-factory-cdk/iot_factory_cdk/stacks/opcua_datasource /simulator_program_instructions.csv and choose Load Simulator Program.
    • Select Save Program.

Your information simulator gadget is prepared. Ignition begins simulating information for all 4 measurements each 1 second.

3.Create a digital illustration of commercial tools

Create asset fashions and belongings to digitally characterize your stamping line and two stamping presses.

Challenge the next command to deploy a CDK stack. This contains all of the sources wanted from AWS IoT SiteWise.

cdk deploy SiteWiseAssetStack

Confirm the AWS IoT SiteWise sources by navigating to the AWS IoT SiteWise consoleBelongings. You must see the belongings arrange as proven within the following screenshot.

Fig: AWS IoT SiteWise console with assets and asset hierarchy displayed

AWS IoT SiteWise console with belongings and asset hierarchy displayed

4.Provision the required edge and cloud sources to ingest information from OPC UA Server

Arrange the AWS IoT SiteWise Edge Gateway on the sting gateway gadget and set up connectivity with the Ignition OPC UA server you arrange earlier.

Replace the iot-factory-cdk/env.sh with the next parameters

  • Atmosphere: Any lowercase string that represents your atmosphere, reminiscent of dev.
  • OPCUAIP: The IP tackle of the OPC UA server. EC2IP from Step 2.2
  • OPCUAPort: The port used for the OPC UA server. That is the Amazon EC2Port from Step 2.2

Use the next instructions to deploy the sources:

supply iot-factory-cdk/env.sh

cdk deploy IotFactoryCdkStack

Confirm the deployment by navigating to the [AWS CloudFormation Console](https://console.aws.amazon.com/cloudformation/residence) and on the lookout for a stack named IotFactoryCdkStack

Cloudformation Stack

4.1 Put together the Docker compose file

Challenge the next command to create a Docker compose file.

Make sure you run the script from the identical atmosphere the place your ran cdk deploy within the prior step.

The python script depends on parameters from the cdk.out, which is a duplicate of the asset created by AWS CDK. Learn extra about CDK belongings at Belongings.

python3 greengrassv2-installation/docker/config_docker.py

Evaluation the docker-compose.yml file that’s created underneathgreengrassv2-installation/dockerlisting.

The docker-compose file incorporates a reference to the Docker picture for IoT Greengrass v2, together with the mandatory configurations reminiscent of atmosphere variables, file path for the certificates required for IoT Greengrass v2 to register a core gadget.

4.2 Construct a Docker picture and run the container

Notice: You have to copy the greengrassv2-installation/docker folder to your edge gateway gadget as a result of it incorporates the mandatory configurations and certificates to register the IoT Greengrass v2 core gadget.

Challenge the next instructions on the sting gateway gadget the place the Docker daemon runs. It sometimes runs on edge {hardware} in your on-premises information middle that has community connectivity with each your information supply (Ignition or any OPC UA appropriate server) and the AWS Cloud.

Challenge the next to construct a Docker picture

cd greengrassv2-installation/docker/

make construct

Run the Docker container

cd greengrassv2-installation/docker/

make begin

4.3 Enable incoming site visitors to the OPC UA server

Enable incoming connections from the AWS IoT SiteWise gateway (working on the sting gateway gadget) to the Ignition OPC UA server.

Consult with the Gateway Port Reference to know the ports you need to open.

5.Validate the Knowledge Movement

To this point, you deployed and configured all of the sources wanted to gather information out of your industrial tools at edge and ship it to AWS IoT SiteWise. Now, check the end-to-end information circulate utilizing the AWS IoT SiteWise console.

  • Navigate to AWS IoT SiteWise console > Belongings.
  • Navigate to Sample_Site1 > Sample_Area1 > Sample_Line1 > Pattern StampingPress1.
  • Swap to the Measurements tab and search for values underneath the Newest worth column.
  • Be sure that you discover the real-time temperature and strain values.
  • Repeat these steps for the Pattern StampingPress2 asset.

6.Create a brand new gadget simulation for the High quality atmosphere

Repeat steps 2 by way of 5 within the second AWS account to characterize your High quality atmosphere.

After you validate the outcomes, you’ll be able to delete the deployed CDK stacks to keep away from incurring extra prices.

  • cdk destroy IotFactoryCdkStack
  • cdk destroy SiteWiseAssetStack
  • cdk destroy OPCUAInstanceStack

Conclusion

On this weblog, you realized the way to use a single edge gateway gadget for a number of environments, reminiscent of improvement and high quality. This resolution averted the necessity to dedicate extra {hardware} to every atmosphere. Whereas finishing the method, you deployed a number of cases of the software program on the identical edge gadget – one occasion for every atmosphere. Utilizing the sting software program, you had been capable of ingest real-time information from an OPC UA server on the edge and ship it to AWS IoT SiteWise. To Be taught extra, checkout AWS IoT SiteWise Assets.

Creator biographies

Related Articles

Latest Articles