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

Show the profile data.

resetprofile

Reset the profile data.

getprofile_as_string_list

Create the keyword input lines as a list for Chemkin applications.

size

Get number of data points in the profile.

status

Get the validity of the profile object.

pos

Get position values of profiles data.

value

Get variable values of profile data.

profilekey

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.