History log of /petsc/src/ts/interface/ts.c (Results 701 – 725 of 1763)
Revision Date Author Comments
# 1b393bae 17-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/fix-tsrollback (pull request #456)

TS: Refactor TSStep() and TSRollBack()


# d61f013c 16-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Run forward cost integral after event handling if step not rolled back


# be5899b3 15-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Refactor TSStep() and TSRollBack()

* TSStep() handles the step counter increment, and not TSStep_XXX().
* TSRollBack() handles the step counter decrement.
* Removed ``time_step_prev`` from the T

TS: Refactor TSStep() and TSRollBack()

* TSStep() handles the step counter increment, and not TSStep_XXX().
* TSRollBack() handles the step counter decrement.
* Removed ``time_step_prev`` from the TS structure. New code should use
ts->ptime - ts->ptime_prev to determine the previous time step size.
* Removed unused ``time_step_orig`` from the TS structure.
* Removed unused ``time_step_since_decrease`` from the TS structure.
* Minor update bouncing ball test examples.
* Regenerate some test examples output.

show more ...


# b3de5cde 11-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Fix TSRollBack() to error if called twice


# 874c02e6 14-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Remove TSSetRetainStages()


# d56366bf 14-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Add typedef TSForcingFunction


# ce79d4e3 08-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/fix-tsadapt (pull request #441)

TSAdapt and related improvements


# cd11d68d 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Use TSBEULER as the default type if IFunction was set


# a6772fa2 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Check ts->exact_final_time after TSSetUp()

This way, we let the implementation decide on a sensible default. For
example, the implementation may decide to use MATCHSTEP when adaptivity
is explic

TS: Check ts->exact_final_time after TSSetUp()

This way, we let the implementation decide on a sensible default. For
example, the implementation may decide to use MATCHSTEP when adaptivity
is explicitly turned on as in TSTHETA or TSALPHA.

show more ...


# 7cbde773 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Add TSEvaluateWLTE()


# 9687d888 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Move calls to TSPreStep() from implementation to interface

* Make the semantics symmetric with TSPostStep()
* Handle rolled back steps appropriately
* If a callback is ever needed to run at the

TS: Move calls to TSPreStep() from implementation to interface

* Make the semantics symmetric with TSPostStep()
* Handle rolled back steps appropriately
* If a callback is ever needed to run at the begining of each TSStep()
(including rolled back steps and step rejections), we can add a new API
to support this particular need (BTW, patches welcome!)

show more ...


# bec58848 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Fix TSGetAdapt() to require output argument

The handling of the output argument and was breaking standard API rules.


# 4f122a70 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Minor fixes to TSSetFromOptions

Move call to TSTrajectorySetFromOptions() outside the PetscOptionsBegin()
and PetscOptionsEnd() block corresponding to parent TS.


# 51699248 30-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Unimportant code cleanup


# 52774845 06-Apr-2016 Toby Isaac <tisaac@uchicago.edu>

Merge branch 'tisaac/sf-fix-multi-sf-leaves' into tisaac/dmp4est-feature-injection

* tisaac/sf-fix-multi-sf-leaves: (174 commits)
PetscSF: fix PetscSFGetMultiSF() for sparse leaves
PetscSF: make

Merge branch 'tisaac/sf-fix-multi-sf-leaves' into tisaac/dmp4est-feature-injection

* tisaac/sf-fix-multi-sf-leaves: (174 commits)
PetscSF: fix PetscSFGetMultiSF() for sparse leaves
PetscSF: make regression test that fails
few more clang static analyzer fixes
many issues detected by clang static analyzer
Update hypre to its release version
Updates for xSDKTrilinos builds
Added --download-xsdktrilinos
Communicator passed to VecCreateSeq should be PETSC_COMM_SELF
PCMG man page: fix typo in options name
Bib: Added refs
DMLabel: Removed unused variable
Metis tries to use backtrace which requires -lexecinfo on some systems such as freebsd Remove -lexecinfo from freebsd configure files since it is only needed by metis
add alternative output that occurs on some systems due to use of random number generator in partitioner
Plex: When creating cohesive submeshes, fix memory leak
Plex ex11: Updated output for new distribution algorithm
Plex: When explicitly distributing the depth label, we must recreate empty strata
Plex: When partitioning, the cell numbering should include hybrid points
Plex: Allow cell and vertex numberings to include hybrid points
need to show diffs of ex22 if it fails
Support two different output for test example, since due to roundoff this example can produce slightly different convergence history
...

show more ...


# 386e1158 02-Apr-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of https://bitbucket.org/petsc/petsc


# 8b6920ab 30-Mar-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/monitor-fromoptions'


# 1cc8e1c4 30-Mar-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of bitbucket.org:petsc/petsc


# aa8b65ef 29-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/ts-dm-output-seq (pull request #439)

Simplify handling of DMSetOutputSequenceNumber() in TS


# d6152f81 28-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Move DMSetOutputSequenceNumber() calls to TSMonitor()


# d2aa7855 25-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/update-ts-alpha (pull request #437)

Refactor TSEvent and update TSALPHA


# 6427ac75 23-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

TSEvent: Various fixes and cleanups

* Rename most of TSEventMonitorXXX() to TSEvent[Handler]XXX
* Rename the private TSEvent structure as well as some slots within it


# 545a86f4 23-Mar-2016 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/fix-draw-axis (pull request #436)

PetscDraw: Rework implementation of PetscDrawAxis


# c20ebc76 22-Mar-2016 Stefano Zampini <stefano.zampini@gmail.com>

Merge branch 'master' into stefano_zampini/feature-pcbddc-saddlepoint


# 8b31d140 21-Mar-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/improve-ts-monitor-interpolation'


1...<<21222324252627282930>>...71