generated from Guillaume-Gaisne/nomad-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sintering classes from a yaml schema
- Loading branch information
1 parent
f7ca3c0
commit 076324b
Showing
4 changed files
with
174 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
definitions: | ||
name: 'Tutorial 13 sintering schema' | ||
sections: | ||
TemperatureRamp: | ||
m_annotations: | ||
eln: | ||
properties: | ||
order: | ||
- "name" | ||
- "start_time" | ||
- "initial_temperature" | ||
- "final_temperature" | ||
- "duration" | ||
- "comment" | ||
base_sections: | ||
- nomad.datamodel.metainfo.basesections.ProcessStep | ||
quantities: | ||
initial_temperature: | ||
type: np.float64 | ||
unit: celsius | ||
description: "initial temperature set for ramp" | ||
m_annotations: | ||
eln: | ||
component: NumberEditQuantity | ||
defaultDisplayUnit: celsius | ||
final_temperature: | ||
type: np.float64 | ||
unit: celsius | ||
description: "final temperature set for ramp" | ||
m_annotations: | ||
eln: | ||
component: NumberEditQuantity | ||
defaultDisplayUnit: celsius | ||
Sintering: | ||
base_sections: | ||
- nomad.datamodel.metainfo.basesections.Process | ||
- nomad.datamodel.data.EntryData | ||
sub_sections: | ||
steps: | ||
repeats: True | ||
section: '#/TemperatureRamp' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
# | ||
# Copyright The NOMAD Authors. | ||
# | ||
# This file is part of NOMAD. See https://nomad-lab.eu for further info. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
from typing import ( | ||
TYPE_CHECKING, | ||
) | ||
|
||
import numpy as np | ||
from nomad.datamodel.data import ( | ||
ArchiveSection, | ||
EntryData, | ||
) | ||
from nomad.datamodel.metainfo.basesections import Process, ProcessStep | ||
from nomad.metainfo import ( | ||
Package, | ||
Quantity, | ||
Section, | ||
SubSection, | ||
) | ||
|
||
if TYPE_CHECKING: | ||
from nomad.datamodel.datamodel import ( | ||
EntryArchive, | ||
) | ||
from structlog.stdlib import ( | ||
BoundLogger, | ||
) | ||
|
||
m_package = Package(name='Tutorial 13 sintering schema') | ||
|
||
|
||
class TemperatureRamp(ProcessStep, ArchiveSection): | ||
''' | ||
Class autogenerated from yaml schema. | ||
''' | ||
m_def = Section( | ||
a_eln={ | ||
"properties": { | ||
"order": [ | ||
"name", | ||
"start_time", | ||
"initial_temperature", | ||
"final_temperature", | ||
"duration", | ||
"comment" | ||
] | ||
} | ||
},) | ||
initial_temperature = Quantity( | ||
type=np.float64, | ||
description='initial temperature set for ramp', | ||
a_eln={ | ||
"component": "NumberEditQuantity", | ||
"defaultDisplayUnit": "celsius" | ||
}, | ||
unit="celsius", | ||
) | ||
final_temperature = Quantity( | ||
type=np.float64, | ||
description='final temperature set for ramp', | ||
a_eln={ | ||
"component": "NumberEditQuantity", | ||
"defaultDisplayUnit": "celsius" | ||
}, | ||
unit="celsius", | ||
) | ||
|
||
def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: | ||
''' | ||
The normalizer for the `TemperatureRamp` class. | ||
Args: | ||
archive (EntryArchive): The archive containing the section that is being | ||
normalized. | ||
logger (BoundLogger): A structlog logger. | ||
''' | ||
super().normalize(archive, logger) | ||
|
||
|
||
class Sintering(Process, EntryData, ArchiveSection): | ||
''' | ||
Class autogenerated from yaml schema. | ||
''' | ||
m_def = Section() | ||
steps = SubSection( | ||
section_def=TemperatureRamp, | ||
repeats=True, | ||
) | ||
|
||
def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: | ||
''' | ||
The normalizer for the `Sintering` class. | ||
Args: | ||
archive (EntryArchive): The archive containing the section that is being | ||
normalized. | ||
logger (BoundLogger): A structlog logger. | ||
''' | ||
super().normalize(archive, logger) | ||
|
||
|
||
m_package.__init_metainfo__() |