CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

adjoint method- uniformity

Register Blogs Community New Posts Updated Threads Search

Like Tree3Likes
  • 1 Post By Envolly
  • 1 Post By Envolly
  • 1 Post By Envolly

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 19, 2013, 16:39
Default adjoint method- uniformity
  #1
New Member
 
Andreas
Join Date: Feb 2013
Posts: 5
Rep Power: 13
Envolly is on a distinguished road
Hello I am new here and this is my first post. I am a mechanical engineering student and currently writing my master’s thesis. This is about the adjoint optimization method.

I want to change the optimization target form the current implementation in OF 2.2.0 (minimize pressure-losses) to the target of the flow uniformity at the outlet.
Therefore I have tried to implement the equations for this cost function based on the papers of Othmer and Hinterberger/Olesen.

A continuous adjoint formulation for the computation of topological and surface sensitivities of ducted flows (C. Othmer)

Automatic Geometry Optimization of Exhaust Systems Based on Sensitivities Computed by a Continuous Adjoint CFD Method in OpenFOAM (Hinterberger, C. and Olesen, M.)

According to Othmer only the code of adjointOutletPressure and adjointOutletVelocity has to be the changed. I have done this as follows:

adjointOutletVelocity:

Code:
 const fvsPatchField<scalar>& phiap =
        patch().lookupPatchField<surfaceScalarField, scalar>("phia");

    const fvPatchField<vector>& Up =
        patch().lookupPatchField<volVectorField, vector>("U");

    const fvPatchField<vector>& Udp =
        patch().lookupPatchField<volVectorField, vector>("Ud");


    scalarField Un(mag(patch().nf() & Up));             % normal component primal vel.
    scalarField Udn(mag(patch().nf() & Udp));           % normal component desired vel

    vectorField Ut(Up - patch().nf()*Un);               % tangential component primal vel.
    vectorField Udt(Udp - patch().nf()*Udn);            % tangential component desired vel.

    vectorField UtHat((Ut - Udt)/(Un + SMALL));         % tangential component adjoint vel.

    vectorField Ua(phiap*patch().Sf()/sqr(patch().magSf()));  % normal component adjoint vel.

    vectorField::operator=(Ua - UtHat);
adjointOutletPressure:

Code:
const fvsPatchField<scalar>& phip =
        patch().lookupPatchField<surfaceScalarField, scalar>("phi");

    const fvsPatchField<scalar>& phiap =
        patch().lookupPatchField<surfaceScalarField, scalar>("phia");

    const fvPatchField<vector>& Up =
        patch().lookupPatchField<volVectorField, vector>("U");

    const fvPatchField<vector>& Uap =
        patch().lookupPatchField<volVectorField, vector>("Ua");

    const fvPatchField<vector>& Udp =
        patch().lookupPatchField<volVectorField, vector>("Ud");

    scalarField Udn(mag(patch().nf() & Udp));


    operator==((phiap/patch().magSf() + 1.0)*phip/patch().magSf() + (Up & Uap) - Udn);
The vector Field Ud contains the boundary values of the desired velocity. U is the primal velocity and Ua the adjoint velocity.

I have applied this code to a simple (turbulent) 2d example with one inlet and three outlets. The primal velocity at the inlet was set to 1 m/s and the desired velocity at the outlet to 0.667 m/s. The boundaries for the primal variables and the adjoint-pressure were set as in the tutorial case. The adjoint-velocity at the inlet was set to zero as stated in the paper of Othmer.
The convergence was quite good but the result is strange as you can see in the picture "3outlets".

I have tried another simple example of a laminar 2d duct flow. The primal velocity and the adjoint velocity were chosen to be equal. Normally, no cells should be blocked in that case.
The result is that nearly all cells are blocked. Just a small flow passage remains (picture: duct)


My questions now are:

- is the implementation of the equations for the optimization target right?
- do I have to change something else in the code ?
- according to Othmer, the difference of the primal and desired velocity would act as a source term in the outlet bc. How can this be understood?
- any other notes ?


