Skip to content

Commit b38da56

Browse files
committed
format changes
1 parent 6f1e09b commit b38da56

File tree

4 files changed

+105
-130
lines changed

4 files changed

+105
-130
lines changed

Common/include/geometry/CGeometry.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,8 @@ class CGeometry {
789789
* \param[in] target_geometry - Solution from the target mesh.
790790
* \param[in] donorZone - counter of the donor solution
791791
*/
792-
inline virtual void SetAvgTurboGeoValues(const CConfig *donor_config, CGeometry *donor_geometry, unsigned short donorZone) {};
792+
inline virtual void SetAvgTurboGeoValues(const CConfig* donor_config, CGeometry* donor_geometry,
793+
unsigned short donorZone){};
793794

794795
/*!
795796
* \brief Set max length.

Common/include/geometry/CPhysicalGeometry.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ class CPhysicalGeometry final : public CGeometry {
414414
* \param[in] target_geometry - Solution from the target mesh.
415415
* \param[in] donorZone - counter of the donor solution
416416
*/
417-
void SetAvgTurboGeoValues(const CConfig *donor_config, CGeometry *donor_geometry, unsigned short donorZone) override;
417+
void SetAvgTurboGeoValues(const CConfig* donor_config, CGeometry* donor_geometry, unsigned short donorZone) override;
418418

419419
/*!
420420
* \brief Set the edge structure of the control volume.

Common/src/geometry/CPhysicalGeometry.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6311,13 +6311,12 @@ void CPhysicalGeometry::GatherInOutAverageValues(CConfig* config, bool allocate)
63116311
delete[] turboNormal;
63126312
}
63136313

6314-
void CPhysicalGeometry::SetAvgTurboGeoValues(const CConfig *donor_config, CGeometry *donor_geometry,
6315-
unsigned short donorZone) {
6316-
6314+
void CPhysicalGeometry::SetAvgTurboGeoValues(const CConfig* donor_config, CGeometry* donor_geometry,
6315+
unsigned short donorZone) {
63176316
unsigned short iSpan;
63186317
unsigned short nSpanMaxAllZones = donor_config->GetnSpanMaxAllZones();
63196318

6320-
for(iSpan = 0; iSpan<nSpanMaxAllZones+1; iSpan++){
6319+
for (iSpan = 0; iSpan < nSpanMaxAllZones + 1; iSpan++) {
63216320
SetTurboRadiusIn(donor_geometry->GetTurboRadiusIn(donorZone, iSpan), donorZone, iSpan);
63226321
SetSpanAreaIn(donor_geometry->GetSpanAreaIn(donorZone, iSpan), donorZone, iSpan);
63236322
SetTangGridVelIn(donor_geometry->GetTangGridVelIn(donorZone, iSpan), donorZone, iSpan);

0 commit comments

Comments
 (0)