-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce490e0
commit 14760fd
Showing
171 changed files
with
21,205 additions
and
118 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
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,35 @@ | ||
# AnalyzedResultsFromFieldData | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**short_spec_data** | **List[List[List[int]]]** | | [optional] | ||
**var_names** | **List[str]** | | [optional] | ||
**times** | **List[float]** | | [optional] | ||
**origin** | [**Origin**](Origin.md) | | [optional] | ||
**extent** | [**Extent**](Extent.md) | | [optional] | ||
**isize** | [**ISize**](ISize.md) | | [optional] | ||
**annotation** | **str** | | [optional] | ||
**name** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.analyzed_results_from_field_data import AnalyzedResultsFromFieldData | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AnalyzedResultsFromFieldData from a JSON string | ||
analyzed_results_from_field_data_instance = AnalyzedResultsFromFieldData.from_json(json) | ||
# print the JSON string representation of the object | ||
print AnalyzedResultsFromFieldData.to_json() | ||
|
||
# convert the object into a dict | ||
analyzed_results_from_field_data_dict = analyzed_results_from_field_data_instance.to_dict() | ||
# create an instance of AnalyzedResultsFromFieldData from a dict | ||
analyzed_results_from_field_data_form_dict = analyzed_results_from_field_data.from_dict(analyzed_results_from_field_data_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) | ||
|
||
|
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,43 @@ | ||
# CartesianMesh | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**compressed_bytes** | **bytearray** | | [optional] | ||
**u_cd_info** | [**UCDInfo**](UCDInfo.md) | | [optional] | ||
**geometry_dimension** | **int** | | [optional] | ||
**volume_region_map_subvolume** | **Dict[str, int]** | | [optional] | ||
**membrane_region_map_subvolumes_in_out** | **Dict[str, object]** | | [optional] | ||
**num_membrane_elements** | **int** | | [optional] | ||
**num_membrane_regions** | **int** | | [optional] | ||
**num_volume_elements** | **int** | | [optional] | ||
**num_volume_regions** | **int** | | [optional] | ||
**i_size** | [**ISize**](ISize.md) | | [optional] | ||
**size_x** | **int** | | [optional] | ||
**size_y** | **int** | | [optional] | ||
**size_z** | **int** | | [optional] | ||
**membrane_connectivity_ok** | **bool** | | [optional] | ||
**output_fields** | **List[object]** | | [optional] | ||
**chombo_mesh** | **bool** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.cartesian_mesh import CartesianMesh | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CartesianMesh from a JSON string | ||
cartesian_mesh_instance = CartesianMesh.from_json(json) | ||
# print the JSON string representation of the object | ||
print CartesianMesh.to_json() | ||
|
||
# convert the object into a dict | ||
cartesian_mesh_dict = cartesian_mesh_instance.to_dict() | ||
# create an instance of CartesianMesh from a dict | ||
cartesian_mesh_form_dict = cartesian_mesh.from_dict(cartesian_mesh_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) | ||
|
||
|
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,30 @@ | ||
# Coordinate | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**x** | **float** | | [optional] | ||
**y** | **float** | | [optional] | ||
**z** | **float** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.coordinate import Coordinate | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of Coordinate from a JSON string | ||
coordinate_instance = Coordinate.from_json(json) | ||
# print the JSON string representation of the object | ||
print Coordinate.to_json() | ||
|
||
# convert the object into a dict | ||
coordinate_dict = coordinate_instance.to_dict() | ||
# create an instance of Coordinate from a dict | ||
coordinate_form_dict = coordinate.from_dict(coordinate_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) | ||
|
||
|
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,30 @@ | ||
# Extent | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**x** | **float** | | [optional] | ||
**y** | **float** | | [optional] | ||
**z** | **float** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.extent import Extent | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of Extent from a JSON string | ||
extent_instance = Extent.from_json(json) | ||
# print the JSON string representation of the object | ||
print Extent.to_json() | ||
|
||
# convert the object into a dict | ||
extent_dict = extent_instance.to_dict() | ||
# create an instance of Extent from a dict | ||
extent_form_dict = extent.from_dict(extent_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) | ||
|
||
|
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,35 @@ | ||
# ExternalDataIdentifier | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
**owner** | [**User**](User.md) | | [optional] | ||
**name** | **str** | | [optional] | ||
**i_d** | **str** | | [optional] | ||
**job_index** | **int** | | [optional] | ||
**simulation_key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
**parameter_scan_type** | **bool** | | [optional] | ||
**data_key** | [**KeyValue**](KeyValue.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from vcell_client.models.external_data_identifier import ExternalDataIdentifier | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ExternalDataIdentifier from a JSON string | ||
external_data_identifier_instance = ExternalDataIdentifier.from_json(json) | ||
# print the JSON string representation of the object | ||
print ExternalDataIdentifier.to_json() | ||
|
||
# convert the object into a dict | ||
external_data_identifier_dict = external_data_identifier_instance.to_dict() | ||
# create an instance of ExternalDataIdentifier from a dict | ||
external_data_identifier_form_dict = external_data_identifier.from_dict(external_data_identifier_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) | ||
|
||
|
Oops, something went wrong.