Jonathan Jimenez commited on
Commit
f32e250
1 Parent(s): 2a1c5a9

Add application file

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +112 -0
  2. ham/0001.1999-12-10.kaminski.ham.txt +2 -0
  3. ham/0003.1999-12-10.kaminski.ham.txt +14 -0
  4. ham/0004.1999-12-10.kaminski.ham.txt +26 -0
  5. ham/0005.1999-12-12.kaminski.ham.txt +33 -0
  6. ham/0006.1999-12-13.kaminski.ham.txt +9 -0
  7. ham/0007.1999-12-13.kaminski.ham.txt +28 -0
  8. ham/0009.1999-12-13.kaminski.ham.txt +133 -0
  9. ham/0010.1999-12-14.kaminski.ham.txt +7 -0
  10. ham/0012.1999-12-14.kaminski.ham.txt +34 -0
  11. ham/0013.1999-12-14.kaminski.ham.txt +38 -0
  12. ham/0014.1999-12-14.kaminski.ham.txt +46 -0
  13. ham/0015.1999-12-14.kaminski.ham.txt +12 -0
  14. ham/0017.1999-12-14.kaminski.ham.txt +9 -0
  15. ham/0018.1999-12-14.kaminski.ham.txt +15 -0
  16. ham/0020.1999-12-14.kaminski.ham.txt +32 -0
  17. ham/0021.1999-12-15.kaminski.ham.txt +28 -0
  18. ham/0022.1999-12-15.kaminski.ham.txt +131 -0
  19. ham/0023.1999-12-15.kaminski.ham.txt +53 -0
  20. ham/0024.1999-12-15.kaminski.ham.txt +19 -0
  21. ham/0025.1999-12-15.kaminski.ham.txt +30 -0
  22. ham/0027.1999-12-16.kaminski.ham.txt +97 -0
  23. ham/0028.1999-12-16.kaminski.ham.txt +22 -0
  24. ham/0029.1999-12-16.kaminski.ham.txt +48 -0
  25. ham/0031.1999-12-16.kaminski.ham.txt +14 -0
  26. ham/0033.1999-12-16.kaminski.ham.txt +131 -0
  27. ham/0034.1999-12-16.kaminski.ham.txt +150 -0
  28. ham/0035.1999-12-16.kaminski.ham.txt +18 -0
  29. ham/0036.1999-12-16.kaminski.ham.txt +99 -0
  30. ham/0037.1999-12-16.kaminski.ham.txt +12 -0
  31. ham/0038.1999-12-17.kaminski.ham.txt +14 -0
  32. ham/0040.1999-12-17.kaminski.ham.txt +24 -0
  33. ham/0041.1999-12-17.kaminski.ham.txt +107 -0
  34. ham/0042.1999-12-19.kaminski.ham.txt +4 -0
  35. ham/0043.1999-12-20.kaminski.ham.txt +45 -0
  36. ham/0044.1999-12-20.kaminski.ham.txt +8 -0
  37. ham/0045.1999-12-20.kaminski.ham.txt +9 -0
  38. ham/0046.1999-12-21.kaminski.ham.txt +22 -0
  39. ham/0047.1999-12-21.kaminski.ham.txt +30 -0
  40. ham/0048.1999-12-21.kaminski.ham.txt +9 -0
  41. ham/0049.1999-12-21.kaminski.ham.txt +3 -0
  42. ham/0050.1999-12-21.kaminski.ham.txt +18 -0
  43. ham/0051.1999-12-21.kaminski.ham.txt +30 -0
  44. ham/0053.1999-12-22.kaminski.ham.txt +24 -0
  45. ham/0054.1999-12-22.kaminski.ham.txt +22 -0
  46. ham/0055.1999-12-22.kaminski.ham.txt +76 -0
  47. ham/0057.1999-12-23.kaminski.ham.txt +56 -0
  48. ham/0059.1999-12-25.kaminski.ham.txt +54 -0
  49. ham/0060.1999-12-26.kaminski.ham.txt +21 -0
  50. ham/0062.1999-12-27.kaminski.ham.txt +12 -0
