ラベル popular の投稿を表示しています。 すべての投稿を表示
ラベル popular の投稿を表示しています。 すべての投稿を表示

2015年3月24日火曜日

Astroparticle View of Galaxy Clusters, 2015, Hiroshima

http://www-heaf.hepl.hiroshima-u.ac.jp/cluster1503/index.html

2015-03-24, 25, 26
at Hiroshima

日時: 2015年3月24日(火)-26日(木)
場所: 広島大学 理学研究科 E102



My presentation:





2014年4月3日木曜日

HEASOFT 6.15

(2014-04-03)
** Env.
- heasoft 6.15.1 source build
- Mac OS X 10.8
Darwin Kernel Version 12.5.0
- Xcode 5.1
- Homebrew 0.9.5

** (1)
configure: error: ar not found in your $PATH. See your sysdamin.
->
check Xcode
You need Command Line Tools installed in Xcode by
「Xcode->Preferences->Downloads」->「Command Line Tools」

** (2) x86_64 Fortran compiler detected...
checking whether gfortran accepts -m32... no
configure: error: This Fortran compiler is not supported for a 32-bit/i386 build.
I used gfortran from brew
GNU Fortran (GCC) 4.8.2

see
http://heasarc.nasa.gov/docs/software/lheasoft/support.html#Mac10.8

->
brew install gfortran --enable-multilib
(thanks to Sakai-kun)
and build heasoft again.
This solves the error.

2014年2月19日水曜日

Suzaku-MAXI 2014

http://wwwxray.ess.sci.osaka-u.ac.jp/SuzakuMAXI2014/


My talk:
X-ray measurements of gas bulk motions in galaxy clusters

X-ray studies of velocity structures of the intracluster medium is one of the primary goals for future X-ray missions. High resolution spectroscopy will provide measurements of energy distributions not only in thermal but also in kinematic forms. These provide understanding of cluster formation and reductions of systematic uncertainties in cluster total masses for precise cosmology. Using Suzaku we have detected a motion of a sub component with a velocity of about 1500 km/s for the first time by X-ray of a X-ray bright merging cluster, Abell2256 (Tamura et al. 2011). We also detected a hint of bulk motion in the Perseus cluster core (Tamura et al. 2013). In addition we attempted to measure 'X-ray gas redshift' of clusters. We found that gas are moving in pair with galaxies at least in X-ray bright central regions. In addition to these new Suzaku results, future studies of gas bulk motion along with turbulent motions by X-ray micro calorimeter onboard ASTRO-H will be discussed.

2012年10月29日月曜日

2012年10月16日火曜日

ガリレオ工房

例会に行ってみたい。

2012-10-16
例会を見学しました。

2012年10月14日日曜日

宇宙物理 Group report

ここにグループレポートのテーマを掲載します。

(2012-10-15)

7班 天文学の歴史
[1B班]
地球上の生物を元に考える生物ができる条件とその種類。

[6班]
地球外生命体の存在
1Bと似ているので,テーマをより具体化してください。
例えば,地球外生命体の探し方,地球外生命体はどこにいそうかなど


--------
8班
天文台の開発

--------
2班
ブラックホール

--------
9 班
銀河の形態と進化



2012年9月11日火曜日

(ISAS seminar) Speaker: Daniel Asmus (Max-Planck-Institut für Radioastronomie, MPIfR, Bonn, Germany) Title: The mid-infrared properties of local active galactic nuclei Abstract: The local active galactic nuclei (AGN) population enables us to study in detail the structures and radiation processes in the direct environment of the supermassive black holes in galaxy centers and to develop an understanding of the general AGN phenomenon. For this purpose, the first unbiased sample of 104 local AGN has now become available thanks to Swift/BAT observations in the hard X-ray regime. We performed high-angular resolution mid-infrared (MIR) imaging observations of most of these AGN with VLT/VISIR and Gemini/Michelle in order to study the dusty tori in these objects -- a key component in AGN models. At the same time, we obtained similar data of a complementary sample of AGN in the low-luminosity regime. I present the results of both programmes and show that unresolved MIR emission is present in the AGN of both samples, which is consistent with thermal emission from dust in the direct vicinity of the AGN. Furthermore, the MIR emission is strongly correlated with the absorption-corrected 2-10 keV X-ray emission over the whole range of luminosities (10^40 to 10^45 erg/s). These results agree with the standard unification model being valid for all types of

Speaker:    Daniel Asmus (Max-Planck-Institut für Radioastronomie,  
            MPIfR, Bonn, Germany)
Title:      The mid-infrared properties of local active galactic nuclei
 

http://adsabs.harvard.edu/abs/2011A%26A...536A..36A

2012年9月7日金曜日

install PostgreSQL 9.1 on CentOS 5


2012-09-07
book: PostgreSQL 徹底入門 p.26
にしたがって,install

OS: CentOS5.8

(1) Yum の設定
see
http://yum.postgresql.org/howtoyum.php/
http://yum.postgresql.org/repopackages.php

# wget pgdg-centos91-9.1-4.noarch.rpm
# rpm -ivh pgdg-centos91-9.1-4.noarch.rpm

PostgreSQL-RPM-Installation-PGDG.pdf
"Installing PostgreSQL on Red Hat Enterprise Linux / Fedora Core"
Last Update: Mon Sep 03, 2007

# cd /etc/yum.repos.d
< exclude=postgresql*
28d26
< exclude=postgresql*

