Separator#

IRI: https://w3id.org/emmo/domain/electrochemistry#electrochemistry_331e6cca_f260_4bf8_af55_35304fe1bbe0

Description#

A separator is a porous membrane that electrically insulates the anode and cathode while allowing ionic conductivity. It prevents short circuits while enabling ion transport.

Guidelines for Use#

  1. Identify the Separator

{
  "@context": "https://w3id.org/emmo/domain/electrochemistry/context",
  "@type": "Separator"
}
  1. Assign Properties

{
  "@context": "https://w3id.org/emmo/domain/electrochemistry/context",
  "@type": "Separator",
  "hasProperty": [
    {
      "@type": "Thickness",
      "hasNumericalPart": {
        "@type": "RealData",
        "hasNumericalValue": 20
      },
      "hasMeasurementUnit": "emmo:MicroMetre"
    }
  ]
}
  1. Link the Separator to a Functional Whole

{
  "@context": "https://w3id.org/emmo/domain/electrochemistry/context",
  "@type": "ElectrochemicalDevice",
  "hasSeparator": {
    "@type": "Separator",
    "hasProperty": [
      {
        "@type": "Thickness",
        "hasNumericalPart": {
          "@type": "RealData",
          "hasNumericalValue": 20
        },
        "hasMeasurementUnit": "emmo:MicroMetre"
      }
    ]
  }
}