Proc Eng Vessels Entities
Bag
- Preview
- Usage
- Definition
import { Bag } from '@dinghy/diagrams/entitiesProcEngVessels'
<Bag/>
// or
import { extendStyle } from "@dinghy/base-components";
import { BAG } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, BAG)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.bag;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 50,
_height: 95,
}
Bag (ISO)
- Preview
- Usage
- Definition
import { BagIso } from '@dinghy/diagrams/entitiesProcEngVessels'
<BagIso/>
// or
import { extendStyle } from "@dinghy/base-components";
import { BAG_ISO } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, BAG_ISO)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.bag_(iso);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 50,
_height: 95,
}
Barrel, Drum
- Preview
- Usage
- Definition
import { BarrelDrum } from '@dinghy/diagrams/entitiesProcEngVessels'
<BarrelDrum/>
// or
import { extendStyle } from "@dinghy/base-components";
import { BARREL_DRUM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, BARREL_DRUM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.barrel,_drum;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 62,
_height: 100,
}
Barrel, Drum (ISO)
- Preview
- Usage
- Definition
import { BarrelDrumIso } from '@dinghy/diagrams/entitiesProcEngVessels'
<BarrelDrumIso/>
// or
import { extendStyle } from "@dinghy/base-components";
import { BARREL_DRUM_ISO } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, BARREL_DRUM_ISO)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.barrel,_drum_(iso);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 60,
_height: 100,
}
Bunker (Conical Bottom)
- Preview
- Usage
- Definition
import { BunkerConicalBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<BunkerConicalBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { BUNKER_CONICAL_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, BUNKER_CONICAL_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.bunker_(conical_bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 100,
}
Concrete Tank
- Preview
- Usage
- Definition
import { ConcreteTank } from '@dinghy/diagrams/entitiesProcEngVessels'
<ConcreteTank/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONCRETE_TANK } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONCRETE_TANK)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.concrete_tank;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 160,
_height: 75,
}
Container (Solids, Liquids, Gases)
- Preview
- Usage
- Definition
import { ContainerSolidsLiquidsGases } from '@dinghy/diagrams/entitiesProcEngVessels'
<ContainerSolidsLiquidsGases/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTAINER_SOLIDS_LIQUIDS_GASES } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONTAINER_SOLIDS_LIQUIDS_GASES)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.container_(solids,_liquids,_gases);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 150,
_height: 50,
}
Container, Tank, Cistern
- Preview
- Usage
- Definition
import { ContainerTankCistern } from '@dinghy/diagrams/entitiesProcEngVessels'
<ContainerTankCistern/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTAINER_TANK_CISTERN } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONTAINER_TANK_CISTERN)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.container,_tank,_cistern;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 70,
}
Container, Tank, Cistern (Boot)
- Preview
- Usage
- Definition
import { ContainerTankCisternBoot } from '@dinghy/diagrams/entitiesProcEngVessels'
<ContainerTankCisternBoot/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTAINER_TANK_CISTERN_BOOT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONTAINER_TANK_CISTERN_BOOT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.container,_tank,_cistern_(boot);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 80,
}
Container, Tank, Cistern (Bottom)
- Preview
- Usage
- Definition
import { ContainerTankCisternBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<ContainerTankCisternBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTAINER_TANK_CISTERN_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONTAINER_TANK_CISTERN_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.container,_tank,_cistern_(bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 100,
}
Container, Tank, Cistern (Legs)
- Preview
- Usage
- Definition
import { ContainerTankCisternLegs } from '@dinghy/diagrams/entitiesProcEngVessels'
<ContainerTankCisternLegs/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTAINER_TANK_CISTERN_LEGS } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, CONTAINER_TANK_CISTERN_LEGS)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.container,_tank,_cistern_(legs);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 105,
}
Double Concrete Tank
- Preview
- Usage
- Definition
import { DoubleConcreteTank } from '@dinghy/diagrams/entitiesProcEngVessels'
<DoubleConcreteTank/>
// or
import { extendStyle } from "@dinghy/base-components";
import { DOUBLE_CONCRETE_TANK } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, DOUBLE_CONCRETE_TANK)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.double_concrete_tank;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 160,
_height: 75,
}
Drum or Condenser
- Preview
- Usage
- Definition
import { DrumOrCondenser } from '@dinghy/diagrams/entitiesProcEngVessels'
<DrumOrCondenser/>
// or
import { extendStyle } from "@dinghy/base-components";
import { DRUM_OR_CONDENSER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, DRUM_OR_CONDENSER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.drum_or_condenser;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 91,
_height: 30,
}
Forced-Draft Cooling Tower
- Preview
- Usage
- Definition
import { ForcedDraftCoolingTower } from '@dinghy/diagrams/entitiesProcEngVessels'
<ForcedDraftCoolingTower/>
// or
import { extendStyle } from "@dinghy/base-components";
import { FORCED_DRAFT_COOLING_TOWER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, FORCED_DRAFT_COOLING_TOWER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.forced-draft_cooling_tower;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 99,
_original_height: 99,
}
Furnace
- Preview
- Usage
- Definition
import { Furnace } from '@dinghy/diagrams/entitiesProcEngVessels'
<Furnace/>
// or
import { extendStyle } from "@dinghy/base-components";
import { FURNACE } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, FURNACE)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.furnace;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 80,
_original_height: 99,
}
Furnace2
- Preview
- Usage
- Definition
import { Furnace2 } from '@dinghy/diagrams/entitiesProcEngVessels'
<Furnace2/>
// or
import { extendStyle } from "@dinghy/base-components";
import { FURNACE2 } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, FURNACE2)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.furnace2;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 80,
_height: 100,
}
Gas Bottle
- Preview
- Usage
- Definition
import { GasBottle } from '@dinghy/diagrams/entitiesProcEngVessels'
<GasBottle/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GAS_BOTTLE } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, GAS_BOTTLE)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.gas_bottle;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 35,
_height: 95,
}
Gas Holder
- Preview
- Usage
- Definition
import { GasHolder } from '@dinghy/diagrams/entitiesProcEngVessels'
<GasHolder/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GAS_HOLDER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, GAS_HOLDER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.gas_holder;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 70,
_height: 95,
}
Half Pipe Mixing Vessel
- Preview
- Usage
- Definition

