Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
cd28a78e
Commit
cd28a78e
authored
1 year ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Document all common block elements
parent
4f5ead92
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/Commons.h
+17
-9
17 additions, 9 deletions
src/include/Commons.h
with
17 additions
and
9 deletions
src/include/Commons.h
+
17
−
9
View file @
cd28a78e
...
...
@@ -88,6 +88,8 @@ public:
*
* \param ns: `int` Number of spheres.
* \param l_max: `int` Maximum order of field expansion.
* \param nshl: `int *` Array of number of layers in spheres.
* \param iog: `int *` Vector of spherical units ID numbers.
*/
C1
(
int
ns
,
int
l_max
,
int
*
nshl
,
int
*
iog
);
...
...
@@ -193,6 +195,18 @@ protected:
//! \brief QUESTION: definition?
int
lmpo
;
/*! \brief Allocate the necessary common vectors depending on configuration.
*
* The size of the vectors and matrices defined in various common
* blocks, and particularly in C1, depends on many settings of the
* problem configuration, such as the number of spheres, the number
* of layers the spheres are made of, the field expansion order and
* others. This function collects the calculations needed to infer
* the necessary amount of memory for these configurable elements,
* thus making the class constructor more compact and easier to handle.
*
* \param c4: `C4 *` Pointer to a C4 structure.
*/
void
allocate_vectors
(
C4
*
c4
);
public:
//! \brief QUESTION: definition?
...
...
@@ -234,15 +248,7 @@ public:
/*! \brief C1_AddOns instance constructor.
*
* \param ns: `int` Number of spheres.
* \param nc: `int`
* \param litpo: `int`
* \param lmtpo: `int`
* \param nv3j: `int`
* \param lmpo: `int`
* \param li: `int`
* \param le: `int`
* \param lm: `int`
* \param c4: `C4 *` Pointer to a C4 structure.
*/
C1_AddOns
(
C4
*
c4
);
...
...
@@ -272,7 +278,9 @@ public:
*/
class
C9
{
protected:
//! \brief Number of rows in the GIS and GLS matrices
int
gis_size_0
;
//! \brief Number of rows in the SAM matrix
int
sam_size_0
;
public:
//! \brief QUESTION: definition?
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment