GridSetup
DiscreteGridSetup
A class for setting up states. Provides helper methods for creating starting states in specific shapes
Source code in pylattica/structures/square_grid/grid_setup.py
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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
__init__(phase_set, dim=2)
Initializes a DiscreteGridSetup object by providing a set of phases that is used to specify cell states
Parameters
PhaseSet
A PhaseSet instance containing the possible phases that might be assigned to cells.
int, optional
The dimension of the simulations to setup, by default 2
Source code in pylattica/structures/square_grid/grid_setup.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
add_particle_to_state(structure, state, center, radius, particle_phase)
Adds a region filled with the specified phase to the point specified in the provided structure.
Parameters
PeriodicStructure
The structure in which the particle region should be added.
SimulationState
The state in which this change should be reflected
tuple
The coordinates of the center of the desired particle
int
The radius of the desired particle
str
The phase of the desired particle
Returns
SimulationState The adjusted SimulationState
Source code in pylattica/structures/square_grid/grid_setup.py
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 |
|
setup_coords(size, background_state, coordinates)
Generates a simulation filled with a specifed background phase, and specific sites filled with specific phases as defined by the coordinates parameter.
Parameters
int
The size of the simulation to generate
str
The phase with which the background should be filled.
dict
A map of phase name to list of tuples specifying the coordinates to be filled with that phase.
Returns
Simulation The resulting Simulation.
Source code in pylattica/structures/square_grid/grid_setup.py
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 |
|
setup_interface(size, p1, p2)
Generates a starting state that is divided into two phases. One phase occupies the left half of the state, and one phase occupies the right half of the state
Parameters
int
The side length of the state
str
The name of the left phase
str
The name of the right phase
Returns
Simulation The resulting Simulation.
Source code in pylattica/structures/square_grid/grid_setup.py
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 |
|
setup_noise(size, phases)
Generates an initial simulation state with sites randomly assigned one of the provided list of phases
Parameters
int
The size of the simulation to generate.
typing.List[str]
The phases to be randomly assigned
Returns
Simulation The resulting simulation.
Source code in pylattica/structures/square_grid/grid_setup.py
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
setup_particle(size, radius, bulk_phase, particle_phase)
Generates a starting state with a bulk phase surrounding a particle in the center of the state.
Parameters
int
The side length of the state
int
The radius of the particle
str
The name of the bulk
str
The name of the particle phase
Returns
Simulation The resulting Simulation
Source code in pylattica/structures/square_grid/grid_setup.py
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 |
|
setup_random_particles(size, radius, num_particles, bulk_phase, particle_phases)
Generates a starting state with a one phase in the background and num_particles particles distributed onto it randomly
Parameters
int
The size of the simulation
int
The radius of the particles to drop
int
The number of particles
str
The name of the containing phase
str
The name of the particulate phase
Returns
Simulation The resulting Simulation.
Source code in pylattica/structures/square_grid/grid_setup.py
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 |
|
setup_random_sites(size, num_sites_desired, background_spec, nuc_amts, buffer=2)
Generates an initial simulation state with a background phase filling space and random sites filled in with other phases as specified by the provided ratios.
Parameters
int
The size of the simulation to generate.
int
The number of non-background sites to select
str
The phase of the background
typing.Dict[str, float]
The ratios of the phases to assign to the selected sites
int, optional
The minimum distance between selected sites, by default 2
Returns
Simulation The resulting Simulation
Raises
RuntimeError If the buffer between sites is too large, and the num_sites_desired cannot fit in the specifed simulation size, a RuntimeError is thrown
Source code in pylattica/structures/square_grid/grid_setup.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
setup_solid_phase(structure, phase_name)
Generates a simulation filled with the specified phase.
Parameters
PeriodicStructure
The structure to
str
The name of the phase to fill the structure with.
Returns
SimulationState The resulting homogeneous simulation state.
Source code in pylattica/structures/square_grid/grid_setup.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|