Skip to content

Commit

Permalink
delete a extra bracket (#3863)
Browse files Browse the repository at this point in the history
  • Loading branch information
WHUweiqingzhou authored Apr 1, 2024
1 parent 034316e commit 222f1f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/module_cell/unitcell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ void UnitCell::setup_cell_after_vc(std::ofstream &log)
{
log << std::endl;
ModuleBase::GlobalFunc::OUT(log, "Volume (Bohr^3)", this->omega);
ModuleBase::GlobalFunc::OUT(log, "Volume (A^3))", this->omega * pow(ModuleBase::BOHR_TO_A, 3));
ModuleBase::GlobalFunc::OUT(log, "Volume (A^3)", this->omega * pow(ModuleBase::BOHR_TO_A, 3));
}

lat0_angstrom = lat0 * 0.529177;
Expand Down

0 comments on commit 222f1f2

Please sign in to comment.