mirror of
				https://github.com/OPM/opm-simulators.git
				synced 2025-02-25 18:55:30 -06:00 
			
		
		
		
	Merge pull request #2711 from blattms/fix-unused-vars-wells
Remove unused variable groups from BlackoilWellModel::wellsToState.
This commit is contained in:
		| @@ -403,7 +403,6 @@ namespace Opm { | |||||||
|  |  | ||||||
|             // convert well data from opm-common to well state from opm-core |             // convert well data from opm-common to well state from opm-core | ||||||
|             void wellsToState( const data::Wells& wells, |             void wellsToState( const data::Wells& wells, | ||||||
|                                const data::GroupValues& groups, |  | ||||||
|                                const PhaseUsage& phases, |                                const PhaseUsage& phases, | ||||||
|                                const bool handle_ms_well, |                                const bool handle_ms_well, | ||||||
|                                WellStateFullyImplicitBlackoil& state ) const; |                                WellStateFullyImplicitBlackoil& state ) const; | ||||||
|   | |||||||
| @@ -545,7 +545,7 @@ namespace Opm { | |||||||
|             const size_t numCells = Opm::UgGridHelpers::numCells(grid()); |             const size_t numCells = Opm::UgGridHelpers::numCells(grid()); | ||||||
|             const bool handle_ms_well = (param_.use_multisegment_well_ && anyMSWellOpenLocal()); |             const bool handle_ms_well = (param_.use_multisegment_well_ && anyMSWellOpenLocal()); | ||||||
|             well_state_.resize(wells_ecl_, schedule(), handle_ms_well, numCells, phaseUsage, well_perf_data_, summaryState, globalNumWells); // Resize for restart step |             well_state_.resize(wells_ecl_, schedule(), handle_ms_well, numCells, phaseUsage, well_perf_data_, summaryState, globalNumWells); // Resize for restart step | ||||||
|             wellsToState(restartValues.wells, restartValues.groups, phaseUsage, handle_ms_well, well_state_); |             wellsToState(restartValues.wells, phaseUsage, handle_ms_well, well_state_); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         previous_well_state_ = well_state_; |         previous_well_state_ = well_state_; | ||||||
| @@ -1597,7 +1597,6 @@ namespace Opm { | |||||||
|     void |     void | ||||||
|     BlackoilWellModel<TypeTag>:: |     BlackoilWellModel<TypeTag>:: | ||||||
|     wellsToState( const data::Wells& wells, |     wellsToState( const data::Wells& wells, | ||||||
|                   const data::GroupValues& groups, |  | ||||||
|                   const PhaseUsage& phases, |                   const PhaseUsage& phases, | ||||||
|                   const bool handle_ms_well, |                   const bool handle_ms_well, | ||||||
|                   WellStateFullyImplicitBlackoil& state) const |                   WellStateFullyImplicitBlackoil& state) const | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user