download_toy_car_pmdat#
- ansys.meshing.prime.examples.download_toy_car_pmdat(destination=None, force=False)#
Download PMDAT file for the toy car example
- Parameters:
- destination: Optional[str]
Destination for the file to be downloaded. If nothing is provided, the default path in app data is used
- force: bool
If true, the file is always downloaded. If false, an existing file in the cache may be re-used.
- Returns:
str
Local path to the downloaded file
- Raises:
ValueError
When the provided destination path does not exist on file
- Return type:
Examples
>>> import ansys.meshing.prime as prime >>> import ansys.meshing.prime.examples as prime_examples >>> with prime.launch_prime() as session: >>> model = session.model >>> toy_car = prime_examples.download_toy_car_pmdat() >>> with prime.FileIO(model) as io: >>> _ = io.read_pmdat(toy_car, params=prime.FileReadParams(model)) >>> print(model)