Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

[Bot] Update latest pyMOR #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion badge.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"schemaVersion": 1, "label": "docs", "message": "2023.2.0", "color": "green"}
{"schemaVersion": 1, "label": "docs", "message": "2023.2.0", "color": "green"}
2 changes: 1 addition & 1 deletion latest.tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.1.1
2023.2.0
2 changes: 1 addition & 1 deletion latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: f34393d660beb5d3f17e72279103c3af
config: 9cff14370f0355e40d1c69f80af0ee57
tags: 645f666f9bcd5a90fca523b33c5a78b7
1,460 changes: 731 additions & 729 deletions latest/_downloads/049752ef291d62bd7bcde4a95068666e/tutorial_bt.ipynb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ parameter_space = fom.parameters.space(0.0001, 1.)

Here, `0.0001` and `1.` are the common lower and upper bounds for the
individual components of all |parameters| of `fom`. In our case `fom`
expects a single parameter `'diffusion'` of 9 values:
expects a single parameter `'diffusion'` of 6 values:

```{code-cell}
fom.parameters
Expand Down Expand Up @@ -272,7 +272,7 @@ which determines {math}`\lambda_i` and, thus, {math}`v_{proj}`.

Let's assemble and solve this equation system using pyMOR to determine
the best-approximation error in `trivial_basis` for some test vector
`V` which we take as another random solution of our {{ Model }}:
`U` which we take as another random solution of our {{ Model }}:

```{code-cell}
U = fom.solve(parameter_space.sample_randomly())
Expand Down Expand Up @@ -328,7 +328,7 @@ the same length can simply be subtracted, yielding a new array of the
differences:

```{code-cell}
# for some reason V_proj does not carry over from the previous cell
# for some reason U_proj does not carry over from the previous cell
U_proj = trivial_basis.lincomb(lambdas.T)
fom.visualize((U, U_proj, U - U_proj),
legend=('U', 'U_proj', 'best-approximation err'),
Expand Down
5,004 changes: 2,500 additions & 2,504 deletions latest/_downloads/1000b3f568829899be8a4f7a0b7f7e9a/tutorial_optimization.ipynb

Large diffs are not rendered by default.

Loading