Module: equipment/centrifuge4

Module for a generic 4-site centrifuge.

Source:

Methods


<inner> configure(params)

Configure a generic centrifuge

Parameters:
Name Type Description
params CentrifugeParams

parameters for the configuration

Source:
Returns:
Type
EquipmentConfig

Type Definitions


CentrifugeParams

Type:
  • object
Properties:
Name Type Description
evowareId string

the Evoware ID of this equipment

evowareCarrier string

the carrier that the equipment is on

evowareGrid string

the grid that the equipment is on

Source:
Example
```
		{
			evowareId: "Centrifuge",
			evowareCarrier: "Centrifuge",
			evowareGrid: 54,
			sites: {
				CENTRIFUGE_1: { evowareSite: 1 },
				CENTRIFUGE_2: { evowareSite: 2 },
				CENTRIFUGE_3: { evowareSite: 1 },
				CENTRIFUGE_4: { evowareSite: 2 }
			},
			siteModelCompatibilities: [
				{
					sites: ["CENTRIFUGE_1", "CENTRIFUGE_2", "CENTRIFUGE_3", "CENTRIFUGE_4"],
					models: ["plateModel_384_square", "plateModel_96_round_transparent_nunc"]
				},
				{
					sites: ["CENTRIFUGE_2", "CENTRIFUGE_4"],
					models: ["plateModel_96_dwp"]
				},
			]
		}

CentrifugeSitesToModels

Type:
  • object
Properties:
Name Type Description
sites Array.<string>

array of site names (just the base part, without namespace)

models Array.<string>

array of model names (just the base part, without namespace)

Source: