{"id":45383,"date":"2019-09-29T10:20:40","date_gmt":"2019-09-29T04:50:40","guid":{"rendered":"https:\/\/ye1o34zhk8.onrocket.site\/?p=45383"},"modified":"2023-08-11T10:22:35","modified_gmt":"2023-08-11T04:52:35","slug":"plc-programming-examples","status":"publish","type":"post","link":"https:\/\/instrumentationtools.com\/plc-programming-examples\/","title":{"rendered":"PLC Programming Examples on Industrial Automation"},"content":{"rendered":"\n<p>Develop <strong>PLC Programming Examples<\/strong> on Industrial Automation according to the logic given below,<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A Saw, Fan and oil pump all go ON when a start button is pressed.<\/li>\n\n\n\n<li>If the saw has operated less than 20s, the <a href=\"https:\/\/instrumentationtools.com\/plc-ladder-logic-for-lube-oil-pump-motor\/\" target=\"_blank\" rel=\"noreferrer noopener\">oil pump<\/a> should go off when the saw is turned off and the fan is to run for an additional 5s after the shutdown of the saw.<\/li>\n\n\n\n<li>If the saw has operated for more than 20s, the fan should remain on until reset by a separate fan reset button and the oil pump should remain on for an additional 10 s after the saw is turned off.<\/li>\n\n\n\n<li>Write a PLC program that will implement this process.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plc-programming-examples\">PLC Programming Examples<\/h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC.jpg\" alt=\"PLC Programming Examples on Industrial Automation\" class=\"wp-image-45387\" title=\"PLC Programming Examples on Industrial Automation\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-program-description\">Program Description:<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-rung-0000\">Rung 0000:<\/h4>\n\n\n\n<p>Start\/Emergency Stop PB latched with memory B3:0\/0.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-rung-0001\">Rung 0001:<\/h4>\n\n\n\n<p>B3:0\/0 enabled to turn on Saw (O: 0\/0), Fan (O: 0\/1 ) and Oil pump (O:0\/2).<\/p>\n\n\n\n<p>Normally closed contact of <a href=\"https:\/\/instrumentationforum.com\/t\/what-is-motor-jog-switch-operation\/7944\" target=\"_blank\" rel=\"noopener noreferrer\">Stop switch<\/a> is in series Saw output to turn off.<\/p>\n\n\n\n<p>Fan reset switch and Timer T4:0 is connected to turn off Fan when condition meets.<\/p>\n\n\n\n<p>Timer T4:2 done a bit and memory bit is to turn off the oil pump.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-rung-0002\">Rung 0002:<\/h4>\n\n\n\n<p>When the stop is pressed, according to the logic mentioned in point 2, Fan output (O: 0\/2) needs to turn off after 5s.<\/p>\n\n\n\n<p>Comparator block restricts the timer T4:0 to run after the 20s of Saw operation.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-rung-0003\">Rung 0003:<\/h4>\n\n\n\n<p>Timer T4:1 runs when the start is pressed. When the stop is pressed at any point after the 20s, Saw output will go off.<\/p>\n\n\n\n<p>After 10s, the oil pump will go off. This operation is done by Timer T4:2. Timer T4:0 done bit is used to restrict the <a href=\"https:\/\/instrumentationtools.com\/ladder-logic-example-with-timers\/\" target=\"_blank\" rel=\"noopener noreferrer\">Timer<\/a> T4:1 operation when T4:0 is ON.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-rung-0004\">Rung 0004:<\/h4>\n\n\n\n<p>Less than a <a href=\"https:\/\/instrumentationtools.com\/comparator-in-plc-programming\/\" target=\"_blank\" rel=\"noopener noreferrer\">comparator block<\/a> is used to perform the logic mentioned in point 2, to turn off Fan when saw output operation was less than 20s.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-program-output\">Program Output:<\/h2>\n\n\n\n<p>Now we see the simulation of above ladder logic for different conditions as mentioned below.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-start-pb-is-pressed\">When Start PB is pressed<\/h3>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1421\" height=\"522\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/PLC-Programming-Examples.jpg\" alt=\"PLC Programming Examples\" class=\"wp-image-45388\" title=\"PLC Programming Examples\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-stop-switch-pressed-before-the-20s\">When Stop switch pressed before the 20s<\/h3>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1412\" height=\"511\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Motor-Start-after-seconds-delay-in-ladder-logic.jpg\" alt=\"Motor Start after seconds delay in ladder logic\" class=\"wp-image-45389\" title=\"Motor Start after seconds delay in ladder logic\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-stop-switch-pressed-after-the-20s\">When Stop switch pressed after the 20s<\/h3>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1411\" height=\"523\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Motor-Stop-after-timer-using-ladder-logic.jpg\" alt=\"Motor Stop after timer using ladder logic\" class=\"wp-image-45390\" title=\"Motor Stop after timer using ladder logic\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-fan-reset-switch-is-pressed\">When Fan reset switch is pressed<\/h3>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1407\" height=\"357\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Fan-Logic-using-PLC-Programming.jpg\" alt=\"Fan Logic using PLC Programming\" class=\"wp-image-45391\" title=\"Fan Logic\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion:<\/h3>\n\n\n\n<p>We can use this example to understand the programming logic in Allen Bradley PLC.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"PLC Programming Tutorial for Beginners - Siemens PLC Training Course\" width=\"1240\" height=\"698\" src=\"https:\/\/www.youtube.com\/embed\/ksQrkag-nHI?list=PLI78ZBihrkE2WdegX1oeZnXi5j1haKC2c\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p id=\"h-author-hema-sundaresan\">Author: Hema Sundaresan<\/p>\n\n\n\n<p>If you liked this article, then please subscribe to our <a href=\"http:\/\/youtube.com\/instrumentationtools?sub_confirmation=1\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube Channel<\/a> for PLC and SCADA video tutorials. <\/p>\n\n\n\n<p>You can also follow us on <a href=\"https:\/\/www.facebook.com\/instrumentationtoolss\" target=\"_blank\" rel=\"noreferrer noopener\">Facebook<\/a> and <a href=\"https:\/\/twitter.com\/InstTools\" target=\"_blank\" rel=\"noreferrer noopener\">Twitter<\/a> to receive daily updates.<\/p>\n\n\n\n<p id=\"h-read-next\"><strong>Read Next:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/instrumentationtools.com\/plc-sequencer-instruction-with-example\/\" target=\"_blank\" rel=\"noopener noreferrer\">PLC Sequencer Programming<\/a><\/li>\n\n\n\n<li><a class=\"LinkSuggestion__Link-sc-1mdih4x-2 jZPuuT\" href=\"https:\/\/instrumentationtools.com\/plc-redundancy\/\" target=\"_blank\" rel=\"noopener noreferrer\">What is PLC Redundancy?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/encode-and-decode-instructions-in-plc\/\" target=\"_blank\" rel=\"noopener noreferrer\">Encode &amp; Decode Instruction<\/a><\/li>\n\n\n\n<li><a class=\"LinkSuggestion__Link-sc-1mdih4x-2 jZPuuT\" href=\"https:\/\/instrumentationtools.com\/plc-program-motor-starter\/\" target=\"_blank\" rel=\"noopener noreferrer\">PLC Program for Motor Starter<\/a><\/li>\n\n\n\n<li><a class=\"LinkSuggestion__Link-sc-1mdih4x-2 jZPuuT\" href=\"https:\/\/instrumentationtools.com\/jump-instruction-in-plc-ladder-logic\/\" target=\"_blank\" rel=\"noopener noreferrer\">JUMP Instruction in PLC Program<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Develop PLC Programming Examples on Industrial Automation according to the logic given below, PLC Programming Examples Program Description: Rung 0000: Start\/Emergency Stop PB latched with memory B3:0\/0. Rung 0001: B3:0\/0 enabled to turn on Saw (O: 0\/0), Fan (O: 0\/1 ) and Oil pump (O:0\/2). Normally closed contact of Stop switch is in series Saw [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":45387,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_mo_disable_npp":"","footnotes":""},"categories":[6],"tags":[96994,3158,96995,96993],"class_list":{"0":"post-45383","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-plc","8":"tag-fan-ladder-logic","9":"tag-ladder-logic","10":"tag-ladder-logic-example","11":"tag-pump-ladder-logic"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>PLC Programming Examples on Industrial Automation<\/title>\n<meta name=\"description\" content=\"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/instrumentationtools.com\/plc-programming-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PLC Programming Examples on Industrial Automation\" \/>\n<meta property=\"og:description\" content=\"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/instrumentationtools.com\/plc-programming-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Inst Tools\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/instrumentationtoolss\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/instrumentationtoolss\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-29T04:50:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-11T04:52:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2210\" \/>\n\t<meta property=\"og:image:height\" content=\"2560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Editorial Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"PLC Programming Examples on Industrial Automation\" \/>\n<meta name=\"twitter:description\" content=\"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.\" \/>\n<meta name=\"twitter:creator\" content=\"@insttools\" \/>\n<meta name=\"twitter:site\" content=\"@insttools\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/\"},\"author\":{\"name\":\"Editorial Staff\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/41ad3dac301c219e8d41b1ace61655b2\"},\"headline\":\"PLC Programming Examples on Industrial Automation\",\"datePublished\":\"2019-09-29T04:50:40+00:00\",\"dateModified\":\"2023-08-11T04:52:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/\"},\"wordCount\":444,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg\",\"keywords\":[\"Fan Ladder Logic\",\"Ladder Logic\",\"Ladder Logic Example\",\"Pump Ladder Logic\"],\"articleSection\":[\"PLC Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/\",\"name\":\"PLC Programming Examples on Industrial Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg\",\"datePublished\":\"2019-09-29T04:50:40+00:00\",\"dateModified\":\"2023-08-11T04:52:35+00:00\",\"description\":\"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg\",\"width\":2210,\"height\":2560,\"caption\":\"Example Program Logic in Allen Bradley PLC\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/plc-programming-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/instrumentationtools.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PLC Programming Examples on Industrial Automation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"name\":\"Instrumentation Tools\",\"description\":\"Instrumentation, Electrical, PLC, Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"alternateName\":\"Inst Tools\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/instrumentationtools.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\",\"name\":\"Instrumentation Tools\",\"alternateName\":\"Inst Tools\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"width\":1024,\"height\":1024,\"caption\":\"Instrumentation Tools\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/instrumentationtoolss\\\/\",\"https:\\\/\\\/x.com\\\/insttools\",\"https:\\\/\\\/mastodon.social\\\/@InstrumentationTools\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/instrumentationtools\\\/\",\"https:\\\/\\\/whatsapp.com\\\/channel\\\/0029VaAbUecLNSa4rDPOV31o\",\"https:\\\/\\\/t.me\\\/+u3qORX5FKec1NjA1\",\"https:\\\/\\\/www.instagram.com\\\/instrumentationtools\\\/\",\"https:\\\/\\\/youtube.com\\\/instrumentationtools\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/41ad3dac301c219e8d41b1ace61655b2\",\"name\":\"Editorial Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g\",\"caption\":\"Editorial Staff\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/instrumentationtoolss\",\"https:\\\/\\\/x.com\\\/insttools\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/InstrumentationTools\\\/\"],\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/author\\\/editorial\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PLC Programming Examples on Industrial Automation","description":"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/instrumentationtools.com\/plc-programming-examples\/","og_locale":"en_US","og_type":"article","og_title":"PLC Programming Examples on Industrial Automation","og_description":"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.","og_url":"https:\/\/instrumentationtools.com\/plc-programming-examples\/","og_site_name":"Inst Tools","article_publisher":"https:\/\/www.facebook.com\/instrumentationtoolss\/","article_author":"https:\/\/www.facebook.com\/instrumentationtoolss","article_published_time":"2019-09-29T04:50:40+00:00","article_modified_time":"2023-08-11T04:52:35+00:00","og_image":[{"width":2210,"height":2560,"url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg","type":"image\/jpeg"}],"author":"Editorial Staff","twitter_card":"summary_large_image","twitter_title":"PLC Programming Examples on Industrial Automation","twitter_description":"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.","twitter_creator":"@insttools","twitter_site":"@insttools","twitter_misc":{"Written by":"Editorial Staff","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#article","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/"},"author":{"name":"Editorial Staff","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/41ad3dac301c219e8d41b1ace61655b2"},"headline":"PLC Programming Examples on Industrial Automation","datePublished":"2019-09-29T04:50:40+00:00","dateModified":"2023-08-11T04:52:35+00:00","mainEntityOfPage":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/"},"wordCount":444,"commentCount":5,"publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"image":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg","keywords":["Fan Ladder Logic","Ladder Logic","Ladder Logic Example","Pump Ladder Logic"],"articleSection":["PLC Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/instrumentationtools.com\/plc-programming-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/","url":"https:\/\/instrumentationtools.com\/plc-programming-examples\/","name":"PLC Programming Examples on Industrial Automation","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#primaryimage"},"image":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg","datePublished":"2019-09-29T04:50:40+00:00","dateModified":"2023-08-11T04:52:35+00:00","description":"Develop PLC Programming Examples on Industrial Automation according to the logic based on timer delay to control a saw, fan, and oil pump.","breadcrumb":{"@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/instrumentationtools.com\/plc-programming-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#primaryimage","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2019\/09\/Example-Program-Logic-in-Allen-Bradley-PLC-scaled.jpg","width":2210,"height":2560,"caption":"Example Program Logic in Allen Bradley PLC"},{"@type":"BreadcrumbList","@id":"https:\/\/instrumentationtools.com\/plc-programming-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/instrumentationtools.com\/"},{"@type":"ListItem","position":2,"name":"PLC Programming Examples on Industrial Automation"}]},{"@type":"WebSite","@id":"https:\/\/instrumentationtools.com\/#website","url":"https:\/\/instrumentationtools.com\/","name":"Instrumentation Tools","description":"Instrumentation, Electrical, PLC, Tutorials","publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"alternateName":"Inst Tools","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/instrumentationtools.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/instrumentationtools.com\/#organization","name":"Instrumentation Tools","alternateName":"Inst Tools","url":"https:\/\/instrumentationtools.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","width":1024,"height":1024,"caption":"Instrumentation Tools"},"image":{"@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/instrumentationtoolss\/","https:\/\/x.com\/insttools","https:\/\/mastodon.social\/@InstrumentationTools","https:\/\/www.linkedin.com\/company\/instrumentationtools\/","https:\/\/whatsapp.com\/channel\/0029VaAbUecLNSa4rDPOV31o","https:\/\/t.me\/+u3qORX5FKec1NjA1","https:\/\/www.instagram.com\/instrumentationtools\/","https:\/\/youtube.com\/instrumentationtools"]},{"@type":"Person","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/41ad3dac301c219e8d41b1ace61655b2","name":"Editorial Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7d7b78a0bf6b95aebc68e7790f9094403ae40b3fcb9c436cb6956873b90826de?s=96&d=mm&r=g","caption":"Editorial Staff"},"sameAs":["https:\/\/www.facebook.com\/instrumentationtoolss","https:\/\/x.com\/insttools","https:\/\/www.youtube.com\/c\/InstrumentationTools\/"],"url":"https:\/\/instrumentationtools.com\/author\/editorial\/"}]}},"_links":{"self":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/45383","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/comments?post=45383"}],"version-history":[{"count":0,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/45383\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media\/45387"}],"wp:attachment":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media?parent=45383"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/categories?post=45383"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/tags?post=45383"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}