Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RelaxSE-Code
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
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RelaxSE
RelaxSE-Code
Commits
81208772
Commit
81208772
authored
1 month ago
by
Marie bernadette Lepetit
Browse files
Options
Downloads
Patches
Plain Diff
take off vector reordering in case of non-convergence
parent
ece3e359
Branches
runner_test
No related tags found
1 merge request
!16
Remove the reordering of the vectors when convergence is not reached
Pipeline
#24357
passed
1 month ago
Stage: docker_pre_clean
Stage: build
Stage: docker_post_clean
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/RelaxSE_diag.F90
+6
-3
6 additions, 3 deletions
src/RelaxSE_diag.F90
with
6 additions
and
3 deletions
src/RelaxSE_diag.F90
+
6
−
3
View file @
81208772
...
...
@@ -561,17 +561,19 @@ contains
!!$ Sortie sans convergence
if
(
prog_info
%
id_cpu
.eq.
0
)
then
write
(
f_output
,
*
)
" "
write
(
f_output
,
*
)
">>> No convergence after "
,
iter
+
iter0
-1
,
" iterations <<<"
write
(
f_output
,
*
)
">>> No convergence after "
,
iter
+
iter0
-1
,
" iterations <<<"
write
(
f_output
,
*
)
">>> Vectors are not reordered by energy, but by convergence <<<"
write
(
f_output
,
*
)
" "
flush
(
f_output
)
endif
goto
90
1
goto
90
3
!!$ Sortie convergé
900
continue
! convergé
if
(
prog_info
%
id_cpu
.eq.
0
)
then
!write(f_output,*) " "
write
(
f_output
,
*
)
">>> Convergence reached after "
,
iter
+
iter0
-1
,
" iterations <<<"
write
(
f_output
,
*
)
">>> Convergence reached after "
,
iter
+
iter0
-1
,
" iterations <<<"
write
(
f_output
,
*
)
">>> Vectors reordered by energy <<<"
write
(
f_output
,
*
)
" "
flush
(
f_output
)
endif
...
...
@@ -602,6 +604,7 @@ contains
end
do
! ecriture sur restart
903
continue
rewind
(
f_restart
)
write
(
f_restart
)
nvectot
,
ndet
,
nconv
,
iter
+
iter0
write
(
f_restart
)
Ecoeur
,
PotNuc
...
...
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