import { HalfPipeMixingVessel } from '@dinghy/diagrams/entitiesProcEngVessels'
<HalfPipeMixingVessel/>
// or
import { extendStyle } from "@dinghy/base-components";
import { HALF_PIPE_MIXING_VESSEL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, HALF_PIPE_MIXING_VESSEL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.half_pipe_mixing_vessel;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 173,
}
Induced-Draft Cooling Tower
- Preview
- Usage
- Definition
import { InducedDraftCoolingTower } from '@dinghy/diagrams/entitiesProcEngVessels'
<InducedDraftCoolingTower/>
// or
import { extendStyle } from "@dinghy/base-components";
import { INDUCED_DRAFT_COOLING_TOWER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, INDUCED_DRAFT_COOLING_TOWER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.induced-draft_cooling_tower;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 98,
_height: 70,
}
Jacketed Mixing Vessel
- Preview
- Usage
- Definition

import { JacketedMixingVessel } from '@dinghy/diagrams/entitiesProcEngVessels'
<JacketedMixingVessel/>
// or
import { extendStyle } from "@dinghy/base-components";
import { JACKETED_MIXING_VESSEL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, JACKETED_MIXING_VESSEL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.jacketed_mixing_vessel;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 174,
}
Knock-out Drum
- Preview
- Usage
- Definition
import { KnockOutDrum } from '@dinghy/diagrams/entitiesProcEngVessels'
<KnockOutDrum/>
// or
import { extendStyle } from "@dinghy/base-components";
import { KNOCK_OUT_DRUM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, KNOCK_OUT_DRUM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.knock-out_drum;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 51,
_height: 95,
}
Mixer
- Preview
- Usage
- Definition
import { Mixer } from '@dinghy/diagrams/entitiesProcEngVessels'
<Mixer/>
// or
import { extendStyle } from "@dinghy/base-components";
import { MIXER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, MIXER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.mixer;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 20,
_height: 88,
}
Mixing Reactor
- Preview
- Usage
- Definition
import { MixingReactor } from '@dinghy/diagrams/entitiesProcEngVessels'
<MixingReactor/>
// or
import { extendStyle } from "@dinghy/base-components";
import { MIXING_REACTOR } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, MIXING_REACTOR)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.mixing_reactor;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 50,
_height: 96,
}
Open Bulk Storage
- Preview
- Usage
- Definition
import { OpenBulkStorage } from '@dinghy/diagrams/entitiesProcEngVessels'
<OpenBulkStorage/>
// or
import { extendStyle } from "@dinghy/base-components";
import { OPEN_BULK_STORAGE } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, OPEN_BULK_STORAGE)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.open_bulk_storage;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 50,
}
Pressurized Vessel
- Preview
- Usage
- Definition
import { PressurizedVessel } from '@dinghy/diagrams/entitiesProcEngVessels'
<PressurizedVessel/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PRESSURIZED_VESSEL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, PRESSURIZED_VESSEL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.pressurized_vessel;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 200,
}
Prop Agitator
- Preview
- Usage
- Definition
import { PropAgitator } from '@dinghy/diagrams/entitiesProcEngVessels'
<PropAgitator/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PROP_AGITATOR } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, PROP_AGITATOR)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.prop_agitator;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 20,
_height: 88,
}
Reactor
- Preview
- Usage
- Definition
import { Reactor } from '@dinghy/diagrams/entitiesProcEngVessels'
<Reactor/>
// or
import { extendStyle } from "@dinghy/base-components";
import { REACTOR } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, REACTOR)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.reactor;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 95,
}
Settling Tank
- Preview
- Usage
- Definition
import { SettlingTank } from '@dinghy/diagrams/entitiesProcEngVessels'
<SettlingTank/>
// or
import { extendStyle } from "@dinghy/base-components";
import { SETTLING_TANK } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, SETTLING_TANK)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.settling_tank;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 80,
}
Spray Drier
- Preview
- Usage
- Definition
import { SprayDrier } from '@dinghy/diagrams/entitiesProcEngVessels'
<SprayDrier/>
// or
import { extendStyle } from "@dinghy/base-components";
import { SPRAY_DRIER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, SPRAY_DRIER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.spray_drier;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 80,
}
Storage Sphere
- Preview
- Usage
- Definition
import { StorageSphere } from '@dinghy/diagrams/entitiesProcEngVessels'
<StorageSphere/>
// or
import { extendStyle } from "@dinghy/base-components";
import { STORAGE_SPHERE } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, STORAGE_SPHERE)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.storage_sphere;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 80,
_height: 100,
}
Tank
- Preview
- Usage
- Definition
import { Tank } from '@dinghy/diagrams/entitiesProcEngVessels'
<Tank/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 95,
}
Tank (Boot)
- Preview
- Usage
- Definition
import { TankBoot } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankBoot/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_BOOT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_BOOT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(boot);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 91,
}
Tank (Concrete Base)
- Preview
- Usage
- Definition
import { TankConcreteBase } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankConcreteBase/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_CONCRETE_BASE } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_CONCRETE_BASE)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(concrete_base);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 120,
_height: 91,
}
Tank (Conical Bottom)
- Preview
- Usage
- Definition
import { TankConicalBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankConicalBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_CONICAL_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_CONICAL_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(conical_bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 100,
}
Tank (Conical Roof and Bottom)
- Preview
- Usage
- Definition
import { TankConicalRoofAndBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankConicalRoofAndBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_CONICAL_ROOF_AND_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_CONICAL_ROOF_AND_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(conical_roof_and_bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 101,
_height: 150,
}
Tank (Conical Roof)
- Preview
- Usage
- Definition
import { TankConicalRoof } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankConicalRoof/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_CONICAL_ROOF } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_CONICAL_ROOF)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(conical_roof);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 90,
}
Tank (Covered, Boot)
- Preview
- Usage
- Definition
import { TankCoveredBoot } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankCoveredBoot/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_COVERED_BOOT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_COVERED_BOOT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(covered,_boot);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 85,
}
Tank (Covered)
- Preview
- Usage
- Definition
import { TankCovered } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankCovered/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_COVERED } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_COVERED)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(covered);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 75,
}
Tank (Dished Roof, Conical Bottom)
- Preview
- Usage
- Definition
import { TankDishedRoofConicalBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankDishedRoofConicalBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_DISHED_ROOF_CONICAL_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_DISHED_ROOF_CONICAL_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(dished_roof,_conical_bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 125,
}
Tank (Dished Roof)
- Preview
- Usage
- Definition
import { TankDishedRoof } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankDishedRoof/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_DISHED_ROOF } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_DISHED_ROOF)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(dished_roof);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_original_width: 100,
_original_height: 95,
}
Tank (False Bottom)
- Preview
- Usage
- Definition
import { TankFalseBottom } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankFalseBottom/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_FALSE_BOTTOM } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_FALSE_BOTTOM)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(false_bottom);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 112,
}
Tank (Floating Roof, Boot)
- Preview
- Usage
- Definition
import { TankFloatingRoofBoot } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankFloatingRoofBoot/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_FLOATING_ROOF_BOOT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_FLOATING_ROOF_BOOT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(floating_roof,_boot);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 80,
}
Tank (Floating Roof)
- Preview
- Usage
- Definition
import { TankFloatingRoof } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankFloatingRoof/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_FLOATING_ROOF } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_FLOATING_ROOF)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank_(floating_roof);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 70,
}
Tank, Vessel
- Preview
- Usage
- Definition
import { TankVessel } from '@dinghy/diagrams/entitiesProcEngVessels'
<TankVessel/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TANK_VESSEL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TANK_VESSEL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tank,_vessel;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 100,
_height: 70,
}
Tower
- Preview
- Usage
- Definition
import { Tower } from '@dinghy/diagrams/entitiesProcEngVessels'
<Tower/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TOWER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TOWER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tower;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 14,
_height: 97,
}
Tower With Packing
- Preview
- Usage
- Definition
import { TowerWithPacking } from '@dinghy/diagrams/entitiesProcEngVessels'
<TowerWithPacking/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TOWER_WITH_PACKING } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TOWER_WITH_PACKING)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.tower_with_packing;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 14,
_height: 97,
}
Turbine Agitator
- Preview
- Usage
- Definition
import { TurbineAgitator } from '@dinghy/diagrams/entitiesProcEngVessels'
<TurbineAgitator/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TURBINE_AGITATOR } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, TURBINE_AGITATOR)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.turbine_agitator;html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 36,
_height: 93,
}
Vent (Bent)
- Preview
- Usage
- Definition
import { VentBent } from '@dinghy/diagrams/entitiesProcEngVessels'
<VentBent/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VENT_BENT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VENT_BENT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vent_(bent);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 10,
_height: 20,
}
Vent (Cover)
- Preview
- Usage
- Definition
import { VentCover } from '@dinghy/diagrams/entitiesProcEngVessels'
<VentCover/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VENT_COVER } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VENT_COVER)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vent_(cover);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 10,
_height: 20,
}
Vessel (Different Diameters)
- Preview
- Usage
- Definition
import { VesselDifferentDiameters } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDifferentDiameters/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DIFFERENT_DIAMETERS } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DIFFERENT_DIAMETERS)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(different_diameters);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 50,
_height: 97,
}
Vessel (Dished Bottom, Surface Indication)
- Preview
- Usage
- Definition
import { VesselDishedBottomSurfaceIndication } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedBottomSurfaceIndication/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_BOTTOM_SURFACE_INDICATION } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_BOTTOM_SURFACE_INDICATION)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_bottom,_surface_indication);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 87,
}
Vessel (Dished Ends, Brackets)
- Preview
- Usage
- Definition
import { VesselDishedEndsBrackets } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsBrackets/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_BRACKETS } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_BRACKETS)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_brackets);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 60,
_height: 95,
}
Vessel (Dished Ends, Electrical Heating)
- Preview
- Usage
- Definition
import { VesselDishedEndsElectricalHeating } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsElectricalHeating/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_ELECTRICAL_HEATING } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_ELECTRICAL_HEATING)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_electrical_heating);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 50,
_height: 95,
}
Vessel (Dished Ends, Heating-Cooling Jacket)
- Preview
- Usage
- Definition
import { VesselDishedEndsHeatingCoolingJacket } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsHeatingCoolingJacket/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_HEATING_COOLING_JACKET } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_HEATING_COOLING_JACKET)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_heating-cooling_jacket);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 52,
_height: 95,
}
Vessel (Dished Ends, Legs)
- Preview
- Usage
- Definition
import { VesselDishedEndsLegs } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsLegs/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_LEGS } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_LEGS)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_legs);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 122,
}
Vessel (Dished Ends, Ring)
- Preview
- Usage
- Definition
import { VesselDishedEndsRing } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsRing/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_RING } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_RING)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_ring);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 52,
_height: 95,
}
Vessel (Dished Ends, Skirts)
- Preview
- Usage
- Definition
import { VesselDishedEndsSkirts } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsSkirts/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_SKIRTS } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_SKIRTS)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_skirts);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 40,
_height: 122,
}
Vessel (Dished Ends, Thermal Insulation)
- Preview
- Usage
- Definition
import { VesselDishedEndsThermalInsulation } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDishedEndsThermalInsulation/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DISHED_ENDS_THERMAL_INSULATION } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DISHED_ENDS_THERMAL_INSULATION)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dished_ends,_thermal_insulation);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 52,
_height: 95,
}
Vessel (Dome)
- Preview
- Usage
- Definition
import { VesselDome } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselDome/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_DOME } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_DOME)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(dome);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 95,
_height: 55,
}
Vessel (Full-Tube Heating-Cooling Coil)
- Preview
- Usage
- Definition
import { VesselFullTubeHeatingCoolingCoil } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselFullTubeHeatingCoolingCoil/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_FULL_TUBE_HEATING_COOLING_COIL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_FULL_TUBE_HEATING_COOLING_COIL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(full-tube_heating-cooling_coil);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 120,
_height: 70,
}
Vessel (Pit)
- Preview
- Usage
- Definition
import { VesselPit } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselPit/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_PIT } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_PIT)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(pit);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 95,
_height: 55,
}
Vessel (Semi-Tube Heating-Cooling Coil)
- Preview
- Usage
- Definition
import { VesselSemiTubeHeatingCoolingCoil } from '@dinghy/diagrams/entitiesProcEngVessels'
<VesselSemiTubeHeatingCoolingCoil/>
// or
import { extendStyle } from "@dinghy/base-components";
import { VESSEL_SEMI_TUBE_HEATING_COOLING_COIL } from '@dinghy/diagrams/entitiesProcEngVessels'
<Shape
{...props}
_style={extendStyle(props, VESSEL_SEMI_TUBE_HEATING_COOLING_COIL)}
/>
{
_style: {
entity: 'shape=mxgraph.pid.vessels.vessel_(semi-tube_heating-cooling_coil);html=1;pointerEvents=1;align=center;verticalLabelPosition=bottom;verticalAlign=top;dashed=0;',
},
_width: 110,
_height: 70,
}