Skip to content

Commit 8a5c036

Browse files
committed
parent b3f780f
author giovastabile <[email protected]> 1628861675 +0200 committer giovastabile <[email protected]> 1674568536 +0100 parent b3f780f author giovastabile <[email protected]> 1628861675 +0200 committer giovastabile <[email protected]> 1674568328 +0100 added pybind example new things in pybind changes pybind Adding stabilization method option in 11UnsteadyBBOpen tutorial Fixing format and outputs to reuse ROM matrices Fixing ReducedSteadyNSTurb to use U and nu with rbfSplines Generalizing fix in ReducedSteadyNSTTurb Fixing newtonObject variables new things in pybind Added Eigen Pybind Example step ahead to make it working ENH: adding minimal pybind example with OpenFoam
1 parent b3f780f commit 8a5c036

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+41275
-145
lines changed

.clang-format

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
BasedOnStyle: WebKit
2+
BraceWrapping:
3+
AfterClass: true
4+
AfterControlStatement: true
5+
AfterFunction: true
6+
AfterNamespace: true
7+
SplitEmptyFunction: false
8+
BreakBeforeBinaryOperators: None
9+
BreakBeforeBraces: Custom
10+
BreakBeforeInheritanceComma: true
11+
BreakConstructorInitializers: AfterColon
12+
MaxEmptyLinesToKeep: 2
13+
SortIncludes: false
14+
SpaceBeforeCtorInitializerColon: false

etc/bashrc

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ export LIB_ITHACA="$ithacaDir"
1717
export LIB_ITHACA_SRC="$ithacaDir/src"
1818
export PYTHONPATH="$PYTHONPATH:${PYTHONPATH:+:}${LIB_ITHACA_SRC}"/python
1919
export PATH="$PATH:${LIB_ITHACA}"/bin
20+
export includepybind1=$(python3 -m pybind11 --includes | awk -F '-I' '{print $2}')
21+
export includepybind2=$(python3 -m pybind11 --includes | awk -F '-I' '{print $3}')
2022
alias ithaca='cd ${LIB_ITHACA:?}'
2123

2224
unset ithacaDir

extern/pybind11

Submodule pybind11 added at e315e1f

0 commit comments

Comments
 (0)