app.py ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import codecs
3
+ import random
4
+ import nltk
5
+ from nltk import NaiveBayesClassifier, classify, word_tokenize
6
+ from nltk import Text
7
+ import gradio as gr
8
+
9
+ nltk.download("punkt")
10
+
11
+
12
+ def read_in(folder):
13
+ file_list = os.listdir(folder)
14
+ content_list = []
15
+ for doc in file_list:
16
+ if not doc.startswith("."):
17
+ doc_read = codecs.open(folder + doc, mode="r", encoding="ISO-8859-1", errors="ignore")
18
+ content_list.append(doc_read.read())
19
+ doc_read.close()
20
+ return content_list
21
+
22
+
23
+ ham_list = read_in("ham/")
24
+ spam_list = read_in("spam/")
25
+
26
+ all_emails = [(email, "ham") for email in ham_list]
27
+ all_emails += [(email, "spam") for email in spam_list]
28
+ random.seed(42)
29
+ random.shuffle(all_emails)
30
+
31
+
32
+ def get_features(content):
33
+ word_list = word_tokenize(content.lower())
34
+ features = {}
35
+ for word in word_list:
36
+ features[word] = True
37
+ return features
38
+
39
+
40
+ all_features = [(get_features(email), label) for (email, label) in all_emails]
41
+
42
+
43
+ def train(content, proportion):
44
+ sample_size = int(len(content) * proportion)
45
+ train_set = all_features[:sample_size]
46
+ test_set = all_features[sample_size:]
47
+
48
+ classifier = NaiveBayesClassifier.train(train_set)
49
+
50
+ return train_set, test_set, classifier
51
+
52
+
53
+ train_set, test_set, classifier = train(all_features, .80)
54
+
55
+
56
+ def evaluate(train_set, test_set, classifier):
57
+ print(f"Accuracy for train set: {classify.accuracy(classifier, train_set)}")
58
+ print(f"Accuracy for test set: {classify.accuracy(classifier, test_set)}")
59
+
60
+ NaiveBayesClassifier.show_most_informative_features(classifier)
61
+
62
+
63
+ # evaluate(train_set, test_set, classifier)
64
+
65
+
66
+ def concordance(data_list, search_word):
67
+ for data in data_list:
68
+ word_list = word_tokenize(data.lower())
69
+ text_list = Text(word_list)
70
+ if search_word in text_list:
71
+ text_list.concordance(search_word)
72
+
73
+
74
+ # print(f"stock in HAM")
75
+ # concordance(ham_list, "stock")
76
+ # print(f"stock in SPAM")
77
+ # concordance(spam_list, "stock")
78
+
79
+
80
+ # test_spam_list = ["Participate in our new lottery!", "Try out this new medicine"]
81
+ # test_ham_list = ["See the minutes from the last meeting attached",
82
+ # "Investors are coming to our office on Monday"]
83
+ #
84
+ # test_all_emails = [(email, "spam") for email in test_spam_list]
85
+ # test_all_emails += [(email, "ham") for email in test_ham_list]
86
+ #
87
+ # set_test_email = [(get_features(email), label) for (email, label) in test_all_emails]
88
+ #
89
+ # evaluate(train_set, test_set, classifier)
90
+
91
+
92
+ def filter_email(email):
93
+ return classifier.classify(get_features(email))
94
+
95
+
96
+ with gr.Blocks() as demo:
97
+ gr.Markdown("""
98
+ # Spam filter
99
+ This spam filter will help you to know if your mail is a real one (ham) or spam.
100
+ """)
101
+ inp = gr.TextArea(max_lines=20, placeholder="Enter email to classify", label="Input")
102
+ out = gr.Label()
103
+ inp.change(fn=filter_email, inputs=inp, outputs=out)
104
+ gr.Examples(["Participate in our new lottery!", "Try out this new medicine"],
105
+ inp,
106
+ label="SPAM examples")
107
+ gr.Examples(["See the minutes from the last meeting attached", "Investors are coming to our office on Monday"],
108
+ inp,
109
+ label="HAM examples")
110
+
111
+
112
+ demo.launch()
ham/0001.1999-12-10.kaminski.ham.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Subject: re : rankings
2
+ thank you .
ham/0003.1999-12-10.kaminski.ham.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : visit to enron
2
+ vince ,
3
+ dec . 29 at 9 : 00 will be fine . i have talked to shirley and have
4
+ directions .
5
+ thanks , bob
6
+ vince j kaminski wrote :
7
+ > bob ,
8
+ >
9
+ > can you come to our office on dec 29 at 9 : 00 a . m . ?
10
+ >
11
+ > please , call shirley crenshaw ( 3 - 5290 ) or stinson gibner ( 3 - 4748 )
12
+ > from the reception to be admitted to the building .
13
+ >
14
+ > vince kaminski
ham/0004.1999-12-10.kaminski.ham.txt ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: research group move to the 19 th floor
2
+ hello all :
3
+ in case any of you feel energetic , " the boxes are here " . they are located
4
+ at 2963 b ( michael sergeev ' s old desk ) . feel free to take as many as
5
+ you will need . be sure to label everything with your new office location .
6
+ if your file cabinets lock , you can just label them and lock them .
7
+ again , listed below is your new office location :
8
+ stinson gibner eb 1936
9
+ joseph hrgovcic eb 1947
10
+ paulo issler eb 1935
11
+ vince kaminski eb 1933
12
+ krishna krishnarao eb 1938
13
+ martin lin eb 1930 e
14
+ grant masson eb 1941
15
+ kevin moore eb 1944
16
+ maureen raymond eb 1928
17
+ mike roberts eb 1945
18
+ vasant shanbhogue eb 1949
19
+ vincent tang eb 1934
20
+ ravi thuraisingham eb 1932
21
+ zimin lu eb 1942
22
+ if you have any questions , or need any assistance , please contact me , kevin ,
23
+ or sam .
24
+ thanks and have a great day !
25
+ shirley
26
+ 3 - 5290
ham/0005.1999-12-12.kaminski.ham.txt ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: christmas baskets
2
+ the christmas baskets have been ordered .
3
+ we have ordered several baskets .
4
+ individual earth - sat freeze - notis
5
+ smith barney group baskets
6
+ rodney keys matt rodgers charlie
7
+ notis jon davis move
8
+ team
9
+ phillip randle chris hyde
10
+ harvey
11
+ freese
12
+ faclities
13
+ iain russell darren
14
+ prager
15
+ telephone services
16
+ mary
17
+ martinez
18
+ ( robert knights dept . )
19
+ trina
20
+ williams
21
+ daniel hornbuckle
22
+ todd butler
23
+ pamela ford
24
+ ozarka -
25
+ maryam golnaraghi
26
+ special baskets
27
+ greg whalley
28
+ richard weeks
29
+ any questions please contact kevin moore
30
+ other request contact kevin moore
31
+ price information contact kevin moore
32
+ please also if you need any assistance with your christmas cards let me know .
33
+ thanks kevin moore
ham/0006.1999-12-13.kaminski.ham.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Subject: japan candidate
2
+ vince ,
3
+ i spoke with whalley at the sa offsite and he mentioned that had ( or knew of )
4
+ a person that could bring some talent to the evaluation of an enron merchant
5
+ business in japan . i am in sydney today , but will be in tokyo next week . i
6
+ would like to speak more about this . what time might you be available ? my
7
+ japan mobile number is 81 90 4073 6761 .
8
+ regards ,
9
+ joe
ham/0007.1999-12-13.kaminski.ham.txt ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: christmas break
2
+ fyi
3
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 14 / 99
4
+ 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -
5
+ " van t . ngo " on 12 / 04 / 99 11 : 17 : 01 am
6
+ to : vince j kaminski / hou / ect @ ect
7
+ cc : shirley crenshaw / hou / ect @ ect
8
+ subject : christmas break
9
+ dear vince ,
10
+ as the holidays approach , i am excited by my coming break from classes
11
+ but also about the opportunity to see everyone at enron again and to
12
+ work with you and them soon . i am writing to let you know that i would
13
+ be very happy to work at enron over my break and i would like to plan
14
+ out a schedule .
15
+ my semester officially ends dec . 20 th but i may be out of town the week
16
+ before christmas . i will be available the following three weeks , from
17
+ monday , dec . 27 to friday , jan . 14 . please let me know if during those
18
+ three weeks , you would like me to work and for what dates you would need
19
+ the most help so that we can arrange a schedule that would be most
20
+ helpful to you and so that i can contact andrea at prostaff soon .
21
+ please let me know if you have any concerns or questions about a
22
+ possible work schedule for me .
23
+ give my regards to everyone at the office and wishes for a very happy
24
+ holiday season ! i look forward to seeing you soon .
25
+ sincerely ,
26
+ van ngo
27
+ ph : 713 - 630 - 8038
28
+ - attl . htm
ham/0009.1999-12-13.kaminski.ham.txt ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: christmas - near
2
+ good morning all . we apologize that we are not going to be able to have
3
+ our holiday party before the first of the year . we wanted to use the scout
4
+ house in west university like we did last year and it was not available .
5
+ vince suggested that with the move and a lot of people taking vacation that
6
+ we wait until after the first of the year . this way you can take advantage
7
+ of
8
+ " after christmas sales " for your gift !
9
+ just remember whose name you have and we will schedule an " offsite "
10
+ after the first of the year .
11
+ thanks !
12
+ shirley
13
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 13 / 99
14
+ 09 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -
15
+ kevin g moore
16
+ 12 / 13 / 99 08 : 58 am
17
+ to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant
18
+ masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen
19
+ raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin
20
+ lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,
21
+ amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex
22
+ huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman
23
+ sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,
24
+ ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin
25
+ lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,
26
+ patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina
27
+ angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect
28
+ cc :
29
+ subject : christmas - near
30
+ hello everyone ,
31
+ the pulling of names are completed .
32
+ shirley will inform you as to when we will make exchanges .
33
+ thanks
34
+ kevin moore
35
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 13 / 99 08 : 50
36
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
37
+ kevin g moore
38
+ 12 / 10 / 99 08 : 28 am
39
+ to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant
40
+ masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen
41
+ raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin
42
+ lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,
43
+ amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex
44
+ huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman
45
+ sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,
46
+ ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin
47
+ lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,
48
+ patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina
49
+ angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect
50
+ cc :
51
+ subject : christmas - near
52
+ goodmorning ,
53
+ things went well on yesterday with names being pulled .
54
+ here is a list of people who have to pull a name .
55
+ stinson gibner
56
+ samer takriti
57
+ ravi thuraisingham
58
+ martin lin
59
+ alexios kollaros
60
+ shirley crenshaw
61
+ let ' s celebrate at work with each other making the last christmas in 1999 -
62
+ great !
63
+ reminder : if you feel you will be unable to attend the exchanging of the
64
+ gifts , please do not let that
65
+ stop you from participating .
66
+ each persons name has been entered ; can you guess who has your name ?
67
+ we have a gift for you . so if you can not attend for any reason please know
68
+ that
69
+ you are included and your gift will be here when you return .
70
+ wishing all a merry christmas ,
71
+ and a good kick - off to happy holidays .
72
+ thanks
73
+ kevin moore
74
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 10 / 99 06 : 40
75
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
76
+ kevin g moore
77
+ 12 / 08 / 99 07 : 47 am
78
+ to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant
79
+ masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen
80
+ raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin
81
+ lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,
82
+ amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex
83
+ huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman
84
+ sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,
85
+ ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin
86
+ lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,
87
+ patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina
88
+ angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect
89
+ cc :
90
+ subject : christmas drawing - near
91
+ ho ! ho ! ho ! merry christmas ,
92
+ on thursday we will pull names .
93
+ once again , this is so we may share
94
+ in the christmas spirit and show our appreciation
95
+ for one another .
96
+ we will then join and exchange gifts on a later date . . . . .
97
+ stay tuned . . . . . . . . . . . . . . . . . .
98
+ if for some chance you will not be present on thursday ,
99
+ feel free to stop by my desk and pull your name today .
100
+ eb 3130 a x 34710
101
+ join in the fun
102
+ and remember ,
103
+ keep it
104
+ simple
105
+ thanks
106
+ kevin moore
107
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 08 / 99 06 : 55
108
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
109
+ kevin g moore
110
+ 12 / 07 / 99 09 : 40 am
111
+ to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant
112
+ masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen
113
+ raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin
114
+ lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,
115
+ amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex
116
+ huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman
117
+ sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,
118
+ ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin
119
+ lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,
120
+ patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina
121
+ angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect
122
+ cc :
123
+ subject : christmas drawing - near
124
+ hello everyone ,
125
+ we would like for christmas this year that the research group pull names ,
126
+ as a way of sharing in the spirit of christmas , and as appreciation for one
127
+ another .
128
+ we want to keep it simple so the gift should be less than twenty - dollars .
129
+ please everyone participate , your name is already entered .
130
+ i will return with more info . later . . . . . . . . . . .
131
+ thanks
132
+ kevin moore
133
+ let ' s have a wonderful christmas at work .
ham/0010.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Subject: stentofon
2
+ goodmorning liz ,
3
+ we are in need of another stentofon for trisha tlapek .
4
+ she works very closely with the traders and it is important
5
+ for quick communication .
6
+ thanks
7
+ kevin moore
ham/0012.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : new color printer
2
+ monday will be perfect !
3
+ location - ebl 944 b
4
+ r . c . 0011
5
+ co . # 100038
6
+ thanks
7
+ kevin moore
8
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 10 : 44
9
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
10
+ enron technology
11
+ from : lyn malina 12 / 14 / 99 09 : 22 am
12
+ to : kevin g moore / hou / ect @ ect
13
+ cc :
14
+ subject : re : new color printer
15
+ i will order today for delivery on monday , unless you need faster delivery .
16
+ please advise co / rd to charge against .
17
+ thanks
18
+ lyn
19
+ kevin g moore
20
+ 12 / 14 / 99 09 : 21 am
21
+ to : lyn malina / hou / ect @ ect
22
+ cc :
23
+ subject : re : new color printer
24
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17
25
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
26
+ kevin g moore
27
+ 12 / 14 / 99 08 : 13 am
28
+ to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect
29
+ cc :
30
+ subject : re : new color printer
31
+ yes ! right away , please
32
+ also let me know the e . t . a .
33
+ thanks , lyn
34
+ kevin moore
ham/0013.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : new color printer
2
+ this is the color printer that is being ordered .
3
+ here is the info . that i needed .
4
+ thanks
5
+ kevin moore
6
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 19
7
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
8
+ enron technology
9
+ from : lyn malina 12 / 14 / 99 08 : 09 am
10
+ to : kevin g moore / hou / ect @ ect
11
+ cc :
12
+ subject : re : new color printer
13
+ kevin :
14
+ the color printer we currently order is the 4500 n for $ 2753 . 00 . please let
15
+ me know if this is the one you would like to order .
16
+ thanks
17
+ lyn
18
+ kevin g moore
19
+ 12 / 14 / 99 06 : 29 am
20
+ to : lyn malina / hou / ect @ ect
21
+ cc :
22
+ subject : new color printer
23
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 06 : 29
24
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
25
+ kevin g moore
26
+ 12 / 14 / 99 06 : 27 am
27
+ to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a
28
+ roberts / hou / ect @ ect
29
+ cc :
30
+ subject : new color printer
31
+ we are in need of a new color printer .
32
+ we are also in the process of moving to the 19 th floor .
33
+ we need the color printer a . s . a . p .
34
+ if you would please , i need information concerning this
35
+ matter whereby , we can get the printer ordered and delivered
36
+ to our new location .
37
+ thanks
38
+ kevin moore
ham/0014.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : new color printer
2
+ sorry ,
3
+ don ' t we need to know the cost , as well .
4
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 15
5
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
6
+ kevin g moore
7
+ 12 / 14 / 99 08 : 09 am
8
+ to : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect
9
+ cc :
10
+ subject : re : new color printer
11
+ this information was also sent to it purchasing .
12
+ i need to know what options we have and how soon it
13
+ can be delivered .
14
+ don ' t we need to know as well ? before purchase .
15
+ i also need a central location for this printer .
16
+ thanks
17
+ kevin moore
18
+ sam mentioned hp 4500 , i will check into it .
19
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 05
20
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
21
+ shirley crenshaw
22
+ 12 / 14 / 99 07 : 55 am
23
+ to : kevin g moore / hou / ect @ ect
24
+ cc :
25
+ subject : re : new color printer
26
+ kevin :
27
+ what kind of information do you need ? i thought you were going to look
28
+ at some colored printer literature . sam seemed to be aware of a
29
+ colored printer that might work for us . ask him . i don ' t think we need
30
+ anything as big as " sapphire " .
31
+ it will be located in your area on the 19 th floor .
32
+ thanks !
33
+ kevin g moore
34
+ 12 / 14 / 99 06 : 27 am
35
+ to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a
36
+ roberts / hou / ect @ ect
37
+ cc :
38
+ subject : new color printer
39
+ we are in need of a new color printer .
40
+ we are also in the process of moving to the 19 th floor .
41
+ we need the color printer a . s . a . p .
42
+ if you would please , i need information concerning this
43
+ matter whereby , we can get the printer ordered and delivered
44
+ to our new location .
45
+ thanks
46
+ kevin moore
ham/0015.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: imperial capital - thursday schedule
2
+ the following is the schedule for thursday ' s meeting with imperial capital .
3
+ currently all meetings are scheduled in eb 2868 . we are trying to arrange a
4
+ different conference room and will let you know if we obtain one .
5
+ 9 : 00 am - jim fallon - electricity
6
+ 9 : 30 am - fred lagrasta - gas
7
+ 10 : 00 am - lynda clemmons and david kistler - weather
8
+ 10 : 30 am - ed ondarza - pulp and paper
9
+ 11 : 00 am - stinson gibner - research
10
+ 12 noon - lunch
11
+ 1 : 00 pm - 5 : 00 pm - discussion
12
+ thanks in advance to all who will come to speak in the morning .
ham/0017.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Subject: a paper of mine
2
+ vince ,
3
+ i have written a paper , which supposedly is going to be published in the
4
+ february 2000 issue of eprm , probably after some editorial cuts ( at least
5
+ this is what i am being told by them ) . i would appreciate your thoughts if
6
+ you would have time to read it .
7
+ regards ,
8
+ martin
9
+ - userconf . doc
ham/0018.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: invitation to speak at power 2000
2
+ hi vince
3
+ it is my great pleasure to invite you to speak at power 2000 which will be
4
+ in houston on 9 & 10 may 2000 .
5
+ would you be interested in chairing one of the streams on day 2 of the
6
+ conference ? or making a full presentation on one of the days ? please let me
7
+ know which talks interest you . obviously , some of the talks are no longer
8
+ available but i would like to give you a choice as much as possible . please
9
+ could you get back to me asap on 212 925 1864 ext 151 or by return email .
10
+ i very much hope you can make the dates as i ' m very keen to have you
11
+ participate at power . not to flatter you unnecessarily , but i know that a
12
+ lot of people come to our conferences to hear what you have to say .
13
+ best regards
14
+ emma
15
+ - invite . doc
ham/0020.1999-12-14.kaminski.ham.txt ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: new eprm speakers
2
+ vince ,
3
+ thanks very much for your help
4
+ helen
5
+ - - - - - original message - - - - -
6
+ from : vince j kaminski
7
+ to : helen evans
8
+ cc : stinson gibner
9
+ date : 10 december 1999 19 : 14
10
+ subject : re : new eprm speakers
11
+ helen ,
12
+ i forwarded your message to my associate stinson gibner
13
+ whom i can wholeheartedly recommend .
14
+ vince
15
+ " helen evans " on 12 / 06 / 99 10 : 29 : 39 am
16
+ please respond to " helen evans "
17
+ to : vince j kaminski / hou / ect @ ect
18
+ cc :
19
+ subject : new eprm speakers
20
+ vince ,
21
+ i ' m currently looking to broaden eprm ' s speaker base and would like to
22
+ find a
23
+ speaker for a training course i am producing on the monte carlo
24
+ technique . i was
25
+ wondering if you might be able to recommend somebody new from enron who
26
+ might
27
+ like to speak on this subject . i ' d really appreciate any help you could
28
+ give me .
29
+ many thanks
30
+ helen evans
31
+ producer , eprm conferences & courses
32
+ - attl . htm
ham/0021.1999-12-15.kaminski.ham.txt ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: gas prices
2
+ vince -
3
+ 1 . we can detect " hoarding " of pipeline capacity as an elevated basis against
4
+ the actual inflow .
5
+ 2 . we can detect " market power " by dissociating the seller from the buyer ,
6
+ distinguishing between the physical " cost " in gas to run the generators and
7
+ the transmission cost in dollars , i . e . the basis .
8
+ 3 . ( as you noted ) we can detect " storage " as the difference between inflow
9
+ and consumption .
10
+ it appears to me there are two time series needed for a straightforward model
11
+ of gas prices : flow rates at interconnects ( from telemetry ) and spot - market
12
+ prices . there is an elevated basis reflecting pipeline companies monopolizing
13
+ capacity , as well as hoarding of capacity by contracts . the dynamics of gas
14
+ prices reflect consumption demand changes due to changes in expectations for
15
+ the weather , as well as their impact on two highly strategic behaviors :
16
+ hoarding of pipeline capacity and storage of gas . we can " calibrate " the
17
+ price elasticity of demands for consumption and storage , and the price
18
+ elasticities of demand for transmission , as well as the extent of hoarding ,
19
+ from the two sets of numbers mentioned : flows and prices . what the basis
20
+ trader needs to understand are the incentives , and disincentives , for storage
21
+ and capacity - hoarding , in terms of the calibrated price - elasticities , and
22
+ each of these are as - if exotic call options at the consumption hub . finally ,
23
+ flows are " explained " by the model , and can be imputed from prices if
24
+ necessary , resulting in a purely stochastic model of the basis in terms of
25
+ the weather .
26
+ i believe the problem is quite tractable , and i would like to proceed with a
27
+ model .
28
+ clayton
ham/0022.1999-12-15.kaminski.ham.txt ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: organizational changes
2
+ to : enron north america corp .
3
+ from : cliff baxter and kevin hannon
4
+ in july , as part of the enron north america ( ena ) reorganization , the
5
+ implementation of several objectives were highlighted as critical to the
6
+ continued growth of ena including : 1 ) accelerate the development of our
7
+ people , 2 ) significantly expand our customer network and associated markets ,
8
+ and 3 ) accelerate and enhance the information flow between groups , both
9
+ within ena and across enron . consistent with these objectives and with the
10
+ corporate goal of fostering 
11
+ b ) the downstream coverage / origination groups which focus on delivering a
12
+ broad range of products and services to the heavy industrial customers
13
+ including pulp and paper , chemicals , plastics , refined products , metals and
14
+ mining , heavy manufacturing , industrial gases , fertilizers , transportation ,
15
+ textiles and glass manufacturing the eastern and western u . s . midstream
16
+ coverage / origination groups which focus on energy , finance and industries .
17
+ downstream coverage / origination
18
+ as energy deregulation continues in north america , it is becoming clear that
19
+ the heavy industrial segment will be an important customer market for both
20
+ ena and enron corp . further , it is clear that ena can significantly expand
21
+ its industrial customer network and create more innovative industrial
22
+ solutions by having a group that can deploy all the capabilities of enron
23
+ corp . against this backdrop , the downstream coverage / origination function
24
+ will expand its product offering to include not only ena  , s existing energy
25
+ commodities , energy services , finance , assets and pulp and paper capabilities
26
+ but also ees  , s energy outsourcing capability and global fuel  , s chemicals ,
27
+ plastics and refined products risk management capability . these additional
28
+ capabilities will be offered in conjunction with ees and the global fuels
29
+ groups . given the size and importance of this enron initiative , greg piper
30
+ will be returning from portland to manage this business . under greg  , s
31
+ leadership , the downstream origination effort will be segmented into three
32
+ sub - groups given the nature of these industries and our product offering :
33
+ a ) pulp and paper  ) edward ondarza will continue to manage the coverage
34
+ activities in the pulp and paper business . this group will be responsible for
35
+ the provision of innovative
36
+ products and services in the pulp and paper industry including the provision
37
+ of paper risk management products ;
38
+ b ) chemicals , plastics and refined products  ) we have asked jim ajello to
39
+ lead the coverage activities in this business . this group will be
40
+ responsible for the provision of innovative products and services in the
41
+ chemicals and refined products industries ;
42
+ c ) non - integrated industrials  ) bruce garner , formerly leader of bankers
43
+ trust  , s global metals and mining group in london , has joined ena to lead the
44
+ coverage activities in this business . this group will be responsible for the
45
+ provision of innovative products and services for the metals and mining ,
46
+ heavy manufacturing , industrial gases , fertilizers , transportation , textiles
47
+ and glass manufacturing industries .
48
+ midstream coverage / origination
49
+ a ) eastern coverage / origination  ) this group  , activities will focus on
50
+ energy , finance and power development solutions for electric and gas
51
+ utilities , municipals , co - ops and energy service companies in the eastern
52
+ interconnect . we have asked janet dietrich to assume the leadership of this
53
+ group ;
54
+ b ) western coverage / origination  ) this group  , s activities will focus on
55
+ energy , finance and power development solutions for electric and gas
56
+ utilities , municipals , co - ops and energy service companies in the wscc . they
57
+ will also continue to manage all qualified facilities ( qf ) restructuring
58
+ opportunities in the western u . s . we have asked chris calger to assume the
59
+ leadership of this coverage group . chris will relocate to portland from
60
+ calgary where he currently leads the canadian downstream origination efforts ;
61
+ c ) ipp merchant coverage / origination  ) this group  , s activities will focus on
62
+ the provision of structured energy , finance and asset solutions for the
63
+ emerging merchant power generators who control large portfolio  , s of merchant
64
+ power generation either through development or acquisition . we have asked
65
+ mike miller to assume the leadership of this group . in addition , mike will
66
+ continue to manage the power development activities in the eastern
67
+ interconnect ;
68
+ d ) eastern qf restructuring  ) this group will focus on the qf restructuring
69
+ opportunities in the eastern interconnect including the existing
70
+ restructuring and re - capitalization of the east coast power assets . we have
71
+ asked dave duran to assume the leadership of this business . greg blair ,
72
+ formerly of enron asia  , s development group , doug clifford , formerly of
73
+ citizens power , and dick lydecker , formerly of cogen technology , will join
74
+ this newly formed business .
75
+ 2 ) commercial transactions :
76
+ the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff
77
+ donahue , was formed to provide a centralized resource for the execution of
78
+ transactions within ena  ) and thereby , improve ena  , s efficiency in executing
79
+ transactions and free - up the origination groups to increase their intensity
80
+ of client coverage . ctg consists of six primary functions : transaction
81
+ development , capital structuring and portfolio management , commodity
82
+ structuring and transportation , transactional support / accounting , technical
83
+ analysis and upstream asset management .
84
+ the transaction development group will be responsible for deal leadership ,
85
+ execution and optimization of all aspects of a transaction in conjunction
86
+ with the originator . the function will be divided into four teams , each of
87
+ which will be dedicated to between two and four origination groups . this
88
+ dedication to specific groups should provide a closer link , better service
89
+ and greater accountability with the origination groups ; however , the ctg
90
+ resources are designed to be a fungible and flexible resource allocated to
91
+ the highest value transactions across the coverage functions :
92
+ a ) midstream transaction development will be dedicated to the eastern and
93
+ western coverage / origination groups . the senior members of this group
94
+ include billy lemmons , george mccormick , erin norris and russ porter . billy
95
+ lemmons joined enron in 1992 . most recently , he was the vice - president of
96
+ capital structuring and risk management for ees . russ porter joins us today
97
+ from dynegy where he was a manager with responsibilities for power
98
+ origination .
99
+ b ) downstream transaction development will be dedicated to ena  , s industrial
100
+ origination efforts in pulp and paper , petrochemicals and refining ,
101
+ environmental energy , metals and mining and other industries as coverage is
102
+ established . the senior members of this team include rodney malcolm , jay
103
+ boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing
104
+ two to four more additions to this team within the next few weeks .
105
+ c ) generation transaction development will be dedicated to the ipp merchant
106
+ services and power plant development and qf restructuring groups . the senior
107
+ members of this team include thomas suffield , andy kelemen , kelly mahmoud and
108
+ john house . thomas suffield joined enron in 1996 . most recently , he was the
109
+ vice - president of origination for the latin american group in azurix . we
110
+ anticipate announcing two more additions to this team within the next few
111
+ weeks .
112
+ d ) upstream transaction development will be dedicated to the producer
113
+ finance , coal and gas assets groups . the senior members of this team include
114
+ brad dunn , john curtin and chris hilgert . we hope to announce the addition
115
+ of at least one vp to this group prior to yearend .
116
+ ray bowen will have primary oversight responsibilities for the upstream and
117
+ downstream transaction development teams with jeff donahue having primary
118
+ responsibilities for the midstream and generation teams . andrea reed will
119
+ continue to head capital structuring and portfolio management : all junior
120
+ commercial resources within the transaction development teams will have dual
121
+ responsibilities to both their transaction development teams and to the
122
+ capital structuring group . the remaining four groups within ctg will remain
123
+ largely unchanged . in addition , the origination and the transaction
124
+ development teams and their respective origination groups will be located
125
+ together .
126
+ we believe that these changes will significantly enhance our market coverage
127
+ and industry knowledge in all ena  , s markets particularly in the industrial
128
+ markets . it will also provide a closer partnership and accountability between
129
+ the coverage / origination groups and the ctg groups .
130
+ please help us in continuing to build on the success we have enjoyed in north
131
+ america by working with us to implement these changes .
ham/0023.1999-12-15.kaminski.ham.txt ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: performance management process
2
+ as our existing businesses grow and new businesses are created , ease of
3
+ movement and development of our top talent becomes essential to our success .
4
+ as you heard at the management conference all officers will be titled ,
5
+ reviewed , promoted , and compensated according to a more standard set of
6
+ guidelines . the process recognizes the intrinsic value of each officer ,
7
+ rather than tying that individual to the value of their specific job or
8
+ reporting relationship .
9
+ officer titling has been standardized throughout enron . there are four
10
+ levels of officers : members of the enron office of the chairman make up level
11
+ 4 . level 3 includes all other members of the enron executive committee .
12
+ level 2 is made up of managing directors , including company presidents and
13
+ some senior vice presidents . level 1 are vice presidents and some senior
14
+ vice presidents with grandfathered titles .
15
+ this year a common evaluation process is being implemented for level 1 and
16
+ level 2 officers . officers will be evaluated by a committee , through a
17
+ process referred to as the performance review committee ( prc ) , utilizing a
18
+ standard set of performance criteria and performance ratings . performance
19
+ committee reviews will occur twice a year  ) in july for feedback purposes and
20
+ at year - end for feedback as well as bonus and total compensation
21
+ considerations . the executive committee will handle the prc for all level 2
22
+ officers . review of level 1 officers will occur at the business - unit level
23
+ first with the results  & cross calibrated  8 by the executive committee and a
24
+ group of approximately sixteen managing directors .
25
+ the goals of the prc process is to insure a consistent standard for our
26
+ overall pool of executive talent and to provide a tool to more effectively
27
+ utilize talent throughout the organization . to further promote consistency
28
+ the executive committee will consider all promotions in january of each
29
+ year . exceptions , internally or externally , will be infrequent .
30
+ the individual  , s performance evaluation will be the starting point for all
31
+ compensation decisions . compensation includes base pay , bonus and long - term
32
+ awards . a long - term program that replaces individual or business unit plans
33
+ has been approved and will be communicated to individuals before bonus
34
+ payments are made .
35
+ in addition to the level 1 and level 2 reviews , business unit , global and
36
+ corporate cross - functional prc reviews for directors , senior directors and
37
+ general managers have started . this year - end process will be utilized as a
38
+ benchmark to determine how we further refine the evaluation process at this
39
+ level in the future .
40
+ if you should have any questions about the process , please direct them to
41
+ your human resources business unit leads per the following :
42
+ mary ann long ( gpg ) x 36810 david oxley ( ena / eel / global trading ) x 33557
43
+ ray bennett ( ees ) x 37039 robert jones ( global technology / global
44
+ finance / global
45
+ gwen petteway ( corp ) x 37351 asset operations / global engineering &
46
+ construction ) x 35810
47
+ janie bonnard ( caribbean / middle east / scott gilchrist ( asia
48
+ pacific / africa / china ) x 67081
49
+ lng ) x 68202 gerry chatham ( egep ) x 35141
50
+ miguel padron ( esa ) x 66552 marla barnard ( eci ) x 58158
51
+ ranen sengupta ( india ) x 67967
52
+ cc : enron executive committee members
53
+ 28599
ham/0024.1999-12-15.kaminski.ham.txt ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: rice program in financial engineering
2
+ dear vince ,
3
+ tony and i are looking forward to meeting with you tomorrow
4
+ ( thurs . ) at 10 a . m . regarding the rice iniative in financial
5
+ engineering . attached to this message is our draft plan for
6
+ the proposed undergraduate program ; i will also bring a copy
7
+ to the meeting in the morning .
8
+ see you tomorrow !
9
+ best regards ,
10
+ kathy
11
+ katherine bennett ensor
12
+ professor and chairperson
13
+ department of statistics , ms 138
14
+ rice university
15
+ houston , tx 77251 - 1892
16
+ ensor @ rice . edu
17
+ phone : ( 713 ) 527 4687
18
+ fax : ( 713 ) 285 5476
19
+ - draft - plano 2 . doc
ham/0025.1999-12-15.kaminski.ham.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : invitation to speak at power 2000
2
+ emma ,
3
+ it ' s your choice . i can chair the session of day 2 or speak on one of these
4
+ topics .
5
+ please , let me know what works for you .
6
+ possible presentations :
7
+ evaluating the effectiveness of insurance as a risk management tool
8
+ or
9
+ applying real option theory to value power plants
10
+ or
11
+ overcoming the difficulties of accurately estimating volatility
12
+ vince
13
+ " emma wolfin " on 12 / 14 / 99 04 : 08 : 03 pm
14
+ to : vince j kaminski / hou / ect @ ect
15
+ cc :
16
+ subject : invitation to speak at power 2000
17
+ hi vince
18
+ it is my great pleasure to invite you to speak at power 2000 which will be
19
+ in houston on 9 & 10 may 2000 .
20
+ would you be interested in chairing one of the streams on day 2 of the
21
+ conference ? or making a full presentation on one of the days ? please let me
22
+ know which talks interest you . obviously , some of the talks are no longer
23
+ available but i would like to give you a choice as much as possible . please
24
+ could you get back to me asap on 212 925 1864 ext 151 or by return email .
25
+ i very much hope you can make the dates as i ' m very keen to have you
26
+ participate at power . not to flatter you unnecessarily , but i know that a
27
+ lot of people come to our conferences to hear what you have to say .
28
+ best regards
29
+ emma
30
+ - invite . doc
ham/0027.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: intelligence : el paso capacity - - someone has upped the ante but
2
+ match still possible
3
+ fyi . kim .
4
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly watson / et & s / enron on 12 / 16 / 99
5
+ 04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -
6
+ lorna brennan
7
+ 12 / 16 / 99 09 : 59 am
8
+ to : rockey storie / et & s / enron @ enron , stephanie miller / et & s / enron @ enron , kent
9
+ miller / et & s / enron @ enron , john dushinske / et & s / enron @ enron , dave
10
+ neubauer / et & s / enron @ enron , michael bodnar / et & s / enron @ enron , joni
11
+ bollinger / et & s / enron @ enron , david badura / et & s / enron @ enron , janet
12
+ bowers / et & s / enron @ enron , craig buehler / et & s / enron @ enron , bob
13
+ burleson / et & s / enron @ enron , allen cohrs / et & s / enron @ enron , john
14
+ fiscus / et & s / enron @ enron , bret fritch / et & s / enron @ enron , steve
15
+ gilbert / et & s / enron @ enron , morgan gottsponer / et & s / enron @ enron , brenda
16
+ harris / et & s / enron @ enron , james harvey / et & s / enron @ enron , stephen
17
+ herber / et & s / enron @ enron , dana jones / et & s / enron @ enron , jane
18
+ joyce / et & s / enron @ enron , stephanie korbelik / et & s / enron @ enron , therese
19
+ lohman / et & s / enron @ enron , bill mangels / et & s / enron @ enron , penny
20
+ mccarran / et & s / enron @ enron , vernon mercaldo / et & s / enron @ enron , larry
21
+ pavlou / et & s / enron @ enron , eileen peebles / et & s / enron @ enron , maria
22
+ perales / et & s / enron @ enron , tony perry / et & s / enron @ enron , loren
23
+ penkava / et & s / enron @ enron , ken powers / et & s / enron @ enron , joan
24
+ schwieger / et & s / enron @ enron , chris sebesta / et & s / enron @ enron , frank
25
+ semin / et & s / enron @ enron , neal shaw / et & s / enron @ enron , larry
26
+ swett / et & s / enron @ enron , kay threet / et & s / enron @ enron , mike
27
+ ullom / et & s / enron @ enron , lisa valley / et & s / enron @ enron , chuck
28
+ wilkinson / et & s / enron @ enron , jim wiltfong / et & s / enron @ enron , jo
29
+ williams / et & s / enron @ enron , karen lagerstrom / et & s / enron @ enron , ray
30
+ stelly / et & s / enron @ enron , bob stevens / et & s / enron @ enron , sue m
31
+ neville / et & s / enron @ enron , mike barry / et & s / enron @ enron , miriam
32
+ martinez / et & s / enron @ enron , martha janousek / et & s / enron @ enron , kimberly
33
+ watson / et & s / enron @ enron , don powell / et & s / enron @ enron , melinda
34
+ tosoni / et & s / enron @ enron , steve weller / et & s / enron @ enron , michael g
35
+ stage / et & s / enron @ enron , tim johanson / et & s / enron @ enron , mike
36
+ mcgowan / et & s / enron @ enron , lynn blair / et & s / enron @ enron , rick
37
+ dietz / et & s / enron @ enron , steven january / et & s / enron @ enron , sheila
38
+ nacey / et & s / enron @ enron , steven harris / et & s / enron @ enron , lindy
39
+ donoho / et & s / enron @ enron , jeffery fawcett / et & s / enron @ enron , lorraine
40
+ lindberg / et & s / enron @ enron , kevin hyatt / et & s / enron @ enron , christine
41
+ stokes / et & s / enron @ enron , julia white / et & s / enron @ enron
42
+ cc :
43
+ subject : intelligence : el paso capacity - - someone has upped the ante but match
44
+ still possible
45
+ negotiated el paso deal topped
46
+ el paso confirmed that someone had upped the ante on the negotiated deal
47
+ for slightly
48
+ more than 1 . 2 bcf / d in firm capacity to the california border that was
49
+ announced friday
50
+ ( see daily gpi , dec . 13 ) . a higher bid was submitted prior to
51
+ wednesday ' s 1 p . m . mst
52
+ deadline in a four - day open season , a pipeline spokesman said . however ,
53
+ the original
54
+ negotiating party has until this afternoon to match the new price and
55
+ retain the capacity .
56
+ the new bid was for $ 38 million over one year starting jan . 1 , about $ 8
57
+ million more than
58
+ the amount in friday ' s announcement ( $ 30 million ) . one source called it
59
+ " ridiculous " that
60
+ someone was willing to pay so much for the space , given that on a
61
+ mark - to - market basis
62
+ the capacity is worth only about $ 20 - 25 million .
63
+ late last week some sources speculated that duke energy was the
64
+ recipient of next
65
+ year ' s package given its large power generation holdings in california .
66
+ a marketer
67
+ yesterday said he believed dynegy upped the ante . " rather than go
68
+ through all the
69
+ hassles they [ dynegy ] had at ferc with the 1998 - 99 package , they let
70
+ someone else do
71
+ all the work this time and then came in late with a higher bid . that way
72
+ no one can
73
+ complain that the procedure was tainted . after all , dynegy has quite a
74
+ few power plants
75
+ in california to keep fueled , and all of their current ft on el paso
76
+ expires at the end of
77
+ this year . of course , they still could be thwarted if the original
78
+ negotiated customer
79
+ matches their bid . it may all sound kind of machiavellian but sort of
80
+ makes sense . " other
81
+ sources heavily discounted the chances of dynegy being the new high
82
+ bidder , pointing out
83
+ that the company made significantly less than expected this year because
84
+ san
85
+ juan / border basis differentials narrowed significantly . a dynegy source
86
+ indicated that the
87
+ company was involved in the bidding and lost to duke in the first round .
88
+ regardless of what happens next year , a marketer noted that the southern
89
+ california
90
+ border / san juan basis spread continues to compress as socal gas
91
+ withdraws from
92
+ storage and east - of - california utilities exercise their peaking
93
+ contracts because of cold
94
+ weather in the rockies and elsewhere in the west . from a december index
95
+ spread of 29
96
+ cents , the border / basin gap was down to about 18 cents wednesday , she
97
+ said .
ham/0028.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: vince and vasant :
2
+ here is a brief summary of my meeting with chris germany , capacity trader at
3
+ the east desk , related to gas transmission :
4
+ typically , pipelines lease capacity billed on a monthly basis . an example
5
+ might be the pipeline between south texas and brooklyn , where you might pay
6
+ $ 12 . 00 per month per 10 , 000 decatherms of capacity ( $ 0 . 40 per day ) , a fixed
7
+ payment . variable charges are 6 % for fuel costs ( " shrinkage " ) and 6 . 5 % for
8
+ overhead expenses . a gas trader might call south texas and be quoted a
9
+ delivery price tomorrow of nymex - $ 0 . 10 ( " basis " ) , and might call brooklyn
10
+ and be quoted a delivered price of nymex + $ 0 . 25 . the trader ' s spread is
11
+ $ 0 . 35 , and variable costs of transmission are $ 0 . 125 , so the trader would
12
+ offer the leaseholder of capacity up to $ 0 . 225 for firm capacity tomorrow .
13
+ as for the distinction betweem firm and interruptible , the leaseholders have
14
+ an excellent knowledge of the firm - equivalent of interruptible capacity .
15
+ also , many pipelines don ' t discount firm capacity from the tariff maximum
16
+ ( " it ' s not worth their time to haggle " ) ( there is a further issue of
17
+ " secondary markets " not important to the model yet ) . for south texas and
18
+ brooklyn , there are several different routes the gas can physically take
19
+ ( pipelines of enron , texas eastern , etc ) . and , once the trade is in the
20
+ system traders can cover the ( enron ) positions on each end of the pipeline ,
21
+ in so doing freeing up the capacity for other contracts .
22
+ clayton
ham/0029.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : emission trading
2
+ vince ,
3
+ i spoke with susan wood , who heads up our emissions marketing effort who
4
+ says we don ' t really have any materials we send out . she did recommend the
5
+ emissions trading handbook which can be purchased for $ 50 from
6
+ in general , the site http : / / www . etei . org / is a great source of info , and the
7
+ the parent site , http : / / www . emissions . org should be checked out as well . if
8
+ you ' d like me to purchase the handbook ( it will take three weeks ) let me know .
9
+ joe
10
+ vince j kaminski
11
+ 12 / 16 / 99 08 : 15 am
12
+ to : joseph hrgovcic / hou / ect @ ect
13
+ cc : vince j kaminski / hou / ect @ ect
14
+ subject : re : emission trading
15
+ joe ,
16
+ do we have any materials about it ?
17
+ vince
18
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 16 / 99
19
+ 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -
20
+ adam brulinski
21
+ 12 / 14 / 99 08 : 22 am
22
+ to : vince j kaminski / hou / ect @ ect
23
+ cc :
24
+ subject : re : emission trading
25
+ thank you in advance .
26
+ let me just mention that the issue is quite urgent so i would appreciate if i
27
+ could get sth asap .
28
+ adam
29
+ vince j kaminski
30
+ 99 - 12 - 14 15 : 24
31
+ to : adam brulinski / war / ect @ ect
32
+ cc :
33
+ subject : re : emission trading
34
+ adam ,
35
+ let me gather some information for you .
36
+ vince
37
+ adam brulinski
38
+ 12 / 14 / 99 08 : 08 am
39
+ to : vince j kaminski / hou / ect @ ect
40
+ cc :
41
+ subject : emission trading
42
+ szanowny panie ,
43
+ chcielibysmy zaczac propagowac w polsce idee handlu prawami do emisji
44
+ zanieczyszczen . dlatego tez prosilbym o przeslanie , najlepiej droga emailowa
45
+ materialow dotyczacych tej koncepji - glownie chodzi mi o strone
46
+ " merytoryczna " .
47
+ z powazaniem ,
48
+ adam brulinski
ham/0031.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : creditmanager net meeting
2
+ aidan ,
3
+ yes , this will work for us .
4
+ vince
5
+ " aidan mc nulty " on 12 / 16 / 99 08 : 36 : 14 am
6
+ to : vince j kaminski / hou / ect @ ect
7
+ cc :
8
+ subject : creditmanager net meeting
9
+ vincent , i cannot rearrange my schedule for tomorrow so i would like to
10
+ confirm that we will have a net - meeting of creditmanager on friday 7 th of
11
+ january at 9 . 30 your time .
12
+ regards
13
+ aidan mc nulty
14
+ 212 981 7422
ham/0033.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: revised : organizational changes
2
+ to : enron north america corp .
3
+ from : cliff baxter and kevin hannon
4
+ in july , as part of the enron north america ( ena ) reorganization , the
5
+ implementation of several objectives were highlighted as critical to the
6
+ continued growth of ena including : 1 ) accelerate the development of our
7
+ people , 2 ) significantly expand our customer network and associated markets ,
8
+ and 3 ) accelerate and enhance the information flow between groups , both
9
+ within ena and across enron . consistent with these objectives and with the
10
+ corporate goal of fostering 
11
+ b ) the downstream coverage / origination groups which focus on delivering a
12
+ broad range of products and services to the heavy industrial customers
13
+ including pulp and paper , chemicals , plastics , refined products , metals and
14
+ mining , heavy manufacturing , industrial gases , fertilizers , transportation ,
15
+ textiles and glass manufacturing the eastern and western u . s . midstream
16
+ coverage / origination groups which focus on energy , finance and industries .
17
+ downstream coverage / origination
18
+ as energy deregulation continues in north america , it is becoming clear that
19
+ the heavy industrial segment will be an important customer market for both
20
+ ena and enron corp . further , it is clear that ena can significantly expand
21
+ its industrial customer network and create more innovative industrial
22
+ solutions by having a group that can deploy all the capabilities of enron
23
+ corp . against this backdrop , the downstream coverage / origination function
24
+ will expand its product offering to include not only ena  , s existing energy
25
+ commodities , energy services , finance , assets and pulp and paper capabilities
26
+ but also ees  , s energy outsourcing capability and global fuel  , s chemicals ,
27
+ plastics and refined products risk management capability . these additional
28
+ capabilities will be offered in conjunction with ees and the global fuels
29
+ groups . given the size and importance of this enron initiative , greg piper
30
+ will be returning from portland to manage this business . under greg  , s
31
+ leadership , the downstream origination effort will be segmented into three
32
+ sub - groups given the nature of these industries and our product offering :
33
+ a ) pulp and paper  ) edward ondarza will continue to manage the coverage
34
+ activities in the pulp and paper business . this group will be responsible for
35
+ the provision of innovative
36
+ products and services in the pulp and paper industry including the provision
37
+ of paper risk management products ;
38
+ b ) chemicals , plastics and refined products  ) we have asked jim ajello to
39
+ lead the coverage activities in this business . this group will be
40
+ responsible for the provision of innovative products and services in the
41
+ chemicals and refined products industries ;
42
+ c ) non - integrated industrials  ) bruce garner , formerly leader of bankers
43
+ trust  , s global metals and mining group in london , has joined ena to lead the
44
+ coverage activities in this business . this group will be responsible for the
45
+ provision of innovative products and services for the metals and mining ,
46
+ heavy manufacturing , industrial gases , fertilizers , transportation , textiles
47
+ and glass manufacturing industries .
48
+ midstream coverage / origination
49
+ a ) eastern coverage / origination  ) this group  , activities will focus on
50
+ energy , finance and power development solutions for electric and gas
51
+ utilities , municipals , co - ops and energy service companies in the eastern
52
+ interconnect . we have asked janet dietrich to assume the leadership of this
53
+ group ;
54
+ b ) western coverage / origination  ) this group  , s activities will focus on
55
+ energy , finance and power development solutions for electric and gas
56
+ utilities , municipals , co - ops and energy service companies in the wscc . they
57
+ will also continue to manage all qualified facilities ( qf ) restructuring
58
+ opportunities in the western u . s . we have asked chris calger to assume the
59
+ leadership of this coverage group . chris will relocate to portland from
60
+ calgary where he currently leads the canadian downstream origination efforts ;
61
+ c ) ipp merchant coverage / origination  ) this group  , s activities will focus on
62
+ the provision of structured energy , finance and asset solutions for the
63
+ emerging merchant power generators who control large portfolio  , s of merchant
64
+ power generation either through development or acquisition . we have asked
65
+ mike miller to assume the leadership of this group . in addition , mike will
66
+ continue to manage the power development activities in the eastern
67
+ interconnect ;
68
+ d ) eastern qf restructuring  ) this group will focus on the qf restructuring
69
+ opportunities in the eastern interconnect including the existing
70
+ restructuring and re - capitalization of the east coast power assets . we have
71
+ asked dave duran to assume the leadership of this business . greg blair ,
72
+ formerly of enron asia  , s development group , doug clifford , formerly of
73
+ citizens power , and dick lydecker , formerly of cogen technology , will join
74
+ this newly formed business .
75
+ 2 ) commercial transactions :
76
+ the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff
77
+ donahue , was formed to provide a centralized resource for the execution of
78
+ transactions within ena  ) and thereby , improve ena  , s efficiency in executing
79
+ transactions and free - up the origination groups to increase their intensity
80
+ of client coverage . ctg consists of six primary functions : transaction
81
+ development , capital structuring and portfolio management , commodity
82
+ structuring and transportation , transactional support / accounting , technical
83
+ analysis and upstream asset management .
84
+ the transaction development group will be responsible for deal leadership ,
85
+ execution and optimization of all aspects of a transaction in conjunction
86
+ with the originator . the function will be divided into four teams , each of
87
+ which will be dedicated to between two and four origination groups . this
88
+ dedication to specific groups should provide a closer link , better service
89
+ and greater accountability with the origination groups ; however , the ctg
90
+ resources are designed to be a fungible and flexible resource allocated to
91
+ the highest value transactions across the coverage functions :
92
+ a ) midstream transaction development will be dedicated to the eastern and
93
+ western coverage / origination groups . the senior members of this group
94
+ include billy lemmons , george mccormick , erin norris and russ porter . billy
95
+ lemmons joined enron in 1992 . most recently , he was the vice - president of
96
+ capital structuring and risk management for ees . russ porter joins us today
97
+ from dynegy where he was a manager with responsibilities for power
98
+ origination .
99
+ b ) downstream transaction development will be dedicated to ena  , s industrial
100
+ origination efforts in pulp and paper , petrochemicals and refining ,
101
+ environmental energy , metals and mining and other industries as coverage is
102
+ established . the senior members of this team include rodney malcolm , jay
103
+ boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing
104
+ two to four more additions to this team within the next few weeks .
105
+ c ) generation transaction development will be dedicated to the ipp merchant
106
+ services and power plant development and qf restructuring groups . the senior
107
+ members of this team include thomas suffield , andy kelemen , kelly mahmoud and
108
+ john house . thomas suffield joined enron in 1996 . most recently , he was the
109
+ vice - president of origination for the latin american group in azurix . we
110
+ anticipate announcing two more additions to this team within the next few
111
+ weeks .
112
+ d ) upstream transaction development will be dedicated to the producer
113
+ finance , coal and gas assets groups . the senior members of this team include
114
+ brad dunn , john curtin and chris hilgert . we hope to announce the addition
115
+ of at least one vp to this group prior to yearend .
116
+ ray bowen will have primary oversight responsibilities for the upstream and
117
+ downstream transaction development teams with jeff donahue having primary
118
+ responsibilities for the midstream and generation teams . andrea reed will
119
+ continue to head capital structuring and portfolio management : all junior
120
+ commercial resources within the transaction development teams will have dual
121
+ responsibilities to both their transaction development teams and to the
122
+ capital structuring group . the remaining four groups within ctg will remain
123
+ largely unchanged . in addition , the origination and the transaction
124
+ development teams and their respective origination groups will be located
125
+ together .
126
+ we believe that these changes will significantly enhance our market coverage
127
+ and industry knowledge in all ena  , s markets particularly in the industrial
128
+ markets . it will also provide a closer partnership and accountability between
129
+ the coverage / origination groups and the ctg groups .
130
+ please help us in continuing to build on the success we have enjoyed in north
131
+ america by working with us to implement these changes .
ham/0034.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : invitation to speak at power 2000
2
+ hi vince
3
+ that ' s great - delighted you ' ll be participating . i ' ve put you down as the
4
+ chairman for stream 1 , day 1 on 9 may 2000 .
5
+ by the way , is your job title still vp , head of research at enron north
6
+ america ? i need to know for the brochure .
7
+ if i don ' t speak to you before the new year , i wish you a very merry xmas
8
+ and a happy new millennium !
9
+ emma
10
+ - - - - - original message - - - - -
11
+ from : vince j kaminski
12
+ to : emma wolfin
13
+ cc : vince j kaminski
14
+ date : thursday , december 16 , 1999 9 : 02 am
15
+ subject : re : invitation to speak at power 2000
16
+ >
17
+ >
18
+ > emma ,
19
+ >
20
+ > mergers and acquisitions are not my cup of tea .
21
+ >
22
+ > chairing stream 1 on day 1 seems to be a better match .
23
+ >
24
+ > vince
25
+ >
26
+ >
27
+ >
28
+ >
29
+ >
30
+ > " emma wolfin " on 12 / 15 / 99 10 : 51 : 34 am
31
+ >
32
+ > to : vince j kaminski / hou / ect @ ect
33
+ > cc :
34
+ > subject : re : invitation to speak at power 2000
35
+ >
36
+ >
37
+ >
38
+ >
39
+ > hi vince
40
+ >
41
+ > thanks for getting back to me quickly ! as it happens , all of the sessions
42
+ > you suggested are already taken !
43
+ >
44
+ > so , would you be interested in chairing either stream 1 on day 1 of the
45
+ > conference - " pricing and trading in the us power market " or stream 3 on
46
+ > day 2 of the conference - " latest developments in the us energy industry " .
47
+ > for your information , the people presenting on day 1 in stream 1 include :
48
+ >
49
+ > - spyros maragos , dynegy on volatility
50
+ > - sanjeev khanna , pg & e on correlation
51
+ > - gary morsches , southern on optimising information to accurately price and
52
+ > trade electricity
53
+ > - blake johnson , stanford university on modelling power prices
54
+ > - craig pirrong , olin school of business , washington university on building
55
+ > the optimal forward curve
56
+ >
57
+ > on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch
58
+ we
59
+ > will be breaking for plenary sessions and the industry briefing sessions
60
+ > too . but the people who will be speaking in that stream are :
61
+ >
62
+ > - venu nagali , stanford university on real options
63
+ > - ram challa , sithe energies ( he was formerly at bankers trust ) on
64
+ > generation assets
65
+ >
66
+ > i have the slot on mergers and acquisitions in stream 3 on day 2 as still
67
+ > available but i ' m not sure if that session is your area of speciality ? let
68
+ > me know .
69
+ >
70
+ > thanks vince and very much looking forward to working with you again .
71
+ >
72
+ > emma
73
+ >
74
+ >
75
+ > - - - - - original message - - - - -
76
+ > from : vince j kaminski
77
+ > to : emma wolfin
78
+ > cc : vince j kaminski
79
+ > date : wednesday , december 15 , 1999 11 : 36 am
80
+ > subject : re : invitation to speak at power 2000
81
+ >
82
+ >
83
+ > >
84
+ > >
85
+ > > emma ,
86
+ > >
87
+ > > it ' s your choice . i can chair the session of day 2 or speak on one of
88
+ these
89
+ > > topics .
90
+ > > please , let me know what works for you .
91
+ > >
92
+ > > possible presentations :
93
+ > >
94
+ > > evaluating the effectiveness of insurance as a risk management tool
95
+ > >
96
+ > > or
97
+ > >
98
+ > > applying real option theory to value power plants
99
+ > >
100
+ > > or
101
+ > >
102
+ > > overcoming the difficulties of accurately estimating volatility
103
+ > >
104
+ > >
105
+ > > vince
106
+ > >
107
+ > >
108
+ > >
109
+ > >
110
+ > >
111
+ > > " emma wolfin " on 12 / 14 / 99 04 : 08 : 03 pm
112
+ > >
113
+ > > to : vince j kaminski / hou / ect @ ect
114
+ > > cc :
115
+ > > subject : invitation to speak at power 2000
116
+ > >
117
+ > >
118
+ > >
119
+ > >
120
+ > > hi vince
121
+ > >
122
+ > > it is my great pleasure to invite you to speak at power 2000 which will be
123
+ > > in houston on 9 & 10 may 2000 .
124
+ > >
125
+ > > would you be interested in chairing one of the streams on day 2 of the
126
+ > > conference ? or making a full presentation on one of the days ? please let
127
+ me
128
+ > > know which talks interest you . obviously , some of the talks are no longer
129
+ > > available but i would like to give you a choice as much as possible .
130
+ please
131
+ > > could you get back to me asap on 212 925 1864 ext 151 or by return email .
132
+ > >
133
+ > > i very much hope you can make the dates as i ' m very keen to have you
134
+ > > participate at power . not to flatter you unnecessarily , but i know that a
135
+ > > lot of people come to our conferences to hear what you have to say .
136
+ > >
137
+ > > best regards
138
+ > >
139
+ > > emma
140
+ > >
141
+ > >
142
+ > >
143
+ > >
144
+ > >
145
+ >
146
+ >
147
+ >
148
+ >
149
+ >
150
+ >
ham/0035.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : european energy 2000 , april , amsterdam
2
+ angela ,
3
+ no problem . i shall be glad to do it .
4
+ happy holidays if i don ' t hear from you .
5
+ vince
6
+ " angela adedeji " on 12 / 14 / 99 12 : 00 : 40 pm
7
+ please respond to " angela adedeji "
8
+ to : vince j kaminski / hou / ect @ ect
9
+ cc :
10
+ subject : european energy 2000 , april , amsterdam
11
+ hi vince
12
+ re : european energy 2000 , 3 & 4 april , amsterdam
13
+ i hope all is well . i wondered whether or not you would be interested in
14
+ chairing the stream of your talk ?
15
+ i look forward to hearing from you soon .
16
+ kind regards
17
+ angela
18
+ - attl . htm
ham/0036.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : invitation to speak at power 2000
2
+ emma ,
3
+ mergers and acquisitions are not my cup of tea .
4
+ chairing stream 1 on day 1 seems to be a better match .
5
+ vince
6
+ " emma wolfin " on 12 / 15 / 99 10 : 51 : 34 am
7
+ to : vince j kaminski / hou / ect @ ect
8
+ cc :
9
+ subject : re : invitation to speak at power 2000
10
+ hi vince
11
+ thanks for getting back to me quickly ! as it happens , all of the sessions
12
+ you suggested are already taken !
13
+ so , would you be interested in chairing either stream 1 on day 1 of the
14
+ conference - " pricing and trading in the us power market " or stream 3 on
15
+ day 2 of the conference - " latest developments in the us energy industry " .
16
+ for your information , the people presenting on day 1 in stream 1 include :
17
+ - spyros maragos , dynegy on volatility
18
+ - sanjeev khanna , pg & e on correlation
19
+ - gary morsches , southern on optimising information to accurately price and
20
+ trade electricity
21
+ - blake johnson , stanford university on modelling power prices
22
+ - craig pirrong , olin school of business , washington university on building
23
+ the optimal forward curve
24
+ on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch we
25
+ will be breaking for plenary sessions and the industry briefing sessions
26
+ too . but the people who will be speaking in that stream are :
27
+ - venu nagali , stanford university on real options
28
+ - ram challa , sithe energies ( he was formerly at bankers trust ) on
29
+ generation assets
30
+ i have the slot on mergers and acquisitions in stream 3 on day 2 as still
31
+ available but i ' m not sure if that session is your area of speciality ? let
32
+ me know .
33
+ thanks vince and very much looking forward to working with you again .
34
+ emma
35
+ - - - - - original message - - - - -
36
+ from : vince j kaminski
37
+ to : emma wolfin
38
+ cc : vince j kaminski
39
+ date : wednesday , december 15 , 1999 11 : 36 am
40
+ subject : re : invitation to speak at power 2000
41
+ >
42
+ >
43
+ > emma ,
44
+ >
45
+ > it ' s your choice . i can chair the session of day 2 or speak on one of these
46
+ > topics .
47
+ > please , let me know what works for you .
48
+ >
49
+ > possible presentations :
50
+ >
51
+ > evaluating the effectiveness of insurance as a risk management tool
52
+ >
53
+ > or
54
+ >
55
+ > applying real option theory to value power plants
56
+ >
57
+ > or
58
+ >
59
+ > overcoming the difficulties of accurately estimating volatility
60
+ >
61
+ >
62
+ > vince
63
+ >
64
+ >
65
+ >
66
+ >
67
+ >
68
+ > " emma wolfin " on 12 / 14 / 99 04 : 08 : 03 pm
69
+ >
70
+ > to : vince j kaminski / hou / ect @ ect
71
+ > cc :
72
+ > subject : invitation to speak at power 2000
73
+ >
74
+ >
75
+ >
76
+ >
77
+ > hi vince
78
+ >
79
+ > it is my great pleasure to invite you to speak at power 2000 which will be
80
+ > in houston on 9 & 10 may 2000 .
81
+ >
82
+ > would you be interested in chairing one of the streams on day 2 of the
83
+ > conference ? or making a full presentation on one of the days ? please let me
84
+ > know which talks interest you . obviously , some of the talks are no longer
85
+ > available but i would like to give you a choice as much as possible . please
86
+ > could you get back to me asap on 212 925 1864 ext 151 or by return email .
87
+ >
88
+ > i very much hope you can make the dates as i ' m very keen to have you
89
+ > participate at power . not to flatter you unnecessarily , but i know that a
90
+ > lot of people come to our conferences to hear what you have to say .
91
+ >
92
+ > best regards
93
+ >
94
+ > emma
95
+ >
96
+ >
97
+ >
98
+ >
99
+ >
ham/0037.1999-12-16.kaminski.ham.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : presentation in seoul
2
+ anthony duenner @ enron _ development on 12 / 15 / 99 01 : 46 : 35 pm
3
+ to : mark ruane @ ect , zimin lu @ ect
4
+ cc :
5
+ subject : presentation in seoul
6
+ better late than never - - i again wanted to thank both of you for taking the
7
+ time and making the effort to make the raroc and real options presentations
8
+ in seoul earlier this month . both presentations were well received and i had
9
+ a number of favorable comments and expressions of thanks form our hosts after
10
+ the presentations . i know you both have very busy schedules - - especially
11
+ around this time of year - - and very much appreciate your help . regards .
12
+ anthony duenner
ham/0038.1999-12-17.kaminski.ham.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: new website for an exciting conference
2
+ applications of physics in financial analysis 2
3
+ liege , belgium
4
+ 13 to 15 july 2000
5
+ the website for this conference is now available at
6
+ www . eps . org / apfa
7
+ for further details on all eps conferences contact : christine bastian ,
8
+ conferences , european physical society , 34 rue marc seguin , bp 2136 , f - 68060
9
+ mulhouse cedex , france
10
+ tel + 33 389 32 94 42 fax + 33 389 32 94 49
11
+ email eps . conf @ univ - mulhouse . fr
12
+ this conference is a europhysics conference . it is organised by the european
13
+ physical society and its division of statistical and non - linear physics .
14
+ - attl . htm
ham/0040.1999-12-17.kaminski.ham.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: last day , contact numbers , etc .
2
+ hi guys !
3
+ as most of you know by now today is my last day at enron north america . it
4
+ has been really great few months and maureen has most graciously put up with
5
+ my school and exam schedule . as today is also my graduation from the
6
+ university of houston , i don ' t have any formal reasons to remain in houston
7
+ and will be heading to the misty albion to work for enron europe as soon as
8
+ my work permit for the uk is ready . the latter is still a mystery but is
9
+ anticipated some time in early february . right now i am planning to come back
10
+ to houston middle of january to wait for the work permit and sell my car ,
11
+ some furniture , etc . ( stay tuned for great deals : - ) so , i will be back to
12
+ see you guys . if you miss me too much try to find consolation in miss yana
13
+ kristal , a u of h student of slavic origin , who will be taking over my
14
+ responsibilities starting early january . i know i will miss you and am
15
+ planning to sneak in the video conferencing room during the thursday
16
+ meetings . i know it won ' t be the same , but it ' s better than nothing . or you
17
+ can start planning that trip to london . . .
18
+ below are the numbers where if you can ' t reach me there will be information
19
+ where i might be .
20
+ phone numbers :
21
+ houston : 713 - 213 - 7733 - cell
22
+ come back to houston january 15 ( depending on how the work permit is coming ) .
23
+ have very , very happy holidays and a great millenium !
24
+ martina
ham/0041.1999-12-17.kaminski.ham.txt ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : new copier information for 55 , 60 & 65 cpm digital machines
2
+ iain :
3
+ we went and looked at the toshiba copier on the 32 nd floor and while it
4
+ does not appear to be extremely fast , i believe it will work for the 19 th
5
+ floor . i spoke with vince kaminski and he agreed with our getting this
6
+ copier .
7
+ we noticed this copier has a button that says " network connection "
8
+ and were wondering it this copier could be hooked up to the network and
9
+ we could run copies from our computer ? please let us know .
10
+ thanks for all your help and have a wonderful christmas and new
11
+ year !
12
+ shirley
13
+ co # 0011
14
+ rc # 100038
15
+ copier information including pictures & weblinks
16
+ from : iain russell on 12 / 17 / 99 10 : 47 am
17
+ to : shirley crenshaw / hou / ect @ ect
18
+ cc :
19
+ subject : new copier information for 55 , 60 & 65 cpm digital machines
20
+ shirley ,
21
+ following up on the telephone conversation , please see the attached
22
+ spreadsheet for pricing information plus important information about " true
23
+ world " copy speeds .
24
+ pricing was centered on the 42 . 315 k per month volume band so that you can get
25
+ a good feel for copier expenditure based on average month volumes . i have
26
+ left the spreadsheet " unprotected " so that you can play with the volume
27
+ figures and see how this changes the price overall + how the " cost per image "
28
+ is affected by volume changes .
29
+ ? pricing spreadsheet : under " notes " towards under the pictures .
30
+ the " true world " copy speed information has been supplied by buyers lab
31
+ incorporated , which is an independent testing house that rates office
32
+ equipment , including copiers and publishes their findings on a quarterly
33
+ basis . unfortunately they have not released their findings on the canon ir 550
34
+ as testing is not yet complete .
35
+ ? copier speeds : @ the end of the notes - mail
36
+ { these include 1 - 1 , 1 - 2 and duplexing + detail on completion of " sets " }
37
+ as you will see , duplexing speeds are widely different across the various
38
+ manufacturers equipment & the " true world " copy speeds are a soft $ expense
39
+ which impacts the true cost of running a copier .
40
+ listed below are the url ' s for the different 55 , 60 & 65 cpm b / w copiers .
41
+ a ) overview
42
+ b ) specifications
43
+ from lanier
44
+ ricoh equipment
45
+ 55 copies per minute
46
+ a ) & b ) weblink for machine specifications - - > click here - - - >
47
+ 65 copies per minute
48
+ a ) & b ) weblink for machine specifications - - > click here - - - >
49
+ from danka
50
+ canon equipment { ir 550 }
51
+ 55 copies per minute
52
+ looks like : - - - >
53
+ weblink for machine specifications - - > click below :
54
+ a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 fea . html
55
+ b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 spec . html
56
+ canon equipment { ir 600 } > > currently on 45 day backorder
57
+ weblink for machine specifications - - > click below :
58
+ a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 fea . html
59
+ b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 spec . html
60
+ toshiba equipment
61
+ 55 copies per minute
62
+ weblink for machine specifications - - > click below :
63
+ a ) http : / / www . toshiba . com / taiseid / copiers / 5570 / features . htm
64
+ b ) http : / / www . toshiba . com / taiseid / copiers / 5570 / spec . htm
65
+ 65 copies per minute
66
+ weblink for machine specifications - - > click here - - >
67
+ a ) http : / / www . toshiba . com / taiseid / copiers / 6570 / features . htm
68
+ b ) http : / / www . toshiba . com / taiseid / copiers / 6570 / spec . htm
69
+ notes
70
+ here is the pricing spreadsheet for your records : - - >
71
+ the highlighted rows on the spreadsheet reflect you current average monthly
72
+ volume .
73
+ fyi - - > target cpi or cost per image is in the region $ 0 . 017 up to and
74
+ including $ 0 . 023 .
75
+ copier model monthly volume capacities
76
+ model manufacturer max rec / level realistic level { up to }
77
+ toshiba 5570 340 k 115 k
78
+ toshiba 6570 400 k 135 k
79
+ lanier 5255 { per rep . } 200 k 100 k
80
+ lanier 5265 { per rep . } 200 k 100 k
81
+ canon ir 550 200 k 100 k
82
+ canon ir 600 250 k 100 k
83
+ fyi : we currently have a toshiba 6570 @ eb 32 kl that is averaging 69 , 332
84
+ images per month with the top month producing 86 , 673 images and a toshiba
85
+ 5570 @ eb 3080 area that is averaging 39 , 309 per month . both of these machines
86
+ are in the enron north america trading environment .
87
+ the copiers quoted are all " digital " .
88
+ digital : scan once print many = 99 copies of one sheet ? 1 scan !
89
+ analog : scan for every image made = 99 copies of 1 sheet ? 99 scans = possible
90
+ noise issue .
91
+ copier speeds = total print time
92
+ this comparison gives the speed @ which the document set is printed
93
+ { no staple , no 3 - hole punch }
94
+ > > > > > 60 & 65 copy per minute machines > > > > 55 copy per minute machines < < < < <
95
+ please call me with any questions .
96
+ thanks , iain russell @ 713 - 853 - 6861
97
+ contracts supervisor administration
98
+ enron property & services corp .
99
+ privileged / confidential information may be contained in this message . if
100
+ you are not the addressee indicated in this message ( or responsible for
101
+ delivery of the message to such person ) , you may not copy or deliver this
102
+ message to anyone . in such case , you should destroy this message , and
103
+ notify us immediately . if you or your employer does not consent to internet
104
+ email messages of this kind , please advise us immediately . opinions ,
105
+ conclusions and other information expressed in this message are not given
106
+ or endorsed by my department or employer unless otherwise indicated by an
107
+ authorized representative independent of this message .
ham/0042.1999-12-19.kaminski.ham.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ Subject: merry xmas and a happy new year !
2
+ hi all
3
+ merry xmas and a happy new year !
4
+ les .
ham/0043.1999-12-20.kaminski.ham.txt ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : european energy 2000
2
+ vince ,
3
+ i ' ve been invited to speak at the conference below in amsterdam in april .
4
+ this is along with the monte carlo conference a week later which stinson has
5
+ forwarded my name for . both are by eprm , and shouldn ' t take too much time to
6
+ prepare as will be on similar topics to the previous conference at which i
7
+ spoke . should i go to both , or start prioritising these events ?
8
+ ben
9
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 20 / 12 / 99
10
+ 17 : 03 - - - - - - - - - - - - - - - - - - - - - - - - - - -
11
+ enron capital & trade resources corp .
12
+ from : " angela adedeji "
13
+ 20 / 12 / 99 11 : 57
14
+ please respond to " angela adedeji "
15
+ to : benjamin parsons / lon / ect @ ect
16
+ cc :
17
+ subject : european energy 2000
18
+ dear ben
19
+ re : european energy 2000 , 3 & 4 april , amsterdam
20
+ it is with great pleasure that i enclose details of eprm ' s 3 rd annual
21
+ congress . i would like to invite you to become involved as a speaker on the
22
+ programme and / or on either of the two seminars on modelling power prices and
23
+ var .
24
+ the following sessions are currently available on the main programme :
25
+ - trouble shooting roundtables -
26
+ var
27
+ forward curve
28
+ electricity derivatives
29
+ heding
30
+ - developing and implementing enterprise wide risk management
31
+ - quantifying and minimising operational risk
32
+ unfortunately this project needs to be signed off before christmas . i would
33
+ therefore appreciate receiving a response from at your earliest convenience .
34
+ i hope we can work together on this event and i look forward to hearing from
35
+ you soon .
36
+ kind regards
37
+ angela adedeji
38
+ senior producer , energy conferences & courses
39
+ tel - 0171 484 9886
40
+ fax - 0171 484 9888
41
+ email - aadedeji @ risk . co . uk
42
+ - attl . htm
43
+ - fgrid . doc
44
+ - seminar . doc
45
+ - seminar 2 . doc
ham/0044.1999-12-20.kaminski.ham.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ Subject: p . c .
2
+ we spoke about the p . c . for trisha tlapek .
3
+ location eb 3132 b .
4
+ co . # 0011
5
+ r . c . 100038
6
+ thanks
7
+ kevin moore
8
+ x 34710
ham/0045.1999-12-20.kaminski.ham.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Subject: flat screens
2
+ hello ,
3
+ please call or contact regarding the other flat screens requested .
4
+ trisha tlapek - eb 3132 b
5
+ michael sergeev - eb 3132 a
6
+ also the sun blocker that was taken away from eb 3131 a .
7
+ trisha should two monitors also michael .
8
+ thanks
9
+ kevin moore
ham/0046.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: p . c .
2
+ what do i need to do in order to get this
3
+ p . c . early a . m .
4
+ please let me know .
5
+ thanks
6
+ kevin moore
7
+ very important
8
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 30
9
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
10
+ kevin g moore
11
+ 12 / 20 / 99 11 : 28 am
12
+ to : lyn malina / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j
13
+ kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect
14
+ cc :
15
+ subject : p . c .
16
+ we spoke about the p . c . for trisha tlapek .
17
+ location eb 3132 b .
18
+ co . # 0011
19
+ r . c . 100038
20
+ thanks
21
+ kevin moore
22
+ x 34710
ham/0047.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : new color printer
2
+ goodmorning lyn ,
3
+ please inform me on the status of the color printer for
4
+ the 19 th floor .
5
+ we need this printer a . s . a . p .
6
+ this printer should be placed where the black and white printer
7
+ is located on the same counter .
8
+ co . 0011
9
+ r . c . 100038
10
+ let me know !
11
+ merry christmas
12
+ kevin moore
13
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 23
14
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
15
+ kevin g moore
16
+ 12 / 14 / 99 09 : 21 am
17
+ to : lyn malina / hou / ect @ ect
18
+ cc :
19
+ subject : re : new color printer
20
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17
21
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
22
+ kevin g moore
23
+ 12 / 14 / 99 08 : 13 am
24
+ to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect
25
+ cc :
26
+ subject : re : new color printer
27
+ yes ! right away , please
28
+ also let me know the e . t . a .
29
+ thanks , lyn
30
+ kevin moore
ham/0048.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Subject: please approve : application request ( wsmh - 4 esnva )
2
+ security resource request wsmh - 4 esnva has been submitted for your approval .
3
+ to view the request , double click your left mouse button on the notes
4
+ document link below .
5
+ quick steps to approve or reject request form :
6
+ 1 . click the button to view details of the requests .
7
+ 2 . click the button to approve or reject the requests .
8
+ 3 . to edit the request form , double - click anywhere on the form .
9
+ see the online help for instructions or call ect security .
ham/0049.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Subject: real options for mothballed plant
2
+ i ' m off for my xmas break , so happy holidays to you all !
3
+ steve
ham/0050.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: ceraweek 2000 update !
2
+ dear ceraweek 2000 registrant ,
3
+ thank you for your recent registration to ceraweek 2000 , cera ' s 19 th annual
4
+ executive conference and related events , february 8 - 10 , 2000 in houston , tx .
5
+ ceraweek 2000 promises to be a premier international event offering senior
6
+ energy executives new ideas , insight , and strategic thinking , as well as
7
+ opportunities for discussion on the major issues facing the global energy
8
+ industries .
9
+ to keep abreast of new speakers and agenda changes , we recommend that you
10
+ visit our website at http : / / www . cera . com / ceraweek / . please note that there
11
+ have been slight changes to the agenda and schedule .
12
+ if you have questions or concerns regarding ceraweek 2000 please contact
13
+ cera registration at register @ cera . com or 800 879 - 2372 ext . 800 ( outside
14
+ the u . s . ( 617 ) 497 - 6446 ext . 800 . )
15
+ we look forward to seeing you in houston .
16
+ sincerely ,
17
+ cera registration
18
+ - attl . htm
ham/0051.1999-12-21.kaminski.ham.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : 12 / 17 churn - - eb 29 to ebl 9
2
+ job done !
3
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 05 : 59
4
+ am - - - - - - - - - - - - - - - - - - - - - - - - - - -
5
+ lupe rodriguez @ enron
6
+ 12 / 21 / 99 04 : 08 pm
7
+ to : move - team / epsc / hou / ect @ ect
8
+ cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle
9
+ duree / hou / ect @ ect
10
+ subject : re : 12 / 17 churn - - eb 29 to ebl 9
11
+ i have guys up there now to complete this request . we don " t move the plants
12
+ but we will this time . any thing else just let me know . lupe
13
+ move - team @ ect
14
+ 12 / 21 / 99 02 : 26 pm
15
+ sent by : linda richard @ ect
16
+ to : lupe rodriguez / corp / enron @ enron
17
+ cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle
18
+ duree / hou / ect @ ect
19
+ subject : 12 / 17 churn - - eb 29 to ebl 9
20
+ hi lupe !
21
+ there are approximately 25 boxes , several small file cabinets and 2 plants ( a
22
+ 3 ft and a 9 ft plant ) that are ready to be moved from 29 to 19 . this is part
23
+ of the 29 th floor 12 / 17 churn .
24
+ the items are located in various offices of the " fishbowl " area on the 29 th
25
+ floor . they are labeled with the 19 th floor designated location .
26
+ there are 2 larger file cabinets that are located in the hallway .
27
+ the 2 plants need to be taken to ebl 944 .
28
+ is there anyway to work this in your schedule on tommorrow ?
29
+ thanks
30
+ linda
ham/0053.1999-12-22.kaminski.ham.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : working gas price model
2
+ vince -
3
+ i have a simplified version of brad ' s model in mind .
4
+ the " no arbitrage " condition equates trading margins across the country .
5
+ costs of transmission rise with congestion on the network . wellhead supply is
6
+ almost completely price - elastic , while burner - tip demand is almost
7
+ completely price inelastic . storage is rationalized as a perpetual call
8
+ option .
9
+ the least time - variant parameters are the costs of injecting and withdrawing
10
+ gas from storage to the pipeline , followed by the costs of delivering gas
11
+ from the wellhead to the pipeline . the intermediate - variant parameters are
12
+ the capacity - dependent costs paid to the pipeline ( above shrinkage ) for
13
+ transmission . the most time - variant parameters are the trading margins and
14
+ the valuations of the storage option .
15
+ there are 8 parameters to be estimated at each major node of the betwork .
16
+ they are identifiable in either of two straightforward ways : using a short
17
+ time series of the last 3 days prices based on the assumed variability
18
+ mentioned above , or point - estimates ( " calibrations " ) using only today ' s data
19
+ based on a node - based model of competition between pipelines where pipes with
20
+ the same region of origination , albeit markedly different terminus , price
21
+ versus capacity similarly , " competing " for outflows .
22
+ i will write this up for you in scientific word and present it to you at your
23
+ earliest convenience .
24
+ clayton
ham/0054.1999-12-22.kaminski.ham.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: new volatility curve generator for uk power
2
+ we have established a set of power volatility curves down to the efa / monthly
3
+ level of detail that can be marked to market up to 6 years out . beyond this ,
4
+ the volatility decays to what we understand to be the long - term level for
5
+ power volatility , given our understanding of the behaviour of forward prices
6
+ over large time - scales .
7
+ the swaption traders can now fit the first 5 - 6 years of the volatility curve
8
+ to the market - observed baseload swaption implied volatilities ( typically 3 to
9
+ 12 months duration for the underlying swap ) and then be in a good position to
10
+ price other swaptions ( including swaptions on individual efa slots )
11
+ consistent with the curve . there may also be an impact on the daily var
12
+ calculation .
13
+ an illustration of the current volatility curves is pasted below : -
14
+ these curves will be reset as the market moves , and allow a mark - to - market
15
+ approach to be followed for our volatility book . the spreadsheet model is
16
+ saved in t : \ readwrte \ elec _ uk \ models \ . xls and also
17
+ attached below for houston staff to review .
18
+ [ stinson - i ' d be grateful if you could offer an opinion / audit to ensure that
19
+ i haven ' t missed anything , thanks . ]
20
+ regards ,
21
+ anjam
22
+ x 35383
ham/0055.1999-12-22.kaminski.ham.txt ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : thank you for the e - mail .
2
+ joe ,
3
+ he is a research assistant of prof . darrell duffie from stanford
4
+ and i met him in this capacity . a very bright fellow .
5
+ i could not assess his commercial skills but he has enough common
6
+ sense to identify the winner ( as his interest in enron demonstrates ) .
7
+ vince
8
+ joseph p hirl @ enron _ development
9
+ 12 / 17 / 99 08 : 05 pm
10
+ to : vince j kaminski / hou / ect @ ect
11
+ cc :
12
+ subject : re : thank you for the e - mail .
13
+ vince , thanks for the note and the voice mail this morning . do you have any
14
+ thoughts / comments on this person ' s abilities ?
15
+ joe
16
+ vince j kaminski @ ect
17
+ 12 / 18 / 99 07 : 25 am
18
+ to : joseph p hirl / enron _ development @ enron _ development
19
+ cc :
20
+ subject : re : thank you for the e - mail .
21
+ joe ,
22
+ i am forwarding you the information about the student from stanford of
23
+ japanese ancestry interested in enron .
24
+ he lives currently in california .
25
+ vince kaminski
26
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 17 / 99
27
+ 03 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -
28
+ vince j kaminski
29
+ 10 / 20 / 99 07 : 07 am
30
+ to : hoshino @ leland . stanford . edu
31
+ cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , greg
32
+ whalley / hou / ect @ ect
33
+ subject : re : thank you for the e - mail .
34
+ taiichi ,
35
+ thank you for your messsage . i shall forward to our analyst / associate
36
+ program and a few other units of enron .
37
+ vince kaminski
38
+ hoshino @ leland . stanford . edu on 10 / 19 / 99 09 : 14 : 05 am
39
+ please respond to hoshino @ leland . stanford . edu
40
+ to : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com
41
+ cc :
42
+ subject : thank you for the e - mail .
43
+ dear vince kaminski
44
+ thank you so much for the kind invitation for the meeting .
45
+ i have been always inspired by and having respect for the
46
+ recent revolutionary achievements of enron in the energy markets
47
+ my former employer mckinsey tokyo in fact featured
48
+ your company * s success in the last quarterly , and it clearly states
49
+ ( in japanese though ) that the quantitative research capability at enron
50
+ is now at the world * s top level , which has been always behind the scene .
51
+ i am extremely honored to receive the email from you and in fact
52
+ interested in knowing the opportunity of working in the energy field ;
53
+ however , very unfortunately i will have to come back to japan , or at
54
+ least to the east asian region , upon graduation due to an inevitable
55
+ family reason . my wife * s father passed away recently and an old
56
+ mother - in - law is now left alone without relatives . i understand that
57
+ enron has not yet embarked on the next big project of freeing
58
+ the outdated japanese energy market , ( which by the way i strongly
59
+ hope ) so i may not have a very good chance of making contribution
60
+ at your company right now .
61
+ lastly , if you need a staff in tokyo in some future who understands
62
+ both the risk management analytics at the f 622 level and the local
63
+ language and business custome better than average , please contact
64
+ me any time . i will be happy to assist as much as possible .
65
+ yours sincerely ,
66
+ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~
67
+ taiichi hoshino
68
+ ph . d . candidate
69
+ engineering economic systems & operations research
70
+ graduate school of engineering
71
+ stanford university
72
+ the shadows apt # 171
73
+ 750 north shoreline blvd .
74
+ mountain view ca 94043
75
+ tel / fax ) 650 - 960 - 1993
76
+ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~
ham/0057.1999-12-23.kaminski.ham.txt ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: gpcm summary 1999
2
+ this has been a great year for rbac and gpcm .
3
+ during the year we have doubled to 10 the number of gpcm licensees .
4
+ this means we ' ve also doubled the number of wonderful people we ' ve trained
5
+ and are supporting .
6
+ and , i sincerely mean it when i say it has been a real pleasure working
7
+ with you all .
8
+ one of the things we stress when we are selling gpcm is that it takes a
9
+ strong commitment on the part of the licensee , a commitment to find skilled
10
+ and dedicated people to make optimal use of this sophisticated tool . and ,
11
+ i ' m happy to report that we have that quality in the gpcm teams we work
12
+ with .
13
+ next year we have some big challenges . we will be converting the system
14
+ from office 97 to office 2000 and will also need to make sure it will run
15
+ in the windows 2000 environment .
16
+ we will be adding new flexibility in defining our transportation zone price
17
+ curves to enable users , especially pipeline users , to test variations of
18
+ pricing strategies for their impacts on basis and utilization .
19
+ we will be adding a capability for modeling future ft contracting .
20
+ we will upgrade our existing database comparison program to allow you to
21
+ select those items you want to have automatically updated in your own
22
+ databases .
23
+ we will continue to work with rdi to improve pipeline and storage
24
+ infrastructure representations , to provide interfaces between gasdat and
25
+ gpcm , and to give you regular optional updates for your own databases .
26
+ we are beginning to plan out a new website dedicated to gpcm licensees ( and
27
+ possibly prospects ) . we have acquired gpcm . rbac . com and gpcm . net for this
28
+ purpose .
29
+ in making these various changes , we look also to you , our existing
30
+ licensees , for enhancement and improvement ideas . we are planning to
31
+ conduct interviews of our licensees during the next 30 - 60 days to find
32
+ out what you like , but also what you would like to see improved , as well as
33
+ some new ideas for gpcm .
34
+ i would like to thank the following people for their contributions to gpcm
35
+ during 1999 .
36
+ o liam leahy for his excellent marketing , sales , and planning support
37
+ o charles carr for his quality work on our website and support with subtle
38
+ visual basic programming issues
39
+ o richard berman for thorough research on design tools and skilled windows
40
+ programming
41
+ o richard mcbride for continuing support and development of his emnet
42
+ optimization program
43
+ o aaron and james brooks for design and production of the powerpoint
44
+ pipeline maps now available in gpcm
45
+ o mike farina and rdi for their continuing improvement of the gpcm data and
46
+ gasdat database
47
+ o gpcm users who have found data bugs and reported them to use so that we
48
+ could get them corrected
49
+ o gpcm users who have suggested new features which would make gpcm a better
50
+ product
51
+ o gpcm users who have given us sales leads during the year
52
+ o gpcm users who have used gpcm to help their companies make better plans
53
+ and decisions , which is , after all , the purpose for which it was designed
54
+ we hope all of you have a wonderful holiday season and look forward to an
55
+ even better year 2000 .
56
+ bob brooks
ham/0059.1999-12-25.kaminski.ham.txt ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: re : firm power sale from phase i - issues
2
+ vince / vasant ,
3
+ it has been some time since we spoke at the san antonio conference .
4
+ unfortunately , as soon as i got to india i was diagnosed wih a slip disc and
5
+ had to be in bed for a long time .
6
+ in the mean time the team continued to work on the concept of a sale to
7
+ another state out of the dabhol plant . i have developed the concept whereby
8
+ we are now looking at a firm component ( over peak period ) , and an infirm
9
+ power sale during the monsoon .
10
+ the series of quesions and comments from my team in te attachment below
11
+ should help you a bit to get a feel for the proposal . i am currently in
12
+ houston and reachable at 281 - 345 - 9870 . i maybe needing a surgery for the
13
+ slip disc but am currently on medication hoping that surgery won ' t be needed .
14
+ i would like to wis you all a very happy x ' mas and a great new year , and will
15
+ catch you in the new year in houston to discuss this wit you further . i can
16
+ see that soem structuring help will be needed on this , and would like to get
17
+ some help from your end .
18
+ regards ,
19
+ sandeep .
20
+ - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on
21
+ 12 / 25 / 99 10 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -
22
+ sandeep kohli
23
+ 12 / 25 / 99 10 : 06 pm
24
+ to : rajesh sivaraman / enron _ development
25
+ cc : vivek kejriwal / enron _ development @ enron _ development , shubh
26
+ shrivastava / enron _ development @ enron _ development , anshuman
27
+ subject : re : firm power sale from phase i - issues
28
+ team ,
29
+ please find my comments in the word document attached .
30
+ please go through this and run the sensitivities and get a good idea of way
31
+ to structure thsi . having gone through the comments , i feel that it maybe
32
+ necessary to get some help on the structuring side . i will try to get you
33
+ some structuring expertise asap . in the mean time , i would like you all to
34
+ focus on getting resources together and working this to the next pass .
35
+ lets see where we can get with this .
36
+ regards ,
37
+ sandeep .
38
+ rajesh sivaraman
39
+ 12 / 24 / 99 10 : 06 pm
40
+ to : sandeep kohli / enron _ development @ enron _ development
41
+ cc : vivek kejriwal / enron _ development @ enron _ development , shubh
42
+ shrivastava / enron _ development @ enron _ development , anshuman
43
+ subject : firm power sale from phase i - issues
44
+ as discussed , please find enclosed a word document which essentially
45
+ discusses most of the issues involved with a firm power sale of 50 mw from
46
+ phase i , which would have to be sorted out with mseb .
47
+ vivek
48
+ will put the tariff formula in the next mail )
49
+ the tariff structure & the issue list obviously need further refinement ,
50
+ before we discuss it with mseb .
51
+ looking forward to your comments on both the issue list as well as the tariff
52
+ computation .
53
+ regards ,
54
+ rajesh s
ham/0060.1999-12-26.kaminski.ham.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: research intelligence
2
+ stinson ,
3
+ please , take a look at this memo and forward with changes , if any , to ross
4
+ prevat .
5
+ enron corp . research group publishes weekly newsletter , " research
6
+ intelligence , " available to the internal users on the intranet , at the
7
+ following location : xxx . xxx . xxx . this site contains not only the new issues
8
+ of the newsletter as they become available , but also the archived copies of
9
+ the previous editions .
10
+ each issue of " research intelligence " contains a regular feature called
11
+ technical corner which is devoted to discussion of various quantitative
12
+ techniques that can be applied across different business units of enron .
13
+ i am sending you a binder with the archive copies of the technical corner
14
+ articles . please , review these articles and let us know whether some of the
15
+ techniques discussed in them could find application in your area . we shall be
16
+ glad to use our technical expertise to support your business .
17
+ binders would go to skilling , sutton , hannon , baxter , delainey , bowen , w .
18
+ curry , buy , bowen , overdyke , whalley , shankman , pai , etc . this is a partial
19
+ list . i think we should ask the head of each unit to make recommendations .
20
+ thanks .
21
+ vince
ham/0062.1999-12-27.kaminski.ham.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Subject: natural gas production
2
+ vince -
3
+ i spoke with roy kass of the energy information agency this morning . apart
4
+ from clarifying the timeliness , or lack thereof , of the published
5
+ state - specific wellhead production estimates , he indicates their scientists
6
+ find severe weather in the fields ( freezes , hurricanes ) to be a far more
7
+ significant issue in production , and in wellhead prices , than is severe
8
+ weather in the northeast , for instance . also , he agrees with you as to there
9
+ being strictly increasing marginal costs in production , there being a rich
10
+ texture of wells in terms of their efficiency , technologies , maintenance and
11
+ investment issues .
12
+ clayton