123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?xml version="1.0" encoding="utf-8" standalone="yes"?>
- <Forecourt xmlns="http://www.wayne.se/2006-03-13/ForecourtConfig.xsd">
- <!--The Fuel grades configured for the forecourt-->
- <!--There is three grades configured. Only grade 1,2,4 is used on this site.-->
- <FuelGrades>
- <FuelGrade Id="1">
- <MinPrice>0.10</MinPrice>
- <MaxPrice>9.99</MaxPrice>
- </FuelGrade>
- <FuelGrade Id="2">
- <MinPrice>0.10</MinPrice>
- <MaxPrice>9.99</MaxPrice>
- </FuelGrade>
- <FuelGrade Id="4">
- <MinPrice>0.10</MinPrice>
- <MaxPrice>9.99</MaxPrice>
- </FuelGrade>
- </FuelGrades>
- <!--Release profiles -->
- <ReleaseProfiles>
- <ReleaseProfile Id="1">
- <Used>true</Used>
- <Description>A descriptive text</Description>
- <Limits>
- <Limit FuelGradeId="1">
- <Amount>200</Amount>
- <Volume>20</Volume>
- <Time>1000</Time>
- </Limit>
- <Limit FuelGradeId="2">
- <Amount>100</Amount>
- <Volume>10</Volume>
- <Time>1000</Time>
- </Limit>
- </Limits>
- </ReleaseProfile>
- </ReleaseProfiles>
- <!--Tanks-->
- <Tanks>
- <Tank Id="1">
- <Used>true</Used>
- <TankGroupId>1</TankGroupId>
- <FuelGradeId>1</FuelGradeId>
- <MaxCapacity>5000</MaxCapacity>
- <LowLevelAlarmLimit>1000</LowLevelAlarmLimit>
- </Tank>
- <Tank Id="2">
- <Used>true</Used>
- <TankGroupId>2</TankGroupId>
- <FuelGradeId>2</FuelGradeId>
- <MaxCapacity>6000</MaxCapacity>
- <LowLevelAlarmLimit>1000</LowLevelAlarmLimit>
- </Tank>
- </Tanks>
- <!--Tank groups-->
- <TankGroups>
- <TankGroup Id="1">
- <Used>true</Used>
- <LinkedTanks>
- <TankId>1</TankId>
- </LinkedTanks>
- </TankGroup>
- <TankGroup Id="2">
- <Used>true</Used>
- <LinkedTanks>
- <TankId>2</TankId>
- </LinkedTanks>
- </TankGroup>
- </TankGroups>
- <Pumps>
- <Pump Id="1">
- <Used>true</Used>
- <ComLinkId>1</ComLinkId>
- <PhysicalDeviceId>1</PhysicalDeviceId>
- <Nozzles>
- <Nozzle Id="1">
- <Used>true</Used>
- <FuelGradeId>1</FuelGradeId>
- <PrimaryTankId>1</PrimaryTankId>
- </Nozzle>
- <Nozzle Id="2">
- <Used>true</Used>
- <FuelGradeId>2</FuelGradeId>
- <PrimaryTankId>2</PrimaryTankId>
- </Nozzle>
- </Nozzles>
- </Pump>
- </Pumps>
- <!--Price Poles-->
- <PricePoles>
- <PricePole Id="1">
- <Used>true</Used>
- <PricePoleSegments>
- <PricePoleSegment Id="1">
- <Used>true</Used>
- <FuelGradeId>1</FuelGradeId>
- <PriceGroup>FullService</PriceGroup>
- </PricePoleSegment>
- </PricePoleSegments>
- <ComLinkId>4</ComLinkId>
- <PhysicalDeviceId>1</PhysicalDeviceId>
- </PricePole>
- </PricePoles>
- <!--Communication links-->
- <ComLinks>
- <ComLink Id="1">
- <LinkName>FL1-2</LinkName>
- <LinkProtocolType>Dart</LinkProtocolType>
- <PhysicalLinkType>1</PhysicalLinkType>
- <BaudRate>9600</BaudRate>
- <StopBits>1</StopBits>
- <Parity>none</Parity>
- </ComLink>
- <ComLink Id="4">
- <LinkName>D1</LinkName>
- <LinkProtocolType>Dart</LinkProtocolType>
- <PhysicalLinkType>1</PhysicalLinkType>
- <BaudRate>2400</BaudRate>
- <StopBits>1</StopBits>
- <Parity>even</Parity>
- </ComLink>
- </ComLinks>
- </Forecourt>
|