├── CommandsEagle.py ├── CommandsFrame.py ├── CommandsPipe.py ├── CommandsPolar.py ├── CommandsSpSh.py ├── Init.py ├── InitGui.py ├── LICENSE ├── README.md ├── anyShape.py ├── dialogs ├── align.ui ├── beamshift.ui ├── beamstretch.ui ├── disp.ui ├── dp.ui ├── extend.ui ├── fbranch.ui ├── fillframe.ui ├── hackedline.ui ├── joinPypes.ui ├── rotAround.ui ├── route.ui ├── shapes.ui ├── tank.ui └── valves.ui ├── eagleCmd.py ├── eagleForms.py ├── examples ├── PCB.FCStd ├── board6.brd ├── coordPolar.csv ├── handrail.FCStd ├── handrail.step ├── pipeline.FCStd ├── scale.FCStd └── tubi.FCStd ├── fe_ChEDL.py ├── frameCmd.py ├── frameFeatures.py ├── frameForms.py ├── frameObservers.py ├── icons ├── adjustAngle.svg ├── around.svg ├── attach.svg ├── beamFit.svg ├── beamLevel.svg ├── beamRot.svg ├── beamShift.svg ├── beamStretch.svg ├── branch.svg ├── break.svg ├── cap.svg ├── clamp.svg ├── daFile.svg ├── delta.svg ├── edgeAlign.svg ├── elbow.svg ├── extend.svg ├── fillFrame.svg ├── flamingo.svg ├── flange.svg ├── flangeAlign.svg ├── flat.svg ├── framebranch.svg ├── frameline.svg ├── grid.svg ├── hackedL.svg ├── intersect.svg ├── intersect1.svg ├── join.svg ├── laydown.svg ├── mate.svg ├── moveHandle.svg ├── offsetWP.svg ├── paint.svg ├── path.svg ├── pipe.svg ├── pivot.svg ├── point2point.svg ├── poligono.svg ├── pypeline.svg ├── query.svg ├── raiseup.svg ├── reduct.svg ├── reverse.svg ├── rotWP.svg ├── rotjoin.svg ├── route.svg ├── sect.svg ├── solids.svg ├── tank.svg └── valve.svg ├── pipeCmd.py ├── pipeFeatures.py ├── pipeForms.py ├── pipeObservers.py ├── polarUtilsCmd.py ├── qForms.py ├── shapes ├── ballValves │ ├── Any_valves.csv │ ├── ballDN15.stp │ └── ballDN20.step ├── butterflyValves │ └── btflyDN80.step └── tank.step ├── spreadCmd.py ├── tables ├── Cap_SCH-STD.csv ├── Clamp_DIN-UBolt.csv ├── Elbow_SCH-STD.csv ├── Elbow_SCH-STDlongRad.csv ├── Flange_ASME-150lb.csv ├── Flange_DIN-PN16.csv ├── Flange_PN16-RF.csv ├── Flange_PN16-WN.csv ├── Pipe_REBARS.csv ├── Pipe_SCH-STD.csv ├── Pipe_SCH-XXS.csv ├── Reduct_ENxxxxx.csv ├── Reduct_SCH-STD.csv ├── Section_HEA.csv ├── Section_IPE.csv ├── Section_UPN.csv ├── Valve_ball-thd.csv ├── Valve_ball.csv ├── Valve_butterfly.csv ├── Valve_globePN16.csv └── roughness.csv └── tutorials ├── pypeAttributes.xls ├── tutorialEagle.pdf ├── tutorialFrame.pdf ├── tutorialOverall.pdf ├── tutorialPype.pdf ├── tutorialPype2.pdf └── tutorialPype3.pdf /CommandsEagle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/CommandsEagle.py -------------------------------------------------------------------------------- /CommandsFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/CommandsFrame.py -------------------------------------------------------------------------------- /CommandsPipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/CommandsPipe.py -------------------------------------------------------------------------------- /CommandsPolar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/CommandsPolar.py -------------------------------------------------------------------------------- /CommandsSpSh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/CommandsSpSh.py -------------------------------------------------------------------------------- /Init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/Init.py -------------------------------------------------------------------------------- /InitGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/InitGui.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/README.md -------------------------------------------------------------------------------- /anyShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/anyShape.py -------------------------------------------------------------------------------- /dialogs/align.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/align.ui -------------------------------------------------------------------------------- /dialogs/beamshift.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/beamshift.ui -------------------------------------------------------------------------------- /dialogs/beamstretch.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/beamstretch.ui -------------------------------------------------------------------------------- /dialogs/disp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/disp.ui -------------------------------------------------------------------------------- /dialogs/dp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/dp.ui -------------------------------------------------------------------------------- /dialogs/extend.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/extend.ui -------------------------------------------------------------------------------- /dialogs/fbranch.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/fbranch.ui -------------------------------------------------------------------------------- /dialogs/fillframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/fillframe.ui -------------------------------------------------------------------------------- /dialogs/hackedline.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/hackedline.ui -------------------------------------------------------------------------------- /dialogs/joinPypes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/joinPypes.ui -------------------------------------------------------------------------------- /dialogs/rotAround.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/rotAround.ui -------------------------------------------------------------------------------- /dialogs/route.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/route.ui -------------------------------------------------------------------------------- /dialogs/shapes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/shapes.ui -------------------------------------------------------------------------------- /dialogs/tank.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/tank.ui -------------------------------------------------------------------------------- /dialogs/valves.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/dialogs/valves.ui -------------------------------------------------------------------------------- /eagleCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/eagleCmd.py -------------------------------------------------------------------------------- /eagleForms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/eagleForms.py -------------------------------------------------------------------------------- /examples/PCB.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/PCB.FCStd -------------------------------------------------------------------------------- /examples/board6.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/board6.brd -------------------------------------------------------------------------------- /examples/coordPolar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/coordPolar.csv -------------------------------------------------------------------------------- /examples/handrail.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/handrail.FCStd -------------------------------------------------------------------------------- /examples/handrail.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/handrail.step -------------------------------------------------------------------------------- /examples/pipeline.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/pipeline.FCStd -------------------------------------------------------------------------------- /examples/scale.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/scale.FCStd -------------------------------------------------------------------------------- /examples/tubi.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/examples/tubi.FCStd -------------------------------------------------------------------------------- /fe_ChEDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/fe_ChEDL.py -------------------------------------------------------------------------------- /frameCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/frameCmd.py -------------------------------------------------------------------------------- /frameFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/frameFeatures.py -------------------------------------------------------------------------------- /frameForms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/frameForms.py -------------------------------------------------------------------------------- /frameObservers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/frameObservers.py -------------------------------------------------------------------------------- /icons/adjustAngle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/adjustAngle.svg -------------------------------------------------------------------------------- /icons/around.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/around.svg -------------------------------------------------------------------------------- /icons/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/attach.svg -------------------------------------------------------------------------------- /icons/beamFit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/beamFit.svg -------------------------------------------------------------------------------- /icons/beamLevel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/beamLevel.svg -------------------------------------------------------------------------------- /icons/beamRot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/beamRot.svg -------------------------------------------------------------------------------- /icons/beamShift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/beamShift.svg -------------------------------------------------------------------------------- /icons/beamStretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/beamStretch.svg -------------------------------------------------------------------------------- /icons/branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/branch.svg -------------------------------------------------------------------------------- /icons/break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/break.svg -------------------------------------------------------------------------------- /icons/cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/cap.svg -------------------------------------------------------------------------------- /icons/clamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/clamp.svg -------------------------------------------------------------------------------- /icons/daFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/daFile.svg -------------------------------------------------------------------------------- /icons/delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/delta.svg -------------------------------------------------------------------------------- /icons/edgeAlign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/edgeAlign.svg -------------------------------------------------------------------------------- /icons/elbow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/elbow.svg -------------------------------------------------------------------------------- /icons/extend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/extend.svg -------------------------------------------------------------------------------- /icons/fillFrame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/fillFrame.svg -------------------------------------------------------------------------------- /icons/flamingo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/flamingo.svg -------------------------------------------------------------------------------- /icons/flange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/flange.svg -------------------------------------------------------------------------------- /icons/flangeAlign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/flangeAlign.svg -------------------------------------------------------------------------------- /icons/flat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/flat.svg -------------------------------------------------------------------------------- /icons/framebranch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/framebranch.svg -------------------------------------------------------------------------------- /icons/frameline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/frameline.svg -------------------------------------------------------------------------------- /icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/grid.svg -------------------------------------------------------------------------------- /icons/hackedL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/hackedL.svg -------------------------------------------------------------------------------- /icons/intersect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/intersect.svg -------------------------------------------------------------------------------- /icons/intersect1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/intersect1.svg -------------------------------------------------------------------------------- /icons/join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/join.svg -------------------------------------------------------------------------------- /icons/laydown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/laydown.svg -------------------------------------------------------------------------------- /icons/mate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/mate.svg -------------------------------------------------------------------------------- /icons/moveHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/moveHandle.svg -------------------------------------------------------------------------------- /icons/offsetWP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/offsetWP.svg -------------------------------------------------------------------------------- /icons/paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/paint.svg -------------------------------------------------------------------------------- /icons/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/path.svg -------------------------------------------------------------------------------- /icons/pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/pipe.svg -------------------------------------------------------------------------------- /icons/pivot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/pivot.svg -------------------------------------------------------------------------------- /icons/point2point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/point2point.svg -------------------------------------------------------------------------------- /icons/poligono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/poligono.svg -------------------------------------------------------------------------------- /icons/pypeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/pypeline.svg -------------------------------------------------------------------------------- /icons/query.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/query.svg -------------------------------------------------------------------------------- /icons/raiseup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/raiseup.svg -------------------------------------------------------------------------------- /icons/reduct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/reduct.svg -------------------------------------------------------------------------------- /icons/reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/reverse.svg -------------------------------------------------------------------------------- /icons/rotWP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/rotWP.svg -------------------------------------------------------------------------------- /icons/rotjoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/rotjoin.svg -------------------------------------------------------------------------------- /icons/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/route.svg -------------------------------------------------------------------------------- /icons/sect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/sect.svg -------------------------------------------------------------------------------- /icons/solids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/solids.svg -------------------------------------------------------------------------------- /icons/tank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/tank.svg -------------------------------------------------------------------------------- /icons/valve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/icons/valve.svg -------------------------------------------------------------------------------- /pipeCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/pipeCmd.py -------------------------------------------------------------------------------- /pipeFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/pipeFeatures.py -------------------------------------------------------------------------------- /pipeForms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/pipeForms.py -------------------------------------------------------------------------------- /pipeObservers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/pipeObservers.py -------------------------------------------------------------------------------- /polarUtilsCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/polarUtilsCmd.py -------------------------------------------------------------------------------- /qForms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/qForms.py -------------------------------------------------------------------------------- /shapes/ballValves/Any_valves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/shapes/ballValves/Any_valves.csv -------------------------------------------------------------------------------- /shapes/ballValves/ballDN15.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/shapes/ballValves/ballDN15.stp -------------------------------------------------------------------------------- /shapes/ballValves/ballDN20.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/shapes/ballValves/ballDN20.step -------------------------------------------------------------------------------- /shapes/butterflyValves/btflyDN80.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/shapes/butterflyValves/btflyDN80.step -------------------------------------------------------------------------------- /shapes/tank.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/shapes/tank.step -------------------------------------------------------------------------------- /spreadCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/spreadCmd.py -------------------------------------------------------------------------------- /tables/Cap_SCH-STD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Cap_SCH-STD.csv -------------------------------------------------------------------------------- /tables/Clamp_DIN-UBolt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Clamp_DIN-UBolt.csv -------------------------------------------------------------------------------- /tables/Elbow_SCH-STD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Elbow_SCH-STD.csv -------------------------------------------------------------------------------- /tables/Elbow_SCH-STDlongRad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Elbow_SCH-STDlongRad.csv -------------------------------------------------------------------------------- /tables/Flange_ASME-150lb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Flange_ASME-150lb.csv -------------------------------------------------------------------------------- /tables/Flange_DIN-PN16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Flange_DIN-PN16.csv -------------------------------------------------------------------------------- /tables/Flange_PN16-RF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Flange_PN16-RF.csv -------------------------------------------------------------------------------- /tables/Flange_PN16-WN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Flange_PN16-WN.csv -------------------------------------------------------------------------------- /tables/Pipe_REBARS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Pipe_REBARS.csv -------------------------------------------------------------------------------- /tables/Pipe_SCH-STD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Pipe_SCH-STD.csv -------------------------------------------------------------------------------- /tables/Pipe_SCH-XXS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Pipe_SCH-XXS.csv -------------------------------------------------------------------------------- /tables/Reduct_ENxxxxx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Reduct_ENxxxxx.csv -------------------------------------------------------------------------------- /tables/Reduct_SCH-STD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Reduct_SCH-STD.csv -------------------------------------------------------------------------------- /tables/Section_HEA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Section_HEA.csv -------------------------------------------------------------------------------- /tables/Section_IPE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Section_IPE.csv -------------------------------------------------------------------------------- /tables/Section_UPN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Section_UPN.csv -------------------------------------------------------------------------------- /tables/Valve_ball-thd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Valve_ball-thd.csv -------------------------------------------------------------------------------- /tables/Valve_ball.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Valve_ball.csv -------------------------------------------------------------------------------- /tables/Valve_butterfly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Valve_butterfly.csv -------------------------------------------------------------------------------- /tables/Valve_globePN16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/Valve_globePN16.csv -------------------------------------------------------------------------------- /tables/roughness.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tables/roughness.csv -------------------------------------------------------------------------------- /tutorials/pypeAttributes.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/pypeAttributes.xls -------------------------------------------------------------------------------- /tutorials/tutorialEagle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialEagle.pdf -------------------------------------------------------------------------------- /tutorials/tutorialFrame.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialFrame.pdf -------------------------------------------------------------------------------- /tutorials/tutorialOverall.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialOverall.pdf -------------------------------------------------------------------------------- /tutorials/tutorialPype.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialPype.pdf -------------------------------------------------------------------------------- /tutorials/tutorialPype2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialPype2.pdf -------------------------------------------------------------------------------- /tutorials/tutorialPype3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddtopus/flamingo/HEAD/tutorials/tutorialPype3.pdf --------------------------------------------------------------------------------