36 lines
1007 B
Markdown
36 lines
1007 B
Markdown
# UnitCell
|
|
|
|
Unit cell parameters. Necessary to run indexing. Units of angstrom and degree
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**a** | **float** | |
|
|
**b** | **float** | |
|
|
**c** | **float** | |
|
|
**alpha** | **float** | |
|
|
**beta** | **float** | |
|
|
**gamma** | **float** | |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from jfjoch_client.models.unit_cell import UnitCell
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of UnitCell from a JSON string
|
|
unit_cell_instance = UnitCell.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(UnitCell.to_json())
|
|
|
|
# convert the object into a dict
|
|
unit_cell_dict = unit_cell_instance.to_dict()
|
|
# create an instance of UnitCell from a dict
|
|
unit_cell_from_dict = UnitCell.from_dict(unit_cell_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|