mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-22 04:18:02 -05:00
9 lines
235 B
Cython
9 lines
235 B
Cython
cimport numpy as np
|
|
cimport cython
|
|
|
|
cdef class PPF_summer:
|
|
cdef public np.ndarray n,t,d,L,tau,delta
|
|
cdef int IL0
|
|
|
|
cpdef set_constants(self, np.ndarray t, np.ndarray d, np.ndarray l, int IL0)
|
|
cpdef dphir_dDelta(self) |