vikramvgarg

Results 11 comments of vikramvgarg

Do the AMR element level rules need to apply across subdomains ? I dont think they should. If not, I think you can additionally mark all the elements in the...

Hello bzjan, looking at [miscellanous/example11](https://github.com/libMesh/libmesh/blob/master/examples/miscellaneous/miscellaneous_ex11/miscellaneous_ex11.C), where the subdivision element capability is demonstrated, it seems that the authors used a penalty method to enforce boundary conditions. It looks like that they...

@bzjan, this should be easy to test with example 11. If you replace 0 with some small value in the lines, const dof_id_type u_dof = nodes[n]->dof_number (system.number(), u_var, 0); const...

Oops, my bad. Yes those lines are returning dof_id_type, not setting the value of the boundary condition. I somehow assumed that this was doing the same thing we do while...

Are you calling equation_systems.init() after adding the bc object to the dof map ?

@bylore, can you try running adjoints/ex3 ? In that example, we apply a zero, const(1) as well as user defined parabolic Dirichlet boundary condition. See line 147 onwards [here](https://github.com/libMesh/libmesh/blob/master/examples/adjoints/adjoints_ex3/coupled_system.C). You...

Right, thats the issue. Sorry I copied the text from an email to Paul.

Right now, the plan is to support the case where mu is a constant. Field parameters are further down the line and will probably need substantial new infrastructure in libMesh...

If its easy to compute QoI sensitivities for 5-6 parameters, then I would like to do that asap. Should also mention here that I am mainly summarizing what Roy proposed...

I have created a new parameter_manager branch off the spalart_allmaras branch. Following are the first two steps I will be undertaking to add adjoint parameter sensitivity analysis to GRINS: 1)...