Thanks a lot in advance, appreciate all answers

best regards
Attached Images
File Type: jpg 3outlets.jpg (16.4 KB, 158 views)
File Type: jpg duct.jpg (26.5 KB, 143 views)
Envolly is offline   Reply With Quote

Old   June 20, 2013, 08:55
Default
  #2
Member
 
Roland
Join Date: Mar 2009
Location: Netherlands
Posts: 92
Rep Power: 17
sylvester is on a distinguished road
Quote:
Originally Posted by Envolly View Post
- is the implementation of the equations for the optimization target right?
- do I have to change something else in the code ?
- according to Othmer, the difference of the primal and desired velocity would act as a source term in the outlet bc. How can this be understood?
Hi Envolly,

Welcome to the forum and the world of adjoint optimization!

I have experimented with this a bit before, but I never have found the time to fully test my code, so you should probably treat the following with care.

1. My bc's are comparable to yours, although some parts I did differently. For example, I simplified the velocity boundary condition by assuming only normal desired and adjoint flow. Also, looking at the pressure bc I have +Udn, where you have -Udn. (But looking at my code again, I am pretty sure the error is mine!)

2. Basically, only the bc's need to be adjusted to fit your cost function. However, for stability often other modifications are necessary; see some other posts by me about this subject. Stability is, still, an ongoing problem for me, therefore I cannot help you more on this than with what I have written before.

3. The outlet bc acts as the adjoint source as the propagation of the adjoint variables is reversed with respect to your primal flow.

I hope this helps you.

Good luck!

regards,
Sylvester
sylvester is offline   Reply With Quote

Old   July 1, 2013, 03:01
Default
  #3
New Member
 
Andreas
Join Date: Feb 2013
Posts: 5
Rep Power: 13
Envolly is on a distinguished road
Hi Sylvester,

thanks für your reply.

To 1:
Quote:
My bc's are comparable to yours, although some parts I did differently. For example, I simplified the velocity boundary condition by assuming only normal desired and adjoint flow. Also, looking at the pressure bc I have +Udn, where you have -Udn. (But looking at my code again, I am pretty sure the error is mine!)
According to the papers I have quoted above, it should be minus the normal component of the desired velocity (-Udn).
I have chosen a desired velocity which has only a normal component, too. If I simply
the bc for the adjoint velocity it look like:

Code:
 vectorField ::operator=(Ua)
The pressure boundary stays unchanged.
Unfortunately I get similar strange results like before.

To 2:
Quote:
Basically, only the bc's need to be adjusted to fit your cost function.
This agrees with the statements in the articles I have quoted above and therefore my code should be ok.

Quote:
However, for stability often other modifications are necessary; see some other posts by me about this subject. Stability is, still, an ongoing problem for me, therefore I cannot help you more on this than with what I have written before.
I have read some of your posts before. Some of your instructions are:

1. To start from a converged primal solution
2. Update the alpha-field after the adjoint field has roughly converged
3. Mesh quality
4. Pseudo staggered approach

To

3: The mesh quality in my case is not the problem
4: Is that much programming effort ?


1+2: I have already tried to start from a converged primal solution without a positive effect.

I will try to start the adjoint method on a converged primal solution without updating the alpha field to get a converged adjoint field.

However, when I look at the boundaries I have some doubts how the adjoint flow field should arise or look like (see attachment).
The conditions for Ua at the inlet is (accoriding to Othmer) a fixedValue (Ua =0 ) and the the one at the outlet
acts as a fixedValue, or ?

The vector plot (3outlets) of my first case shows what I mean. The adjoint flow enters the domain at the first outlet and leaves it trough the others. Could, or should that be right ?

Best regards

Envolly
immortality likes this.
Envolly is offline   Reply With Quote

