Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Merge requests
!550
s2s linear system solution using lduMatrix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
s2s linear system solution using lduMatrix
feature-vf-ext-qr-parallel
into
develop
Overview
4
Commits
1
Changes
8
All threads resolved!
Hide all comments
Merged
Sergio Ferraris
requested to merge
feature-vf-ext-qr-parallel
into
develop
3 years ago
Overview
4
Commits
1
Changes
8
All threads resolved!
Hide all comments
Expand
s2s linear system solution using lduMatrix for qr
Edited
3 years ago
by
Kutalmış Berçin
0
0
Merge request reports
Compare
develop
version 3
5b89376d
3 years ago
version 2
5f122482
3 years ago
version 1
5320bc37
3 years ago
develop (base)
and
latest version
latest version
c8538ee4
1 commit,
3 years ago
version 3
5b89376d
1 commit,
3 years ago
version 2
5f122482
4 commits,
3 years ago
version 1
5320bc37
3 commits,
3 years ago
8 files
+
1132
−
154
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
applications/utilities/preProcessing/viewFactorsGen/shootRays.H
+
2
−
2
Options
@@ -4,7 +4,7 @@
// Maximum length for dynamicList
const
label
maxDynListLength
(
viewFactorDict
.
getOrDefault
<
label
>
(
"maxDynListLength"
,
100000
)
viewFactorDict
.
getOrDefault
<
label
>
(
"maxDynListLength"
,
100000
0
)
);
for
(
const
int
proci
:
Pstream
::
allProcs
())
@@ -47,7 +47,7 @@ for (const int proci : Pstream::allProcs())
const
vector
&
remA
=
remoteArea
[
j
];
const
label
&
remAgg
=
remoteAgg
[
j
];
const
vector
&
d
=
remFc
-
fc
;
const
vector
d
(
remFc
-
fc
)
;
if
(((
d
&
fA
)
<
0
.)
&&
((
d
&
remA
)
>
0
))
{
Loading