Python script changes are not updated in MATLAB

18 次查看(过去 30 天)
I am trying to use MATLAB with some Python integration. However, when I want to apply some changes to the python scripts/functions I need to restart MATLAB to use the updated version.
I have seen some threads/replies from the past but I was not sure if there is a new way to reload the scripts or clear old information.
(matlab script)
clc
clear
clear workspace
pyenv(Version = "C:\Users\m85830ak\Python\Matlab-python\.venv\Scripts\python.exe");
fun = @trial;
x0 = [150,120e5,7850000.0]
output = fun(x0)
A=[];
b=[];
Aeq=[];
beq=[];
lb = [150,74e5,74e5];
ub = [530,300e5,300e5];
[x,fval]= fmincon(fun,x0,A,b,Aeq,beq,lb,ub)
trial.m (matlab function file)
function a = trial(x)
a=py.matlab_file.turbine(x(1),x(2),x(3));
a = -a;
matlab_file.py (Python script)
from pyfluids import Fluid, FluidsList, Input
def turbine(tin, pin, pout):
ntur = 85
m=100
turb_out = (
Fluid(FluidsList.CarbonDioxide)
.with_state(Input.temperature(tin), Input.pressure(pin))
.expansion_to_pressure(pout, ntur)
)
turb_inlet = Fluid(FluidsList.CarbonDioxide).with_state(
Input.temperature(tin), Input.pressure(pin)
)
delta_h = turb_inlet.enthalpy - turb_out.enthalpy
w_tur = delta_h * m
return w_tur
  1 个评论
Ali Tarik Karagöz
Ali Tarik Karagöz 2024-4-26
clear classes at the beginning of the script and
function a = trial(x)
mf = py.importlib.import_module("matlab_file");
py.importlib.reload(mf);
% y =[9, 4, 7, 5, 7, 4, 1, 5, 2, 3, 4];
a=mf.SQPOPT(x);
this reload is working.

请先登录,再进行评论。

回答(1 个)

Hassaan
Hassaan 2024-4-25
py.reload(py.matlab_file);
Try using py.reload()
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems | Firmware Developement | Simulations
  • Electrical and Electronics Engineering
Feel free to contact me.
  1 个评论
Ali Tarik Karagöz
Ali Tarik Karagöz 2024-4-26
编辑:Ali Tarik Karagöz 2024-4-26
No module or function named 'reload'.
Error in untitled (line 6)
py.reload();
I tried py.reload(matlab_file) as well. Both gave this error

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Call Python from MATLAB 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by