Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
044953cc
Unverified
Commit
044953cc
authored
4 years ago
by
thorstenhater
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make proper aggregates for C++20 (#1479)
parent
917dd124
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
arbor/include/arbor/cable_cell_param.hpp
+10
-17
10 additions, 17 deletions
arbor/include/arbor/cable_cell_param.hpp
with
10 additions
and
17 deletions
arbor/include/arbor/cable_cell_param.hpp
+
10
−
17
View file @
044953cc
...
...
@@ -94,41 +94,34 @@ struct gap_junction_site {};
// cell-wide default:
struct
init_membrane_potential
{
init_membrane_potential
()
=
delete
;
double
value
;
// [mV]
double
value
=
NAN
;
// [mV]
};
struct
temperature_K
{
temperature_K
()
=
delete
;
double
value
;
// [K]
double
value
=
NAN
;
// [K]
};
struct
axial_resistivity
{
axial_resistivity
()
=
delete
;
double
value
;
// [Ω·cm]
double
value
=
NAN
;
// [Ω·cm]
};
struct
membrane_capacitance
{
membrane_capacitance
()
=
delete
;
double
value
;
// [F/m²]
double
value
=
NAN
;
// [F/m²]
};
struct
init_int_concentration
{
init_int_concentration
()
=
delete
;
std
::
string
ion
;
double
value
;
// [mM]
std
::
string
ion
=
""
;
double
value
=
NAN
;
// [mM]
};
struct
init_ext_concentration
{
init_ext_concentration
()
=
delete
;
std
::
string
ion
;
double
value
;
// [mM]
std
::
string
ion
=
""
;
double
value
=
NAN
;
// [mM]
};
struct
init_reversal_potential
{
init_reversal_potential
()
=
delete
;
std
::
string
ion
;
double
value
;
// [mV]
std
::
string
ion
=
""
;
double
value
=
NAN
;
// [mV]
};
// Mechanism description, viz. mechanism name and
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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