# yum -y install 'postgresql91*'

bash-3.2$ cat .bash_profile
[ -f /etc/profile ] && source /etc/profile
PGDATA=/var/lib/pgsql/9.1/data
export PGDATA

PATH=/usr/pgsql-9.1/bin/:$PATH
MANPATH=/usr/pgsql-9.1/share/man/:$MANPATH

----------------------------
ls /usr/share/doc/postgresql91-docs-9.1.5/
html  Makefile  postgresql-9.1-A4.pdf  sgml  tutorial

----------------------------
* DBクラスタの作成
bash-3.2$ initdb -E UTF8 --no-locale
----------------------------         
* DB serverの起動
bash-3.2$ pg_ctl -l logfile start
server starting
----------------------------   
* DBの操作のテスト
bash-3.2$ createdb mydb
bash-3.2$ psql -l

(see 201209-install.txt )

2012年9月6日木曜日

install postgresql-9.1 on Mac OS X 10.6

2012-09-06
install postgreSQL 9.1 on Mac OS X

(1) create UNIX user postgres
as a normal account
 installする前に,'postgres'を作っておかないとうまくいかない。

(2) fink install postgresql91

(3) chmod 700 /sw/var/postgresql-9.1/data
これをやる前には,以下のerrorが出た。
bash-3.2$ FATAL:  data directory "/sw/var/postgresql-9.1/data" has group or world access
DETAIL:  Permissions should be u=rwx (0700).

(4) start DB
pg_ctl start -D /sw/var/postgresql-9.1/data









http://www.postgresql.jp/document/9.1/html/index.html

2012年6月26日火曜日

calculate SXS sensitivity (sxs2.py)

#!/usr/bin/env python
import math

myname = 'sxs2.py'
sxs_area = 'sxs-area-gbgd.txt'
# paste sxs-area.qdp apec02kev1solarNorm150.txt | awk '{print $1, $2, $5}' >| sxs-area-gbgd.txt
# 0625-1m.xcm

# general para.
sigma = 3.0
arcmin2 = 8.46e-8 # sr
time = 3e5 # sec

# SXS
omega_arcmin2 = 9 # arcmin2
nxb = 0.7e-3 # /s/sxs/keV from QR at 6 keV
e_reso = 5.0/1000 # keV

omega = omega_arcmin2 * arcmin2 # sr
#print omega,

print '! created by %s¥n' % myname
print '! energy (keV) NXB-limit (LU) CXB-limit (LU) photon-limit (LU) total-limit (LU0 ! Area (cm2)¥n'

for line in open(sxs_area):            # use file iterators
#    line.rstrip()
#    print line
    lines = line.split(' ')

    if len(lines) != 3 : continue
    energy = float(lines[0]);
    area = float(lines[1]);
    cxb_galactic = float(lines[2]);
    # /s/cm2/keV/sr
    if energy <=0.0 or area <= 0.0:
        continue

    nxb_per_so = nxb / area / omega # cts/s/cm2/sr/keV
    cxb_per_so = cxb_galactic
    f = area * omega * time

    limit_bgd_nxb = sigma * math.sqrt (nxb_per_so * e_reso/f)
    limit_bgd_cxb = sigma * math.sqrt (cxb_per_so * e_reso/f)
    limit_photon = sigma ** 2 * (f) ** -1

    limit_sum = math.sqrt(limit_bgd_nxb **2 + limit_photon **2 + limit_bgd_cxb **2)

    print "%6.4f " % energy,
    print "%4.2e " % limit_bgd_nxb,
    print "%4.2e " % limit_bgd_cxb,
    print "%4.2e " % limit_photon,
    print "%4.2e " % limit_sum,
    print "!",
    print "%4.1e " % area,
    print

print '!end of sxs1.py'



2012年5月25日金曜日

xselect from python

see also uchiyama's blog

#!/usr/bin/env python

"""
2012-05-25
test
http://aidememoirehu.blogspot.jp/search/label/Python
"""

MY_NAME = "run_xselect2"

import sys
import os
import subprocess

out_name = 'test' + MY_NAME
out_com = out_name+'.com'

# if out_com is already present

# overwrite
com = open (out_com, 'w')

ev_file = "test_evlist.txt"

print >> com, """
clear all proceed=yes
set mission suzaku
set datadir /Volumes/Macintosh_HD_2/Nobackup/aepipeline//801040010/
"""
print >> com, "read events @"+ev_file+'¥n'
print >> com, """
ext image
save image test1.xy
"""
print out_com, "is created¥n"

com.close

# open file into string
com = open(out_com, 'r')
# com_list = com.readlines()
# TypeError: must be string or buffer, not list
# to list

com_str = com.read()
xsp = subprocess.Popen( 'xselect', stdin = subprocess.PIPE )
xsp.stdin.write( '¥n¥n' )
xsp.stdin.write( com_str )
xsp.stdin.write( 'quit ¥n ¥n' )
xsp.wait()









2012年5月16日水曜日

素粒子


素粒子の世界

自分の体,
身の回りのいろいろな物,
地球,そして宇宙は何からできているのだろう?
この謎を,多くの人々が探求してきた。
これに答えるには,物理の法則と素粒子の成り立ちを理解する必要がある。
四つの力は統一できるのだろうか?
クオークやレプトンはそれ以上,分解できないだろうか?
究極の理論はどんな数学で記述できろだろうか?

この広大な宇宙も実はいくつかの素粒子で作られている。