Facing below problem while linking CoolProp with MATLAB

조회 수: 12 (최근 30일)
NAVEED ULLAH
NAVEED ULLAH 2021년 12월 24일
댓글: Walter Roberson 2021년 12월 31일
pyversion
version: '2.7'
executable: 'C:\Users\Shehryar Ishaque\Anaconda2\python.EXE'
library: 'C:\Users\Shehryar Ishaque\Anaconda2\python27.dll'
home: 'C:\Users\Shehryar Ishaque\Anaconda2'
isloaded: 0
>> [v,e] = pyversion; system([e,' -m pip install --user -U CoolProp'])
'C:\Users\Shehryar' is not recognized as an internal or external command,
operable program or batch file.
ans =
1

채택된 답변

Walter Roberson
Walter Roberson 2021년 12월 27일
[v,e] = pyversion;
cmd = sprintf('"%s" -m pip install --user -U CoolProp', e);
system(cmd)
  댓글 수: 4
NAVEED ULLAH
NAVEED ULLAH 2021년 12월 31일
can you please guide me to get py.Coolprop.Coolprop.HAPropsSI resolve the issue
Walter Roberson
Walter Roberson 2021년 12월 31일
http://www.coolprop.org/apidoc/CoolProp.CoolProp.html documents CoolProp.CoolProp.HAPropsSI so once (recent enough) CoolProp is installed,
T = py.CoolProp.CoolProp.HAPropsSI('T', 'P', '101325', 'H', H, 'R', 1.0)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Shanmukha Voggu
Shanmukha Voggu 2021년 12월 27일
편집: Shanmukha Voggu 2021년 12월 27일
Hi naveed,
system(command) calls the operating system to execute the specified command.
If you want to run multiple commands, use && between consecutive commands for windows
Refer to documentation of system
Hope this helps!
  댓글 수: 3
Shanmukha Voggu
Shanmukha Voggu 2021년 12월 27일
Thanks for clarification.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by