CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS

Writing a step function in transient thermal problems

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 28, 2012, 15:56
Default Writing a step function in transient thermal problems
  #1
New Member
 
guy
Join Date: Jul 2012
Posts: 3
Rep Power: 13
kolvos is on a distinguished road
Hi,

I've been trying to write a step function that makes my convection coefficient 0 every 6.4 seconds for a period of time of 0.3 secs. Other periods of time I want it to be 25.. I want this to continue indefinitely.

Anyone has ideas? Would really be glad if someone just wrote me the function..

Thanks
kolvos is offline   Reply With Quote

Old   July 30, 2012, 05:59
Default
  #2
Super Moderator
 
flotus1's Avatar
 
Alex
Join Date: Jun 2012
Location: Germany
Posts: 3,399
Rep Power: 46
flotus1 has a spectacular aura aboutflotus1 has a spectacular aura about
In fluent you could use a UDF which includes the following
Code:
double time;
double coeff;

time=RP_Get_Real("flow-time");
while(time > 6.7)
{
time = time-6.7;
}
if(time < 6.4) coeff = 25.0;
else coeff = 0.0;

Last edited by flotus1; July 30, 2012 at 06:24.
flotus1 is offline   Reply With Quote

Old   July 30, 2012, 06:46
Default
  #3
New Member
 
guy
Join Date: Jul 2012
Posts: 3
Rep Power: 13
kolvos is on a distinguished road
Hi and thanks for you feedback.

How should I input this kind of code?
I was meaning to use the "Functions" option under Define Loads..

Thanks again
kolvos is offline   Reply With Quote

Old   July 30, 2012, 08:12
Default
  #4
Super Moderator
 
flotus1's Avatar
 
Alex
Join Date: Jun 2012
Location: Germany
Posts: 3,399
Rep Power: 46
flotus1 has a spectacular aura aboutflotus1 has a spectacular aura about
So I see you are using the "transient thermal" node in Ansys workbench.
I don't know if it is possible there have this kind of boundary condition unless you write a table with the values for the whole simulation time.

Personally, I would rather use Fluent or CFX for a transient thermal analysis.
flotus1 is offline   Reply With Quote

Old   July 30, 2012, 08:23
Default
  #5
New Member
 
guy
Join Date: Jul 2012
Posts: 3
Rep Power: 13
kolvos is on a distinguished road
How can I write a table?

Thanks
kolvos is offline   Reply With Quote

Reply

Tags
ansys, step function, thermal, transient


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[blockMesh] BlockMesh FOAM warning gaottino OpenFOAM Meshing & Mesh Conversion 7 July 19, 2010 14:11
[blockMesh] Axisymmetrical mesh Rasmus Gjesing (Gjesing) OpenFOAM Meshing & Mesh Conversion 10 April 2, 2007 14:00
Droplet Evaporation Christian Main CFD Forum 2 February 27, 2007 06:27
Difference between steady and transient problems Jianping Zhang Main CFD Forum 9 April 14, 2003 06:17
Info: Short Course On Thermal Design of Electronic Equipment Arnold Free Main CFD Forum 0 August 10, 1999 10:18


All times are GMT -4. The time now is 08:31.