Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
SWIFT
SWIFTsim
Commits
dfa9f848
Commit
dfa9f848
authored
7 years ago
by
Matthieu Schaller
Browse files
Options
Downloads
Patches
Plain Diff
Corrected the units of the Planck constant and of the electron charge.
parent
037ecfad
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/physical_constants.c
+13
-13
13 additions, 13 deletions
src/physical_constants.c
src/physical_constants_cgs.h
+3
-3
3 additions, 3 deletions
src/physical_constants_cgs.h
with
16 additions
and
16 deletions
src/physical_constants.c
+
13
−
13
View file @
dfa9f848
...
...
@@ -43,7 +43,7 @@ void phys_const_init(const struct unit_system *us, struct swift_params *params,
/* Units are declared as {U_M, U_L, U_t, U_I, U_T} */
const
float
dimension_G
[
5
]
=
{
-
1
,
3
,
-
2
,
0
,
0
};
const
float
dimension_G
[
5
]
=
{
-
1
,
3
,
-
2
,
0
,
0
};
/* [g^-1 cm^3 s^-2] */
internal_const
->
const_newton_G
=
const_newton_G_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_G
);
...
...
@@ -51,49 +51,49 @@ void phys_const_init(const struct unit_system *us, struct swift_params *params,
internal_const
->
const_newton_G
=
parser_get_opt_param_double
(
params
,
"PhysicalConstants:G"
,
internal_const
->
const_newton_G
);
const
float
dimension_c
[
5
]
=
{
0
,
1
,
-
1
,
0
,
0
};
const
float
dimension_c
[
5
]
=
{
0
,
1
,
-
1
,
0
,
0
};
/* [cm s^-1] */
internal_const
->
const_speed_light_c
=
const_speed_light_c_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_c
);
const
float
dimension_h
[
5
]
=
{
1
,
-
2
,
-
1
,
0
,
0
};
const
float
dimension_h
[
5
]
=
{
1
,
2
,
-
1
,
0
,
0
};
/* [g cm^2 s^-1] */
internal_const
->
const_planck_h
=
const_planck_h_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_h
);
internal_const
->
const_planck_hbar
=
const_planck_hbar_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_h
);
const
float
dimension_k
[
5
]
=
{
1
,
2
,
-
2
,
0
,
-
1
};
const
float
dimension_k
[
5
]
=
{
1
,
2
,
-
2
,
0
,
-
1
};
/* [g cm^2 s^-2 K^-1] */
internal_const
->
const_boltzmann_k
=
const_boltzmann_k_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_k
);
const
float
dimension_Na
[
5
]
=
{
0
,
0
,
0
,
0
,
0
};
const
float
dimension_Na
[
5
]
=
{
0
,
0
,
0
,
0
,
0
};
/* [ - ] */
internal_const
->
const_avogadro_number
=
const_avogadro_number_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_Na
);
const
float
dimension_thomson
[
5
]
=
{
0
,
2
,
0
,
0
,
0
};
const
float
dimension_thomson
[
5
]
=
{
0
,
2
,
0
,
0
,
0
};
/* [cm^2] */
internal_const
->
const_thomson_cross_section
=
const_thomson_cross_section_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_thomson
);
const
float
dimension_stefan
[
5
]
=
{
1
,
0
,
-
3
,
0
,
-
4
};
const
float
dimension_stefan
[
5
]
=
{
1
,
0
,
-
3
,
0
,
-
4
};
/* [g s^-3 K^-4] */
internal_const
->
const_stefan_boltzmann
=
const_stefan_boltzmann_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_stefan
);
const
float
dimension_ev
[
5
]
=
{
1
,
2
,
-
2
,
0
,
0
};
const
float
dimension_ev
[
5
]
=
{
1
,
2
,
-
2
,
0
,
0
};
/* [g cm^2 s^-2] */
internal_const
->
const_electron_volt
=
const_electron_volt_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_ev
);
const
float
dimension_charge
[
5
]
=
{
0
,
0
,
-
1
,
1
,
0
};
const
float
dimension_charge
[
5
]
=
{
0
,
0
,
1
,
1
,
0
};
/* [A s] */
internal_const
->
const_electron_charge
=
const_electron_charge_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_charge
);
const
float
dimension_mass
[
5
]
=
{
1
,
0
,
0
,
0
,
0
};
const
float
dimension_mass
[
5
]
=
{
1
,
0
,
0
,
0
,
0
};
/* [g] */
internal_const
->
const_electron_mass
=
const_electron_mass_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_mass
);
...
...
@@ -107,11 +107,11 @@ void phys_const_init(const struct unit_system *us, struct swift_params *params,
const_earth_mass_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_mass
);
const
float
dimension_time
[
5
]
=
{
0
,
0
,
1
,
0
,
0
};
const
float
dimension_time
[
5
]
=
{
0
,
0
,
1
,
0
,
0
};
/* [s] */
internal_const
->
const_year
=
const_year_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_time
);
const
float
dimension_length
[
5
]
=
{
0
,
1
,
0
,
0
,
0
};
const
float
dimension_length
[
5
]
=
{
0
,
1
,
0
,
0
,
0
};
/* [cm] */
internal_const
->
const_astronomical_unit
=
const_astronomical_unit_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_length
);
...
...
@@ -122,7 +122,7 @@ void phys_const_init(const struct unit_system *us, struct swift_params *params,
const_light_year_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_length
);
const
float
dimension_temperature
[
5
]
=
{
0
,
0
,
0
,
0
,
1
};
const
float
dimension_temperature
[
5
]
=
{
0
,
0
,
0
,
0
,
1
};
/* [K] */
internal_const
->
const_T_CMB_0
=
const_T_CMB_0_cgs
/
units_general_cgs_conversion_factor
(
us
,
dimension_temperature
);
...
...
This diff is collapsed.
Click to expand it.
src/physical_constants_cgs.h
+
3
−
3
View file @
dfa9f848
...
...
@@ -44,10 +44,10 @@ const double const_newton_G_cgs = 6.67408e-8;
/*! Speed of light in vacuum [cm s^-1] */
const
double
const_speed_light_c_cgs
=
2.99792458e10
;
/*! Planck's constant [g cm^
-
2 s^-1] */
/*! Planck's constant [g cm^2 s^-1] */
const
double
const_planck_h_cgs
=
6.626070040e-27
;
/*! Planck's reduced constant [g cm^
-
2 s^-1] */
/*! Planck's reduced constant [g cm^2 s^-1] */
const
double
const_planck_hbar_cgs
=
1.054571800e-27
;
/*! Boltzmann's constant [g cm^2 s^-2 K^-1] */
...
...
@@ -62,7 +62,7 @@ const double const_thomson_cross_section_cgs = 6.6524587158e-25;
/*! Stefan-Boltzmann constant [g s^-3 K^-4] */
const
double
const_stefan_boltzmann_cgs
=
5.670367e-5
;
/*! Elementary charge [A s
^-1
] */
/*! Elementary charge [A s] */
const
double
const_electron_charge_cgs
=
1.6021766208e-19
;
/*! Electron-Volt [g cm^2 s^-2] */
...
...
This diff is collapsed.
Click to expand it.
Pedro Gonnet
@nnrw56
mentioned in issue
#443 (closed)
·
7 years ago
mentioned in issue
#443 (closed)
mentioned in issue #443
Toggle commit list
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