JModelica error in transfer_optimization_problem(…)JModelica refuses to load libhsl.soPython/Pyomo error within JModelicaUse JModelica in Spyder/PythonAdding additional libraries to MODELICAPATH in JModelicajmodelica optimization has runtime errorCannot run JModelica demos on WindowsIs it possible to suppress the output of the JModelica solver?Cannot install JModelica on UbubtuEvent info JModelica simulationJModelica on Ubuntu 18.04
Non-OR journals which regularly publish OR research
What's this thing in a peltier cooler?
How does The Fools Guild make its money?
When do triples have been called monads for the first time?
Does a code snippet compile? Or does it get compiled?
Does two puncture wounds mean venomous snake?
What does Apple mean by "This may decrease battery life"?
How do I explain to a team that the project they will work on for six months will certainly be cancelled?
Acceptable to cut steak before searing?
Max Order of an Isogeny Class of Rational Elliptic Curves is 8?
Strangeness with gears
Why do oscilloscopes use SMPS instead of linear power supply?
During the Space Shuttle Columbia Disaster of 2003, Why Did The Flight Director Say, "Lock the doors."?
Who are these characters/superheroes in the posters from Chris's room in Family Guy?
sed delete all the words before a match
Could one become a successful researcher by writing some really good papers while being outside academia?
Accidentals - some in brackets, some not
Which I-94 date do I believe?
Is it really ~648.69 km/s delta-v to "land" on the surface of the Sun?
What does "sardine box" mean?
How to mark beverage cans in a cooler for a blind person?
English - Acceptable use of parentheses in an author's name
Y2K... in 2019?
Why did Gandalf use a sword against the Balrog?
JModelica error in transfer_optimization_problem(…)
JModelica refuses to load libhsl.soPython/Pyomo error within JModelicaUse JModelica in Spyder/PythonAdding additional libraries to MODELICAPATH in JModelicajmodelica optimization has runtime errorCannot run JModelica demos on WindowsIs it possible to suppress the output of the JModelica solver?Cannot install JModelica on UbubtuEvent info JModelica simulationJModelica on Ubuntu 18.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a Modelica model and I want to use JModelica with CasADi to solve a parameter estimation problem. I have my model in .mo files and my optimization problem in a .mop file and when I try to use the python function transfer_optimization_problem(...) I get an error
Error in flattened model:
The DAE system has 125 equations and 121 free variables.
I understand that the system is overdetermined but I have no idea where to start to solve it and I can't find any logs that pins down the problem.
How do I know where to either introduce more free variables or remove equations?
It works if I use a simpler model and the model itself is possible to simulate by translating it to a fmu.
The optimization specification:
optimization lab_sun_wind_optimization(startTime=0, finalTime=1.16000e+07)
extends lab_sun_wind(
R(free=true, min=0.1, max=1.0),
winAr(free=true, min=0.01, max=0.05),
coeffV2Dt(free=true, min=0.0001, max=0.0005)
);
end lab_sun_wind_optimization;
The model:
model lab_sun_wind
import BuildingLib.Buildings;
// Parameters
parameter Real R = 1.0;
parameter Real winAr = 0.02;
parameter Real coeffV2Dt = 0.0002;
// Components
Buildings.SimpleAdapTypeLabSunWind b(R=R, winAr=winAr, coeffV2Dt=coeffV2Dt);
// Inputs
connector RealInput = input Real;
RealInput dtt;
RealInput dirRad;
RealInput sunAz;
RealInput sunH;
RealInput diffRad;
RealInput windSpeed;
RealInput ventHigh;
RealInput elPer;
RealInput sp;
equation
connect(dtt, b.buildingInp.dtt);
connect(dirRad, b.buildingInp.dirRad);
connect(sunAz, b.buildingInp.sunAz);
connect(sunH, b.buildingInp.sunH);
connect(diffRad, b.buildingInp.diffRad);
connect(windSpeed, b.buildingInp.windSpeed);
connect(ventHigh, b.buildingInp.ventHigh);
connect(elPer, b.buildingInp.elPer);
connect(sp, b.buildingInp.sp);
end lab_sun_wind;
I can't show how Buildings.SimpleAdapTypeLabSunWind looks like since it is company code.
jmodelica
add a comment |
I have a Modelica model and I want to use JModelica with CasADi to solve a parameter estimation problem. I have my model in .mo files and my optimization problem in a .mop file and when I try to use the python function transfer_optimization_problem(...) I get an error
Error in flattened model:
The DAE system has 125 equations and 121 free variables.
I understand that the system is overdetermined but I have no idea where to start to solve it and I can't find any logs that pins down the problem.
How do I know where to either introduce more free variables or remove equations?
It works if I use a simpler model and the model itself is possible to simulate by translating it to a fmu.
The optimization specification:
optimization lab_sun_wind_optimization(startTime=0, finalTime=1.16000e+07)
extends lab_sun_wind(
R(free=true, min=0.1, max=1.0),
winAr(free=true, min=0.01, max=0.05),
coeffV2Dt(free=true, min=0.0001, max=0.0005)
);
end lab_sun_wind_optimization;
The model:
model lab_sun_wind
import BuildingLib.Buildings;
// Parameters
parameter Real R = 1.0;
parameter Real winAr = 0.02;
parameter Real coeffV2Dt = 0.0002;
// Components
Buildings.SimpleAdapTypeLabSunWind b(R=R, winAr=winAr, coeffV2Dt=coeffV2Dt);
// Inputs
connector RealInput = input Real;
RealInput dtt;
RealInput dirRad;
RealInput sunAz;
RealInput sunH;
RealInput diffRad;
RealInput windSpeed;
RealInput ventHigh;
RealInput elPer;
RealInput sp;
equation
connect(dtt, b.buildingInp.dtt);
connect(dirRad, b.buildingInp.dirRad);
connect(sunAz, b.buildingInp.sunAz);
connect(sunH, b.buildingInp.sunH);
connect(diffRad, b.buildingInp.diffRad);
connect(windSpeed, b.buildingInp.windSpeed);
connect(ventHigh, b.buildingInp.ventHigh);
connect(elPer, b.buildingInp.elPer);
connect(sp, b.buildingInp.sp);
end lab_sun_wind;
I can't show how Buildings.SimpleAdapTypeLabSunWind looks like since it is company code.
jmodelica
add a comment |
I have a Modelica model and I want to use JModelica with CasADi to solve a parameter estimation problem. I have my model in .mo files and my optimization problem in a .mop file and when I try to use the python function transfer_optimization_problem(...) I get an error
Error in flattened model:
The DAE system has 125 equations and 121 free variables.
I understand that the system is overdetermined but I have no idea where to start to solve it and I can't find any logs that pins down the problem.
How do I know where to either introduce more free variables or remove equations?
It works if I use a simpler model and the model itself is possible to simulate by translating it to a fmu.
The optimization specification:
optimization lab_sun_wind_optimization(startTime=0, finalTime=1.16000e+07)
extends lab_sun_wind(
R(free=true, min=0.1, max=1.0),
winAr(free=true, min=0.01, max=0.05),
coeffV2Dt(free=true, min=0.0001, max=0.0005)
);
end lab_sun_wind_optimization;
The model:
model lab_sun_wind
import BuildingLib.Buildings;
// Parameters
parameter Real R = 1.0;
parameter Real winAr = 0.02;
parameter Real coeffV2Dt = 0.0002;
// Components
Buildings.SimpleAdapTypeLabSunWind b(R=R, winAr=winAr, coeffV2Dt=coeffV2Dt);
// Inputs
connector RealInput = input Real;
RealInput dtt;
RealInput dirRad;
RealInput sunAz;
RealInput sunH;
RealInput diffRad;
RealInput windSpeed;
RealInput ventHigh;
RealInput elPer;
RealInput sp;
equation
connect(dtt, b.buildingInp.dtt);
connect(dirRad, b.buildingInp.dirRad);
connect(sunAz, b.buildingInp.sunAz);
connect(sunH, b.buildingInp.sunH);
connect(diffRad, b.buildingInp.diffRad);
connect(windSpeed, b.buildingInp.windSpeed);
connect(ventHigh, b.buildingInp.ventHigh);
connect(elPer, b.buildingInp.elPer);
connect(sp, b.buildingInp.sp);
end lab_sun_wind;
I can't show how Buildings.SimpleAdapTypeLabSunWind looks like since it is company code.
jmodelica
I have a Modelica model and I want to use JModelica with CasADi to solve a parameter estimation problem. I have my model in .mo files and my optimization problem in a .mop file and when I try to use the python function transfer_optimization_problem(...) I get an error
Error in flattened model:
The DAE system has 125 equations and 121 free variables.
I understand that the system is overdetermined but I have no idea where to start to solve it and I can't find any logs that pins down the problem.
How do I know where to either introduce more free variables or remove equations?
It works if I use a simpler model and the model itself is possible to simulate by translating it to a fmu.
The optimization specification:
optimization lab_sun_wind_optimization(startTime=0, finalTime=1.16000e+07)
extends lab_sun_wind(
R(free=true, min=0.1, max=1.0),
winAr(free=true, min=0.01, max=0.05),
coeffV2Dt(free=true, min=0.0001, max=0.0005)
);
end lab_sun_wind_optimization;
The model:
model lab_sun_wind
import BuildingLib.Buildings;
// Parameters
parameter Real R = 1.0;
parameter Real winAr = 0.02;
parameter Real coeffV2Dt = 0.0002;
// Components
Buildings.SimpleAdapTypeLabSunWind b(R=R, winAr=winAr, coeffV2Dt=coeffV2Dt);
// Inputs
connector RealInput = input Real;
RealInput dtt;
RealInput dirRad;
RealInput sunAz;
RealInput sunH;
RealInput diffRad;
RealInput windSpeed;
RealInput ventHigh;
RealInput elPer;
RealInput sp;
equation
connect(dtt, b.buildingInp.dtt);
connect(dirRad, b.buildingInp.dirRad);
connect(sunAz, b.buildingInp.sunAz);
connect(sunH, b.buildingInp.sunH);
connect(diffRad, b.buildingInp.diffRad);
connect(windSpeed, b.buildingInp.windSpeed);
connect(ventHigh, b.buildingInp.ventHigh);
connect(elPer, b.buildingInp.elPer);
connect(sp, b.buildingInp.sp);
end lab_sun_wind;
I can't show how Buildings.SimpleAdapTypeLabSunWind looks like since it is company code.
jmodelica
jmodelica
asked Mar 27 at 7:24
Andreas SamuelssonAndreas Samuelsson
12 bronze badges
12 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55371822%2fjmodelica-error-in-transfer-optimization-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55371822%2fjmodelica-error-in-transfer-optimization-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown