Software Configuration
SoftwareConfiguration
¶
Bases: UUIDBaseNode
Definition¶
The software_configuration sub-object includes software and the set of algorithms to execute computation or computational_process.
Can Be Added To:¶
Available sub-objects:¶
Attributes¶
keys | type | example | description | required | vocab |
---|---|---|---|---|---|
software | Software | software used | True | ||
algorithms | list[Algorithm] | algorithms used | |||
notes | str | miscellaneous information, or custom data structure (e.g.; JSON) | |||
citation | list[Citation] | reference to a book, paper, or scholarly work |
JSON Representation¶
{
"node":["SoftwareConfiguration"],
"uid":"_:f0dc3415-635d-4590-8b1f-cd65ad8ab3fe"
"software":{
"name":"SOMA",
"node":["Software"],
"source":"https://gitlab.com/InnocentBug/SOMA",
"uid":"_:5bf9cb33-f029-4d1b-ba53-3602036e4f75",
"uuid":"5bf9cb33-f029-4d1b-ba53-3602036e4f75",
"version":"0.7.0"
}
}
Source code in src/cript/nodes/subobjects/software_configuration.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
algorithm: List[Union[Algorithm, UIDProxy]]
property
writable
¶
list of Algorithms used
Examples:
>>> import cript
>>> my_algorithm = cript.Algorithm(key="mc_barostat", type="barostat")
>>> my_software = cript.Software(name="LAMMPS", version="23Jun22", source="lammps.org")
>>> my_software_configuration = cript.SoftwareConfiguration(software=my_software)
>>> my_software_configuration.algorithm = [my_algorithm]
Returns:
Type | Description |
---|---|
List[Algorithm]
|
list of algorithms used |
citation: List[Union[Citation, UIDProxy]]
property
writable
¶
list of Citation sub-objects for the Software_Configuration
Examples:
>>> import cript
>>> title = (
... "Multi-architecture Monte-Carlo (MC) simulation of soft coarse-grained polymeric materials: "
... "Soft coarse grained Monte-Carlo Acceleration (SOMA)"
... )
>>> my_reference = cript.Reference(
... type="journal_article",
... title=title,
... author=["Ludwig Schneider", "Marcus Müller"],
... journal="Computer Physics Communications",
... publisher="Elsevier",
... year=2019,
... pages=[463, 476],
... doi="10.1016/j.cpc.2018.08.011",
... issn="0010-4655",
... website="https://www.sciencedirect.com/science/article/pii/S0010465518303072",
... )
>>> my_citation = Citation("reference", my_reference)
>>> my_software = cript.Software(name="LAMMPS", version="23Jun22", source="lammps.org")
>>> my_software_configuration = cript.SoftwareConfiguration(software=my_software)
>>> my_software_configuration.citation = [my_citation]
Returns:
Type | Description |
---|---|
List[Citation]
|
list of Citations |
notes: str
property
writable
¶
miscellaneous information, or custom data structure (e.g.; JSON). Notes can be written in plain text or JSON
Examples:
Plain Text¶
Examples:
>>> import cript
>>> my_software = cript.Software(name="LAMMPS", version="23Jun22", source="lammps.org")
>>> my_software_configuration = cript.SoftwareConfiguration(software=my_software)
>>> my_software_configuration.notes = "{'notes subject': 'notes contents'}"
Returns:
Type | Description |
---|---|
str
|
notes |
software: Union[Software, None, UIDProxy]
property
writable
¶
Software used
Examples:
>>> import cript
>>> my_software = cript.Software(name="LAMMPS", version="23Jun22", source="lammps.org")
>>> my_software_configuration = cript.SoftwareConfiguration(software=my_software)
>>> my_software_configuration.software = my_software
Returns:
Type | Description |
---|---|
Union[Software, None]
|
Software node used |
__init__(software, algorithm=None, notes='', citation=None, **kwargs)
¶
Create Software_Configuration sub-object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
software |
Software
|
Software node used for the Software_Configuration |
required |
algorithm |
Union[List[Algorithm], None]
|
algorithm used for the Software_Configuration, by default None |
None
|
notes |
str
|
plain text notes, by default "" |
''
|
citation |
Union[List[Citation], None]
|
list of Citation sub-object, by default None |
None
|
Examples:
>>> import cript
>>> my_software = cript.Software(name="LAMMPS", version="23Jun22", source="lammps.org")
>>> my_software_configuration = cript.SoftwareConfiguration(software=my_software)
Returns:
Type | Description |
---|---|
None
|
Create Software_Configuration sub-object |