[deal.II] [Assigning boundary condition to node]

2024-02-22 Thread veerendra koilakuntla
Dear community, Is there a way to assign a certain BC to a node? Or are we stiĺl struggling a lot to do this in deal.ii? -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message

Re: [deal.II] [Assigning boundary condition to node]

2024-02-22 Thread Daniel Arndt
Can specify what you mean by "assign a certain BC [boundary condition] to a node"? Typically boundary conditions only make sense on the boundary of a mesh with codimension 1 (embedded in the same physical space). Thus, you would only consider setting boundary conditions on a node/point

[deal.II] Modifying Cmake to have Deal.ii include paths

2024-02-22 Thread Xavier Johnson
Hi, This may be a newb question. I am probably struggling understanding how to set paths in cmake and spent some time reading the documentation for cmake. My question is, how can I set the DEAL_II_DIR in the CMakeLists.txt so I don't have to provide a path every time I call the cmake command?

Re: [deal.II] Modifying Cmake to have Deal.ii include paths

2024-02-22 Thread Nils Schween
Hi Xavier, i think the following command will do: set(DEAL_II_MIN_VERSION "9.5.0") set(DEAL_II_DIR "~/.local/lib/dealii") find_package(deal.II ${DEAL_II_MIN_VERSION} REQUIRED HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}) IF(NOT ${deal.II_FOUND}) MESSAGE(FATAL_ERROR "*** Could

[deal.II] Re: Modifying Cmake to have Deal.ii include paths

2024-02-22 Thread Bruno Turcksin
Hello, You can just set DEAL_II_DIR in your environment. If you are using bash you can do `export DEAL_II_DIR=/path/to/deal.II` in your terminal or put that line you .bashrc if you want to do this permanently. Personally, I just write the cmake line in a file and make the file executable. When