Exemplo n.º 1
0
simple.add_component(
  Pipe(
    1.0, 0.5, Point(4.0, 0.0), name = 'Pipe 3', angle = 0.0,
    label_location = 'center', label_pad = 0.0, label_angle = 0.0
  )
)

simple.add_node(1.5, 0.0, name = 'Node 1')
simple.add_node(1.5, 1.0, name = 'Node 2')

simple.add_node(3.5, 1.0, name = 'Node 3')
simple.add_node(3.5, 0.0, name = 'Node 4')

simple.connect(
  'Pipe 1:outlet', 'Node 1', 'Node 2', 'Pipe 2:inlet',
  name = 'Junction 1', label_edge_number = 0, label_location = 'top',
  label_pad = 1.0, label_angle = 0.0, label_shift = 1.0
)

simple.connect(
  'Pipe 2:outlet', 'Node 3', 'Node 4', 'Pipe 3:inlet',
  name = 'Junction 2', label_edge_number = 2, label_location = 'top',
  label_pad = 1.0, label_angle = 0.0, label_shift = -1.0
)

CAN = Canvas(border_thickness = 0.05, grid = True)
CAN.add_system(simple)

CAN.draw(save_file = 'test.pdf', display = True, print_information = False)
Exemplo n.º 2
0
y = HXA.center_of_rotation.y - hx_length - 0.4
tmi.add_node(x, y, name = 'Branch6-A:1')
tmi.add_node(-1.0 * x, y, name = 'Branch6-B:1')

x = Pipe2CLA.center_of_rotation.x + 0.4
tmi.add_node(x, y, name = 'Branch6-A:2')
tmi.add_node(-1.0 * x, y, name = 'Branch6-B:2')

y = Pipe2CLA.center_of_rotation.y
tmi.add_node(x, y, name = 'Branch6-A:3')
tmi.add_node(-1.0 * x, y, name = 'Branch6-B:3')

tmi.connect(
  'HX-A(primary):outlet', 'Branch6-A:1', 'Branch6-A:2', 'Branch6-A:3', 'pipe2-CL-A:inlet',
  name = 'Branch6-A', label_edge_number = 1, label_location = 'bottom',
  label_pad = 1.0, label_angle = 0.0, label_shift = 1.0
)

tmi.connect(
  'HX-B(primary):outlet', 'Branch6-B:1', 'Branch6-B:2', 'Branch6-B:3', 'pipe2-CL-B:inlet',
  name = 'Branch6-B', label_edge_number = 1, label_location = 'top',
  label_pad = 1.0, label_angle = 0.0, label_shift = 1.0
)


# draw
CAN = Canvas(border_thickness = 0.0, grid = False)
CAN.add_system(tmi)

CAN.draw(save_file = 'tmi.pdf', display = True)
Exemplo n.º 3
0
command_line_parser = ExampleDebugger("A simple system.")
command_line_parser.parse()

from schematics import Canvas
from schematics import System
from schematics import Pipe
from schematics import Pump
from schematics import CoreChannel
from schematics import Point

tmi = System("tmi")

radius = 1.0
px = 0.0
py = 0.0
y = (0.5 * radius) + py
x = (3.0 * radius) + px
tmi.add_node(x, y, name="outlet")

PumpA = Pump(radius, Point(px, py), name="Pump", ref=None, angle=90.0, label_angle=0.0)
tmi.add_component(PumpA)

tmi.connect("Pump:outlet", "outlet")


CAN = Canvas(border_thickness=0.05, grid=True)
CAN.add_system(tmi)

CAN.draw(save_file="tmi.pdf", display=True)
Exemplo n.º 4
0
simple.add_component(
    Pipe(1.0,
         0.5,
         Point(1.5, 0.5),
         name='Pipe 2',
         angle=90.0,
         label_location='center',
         label_pad=0.0,
         label_angle=0.0))

simple.add_node(1.5, 0.0, name='Node 1')

simple.connect('Pipe 1:outlet',
               'Node 1',
               'Pipe 2:inlet',
               name='Junction 1',
               label_edge_number=0,
               label_location='top',
               label_pad=1.0,
               label_angle=0.0,
               label_shift=1.0)

simple_copy = simple.copy(4.5, 0.0)

CAN = Canvas(border_thickness=0.05, grid=True)
CAN.add_system(simple)
CAN.add_system(simple_copy)

CAN.draw(save_file='test.pdf', display=True, print_information=False)