CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

who know the software NaSt3DGP

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 14, 2005, 07:36
Default who know the software NaSt3DGP
  #1
ztdep
Guest
 
Posts: n/a
i meet some problem when i study this software,if someonge if familiar with it ,may i make a communicatin with you !

regards.

thank you very much
  Reply With Quote

Old   July 14, 2005, 13:37
Default Re: who know the software NaSt3DGP
  #2
Junseok Kim
Guest
 
Posts: n/a
I am using that software from time to time. What is your question?
  Reply With Quote

Old   July 15, 2005, 05:40
Default Re: who know the software NaSt3DGP
  #3
ztdep
Guest
 
Posts: n/a
i have give you a email . thank you very much for your feedback!
  Reply With Quote

Old   July 21, 2005, 07:38
Default Re: who know the software NaSt3DGP
  #4
ztdep
Guest
 
Posts: n/a
how can we perform a steady computation with the NaSt3DGP

thank you for your feedback
  Reply With Quote

Old   July 21, 2005, 12:04
Default Re: who know the software NaSt3DGP
  #5
Junseok Kim
Guest
 
Posts: n/a
You run a long time evolution until the solution doesn't evolve. Then you will get a steady computation if it has a steady solution.
  Reply With Quote

Old   July 22, 2005, 01:59
Default Re: who know the software NaSt3DGP
  #6
ztdep
Guest
 
Posts: n/a
thank you very much !

but i saw the time step changed automatically ,how can i set a time step that doennot change .

regards
  Reply With Quote

Old   July 22, 2005, 02:15
Default Re: who know the software NaSt3DGP
  #7
Junseok Kim
Guest
 
Posts: n/a
check the file named as navcalc.cxx in the src direction.

//####################### //## Time-Step Control ## //#######################

NS_REAL NavierCalc::TimeStep() {

int i,j,k,l,oldtimer=timer->Start(6,Par) ;

NS_REAL deltneu=S.deltmax ;

static NS_REAL xmin=1e15,ymin=1e15,zmin=1e15 ;

if (xmin==1e15 && ymin==1e15 && zmin==1e15) {

PIJKLOOP {xmin=min(xmin,DX[i]); ymin=min(ymin,DY[j]); zmin=min(zmin,DZ[k]);}

}

// local CFL-condition including volume forces

PIJKLOOP {

deltneu=min(deltneu, S.tfconv*2/(fabs(U[i][j][k])/DXM[i]+

sqrt( (U[i][j][k]*U[i][j][k])/(DXM[i]*DXM[i])+4*fabs(S.g[0])/(S.froude*DXM[i])) +1E-15));

deltneu=min(deltneu, S.tfconv*2/(fabs(V[i][j][k])/DYM[j]+

sqrt( (V[i][j][k]*V[i][j][k])/(DYM[j]*DYM[j])+4*fabs(S.g[1])/(S.froude*DYM[j])) +1E-15));

deltneu=min(deltneu, S.tfconv*2/(fabs(W[i][j][k])/DZM[k]+

sqrt( (W[i][j][k]*W[i][j][k])/(DZM[k]*DZM[k])+4*fabs(S.g[2])/(S.froude*DZM[k])) +1E-15));

}

// Viscosity

deltneu=min(deltneu,S.tfdiff*S.re*0.5/(1./(xmin*xmin)+1./(ymin*ymin)+1./(zmin*zmin)));

if(deltneu<1E-15) {

printf("Maybe ERROR in parameters: Time-Step = 0.0 ! \n");exit(1);

}

if(S.TimeDis==1) { // Compute new time step (8 steps smoothing through parabola for AB)

deltneu=(S.timesteps<9)?((1-((S.timesteps+1)*0.1-1)*((S.timesteps+1)*0.1-1))*deltneu):deltneu;

}

timer->Stop(oldtimer,Par);

return deltneu; }
  Reply With Quote

Old   July 26, 2005, 14:44
Default Re: who know the software NaSt3DGP
  #8
ami_cfd
Guest
 
Posts: n/a
Hi all,

The NaSt3DGP is a multiblock or single block solver?

thanks
  Reply With Quote

Reply


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
Water mist modelling capabilities of any software Iqbal CFX 2 January 13, 2011 19:00
Water mist modelling capabilities of any software. Iqbal FLUENT 0 January 13, 2011 02:59
CAD integrated CFD Software kostikr Main CFD Forum 3 February 4, 2010 14:38
Need help in proper CFD software AMusteykis Main CFD Forum 0 September 6, 2009 08:28
Visualization Software for CFD Paul Main CFD Forum 3 March 25, 2006 17:16


All times are GMT -4. The time now is 04:27.