Old   July 2, 2013, 03:55
Default
  #4
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
hi
I'm unfamiliar with adjoint method but a question occurred to me.
Are you implementing a fixedValue of velocity on the output instead of fixedValue pressure?
Does it seem right?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King.
To Be or Not To Be,Thats the Question!
The Only Stupid Question Is the One that Goes Unasked.
immortality is offline   Reply With Quote

Old   July 2, 2013, 05:49
Default
  #5
New Member
 
Andreas
Join Date: Feb 2013
Posts: 5
Rep Power: 13
Envolly is on a distinguished road
Hi immortality,

as far as I could determine the type of boundaries for the adjoint variables ( my c++ knowledge is not so good), both are fixedValues.
Have a look in the adjointOutletPressure.C and adjointOutletVelocity.C.

You will find for the pressure:

Code:
    operator==((phiap/patch().magSf() - 1.0)*phip/patch().magSf() + (Up & Uap));

    fixedValueFvPatchScalarField::updateCoeffs();
and for the velocity:
Code:
vectorField::operator=(phiap*patch().Sf()/sqr(patch().magSf()) + UtHat);
    //vectorField::operator=(Uan + UtHat);

    fixedValueFvPatchVectorField::updateCoeffs();
The only difference from my point is the way how the values are assigned.

pressure:

Code:
operator==()
velocity:

Code:
vectorField::operator=()
Is there a difference in processing the values​​.


Best regards

Envolly
Envolly is offline   Reply With Quote

Old   July 2, 2013, 06:21
Default
  #6
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
then U and p are set on outlet.why it has be done in this manner?
and what means that formula in mathematical form?where they come from?do you know?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King.
To Be or Not To Be,Thats the Question!
The Only Stupid Question Is the One that Goes Unasked.
immortality is offline   Reply With Quote

Old   July 3, 2013, 04:28
Default
  #7
New Member
 
Andreas
Join Date: Feb 2013
Posts: 5
Rep Power: 13
Envolly is on a distinguished road
For detailed description I would refer you to the papers which I have quoted in my first post:


Quote:
A continuous adjoint formulation for the computation of topological and surface sensitivities of ducted flows (C. Othmer)

Automatic Geometry Optimization of Exhaust Systems Based on Sensitivities Computed by a Continuous Adjoint CFD Method in OpenFOAM (Hinterberger, C. and Olesen, M.)

short answer:


Ua and Pa (adjoint vel. and adjoint pressure) are the Lagrange multipliers.
The adjoint-method uses a Lagrange function because it is a constrained optimization problem.

The optimization target (total pressure losses, energy dissipation, flow uniformity)
is defined in the boundary conditions. That´s why they are so important.

regards

Envolly
immortality likes this.
Envolly is offline   Reply With Quote

Old   July 3, 2013, 08:34
Default
  #8
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
so they aren't real pressure and velocity,right?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King.
To Be or Not To Be,Thats the Question!
The Only Stupid Question Is the One that Goes Unasked.
immortality is offline   Reply With Quote

Old   July 9, 2013, 01:29
Default
  #9
New Member
 
Andreas
Join Date: Feb 2013
Posts: 5
Rep Power: 13
Envolly is on a distinguished road
from my point of view, they have no real physical meaning. the adjoint velocity is needed to calculate the sensitivity.

But if I'm wrong please anybody correct me..
immortality likes this.
Envolly is offline   Reply With Quote

Reply

Tags
adjoint, uniformity


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help for learning about Adjoint Method in optimization EmadTandis Main CFD Forum 0 March 15, 2013 04:55
Question about Continuous Adjoint Method fumiya Main CFD Forum 6 November 1, 2011 10:09
Method for solving the adjoint equations fumiya Main CFD Forum 1 June 13, 2011 00:18
Adjoint method Jens OpenFOAM Running, Solving & CFD 14 June 12, 2011 21:09
A question about discrete adjoint method Thomas Main CFD Forum 3 August 9, 2006 12:37


All times are GMT -4. The time now is 01:15.