Search found 37 matches

by markrmau
Fri Jan 26, 2024 3:59 am
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Thanks Cobalt5491 What user are you running freecad from? I assume you are running a normal user and not root? I seem to have no problem running that tutorial with 4 cores on both windows/podman and debian/docker If you are running as a normal user (not root) I will download fedora and try to see wh...
by markrmau
Mon Jan 22, 2024 2:20 am
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Thanks @Cobalt5491 - which tutorial? I'll try to replicate on my machine.

I just tried on the hisa example and it was running 4 cores.

Regards,
Mark
by markrmau
Fri Jan 19, 2024 10:55 pm
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Thanks @Cobalt5491 - which tutorial? I'll try to replicate on my machine
by markrmau
Tue Jan 16, 2024 7:04 pm
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Could you please try re-pulling the docker image? docker.io/mmcker/cfdof-openfoam or docker.io/mmcker/cfdof-openfoam:openfoam10 (this is the same as docker.io/mmcker/cfdof-openfoam) or docker.io/mmcker/cfdof-openfoam:openfoam9 or docker.io/mmcker/cfdof-openfoam:openfoam-dev2306 I was updating these ...
by markrmau
Sat Jan 13, 2024 9:19 pm
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Yes, this would only be if you were running from podman on Linux and would need to run from terminal (probably with sudo). I think continue with the docker for now. I'll look into the second error tonight my time I have recently added the open foam 10 images but only tested in windows - my mistake R...
by markrmau
Sat Jan 13, 2024 6:40 pm
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

Also, @Cobalt5491, have you tried the following? podman machine set --rootful Please note however, if you have other podman images/containers, volumes, these will not be visible until you do this: podman machine set --rootful=false https://docs.podman.io/en/stable/markdown/podman-machine-set.1.html
by markrmau
Sat Jan 13, 2024 6:22 pm
Forum: CfdOF / CFD
Topic: Docker install error
Replies: 14
Views: 15925

Re: Docker install error

1. In trying to diagnose this myself, I found that CFDtools.py has a an if/elif/else statement on line 1778: if shutil.which('podman') is not None: self.docker_cmd = shutil.which('podman') elif shutil.which('docker') is not None: self.docker_cmd = shutil.which('docker') else: self.docker_cmd = None...
by markrmau
Fri Jan 05, 2024 4:09 pm
Forum: CfdOF / CFD
Topic: Compiling hisa on openfoam10
Replies: 7
Views: 2339

Re: Compiling hisa on openfoam10

Sorry about this. It was an issue in my packaging script that was keeping old files around. This should be resolved now. Compiles fine for me with OF 10. Thanks - it seems the applications directory has been lost in the most recent update of hisa-master on sourceforge though? I assume this is neede...
by markrmau
Wed Jan 03, 2024 1:06 pm
Forum: CfdOF / CFD
Topic: Multi-threading: adding options to commands
Replies: 4
Views: 1192

Re: Multi-threading: adding options to commands

I tried adding it to the end of line 13 Silly question, but where exactly did you add it? I would expect you did something like this, and didn't add it after the tee redirection... mpiexec -oversubscribe -np $nproc "$exe" -parallel "$@" 1> >(tee -a log."$sol") 2> >(tee...
by markrmau
Wed Jan 03, 2024 12:24 pm
Forum: CfdOF / CFD
Topic: Compiling hisa on openfoam10
Replies: 7
Views: 2339

Re: Compiling hisa on openfoam10

Just an update - I believe that I got caught by a discrepancy between the readmes on github/gitlab. Github has: OpenFOAM Foundation versions 9-10 or ESI-OpenCFD versions 2006-2306 Gitlab has OpenFOAM Foundation versions 5-9 or ESI-OpenCFD versions 1706-2112 It looks like Gitlab is correct. I have be...