Open Venu-41 opened 3 months ago
Hi @Venu-41, I am not able to reproduce this issue. Could you please confirm a few things?
Hello,
I have the same problem as Venu-41.
What I do: import ansys.fluent.core as pyfluent solver = pyfluent.launch_fluent(precision="double",dimension=3,processor_count=4, mode="solver", ui_mode="gui", additional_arguments="-post")
What I get: ERROR: Exception caught - RuntimeError: failed to connect to all addresses; last error: UNAVAILABLE: ipv4:10.220.0.90:8080: End of TCP stream
Is it in jupyter notebook for you as well @Wharfish ?
Yes, it is also in Jupyter notebook. But the the same problem appears if I execute the commands directly in the prompt.
@Wharfish, could you please check pyfluent.version and let us know? Also which version of fluent you are using and can you launch that fluent session independently? Thank you
Python 3.12.4 Fluent 2024.R1
And yes, I can start Fluent independently.
Python 3.12.4 Fluent 2024.R1
And yes, I can start Fluent independently.
Pyfluent version?
@Wharfish, could you please try to do a pip freeze and share the results here. Also type "set AWP" in the command prompt and share the output?
Thank you for your patience and help, actually I am not able to reproduce the issue, so trying to mimic your local setup and try.
When I enter "set AWP" nothing happens:
Thank you @Wharfish. Will get back to you soon.
Thank you @prmukherj for looking into it!
@Wharfish, could you please try one more thing?
>>> solver = pyfluent.launch_fluent(precision="double",dimension=3,processor_count=4, mode="solver", ui_mode="gui", additional_arguments="-post", fluent_path=r".....")
In the 'fluent_path=r"....."' argument above could you please try to provide the entire path to the fluent.exe and try once? Thank you
If I do this: solver = pyfluent.launch_fluent(precision="double",dimension=3,processor_count=4, mode="solver", ui_mode="gui", additional_arguments="-post", fluent_path=r"C:\Program Files\ANSYS Inc\v241\fluent\fluent24.1.0\win64\3ddp_host\fl2410.exe")
nothing happens. Is this the right .exe file?
Please search for "fluent.exe". It can be found in: "......\ANSYS Inc\v241\fluent\ntbin\win64\fluent.exe"
ok, sorry.
If I do this, then I get the same error in the prompt:
However, the GUI-Window opens correctly and it seems to work:
12.4 Fluent 2024.R
I think there is some issue with your fluent installation. Could you please set up the AWP environment variable properly.
AWP_ROOT241=C:\Program Files\ANSYS Inc\v241
I think these variables are already properly set:
Hello,
We have been running into the same issue at my company. We got it to start working on a laptop after turning off and running Zscalar. Once it was run, we could turn Zscalar back on, and everything worked fine. That was on a Windows 10 laptop; however, the desktops do not have Scalar, so the fix was only on the laptops.
We also noticed that when http_proxy and https_proxy are set, it goes to 10.160, and with no proxy env var set, it goes to 127.0.0.1. Both return the same error, just with different IPs.
We also got it to run on all computers by stepping back installs with the ansys python manager.
We've been looking into this for a bit, so I wanted to add some info, revive this thread, and find a solution. I don't know if any previous information was helpful, but hopefully, it will flip a switch for someone.
@Wharfish , try to use the version argument and v232. That seemed to work for me. v241 and v242 both throw that connection refused error for me.
Hello @EGreen-22,
I used your update using the deleting and rewriting of the proxy settings and this worked in my case. I'm still using v241. Thanks a lot for this hint!
Update: I found that using Try: and Finally: to delete and rewrite the env variables worked. I have no idea why this worked and manually deleting them prior to starting up the code didn't. If anyone knows what the overarching issue is let me know.
########## Unset Proxy ############ http_proxy = os.environ.get('http_proxy') https_proxy = os.environ.get("https_proxy")
try: if 'http_proxy' in os.environ: del os.environ['http_proxy'] if 'https_proxy' in os.environ: del os.environ['https_proxy'] #####################################
##Whatever your code is ##
########## Set Proxy Again ############ finally: if http_proxy: os.environ['http_proxy'] = http_proxy if https_proxy: os.environ['https_proxy'] = https_proxy ########################################
I am also having a similar issue and I have tried to apply some of the solutions in this thread, with no success. I also do recognize the typo in my environment name, I apologize. Any help would be greatly appreciated! Here is my error:
However, sometimes it does not even output past the "proceeding..." statement, which is weird.
I am using Ansys 2024R1 and here is my PyFluent version:
My code: The reason why I have the delete statements, is because the Ansys2024R1 installer always creates paths for both 241 and 242 for some reason, so I deleted it to avoid confusion.
import os del os.environ["AWP_ROOT242"] del os.environ["ANSYS242_DIR"]
import ansys.fluent.core as pyfluent from ansys.fluent.core import examples
for key, value in os.environ.items(): print(f"{key} : {value}")
import_file_name = examples.download_file( "exhaust_system.fmd", "pyfluent/exhaust_system" ) meshing = pyfluent.launch_fluent( precision="double", processor_count=2, mode="meshing",
)
@EGreen-22 It could be possible that Fluent infers an incorrect IP address for the gRPC server to which PyFluent connects. Could you please try setting the environment variable REMOTING_SERVER_ADDRESS
to localhost
or 127.0.0.1
or the correct IP address according to your network configuration before launching Fluent?
We have a mechanism on the PyFluent side to infer the correct IP for Fluent, but somehow that is probably not giving the correct result in this case.
@mkundu1 I still get the same error even with that added to environment variables. However, just to clarify I only get the issue with v242, v232 works fine.
I have rolled back to v232, but I still get the same issues as before on both a vpn and direct wired connection. I do not see any firewall exclusions as well. Does anyone have any ideas?
@ethanmal-25 What is the code you are using to launch fluently where you get the error? Do you have the remote server address that we talked about prior?
🔍 Before submitting the issue
🐞 Description of the bug
Hi I am trying to start a fluent session from jupyter notebook. I am session is not getting started. I am using Virtual environment.
Here is my code import ansys.fluent.core as pyfluent from ansys.fluent.core import examples session = pyfluent.launch_fluent(mode="meshing", show_gui=True)
pyfluent.launcher ERROR: Exception caught - RuntimeError: failed to connect to all addresses; last error: UNAVAILABLE: ipv4:127.0.0.1:55155: ConnectEx: Connection refused (No connection could be made because the target machine actively refused it. -- 10061)
📝 Steps to reproduce
import ansys.fluent.core as pyfluent from ansys.fluent.core import examples session = pyfluent.launch_fluent(mode="meshing", show_gui=True)
💻 Which operating system are you using?
Windows
📀 Which ANSYS version are you using?
Ansys 2042R2
🐍 Which Python version are you using?
3.12
📦 Installed packages