StandardTip

Hamilton's 300 μL CO-RE® II pipetting tips are designed to make your pipetting process simpler and more efficient. Hamilton's advanced systems feature the Liquid Level Detection and Total Aspiration and Dispense Monitoring, ensuring accuracy and reliability during your pipetting process. With a fine, thin tip that facilitates micro-volume dosing, you can enjoy enhanced pipetting safety and reliability with CO-RE® II Technology. Compatible with the Hamilton 1000 μL pipetting channels or CO-RE 96 Probe Head, these tips are essential for precise pipetting.

MRO
Decorators
dataclasses.dataclass

Methods

  • __init__(
      self,
      tags : dict,
      has_filter : bool,
      model : str,
    ) -> None

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      tags
      Type
      dict
      Default
      Description

    • Name
      fitting_depth
      Type
      Decimal
      Default
      Description

    • Name
      container
      Type
      Container
      Default
      Description

    • Name
      blowout_air_volume
      Type
      Decimal
      Default
      Description

    • Name
      transport_air_volume
      Type
      Decimal
      Default
      Description

    • Name
      collar_type
      Type
      CollarType
      Default
      = STANDARD
      Description

    • Name
      has_filter
      Type
      bool
      Default
      = False
      Description

    • Name
      model
      Type
      str
      Default
      = '235902'
      Description

    • Name
      dimensions
      Type
      Vector
      Default
      Description

  • __post_init__(self, *_kwargs) -> None

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      *_kwargs
      Type
      Default
      = ()
      Description

  • __init_subclass__(cls) -> None

    Parameters

    • Name
      cls
      Type
      Default
      Description

  • assign_to(self, parent : Group) -> None

    Set the parent of this resource to the given group.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      parent
      Type
      Group
      Default
      Description

      The group to which this resource is assigned to.

  • @deprecation.deprecated(deprecated_in='0.1.20', removed_in='0.2.0', current_version=__version__, details='Use `rotate_by` instead.')

    rotate(self, angle : int) -> None

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      angle
      Type
      int
      Default
      Description

  • rotate_by(self, angle : int) -> None

    Rotate clockwise by the given angle in degrees. Use negative numbers for counter clockwise rotation.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      angle
      Type
      int
      Default
      Description

      The angle in degrees to rotate the resource. Must be a multiple of 90°.

  • rotate_to(self, angle : int) -> None

    Rotate to the given absolute angle in degrees.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      angle
      Type
      int
      Default
      Description

      The angle in degrees to rotate the resource. Must be a multiple of 90°.

  • find(self, identifier : str) -> Resource

    Find a resource by its identifier.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      identifier
      Type
      str
      Default
      Description

      The resource's identifier to search for.

    Response

    Type
    Resource
    Description

    The resource with the corresponding identifier.

    Exceptions

    Type
    TypeError
    Description
    If the identifier is a non string value.
    Type
    MissingResourceError
    Description
    If the resource could not be found.
  • __contains__(self, item : typing.Any) -> bool

    Check whether a resource is assigned to this resource.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      item
      Type
      typing.Any
      Default
      Description

      The resource to search for.

    Response

    Type
    bool
    Description

    True if the resource could be found, False otherwise.

  • copy(self, **changes) -> typing_extensions.Self

    Return a copy of this resource.

    Parameters

    • Name
      self
      Type
      Default
      Description

    • Name
      **changes
      Type
      Default
      = {}
      Description

      Replace fields with values from `changes`.

    Response

    Type
    typing_extensions.Self
    Description

    A copy of this resource.

  • serialize(self) -> JsonSchema

    Serialize this resource as a JSON-like dictionary.

    Response

    Type
    JsonSchema
    Description

    The JSON-like dictionary with the resource's data.

  • @classmethod

    deserialize(cls, identifier : str, schema : JsonSchema) -> typing_extensions.Self

    Deserialize a JSON-like dictionary to a resource.

    Parameters

    • Name
      cls
      Type
      Default
      Description

    • Name
      identifier
      Type
      str
      Default
      Description

      The identifier of the resource to deserialize.

    • Name
      schema
      Type
      JsonSchema
      Default
      Description

      The JSON-like dictionary with the resource's data.

    Response

    Type
    typing_extensions.Self
    Description

    The newly created resource.

  • @classmethod

    subclass_by_name(cls, name : str) -> typing.Optional[type[Resource]]

    Recursively find a resource subclass with the given name.

    Parameters

    • Name
      cls
      Type
      Default
      Description

    • Name
      name
      Type
      str
      Default
      Description

      The name of the class to find.

    Response

    Type
    typing.Optional[type[Resource]]
    Description

    The class with the given name, or `None` if no such class exists.

    Exceptions

    Type
    TypeError
    Description
    If the name is not a valid class name.

Attributes

  • Name
    tip_type
    Type
    int
    Value

    = 0

    Description

  • Name
    model
    Type
    str
    Value

    = '235902'

    Description

  • Name
    dimensions
    Type
    Vector
    Value

    = dataclasses.field(default_factory=lambda: Vector(x=9, y=9, z=59.9))

    Description

  • Name
    container
    Type
    Container
    Value

    = dataclasses.field(default_factory=lambda: Container(max_volume=400, sections=[ComplexShape(factor=36.3168, height=8), ComplexShape(factor=12.8596, height=52)]))

    Description

  • Name
    has_filter
    Type
    bool
    Value

    = False

    Description

  • Name
    fitting_depth
    Type
    Decimal
    Value

    = Decimal(default=8)

    Description

  • Name
    collar_type
    Type
    CollarType
    Value

    = CollarType.STANDARD

    Description

  • Name
    blowout_air_volume
    Type
    Decimal
    Value

    = Decimal()

    Description

  • Name
    transport_air_volume
    Type
    Decimal
    Value

    = Decimal()

    Description

  • Name
    total_volume
    Type
    decimal.Decimal
    Value

    = None

    Description

  • Name
    free_volume
    Type
    decimal.Decimal
    Value

    = None

    Description

    The freely available volume in µl in the tip.

  • Name
    tags
    Type
    dict
    Value

    = dataclasses.field(default_factory=dict)

    Description

  • Name
    identifier
    Type
    str
    Value

    = dataclasses.field(default_factory=lambda: str(uuid.uuid4().hex[:8]))

    Description

  • Name
    rotation
    Type
    int
    Value

    = 0

    Description

  • Name
    location
    Type
    typing.Optional[Vector]
    Value

    = None

    Description

  • Name
    Schema
    Type
    type[marshmallow.Schema]
    Value

    = marshmallow.Schema

    Description

  • Name
    name
    Type
    str
    Value

    = None

    Description

    A human readable name to identify resources.

  • Name
    absolute_location
    Type
    Vector
    Value

    = None

    Description

    The absolute location of this resource.

  • Name
    width
    Type
    decimal.Decimal
    Value

    = None

    Description

    The size of the resource along the x-axis.

  • Name
    depth
    Type
    decimal.Decimal
    Value

    = None

    Description

    The size of the resource along the y-axis.

  • Name
    height
    Type
    decimal.Decimal
    Value

    = None

    Description

    The size of the resource along the z-axis.

  • Name
    center
    Type
    Vector
    Value

    = None

    Description

    The center base of this resource.

Copyright © 2024