Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sfx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
inmcm-mirror
sfx
Commits
12d05dcf
Commit
12d05dcf
authored
8 months ago
by
数学の武士
Browse files
Options
Downloads
Patches
Plain Diff
naming fixes
parent
906e6803
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
includeCXX/cxx_sfx_model_compute_flux.h
+2
-2
2 additions, 2 deletions
includeCXX/cxx_sfx_model_compute_flux.h
srcC/c_sfx_model_compute_flux.c
+2
-2
2 additions, 2 deletions
srcC/c_sfx_model_compute_flux.c
srcCXX/cxx_sfx_model_compute_flux.cpp
+2
-2
2 additions, 2 deletions
srcCXX/cxx_sfx_model_compute_flux.cpp
with
6 additions
and
6 deletions
includeCXX/cxx_sfx_model_compute_flux.h
+
2
−
2
View file @
12d05dcf
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
extern
"C"
{
extern
"C"
{
#endif
#endif
void
cxx_
esm_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
void
esm_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
struct
meteoDataVecTypeC
*
meteo
,
struct
meteoDataVecTypeC
*
meteo
,
const
struct
sfx_esm_param_C
*
model_param
,
const
struct
sfx_esm_param_C
*
model_param
,
const
struct
sfx_surface_param
*
surface_param
,
const
struct
sfx_surface_param
*
surface_param
,
...
@@ -13,7 +13,7 @@ extern "C" {
...
@@ -13,7 +13,7 @@ extern "C" {
const
struct
sfx_phys_constants
*
constants
,
const
struct
sfx_phys_constants
*
constants
,
const
int
grid_size
);
const
int
grid_size
);
void
cxx_
sheba_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
void
sheba_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
struct
meteoDataVecTypeC
*
meteo
,
struct
meteoDataVecTypeC
*
meteo
,
const
struct
sfx_sheba_param_C
*
model_param
,
const
struct
sfx_sheba_param_C
*
model_param
,
const
struct
sfx_surface_param
*
surface_param
,
const
struct
sfx_surface_param
*
surface_param
,
...
...
This diff is collapsed.
Click to expand it.
srcC/c_sfx_model_compute_flux.c
+
2
−
2
View file @
12d05dcf
...
@@ -12,7 +12,7 @@ void c_esm_compute_flux (struct sfxDataVecTypeC* sfx,
...
@@ -12,7 +12,7 @@ void c_esm_compute_flux (struct sfxDataVecTypeC* sfx,
const
struct
sfx_phys_constants
*
constants
,
const
struct
sfx_phys_constants
*
constants
,
const
int
*
grid_size
)
const
int
*
grid_size
)
{
{
cxx_
esm_compute_flux
(
sfx
,
meteo
,
model_param
,
surface_param
,
numerics
,
constants
,
*
grid_size
);
esm_compute_flux
(
sfx
,
meteo
,
model_param
,
surface_param
,
numerics
,
constants
,
*
grid_size
);
}
}
void
c_sheba_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
void
c_sheba_compute_flux
(
struct
sfxDataVecTypeC
*
sfx
,
...
@@ -23,5 +23,5 @@ void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx,
...
@@ -23,5 +23,5 @@ void c_sheba_compute_flux (struct sfxDataVecTypeC* sfx,
const
struct
sfx_phys_constants
*
constants
,
const
struct
sfx_phys_constants
*
constants
,
const
int
*
grid_size
)
const
int
*
grid_size
)
{
{
cxx_
sheba_compute_flux
(
sfx
,
meteo
,
model_param
,
surface_param
,
numerics
,
constants
,
*
grid_size
);
sheba_compute_flux
(
sfx
,
meteo
,
model_param
,
surface_param
,
numerics
,
constants
,
*
grid_size
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
srcCXX/cxx_sfx_model_compute_flux.cpp
+
2
−
2
View file @
12d05dcf
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
#include
<vector>
#include
<vector>
// -------------------------------------------------------------------------- //
// -------------------------------------------------------------------------- //
void
cxx_
esm_compute_flux
(
sfxDataVecTypeC
*
sfx
,
void
esm_compute_flux
(
sfxDataVecTypeC
*
sfx
,
meteoDataVecTypeC
*
meteo
,
meteoDataVecTypeC
*
meteo
,
const
sfx_esm_param_C
*
model_param
,
const
sfx_esm_param_C
*
model_param
,
const
sfx_surface_param
*
surface_param
,
const
sfx_surface_param
*
surface_param
,
...
@@ -23,7 +23,7 @@ void cxx_esm_compute_flux (sfxDataVecTypeC* sfx,
...
@@ -23,7 +23,7 @@ void cxx_esm_compute_flux (sfxDataVecTypeC* sfx,
#endif
#endif
}
}
void
cxx_
sheba_compute_flux
(
sfxDataVecTypeC
*
sfx
,
void
sheba_compute_flux
(
sfxDataVecTypeC
*
sfx
,
meteoDataVecTypeC
*
meteo
,
meteoDataVecTypeC
*
meteo
,
const
sfx_sheba_param_C
*
model_param
,
const
sfx_sheba_param_C
*
model_param
,
const
sfx_surface_param
*
surface_param
,
const
sfx_surface_param
*
surface_param
,
...
...
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