Bohr, Christian


WorldCat Identities



google.charts.load('current', packages: ['corechart']);
google.charts.setOnLoadCallback(drawChart);
function drawChart()
var options =
height: 200,
legend: position: 'top', maxLines: 3 ,
bar: groupWidth: '75%' ,
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'

;
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
role: 'annotation' ],

['1880-1882', 15, 0, 0, ''],

['1882-1884', 0, 0, 0, ''],

['1884-1886', 15, 0, 0, ''],

['1886-1888', 20, 0, 0, ''],

['1888-1890', 5, 0, 0, ''],

['1890-1892', 20, 0, 0, ''],

['1892-1894', 10, 0, 0, ''],

['1894-1896', 0, 0, 0, ''],

['1896-1898', 15, 0, 0, ''],

['1898-1900', 0, 0, 0, ''],

['1900-1902', 10, 0, 0, ''],

['1902-1904', 10, 0, 0, ''],

['1904-1906', 20, 0, 0, ''],

['1906-1908', 20, 0, 0, ''],

['1908-1910', 20, 0, 0, ''],

['1910-1912', 20, 0, 0, ''],

['1912-1914', 0, 0, 0, ''],

['1914-1916', 0, 0, 0, ''],

['1916-1918', 0, 0, 0, ''],

['1918-1920', 0, 0, 0, ''],

['1920-1922', 0, 0, 0, ''],

['1922-1924', 0, 0, 0, ''],

['1924-1926', 0, 0, 0, ''],

['1926-1928', 0, 0, 0, ''],

['1928-1930', 0, 0, 0, ''],

['1930-1932', 0, 0, 0, ''],

['1932-1934', 0, 0, 0, ''],

['1934-1936', 0, 0, 0, ''],

['1936-1938', 0, 0, 0, ''],

['1938-1940', 0, 0, 0, ''],

['1940-1942', 0, 0, 0, ''],

['1942-1944', 0, 0, 0, ''],

['1944-1946', 0, 0, 0, ''],

['1946-1948', 0, 0, 0, ''],

['1948-1950', 0, 0, 0, ''],

['1950-1952', 0, 0, 0, ''],

['1952-1954', 0, 0, 0, ''],

['1954-1956', 0, 0, 0, ''],

['1956-1958', 0, 0, 0, ''],

['1958-1960', 0, 0, 0, ''],

['1960-1962', 0, 0, 0, ''],

['1962-1964', 0, 0, 0, ''],

['1964-1966', 0, 0, 0, ''],

['1966-1968', 0, 0, 0, ''],

['1968-1970', 0, 0, 0, ''],

['1970-1972', 0, 0, 0, ''],

['1972-1974', 0, 0, 0, ''],

['1974-1976', 0, 0, 0, ''],

['1976-1978', 0, 10, 0, ''],

['1978-1980', 0, 0, 0, ''],

['1980-1982', 0, 0, 0, ''],

['1982-1984', 0, 0, 0, ''],

['1984-1986', 0, 0, 0, ''],

['1986-1988', 0, 0, 0, ''],

['1988-1990', 0, 0, 0, ''],

['1990-1992', 0, 5, 0, ''],

['1992-1994', 0, 0, 0, ''],

['1994-1996', 0, 0, 0, ''],

['1996-1998', 0, 0, 0, ''],

['1998-2000', 0, 0, 0, ''],

['2000-2002', 0, 0, 0, ''],

['2002-2004', 0, 5, 0, ''],

['2004-2006', 0, 0, 0, ''],

['2006-2008', 0, 0, 0, ''],

['2008-2010', 0, 10, 0, ''],

['2010-2012', 0, 5, 0, ''],

['2012-2014', 0, 5, 0, ''],

['2014-2016', 0, 0, 0, ''],

['2016-2018', 0, 10, 0, ''],

['2018-2020', 0, 0, 0, ''],

['2020-2022', 0, 0, 0, ''],

]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
;

function bringBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;


function sendBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;


function getElementsByClassName(classname, node)
if(!node)
node = document.getElementsByTagName("body")[0];
var a=[];
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");

