Skip to content

Commit

Permalink
Merge pull request #6 from tomflint22/develop
Browse files Browse the repository at this point in the history
Powder bed fusion exampled and code clean up and readability edits
  • Loading branch information
tomflint22 committed May 25, 2022
2 parents 4fb1932 + 99dd3b6 commit e338a2f
Show file tree
Hide file tree
Showing 190 changed files with 5,685 additions and 4,590 deletions.
51 changes: 50 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Solution Files

log
0*
1*
Expand All @@ -18,3 +17,53 @@ faces
neighbour
owner
points

# editor and misc backup files - anywhere
*~
.*~
*.bak
*.bak[0-9][0-9]
*.orig
*.orig[0-9][0-9]
\#*\#
.DS_Store

# file-browser settings - anywhere
.directory

# CVS recovered versions - anywhere
.#*

# objects and archives - anywhere
*.[oa]
*.la
*.so
*.jar
*.dylib

# derived files
lex.yy.c

# Corefiles
core

# dependency files - anywhere
*.dep

# lnInclude (symlink) folders - anywhere
lnInclude

# A hidden file created by the Mac OS X Finder.
.DS_Store

# build folders - anywhere
linux*Gcc*/
linux*Icc*/
darwin*Gcc*/
darwin*Intel*/
darwin*Arm*/
darwin*Clang*/
linuxming*/
SiCortex*Gcc*/
solaris*Gcc*/
SunOS*Gcc*/
5 changes: 5 additions & 0 deletions Allwclean
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
cd ${0%/*} || exit 1 # run from this directory

# Clean the solver
(cd applications/solvers/beamWeldFoam && wclean)
15 changes: 15 additions & 0 deletions Allwmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
cd ${0%/*} || exit 1 # run from this directory

# Stop at first error
set -e

# Check if OpenFOAM has been sourced
if [[ -z "${WM_PROJECT}" ]]
then
echo "Please source the OpenFOAM bashrc first!"
exit 1
fi

# Compile solver
(cd applications/solvers/beamWeldFoam && wmake)
Binary file removed applications/solvers/beamWeldFoam/Make/.DS_Store
Binary file not shown.
1,752 changes: 0 additions & 1,752 deletions applications/solvers/beamWeldFoam/Make/linux64GccDPInt32Opt/beamWeldFoam.C.dep

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit e338a2f

Please sign in to comment.