Downloadable Examples

Downloadable datasets collected from various sources.

Once downloaded, these datasets are stored locally allowing for the rapid reuse of these datasets.

Examples

>>> from axisvm.com.client import start_AxisVM
>>> from axisvm import examples
>>> axvm = start_AxisVM(visible=True, daemon=True)
>>> axvm.model = examples.download_bernoulli_grid()
axisvm.examples.downloads.delete_downloads()[source]

Delete all downloaded examples to free space or update the files.

Returns:

Returns True.

Return type:

bool

Examples

Delete all local downloads.

>>> from axisvm import examples
>>> axisvm.delete_downloads()  
True
axisvm.examples.downloads.download_tetrahedra()[source]

Downloads an AxisVM model file with a grid of beams.

Returns:

A path to an AxisVM model file on your filesystem.

Return type:

str

Example

>>> from axisvm.com.client import start_AxisVM
>>> from axisvm import examples
>>> axvm = start_AxisVM(visible=True, daemon=True)
>>> axvm.model = examples.download_tetrahedra()
axisvm.examples.downloads.download_bernoulli_grid()[source]

Downloads an AxisVM model file with a grid of beams.

Returns:

A path to an AxisVM model file on your filesystem.

Return type:

str

Example

>>> from axisvm.com.client import start_AxisVM
>>> from axisvm import examples
>>> axvm = start_AxisVM(visible=True, daemon=True)
>>> axvm.model = examples.download_bernoulli_grid()
axisvm.examples.downloads.download_stem_stl()[source]

Downloads an stl file describing a stem.

Returns:

A path to an stl file on your filesystem.

Return type:

str

Example

>>> from axisvm import examples
>>> examples.download_stem_stl()
axisvm.examples.downloads.download_stand_vtk()[source]

Downloads a vtk file describing a stem.

Returns:

A path to a vtk file on your filesystem.

Return type:

str

Example

>>> from axisvm import examples
>>> examples.download_stand_vtk()
axisvm.examples.downloads.download_stand_stl()[source]

Downloads an stl file describing a simple stand.

Returns:

A path to an stl file on your filesystem.

Return type:

str

Example

>>> from axisvm import examples
>>> examples.download_stand_stl()
axisvm.examples.downloads.download_sample_001()[source]

Downloads an AxisVM model with a few beams, trusses and domains.

Returns:

A path to an AxisVM model file on your filesystem.

Return type:

str

Example

>>> from axisvm.com.client import start_AxisVM
>>> from axisvm import examples
>>> axvm = start_AxisVM(visible=True, daemon=True)
>>> axvm.model = examples.download_sample_001()
axisvm.examples.downloads.download_plate_ss()[source]

Downloads an AxisVM model with a few beams, trusses and domains.

Returns:

A path to an AxisVM model file on your filesystem.

Return type:

str

Example

>>> from axisvm.com.client import start_AxisVM
>>> from axisvm import examples
>>> axvm = start_AxisVM(visible=True, daemon=True)
>>> axvm.model = examples.download_plate_ss()