Pid example 1
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
A P&ID for automated butterfly valve
Explore recent pid work made by real visitors, with the exact prompt shown beside every result. Study what worked, adapt the details, then continue in the original tool with your chosen prompt already filled in.
Make your ownThe prompt is part of the exhibit, not hidden metadata.
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
A P&ID for automated butterfly valve
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
A P&ID for automated valve
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
펌프에서 탱크로 이동
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
Water treatment loop with pH control and dosing pump
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
from graphviz import Digraph pid = Digraph('PID') pid.attr(rankdir='LR', splines='ortho', nodesep='0.5', ranksep='0.8') # Equipment pid.node('T101', 'Storage Tank\nT-101', shape='cylinder') pid.node('P101', 'P-101\n30 m3/hr\nPump', shape='box') pid.node('F101', 'Filter\nF-101', shape='box') pid.node('E101', 'Plate Heat\nExchanger\nE-101', shape='box') pid.node('V101', 'Process Vessel\nV-101', shape='cylinder') pid.node('C101', 'Cooling Tower', shape='box3d') pid.node('TK102', 'CCW Tank', shape='cylinder') # Instruments pid.node('LT101', 'LT', shape='circle') pid.node('LIC101', 'LIC', shape='circle') pid.node('FT101', 'FT', shape='circle') pid.node('FIC101', 'FIC', shape='circle') pid.node('TT101', 'TT', shape='circle') pid.node('TIC101', 'TIC', shape='circle') pid.node('PI101', 'PI', shape='circle') pid.node('PSV101', 'PSV', shape='triangle') # Process Lines pid.edge('T101', 'P101') pid.edge('P101', 'F101') pid.edge('F101', 'E101') pid.edge('E101', 'V101') # Cooling Water pid.edge('TK102', 'C101', label='CCW') pid.edge('C101', 'E101') # Instrument Connections pid.edge('LT101', 'LIC101', style='dashed') pid.edge('LIC101', 'T101', style='dashed') pid.edge('FT101', 'FIC101', style='dashed') pid.edge('FIC101', 'P101', style='dashed') pid.edge('TT101', 'TIC101', style='dashed') pid.edge('TIC101', 'E101', style='dashed') pid.edge('PI101', 'E101', style='dashed') pid.edge('PSV101', 'V101') pid.render('PID_Diagram', format='png', cleanup=True) print("P&ID generated successfully.")
A real visitor-created pid example. The exact prompt is included below so you can study and adapt it.
A P&ID for 14 tanks line to interchange area which consist of two line of export pump 150kwh each, complete with pigging launcher and receiver 8 inch line for each tanks
Start from any prompt above, then replace the subject, setting, palette, or constraints until it becomes yours.