CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > Siemens > STAR-CCM+

Encountering 'java.net.SocketException' Error when Initializing Solution

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 15, 2019, 13:55
Question Encountering 'java.net.SocketException' Error when Initializing Solution
  #1
New Member
 
Nate
Join Date: Jan 2019
Posts: 2
Rep Power: 0
shep4045 is on a distinguished road
Hi all,

I want to preface by saying this is my first post in this forum, if I am missing information or this is the incorrect place to post please let me know.

I am also an undergraduate student. I am by no means an expert on CFD, but I have been using Star CCM+ for four years now with guidance from professors, coworkers and other peers so I am semi-confident in troubleshooting most issues I encounter, however this is a new one.

The case I am having issues with is an external flow analysis of a multi-element wing, low-Reynolds numbers. Most of my setup follows Star's "Best Practices" listed in their manual along with personal experience from what has worked best in the past.

Physics Setup:
-RANS
-Steady State
-3D
-Constant Density
-Segregated Flow
-All y+ Treatment
-Exact Wall Distance
-K-Omega Turbulence
-SST (Menter) K-Omega

The case is fairly small, ~10 million cells. I'm running on fairly limited hardware: 32 GB memory and 8 threads.

I encounter the error when I initialize the solution. When the initialization reaches the "Computing Wall Distance: Vertex Distance" the program freezes and closes the simulation. Star CCM+ stays open, but with no simulation open. A window pops up with the error message, I have attached a screenshot of the error along with the Star CCM+ log for that session.

My attempts to resolve the issue:

1. I checked with our university's IT to make sure this wasn't an issue with a license or server error. They said everything was good on their end so I proceeded to check my model.

2. This was the 5th case that I had been running in this experiment. I have been making modifications to the geometry in between using NX so my first thought was to check my CAD model for issues. I remodeled one surface that could've been leaving a very small sliver. I also checked the model for empty pockets within bodies, infinitely thin sections, sharp edges, etc. Once I was confident in the model I created a new simulation but encountered the same error.

3. I checked the surface mesh for any errors using Star's built in "mesh repair" tool. It marked no issues with any cells.

4. I tried switching to a K-Epsilon turbulence model and decreased my number of prism layers to 10. I just wanted to see if I could get a case running, but unfortunately I still encountered the same error.

I've also done plenty of digging on google for similar issues and haven't come up with anything yet. I figured this would be a good place to ask for some support.

I appreciate in advance any help!
Attached Images
File Type: png Capture.PNG (23.2 KB, 28 views)
Attached Files
File Type: txt Error Log.txt (13.3 KB, 5 views)
shep4045 is offline   Reply With Quote

Old   January 18, 2019, 14:53
Default
  #2
Senior Member
 
Lucky
Join Date: Apr 2011
Location: Orlando, FL USA
Posts: 5,665
Rep Power: 65
LuckyTran has a spectacular aura aboutLuckyTran has a spectacular aura aboutLuckyTran has a spectacular aura about
The error message only says Star crashed. No special or specific info.


If it crashes during initialization then probably you have a bad reference in one of your plots or something. Did you reuse an old .sim file and try to swap out the mesh or do you start clean every time?
LuckyTran is offline   Reply With Quote

Old   January 18, 2019, 15:32
Default
  #3
New Member
 
Nate
Join Date: Jan 2019
Posts: 2
Rep Power: 0
shep4045 is on a distinguished road
Creating a new sim file every time and generating a new mesh.

The point about having a bad reference in a plot is interesting though. I might try deleting any monitors and plots that I’ve created and see if I can get it to run. If it works then I’ll check my references.

Thanks for the help!
shep4045 is offline   Reply With Quote

Old   December 27, 2019, 04:09
Default
  #4
New Member
 
Join Date: Mar 2012
Posts: 12
Rep Power: 14
shashankshankar is on a distinguished road
Hello, I am facing the same error. the meshing initialization happens but parallel meshing fails with this error while serial meshing works. May I know whether you were able to solve this issue or not
shashankshankar is offline   Reply With Quote

Old   May 24, 2022, 01:28
Default
  #5
New Member
 
hedmondjohn
Join Date: May 2022
Posts: 1
Rep Power: 0
hedmondjohn is on a distinguished road
Your Java socket shows SocketTimeoutException means that it takes too long to get respond from other device and your request expires before getting response. This exception is occurring on following condition.

Server is slow and default timeout is less, so just put timeout value according to you.
Server is working fine but timeout value is for less time. so change the timeout value.

Solution: A developer can pre-set the timeout option for both client and server operations.

From Client side:

Socket socket = new Socket();
SocketAddress socketAddress = new InetSocketAddress(host, port);
socket.connect(socketAddress, 12000); //12000 are milli seconds

From Server side:

ServerSocket serverSocket = new new ServerSocket(port);
serverSocket.setSoTimeout(12000);
hedmondjohn is offline   Reply With Quote

Reply

Tags
java, java error, wall distance

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Pressure distribution on a wall darazsbence CFX 17 October 6, 2015 10:38
grid dependancy gueynard a. Main CFD Forum 19 June 27, 2014 21:22
Why 3D solid-pore geometry showing diverged solution? Sargam05 OpenFOAM 0 December 3, 2012 15:45
Analytic solution for 2D steady Euler equations jojo81 Main CFD Forum 0 October 15, 2012 12:05
Wall functions Abhijit Tilak Main CFD Forum 6 February 5, 1999 01:16


All times are GMT -4. The time now is 03:02.