Error use multiple time dependent boundary conditions

Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Error use multiple time dependent boundary conditions

PRajan
I am trying to simulate a time dependent heat transfer with time dependent heat sources.  The time dependent heat sources are at boundaries 36, 39, 45.



The simulation does not have any issues if the heat sources are fixed values, time independent, at these boundaries.

The simulation does not have any issues if the heat source at boundary 36 is time dependent but causes an error if any of the other boundaries (39, 45) have a time dependent source.

The error that the tool runs into is: "Deletion requires an existing variable"

Any ideas?

Thanks.
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

Precise Simulation
Administrator
https://forum.featool.com/IMPORTANT-Issue-and-bug-reporting-guidelines-tp1735.html

^ Please include the model file(s) and system information with all technical issues.
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

PRajan
Hi,
Additional information.

System Info:
App Id: FEATool Multiphysics
App Version: 1.17.2 Build 24.11.332
App License: PDE0DDK17299QDC16187B
App Path: C:\Users\pthia\AppData\Roaming\MathWorks\MATLAB Add-Ons\Apps\FEAToolMultiphysics
App Data: C:\Users\pthia\OneDrive\Documents\MATLAB\.featool
User Home: C:\Users\pthia
Runtime: R2024a en_US
System: PCWIN64-L
OS: Win 11
Id: C4C04F4E5A33 (31)
Cpu: 13th Gen Intel(R) Core(TM) i9-13900F
Geom Engine: geomtool 2.0.4
Triangle Binary: C:\Users\pthia\OneDrive\Documents\MATLAB\.featool\triangle.exe
FEniCS Version: Not found. Could not detect any Python installation.
OpenFOAM: Not found
SU2 Binary: C:\Users\pthia\AppData\Roaming\MathWorks\MATLAB Add-Ons\Apps\FEAToolMultiphysics\lib\su2\SU2_CFD.exe
SU2 Version: v7.5.1 Blackbird

Matlab m-script attached

Steps to create error:
Modify boundary conditions in lines  120 and/or lines 121 to:
fea.bdr.n{1,1}{38} = '(rho_ht*cp_ht*(nx*u_ht+ny*v_ht)*T)+(20*(t<300e-6))';
fea.bdr.n{1,1}{45} = '(rho_ht*cp_ht*(nx*u_ht+ny*v_ht)*T)+(20*(t<300e-6))';

Error information:
Deletion requires an existing variable.

Error in featool

Error in featool

Error in featool

Error in featool

Error in solvetime (line 44)
if ~(nargin||nargout),help mfilename,return,end,varargout=cell(1,nargout);[varargout{:}]=featool('feval','solvetime',varargin{:});if ~nargout,clear varargout,end

Error in Multi_Bar_Thermal (line 123)
[fea.sol.u,fea.sol.t] = solvetime( fea, ...

Thanks.Multi_Bar_Thermal.m
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

Precise Simulation
Administrator
Thank you for submitting the additional info. It seems to be an internal issue with how multiple subdomains are handled. Please try to use the bugfix version linked below until the next official release:

https://drive.google.com/file/d/1npcg9kvlejXPLp-88ZoyZekZNgO_4-w5/view?usp=sharing
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

PRajan
Thank you for fixing the boundary condition issue.  The solver works without any errors now.

However the solver seems to terminate prematurely.  The final solve time in the model was t=0.01 but looks like the solver terminates at t=0.00085.  Here is the end of the log:
 
---------------------------------
 Time step   86 at time 0.00085   |
---------------------------------
    it |    def-T  |     rel-T  |
---------------------------------
     1 |  7.1e-09  |     1e-06  |
---------------------------------
 t-chg             |     1e-06  |
---------------------------------
 
--------------------------------------------------
          Solver Statistics (solvetime)
--------------------------------------------------
 Number of dependent variables
--------------------------------------------------
 T : 9579
--------------------------------------------------
 Simulation timings
--------------------------------------------------
 t-asm_m : 4.1e-02 \   0%
 t-asm_a : 1.3e-02 \   0%
 t-asm_f : 6.1e-02 \   0%
 t-bdr   : 6.2e-01 \   6%
 t-lc_mv : 9.2e-02 \   0%
 t-sol   : 7.1e+00 \  68%
 t-tot   : 1.0e+01 \ 100%
--------------------------------------------------

Do you know what could be causing this?
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

Precise Simulation
Administrator
Probably the "tstop" parameter that detects no or small changes. Try reducing it.

https://github.com/precise-simulation/featool-multiphysics/blob/master/solvetime.m#L12-L13
Reply | Threaded
Open this post in threaded view
|

Re: Error use multiple time dependent boundary conditions

PRajan
Thank you.  This fixed it.