for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;

function turnEditEntriesOn(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)

for (var i = 0; entries.length>=i; i++)
entries[i].style.display="block";


document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';

function turnEditEntriesOff(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="none";


document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';




Bohr, Christian



Overview





Works: 98
works in
172
publications in
3
languages and
311
library holdings

Roles:
Author, Other, Creator, Contributor


Publication Timeline

.



Most widely held works by
Christian Bohr


Experimentale Untersuchungen über die Sauerstoffaufnahme des Blutfarbstoffes by Christian Bohr(
Book
)

8
editions published

between
1885
and
2017
in
German
and held by
27 WorldCat member

libraries

worldwide



Lungens vitale Middelstilling og dennes funktionelle Betydning by Christian Bohr(
Book
)

5
editions published

in
1906
in
Danish and Undetermined
and held by
25 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen : in vier Bänden by Wilibald A Nagel(
Book
)

12
editions published

between
1905
and
1909
in
German
and held by
24 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen : in vier Bänden by Wilibald Nagel(
Book
)

7
editions published

between
1905
and
1909
in
German
and held by
18 WorldCat member

libraries

worldwide



Om en anvendelse af momentanfotografien ved muskelfysiologiske undersøgelser by Christian Bohr(

)

3
editions published

in
1886
in
Danish
and held by
17 WorldCat member

libraries

worldwide



Om den pathologiske lungeudvidning : Lungeemphysem by Christian Bohr(
Book
)

5
editions published

in
1910
in
Danish and Undetermined
and held by
15 WorldCat member

libraries

worldwide



Physiologie der Atmung, des Kreislaufs und des Stoffwechsels : mit 86 in den Text eingedruckten Abbildungen by Robert Tigerstedt(
Book
)

6
editions published

between
1905
and
1909
in
German
and held by
15 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen in vier Bänden by Wilibald A Nagel(
Book
)

4
editions published

between
1909
and
1910
in
German
and held by
15 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen by Wilibald A Nagel(
Book
)


in
German and English
and held by
13 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen : in 4 Bd by Wilibald A Nagel(
Book
)

4
editions published

between
1904
and
1905
in
German
and held by
13 WorldCat member

libraries

worldwide




Studier over mælk med særligt hensyn til de i samme suspenderede fedtkugler by Christian Bohr(
Book
)

8
editions published

between
1880
and
2008
in
Danish
and held by
11 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen : in vier Bänden by Wilibald A Nagel(
Book
)

2
editions published

in
1907
in
German
and held by
9 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen(
Book
)

4
editions published

in
1910
in
German
and held by
7 WorldCat member

libraries

worldwide



Handbuch der Physiologie des Menschen : in 4 Bd(
Book
)

3
editions published

between
1906
and
1907
in
German
and held by
5 WorldCat member

libraries

worldwide



Undersøgelse over den af Blodfarvestoffet optagne Iltumængde by Christian Bohr(
Book
)

1
edition published

in
1886
in
Danish
and held by
5 WorldCat member

libraries

worldwide



Beiträge zur Physiologie; Carl Ludwig zu seinem siebzigsten Geburtstage gewidmet von seinen Schülern by Carl Ludwig(
Book
)

1
edition published

in
1887
in
German
and held by
4 WorldCat member

libraries

worldwide



Om Iltens Afgivelse fra den Boyle-Mariotteske Lov ved lave Tryk by Christian Bohr(
Book
)

1
edition published

in
1885
in
Danish
and held by
3 WorldCat member

libraries

worldwide



Om den pathologiske Lungeudvidning (Lungenemphysem) by Christian Bohr(
Book
)

1
edition published

in
1910
in
Danish
and held by
3 WorldCat member

libraries

worldwide



Undersøgelser over den af Blodfarvestoffet optagne Iltmængde udførte ved Hjælp af et nyt Absorptiometer by Christian Bohr(
Book
)

1
edition published

in
1886
in
Danish
and held by
3 WorldCat member

libraries

worldwide



Fysiologi(
Book
)


in
Danish
and held by
3 WorldCat member

libraries

worldwide




 

moreShow More Titles

fewerShow Fewer Titles




Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.88
(from
0.72
for
Handbuch d
... to
0.98
for
Fysiologi
...)




WorldCat IdentitiesRelated Identities


  • Nagel, Willibald plus


  • Nagel, Wilibald A. 1870-1911 Author Editor plus


  • Boruttau, Heinrich 1869-1923 Other plus


  • Kries, Johannes von 1853-1928 Other plus


  • Nagel, Wilibald plus


  • Tigerstedt, Robert plus


  • Eckhard, C. plus


  • Fick, Adolf plus


  • Hasselbalch, K. plus


  • Schaefer, Edward Albert plus




Associated Subjects


Blood Blood--Analysis Emphysema, Pulmonary Human physiology Ludwig, Carl, Lungs Lymph Physiology Respiration Senses and sensation




Alternative Names


Bohr, Chr.

Bohr, Chr 1855-1911

Bohr, Christian Harald Lauritz Peter Emil 1855-1911

Christian Bohr dänischer Physiologe

Christian Bohr Danish physician

Christian Bohr dansk fysiolog

Christian Bohr Deens natuurkundige

Christian Bohr fisiologo danese

Christian Bohr médecin danois

Christian Bohr médico danés

Christian Bohr metge danès

Κρίστιαν Μπορ

Хрысціян Бор

Քրիստիան Բոր

כריסטיאן בוהר רופא דני

كريستيان بور طبيب دنماركي

کریستین بور

კრისტიან ბორი დანიელი ფიზიკოსი

크리스티안 보어

クリスティアン・ボーア デンマークの医師

克里斯蒂安·玻尔


Languages


German
(55)

Danish
(24)

English
(1)









(function(i,s,o,g,r,a,m))(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');


setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);

Popular posts from this blog

Log på Navigationsmenu

Creating second map without labels using QGIS?How to lock map labels for inset map in Print Composer?How to Force the Showing of Labels of a Vector File in QGISQGIS Valmiera, Labels only show for part of polygonsRemoving duplicate point labels in QGISLabeling every feature using QGIS?Show labels for point features outside map canvasAbbreviate Road Labels in QGIS only when requiredExporting map from composer in QGIS - text labels have moved in output?How to make sure labels in qgis turn up in layout map?Writing label expression with ArcMap and If then Statement?

Nuuk Indholdsfortegnelse Etyomologi | Historie | Geografi | Transport og infrastruktur | Politik og administration | Uddannelsesinstitutioner | Kultur | Venskabsbyer | Noter | Eksterne henvisninger | Se også | Navigationsmenuwww.sermersooq.gl64°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.75064°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.750DMI - KlimanormalerSalmonsen, s. 850Grønlands Naturinstitut undersøger rensdyr i Akia og Maniitsoq foråret 2008Grønlands NaturinstitutNy vej til Qinngorput indviet i dagAntallet af biler i Nuuk må begrænsesNy taxacentral mødt med demonstrationKøreplan. Rute 1, 2 og 3SnescootersporNuukNord er for storSkoler i Kommuneqarfik SermersooqAtuarfik Samuel KleinschmidtKangillinguit AtuarfiatNuussuup AtuarfiaNuuk Internationale FriskoleIlinniarfissuaq, Grønlands SeminariumLedelseÅrsberetning for 2008Kunst og arkitekturÅrsberetning for 2008Julie om naturenNuuk KunstmuseumSilamiutGrønlands Nationalmuseum og ArkivStatistisk ÅrbogGrønlands LandsbibliotekStore koncerter på stribeVandhund nummer 1.000.000Kommuneqarfik Sermersooq – MalikForsidenVenskabsbyerLyngby-Taarbæk i GrønlandArctic Business NetworkWinter Cities 2008 i NuukDagligt opdaterede satellitbilleder fra NuukområdetKommuneqarfik Sermersooqs hjemmesideTurist i NuukGrønlands Statistiks databankGrønlands Hjemmestyres valgresultaterrrWorldCat124325457671310-5