query-5200aa5655ca31e3d69337c76db3a46a

rq turtle/ttl

Runge-Kutta methodsShow all the Runge-Kutta methods sorted by the number of stages.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select distinct
  ?method
  ?methodLabel
  ?formula
  ?Butcher
  ?stages
  ?orderOfConvergence
where {
  ?method wdt:P31*/wdt:P279* wd:Q725944.
  optional{?method wdt:P2534 ?formula .}
  optional{?method wdt:P8558 ?Butcher.}
  optional{?method p:P1552 [ps:P1552 wd:Q97672364; pq:P1114 ?stages].}
  optional{?method p:P1552 [ps:P1552 wd:Q97940482; pq:P1181 ?orderOfConvergence].}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY (!bound(?stages)) ASC(?stages) (!bound(?orderOfConvergence)) ASC(?orderOfConvergence)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?Butcher"):::projected v4("?formula"):::projected v3("?method"):::projected v2("?orderOfConvergence"):::projected v1("?stages"):::projected a1((" ")) a2((" ")) a3((" ")) c3(["wd:Q725944"]):::iri c10(["wd:Q97940482"]):::iri c7(["wd:Q97672364"]):::iri c13(["bd:serviceParam"]):::iri c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal v3 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:direct/P2534".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:direct/P8558".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; a2 -."p:statement/P1552".-> c7 a2 --"p:qualifier/P1114"--> v1 v3 --"p:P1552"--> a2 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; a3 -."p:statement/P1552".-> c10 a3 --"p:qualifier/P1181"--> v2 v3 --"p:P1552"--> a3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end