Exemplo n.º 1
0
simple.add_component(
  Pipe(
    1.0, 0.5, Point(2.0, 1.0), name = 'Pipe 2', angle = 0.0,
    label_location = 'center', label_pad = 0.0, label_angle = 0.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
Exemplo n.º 2
0
)
tmi.add_component(DowncomerA)

x *= -1.0
y = length
DowncomerB = Pipe(
    length, pipe_width,
    Point(x, y),
    name = 'DownComer-B', a = -90.0
)
tmi.add_component(DowncomerB)

# Lower Plenum Nodes
x = DowncomerA.center_of_rotation.x
y = -0.6
tmi.add_node(x, y, name = 'DownComer-A:LowerPlenum')

x = DowncomerB.center_of_rotation.x
tmi.add_node(x, y, name = 'DownComer-B:LowerPlenum')

x = 0.0
tmi.add_node(x, y, name = 'LowerPlenum1')
y = -0.3
tmi.add_node(x, y, name = 'LowerPlenum2')

x = Bypass.center_of_rotation.x
tmi.add_node(x, y, name = 'bypass_pipe:LowerPlenum')

x = CH1.center_of_rotation.x
tmi.add_node(x, y, name = 'CH1:LowerPlenum')
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
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)