Profile#
- class ansys.chemkin.core.reactormodel.Profile(key: str, x: numpy.typing.NDArray[numpy.double], y: numpy.typing.NDArray[numpy.double])#
Chemkin profile keyword class.
Overview#
Show the profile data. |
|
Reset the profile data. |
|
Create the keyword input lines as a list for Chemkin applications. |
Get number of data points in the profile. |
|
Get the validity of the profile object. |
|
Get position values of profiles data. |
|
Get variable values of profile data. |
|
Get profile keyword. |
Import detail#
from ansys.chemkin.core.reactormodel import Profile
Property detail#
- property Profile.size: int#
Get number of data points in the profile.
- property Profile.status: int#
Get the validity of the profile object.
- property Profile.pos: numpy.typing.NDArray[numpy.double]#
Get position values of profiles data.
- property Profile.value: numpy.typing.NDArray[numpy.double]#
Get variable values of profile data.
- property Profile.profilekey: str#
Get profile keyword.
Method detail#
- Profile.show()#
Show the profile data.
- Profile.resetprofile(size: int, x: numpy.typing.NDArray[numpy.double], y: numpy.typing.NDArray[numpy.double])#
Reset the profile data.
- Profile.getprofile_as_string_list() tuple[int, list[str]]#
Create the keyword input lines as a list for Chemkin applications.