Skip to content

Commit 6821497

Browse files
author
abacus_fixer
committed
Merge remote-tracking branch 'upstream/develop' into 2026-08-10-b
2 parents 5117591 + 4ec173c commit 6821497

53 files changed

Lines changed: 108 additions & 128 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

source/Makefile.Objects

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,8 +754,8 @@ OBJS_SRCPW=h_ewald_pw.o\
754754
vnl_op.o\
755755
magnetism.o\
756756
occupy.o\
757-
structure_factor.o\
758-
structure_factor_k.o\
757+
stru_fac.o\
758+
stru_fac_k.o\
759759
soc.o\
760760
sto_iter.o\
761761
sto_che.o\

source/source_esolver/esolver_fp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "source_estate/module_charge/charge_extra.h" // charge extrapolation
99
#include "source_hamilt/module_surchem/surchem.h" // solvation model
1010
#include "source_base/parallel_grid.h" // Parallel_Grid (value member below)
11-
#include "source_pw/module_pwdft/structure_factor.h" // structure factor
11+
#include "source_pw/module_pwdft/stru_fac.h" // structure factor
1212
#include "source_pw/module_pwdft/vl_pw.h" // local pseudopotential
1313

1414
#include <fstream>

source/source_esolver/esolver_ks_lcaopw.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,11 @@ namespace ModuleESolver
9292
{
9393
XC_Functional::set_xc_first_loop(ucell);
9494
this->exx_lip = std::unique_ptr<Exx_Lip<T>>(new Exx_Lip<T>(GlobalC::exx_info.info_lip,
95-
ucell.symm,
9695
&this->kv,
9796
this->psi_local,
9897
this->stp.template get_psi_t<T, base_device::DEVICE_CPU>(),
9998
this->pw_wfc,
10099
this->pw_rho,
101-
this->sf,
102100
&ucell,
103101
this->pelec));
104102
}

source/source_estate/module_charge/charge_extra.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "charge.h"
55
#include "source_cell/unitcell.h"
6-
#include "source_pw/module_pwdft/structure_factor.h"
6+
#include "source_pw/module_pwdft/stru_fac.h"
77
#ifdef __MPI
88
#include "source_base/parallel_grid.h"
99
#endif

source/source_estate/module_pot/potential_new.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "pot_base.h"
55
#include "source_base/complexmatrix.h"
66
#include "source_hamilt/module_surchem/surchem.h"
7-
#include "source_pw/module_pwdft/structure_factor.h"
7+
#include "source_pw/module_pwdft/stru_fac.h"
88
#include "source_pw/module_pwdft/vsep_pw.h"
99

1010
#include <memory>

source/source_estate/setup_estate_pw.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "source_cell/unitcell.h"
55
#include "source_cell/klist.h"
6-
#include "source_pw/module_pwdft/structure_factor.h"
6+
#include "source_pw/module_pwdft/stru_fac.h"
77
#include "source_estate/elecstate.h"
88
#include "source_pw/module_pwdft/vl_pw.h"
99
#include "source_pw/module_pwdft/vsep_pw.h"

source/source_hamilt/module_surchem/cal_pseudo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "surchem.h"
22

3-
#include "source_pw/module_pwdft/structure_factor.h" // Structure_Factor member access (sf->strucFac)
3+
#include "source_pw/module_pwdft/stru_fac.h" // Structure_Factor member access (sf->strucFac)
44

55
// atom_in surchem::GetAtom;
66

source/source_hamilt/module_surchem/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ AddTest(
1515
AddTest(
1616
TARGET MODULE_HAMILT_surchem_cal_pseudo
1717
LIBS parameter planewave device base psi
18-
SOURCES cal_pseudo_test.cpp ../cal_pseudo.cpp ../surchem.cpp ../cal_epsilon.cpp ../../../source_pw/module_pwdft/structure_factor.cpp
18+
SOURCES cal_pseudo_test.cpp ../cal_pseudo.cpp ../surchem.cpp ../cal_epsilon.cpp ../../../source_pw/module_pwdft/stru_fac.cpp
1919
)
2020

2121
AddTest(

source/source_hamilt/module_surchem/test/setcell.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "source_cell/module_neighbor/sltk_grid_driver.h"
99
#include "source_cell/unitcell.h"
1010
#include "source_base/parallel_grid.h"
11-
#include "source_pw/module_pwdft/structure_factor.h"
11+
#include "source_pw/module_pwdft/stru_fac.h"
1212

1313
namespace GlobalC
1414
{

source/source_hsolver/test/diago_bpcg_test.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include "source_base/inverse_matrix.h"
22
#include "source_base/module_external/lapack_connector.h"
3-
#include "source_pw/module_pwdft/structure_factor.h"
43
#include "source_psi/psi.h"
54
#include "source_hamilt/hamilt.h"
65
#include "source_pw/module_pwdft/hamilt_pw.h"

0 commit comments

Comments
 (0)