Search found 13 matches

by Kailee71
Sun Mar 29, 2020 12:25 pm
Forum: CfdOF / CFD
Topic: cartesianMesh - regex won't work in custom meshDict
Replies: 1
Views: 821

cartesianMesh - regex won't work in custom meshDict

Hi all, I am delving a little deeper in customizing my meshes generated by (the excellent!) cfdof wb, and am noticing that regex's won't work as expected. i.e. this: localRefinement { wingtop { cellSize 0.005; // [m] refinementThickness 0.03; } } will happily work but this: localRefinement { wing* {...
by Kailee71
Mon Mar 23, 2020 4:39 pm
Forum: CfdOF / CFD
Topic: Strange cfmesh behaviour...
Replies: 10
Views: 4748

Re: Strange cfmesh behaviour...

Hi Oli,

man am I glad to hear you say that - I thought I was going mad ;-) Will try as soon as I get home from work tonight.

Stay healthy,


Kai.
by Kailee71
Sat Mar 21, 2020 7:02 pm
Forum: CfdOF / CFD
Topic: Strange cfmesh behaviour...
Replies: 10
Views: 4748

Re: Strange cfmesh behaviour...

Hi all, not having much luck now - reinstalled everything (freecad 0.18.3 from standard Ubuntu rep, OpenFoam7 from https://openfoam.org/download/7-ubuntu/, cfdof directly from addon manager, then cfmesh and hisa from there). Still not getting expected behaviour; cad.png becomes mesh.png Any more tho...
by Kailee71
Thu Mar 19, 2020 11:24 pm
Forum: CfdOF / CFD
Topic: Strange cfmesh behaviour...
Replies: 10
Views: 4748

Strange cfmesh behaviour...

Hi all, just doing some simple exercises, and not getting any satisfactory results. I'm trying to do a very simple cylinder-in-flow benchmark; 500mmx400mmx10mm volume with a 10mm radius cylinder: cad.png meshing 2d cfmesh, base element size 10mm, with a mesh refinement of 0.1 relative on the cylinde...
by Kailee71
Wed Mar 18, 2020 7:27 pm
Forum: CfdOF / CFD
Topic: cfMesh multithreaded?
Replies: 5
Views: 1593

Re: cfMesh multithreaded?

Hi,

thanks for your info. I did notice that including a BL in the cfmesh case increases to use of MP. Very impressive all in all.


Cheers,


Kai.
by Kailee71
Wed Mar 18, 2020 7:26 pm
Forum: CfdOF / CFD
Topic: Ubuntu install - installed paraview not found by Cfdof
Replies: 14
Views: 3960

Re: Ubuntu install - installed paraview not found by Cfdof

Perfect - thank you very much!

I must say, as a long Alias/Catia user but only recent Freecad user, I'm very very impressed with it and it's extensibilty, especially cfdof. Never expected it to be so good, and that coupled with such a great community. Excellent!


Kai.
by Kailee71
Tue Mar 17, 2020 9:56 am
Forum: CfdOF / CFD
Topic: Ubuntu install - installed paraview not found by Cfdof
Replies: 14
Views: 3960

Re: [Solved] (Bug) Problem running the dependency checker

Hi Chris,

it's not solved for me - standard install on Ubuntu as outlined by me above results in paraview not being found.

Does anyone have a workaround?

Tia,

Kai.
by Kailee71
Tue Mar 17, 2020 2:04 am
Forum: CfdOF / CFD
Topic: Ubuntu install - installed paraview not found by Cfdof
Replies: 14
Views: 3960

Ubuntu install - installed paraview not found by Cfdof

Hi all, I've just installed the following on my Ubuntu 19.10 box: - freecad 0.18.4 from the -stable ppa via https://wiki.freecadweb.org/Install_on_Unix - openfoam7 installed via https://openfoam.org/download/7-ubuntu/ - latest cfdof installed via addon manager, cfmesh and HiSA installed from cfd pre...
by Kailee71
Sun Mar 15, 2020 7:36 pm
Forum: CfdOF / CFD
Topic: cfMesh multithreaded?
Replies: 5
Views: 1593

cfMesh multithreaded?

Hi all, I've now been able to get my openFoam solver to run multithreaded via manual python commands in the console; import multiprocessing import os cpu_cores = multiprocessing.cpu_count() # this finds number of your CPUs and use them all os.putenv('OMP_NUM_THREADS', str(cpu_cores)) Unfortunately t...