Python script changes are not updated in MATLAB

17 Ansichten (letzte 30 Tage)
Ali Tarik Karagöz
Ali Tarik Karagöz am 25 Apr. 2024
Beantwortet: Nando am 14 Nov. 2024 um 12:54
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 Kommentar
Ali Tarik Karagöz
Ali Tarik Karagöz am 26 Apr. 2024
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.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Hassaan
Hassaan am 25 Apr. 2024
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 Kommentar
Ali Tarik Karagöz
Ali Tarik Karagöz am 26 Apr. 2024
Bearbeitet: Ali Tarik Karagöz am 26 Apr. 2024
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

Melden Sie sich an, um zu kommentieren.


Nando
Nando am 14 Nov. 2024 um 12:54
This question has been answered here
The solution is
warning('off','MATLAB:ClassInstanceExists')
clear classes
m = py.importlib.import_module('PythonFilename');
py.importlib.reload(m);

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by