SlideShare a Scribd company logo
1 of 47
Download to read offline
ALLOTROPE PARTNERS:
IEOR115 TEAM 4 FINAL PRESENTATION
Andrea Kwan Farzad Kargaran Tanya Lee Austin Lien Nona Penner Philip Su Brad Windsor Yun Zhuang Yirong Fan
THE CLIENT
ALLOTROPE PARTNERS.a specialized merchant bank.
supports sustainable energy
finances projects around the world
invests in companies & technologies
EER DIAGRAM & RELATIONAL SCHEMA
1) REGION(RgnID, Name, Population, Political_Environment, Climate, Energy_Source,
Electricity_Cost_Per_MW)
2) COUNTRY (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population,
GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level)
3) POLICY (PolID, Tax Impact, Purpose, Branch_of_Govt, Date_Proposed, Date_in_Effect,
Region)
a) Environmental_Regulation (PolID3)
b) Tariff_Incentives (PolID3, Incentive_Category, Length_of_Contract)
c) Other (PolID3)
4) INVESTMENT (IID, Amount, Date, Stage, Time Frame, Status, Predicted_MW_Output,
Predicted_Cost_Per_MW, Return)
a) Hard_Asset_Project(IID4, Name, Start_Date, Finish_Date)
b) Startup_Company(IID4, Age)
5) FUND (FundID, Amount, Date_In, Date_Out)
6) COMPANY (EIN, Name)
7) PERSON (SSN, Name, Email, Position)
a) Representative (SSN7, Company6)
b) Private_Investor (SSN7)
c) Allotrope_Employee (SSN7)
d) Journalist (SSN7)
e) Advisor(SSN7)
8) TECHNOLOGY(TID, Name)
9) INDUSTRY (IndID, Name)
10)RESEARCH (RID, Summary, Comments, Date)
a) News_article(RID10,URL)
b) Conversation(RID10)
11)SIGNIFICANCE_LEVEL (SLID, RID10, TID8, SSN7c, Score, date_of_input)
12)CASH_FLOW (CFID, IID4, CFYear, IRR, F_cash1, F_cash2)
a) Inflow (CFID, InflowID, Total_Inflow, Terminal_Value)
b) (CFID, OutflowID, Initial_Investment, Operating_Cost, Tax_Expense, Interest_Expense)



13)PERSON_LIVES_IN_REGION (RgnID1, SSN7)
14)TECHNOLOGY_RELATES_TO_RESEARCH(TID8, RID10)
15)COUNTRY_HAS_POLICY(Country_Code2, PolicyID3, Discount_Rate)
16)COUNTRY_RELATES_TO_RESEARCH (Country_Code2, RID10)
17)PERSON_HAS_CONVERSATION (SSN7, RID10b)
18)PERSON_HAS_EXPERTISE_IN_INDUSTRY (SSN7, IndID9)
19)PERSON_HAS_EXPERTISE_IN_TECHNOLOGY (SSN7, IndID9)
20)PERSON_WORKS_WITH_INVESTMENT (SSN7, IID4)
21)INVESTMENT_INVOLVES_TECHNOLOGY(IID4, TID8)
22)INDUSTRY_HAS_INVESTMENT (IndID9, IID4)
23)COUNTRY_HAS_INVESTMENT (Country_Code2,IID4)
24)RESEARCH_RELATES_TO_INDUSTRY (RID10,IID4)
25)RESEARCH_RELATES_TO_POLICY (RID10, PolID3)
26)JOURNALIST_WRITES_NEWS_ARTICLE(SSN7d, RID10a)
27)ADVISOR_ADVISES_EMPLOYEES(SSN7e, SSN7c)
28)EMPLOYEE_COLLECTS_RESEARCH (SSN7c,RID10)
29)EMPLOYEE_CONTACTS_REPRESENTATIVES (SSN7a, SSN7c)
30)EMPLOYEE_CONTACTS_PRIVATE_INVESTOR (SSN7b, SSN7c)
31)COMPANY_INVESTS_CAPCONTRIBUTION (EIN6, ContributionID34, Private_investor7b)
32)PRIVATE_INVESTOR_INVESTS_CAPCONTRIBUTION (EIN6, ContributionID34,
Private_investor7b)
33)CAPCONTRIBUTION_GOES_INTO_FUND (ContributionID34, Private_investor7b, FundID5,
Date, Amount)
34)FUND_INVESTS_IN_INVESTMENT (FundID5, IID4)
35)COMPANY_OWNS_HARD_ASSET_PROJECT(EIN6, IID4a)
36)CAPCONTRIBUTION (ContributionID, Private_investor7b, Amount, Date)
37)RESEARCH_HAS_SIGNIFICANCE LEVEL (RID10, SLID11)
38)ALLOTROPE_EMPLOYEE_ASSIGNS_SIGNIFICANCE_LEVEL (SLID11, SSN7c)
39)COMPANY_IS_IN_REGION (EIN6, RgnID1)
QUERIES
QUERY 1
Capital Budgeting for Projects
QUERY 2
Tracking Important Technologies
QUERY 3
Identifying Important Research
QUERY 4
Analyzing Policy Effects on Projects
QUERY 5
Identifying Promising Regions
(3) rank projects by IRR
CAPITAL
BUDGETING
QUERY 1
(1) export cash flows
(2) calculate IRR
QUERY 1: Capital Budgeting
SELECT
	 C.IID,
	 C.Year,
	 I.Total_Inflow+O.Total_Outflow AS Net_Flow
	 IVT.Amount as Initial_Investment
!
FROM
	 Cash Flow AS C,
	 Inflow AS I,
	 Outflow AS O,
	 Investment AS IVT
!
WHERE C.CFID=I.CFID AND
	 	 C.CFID=O.CFID AND
	 	 C.CFYear>2014;
(1) export cash flows
QUERY 1: Capital Budgeting
(2) calculate IRR
(3) rank projects by IRR
TRACKING
IMPORTANT
TECHNOLOGIES
QUERY 2
(1) find avg significance level
(2) find frequency
(3) measure how recent it was mentioned
(4) measure total size of investments
(5) put (1)-(4) in a table
(6) generate final score
(7) rank each technology
(1) find avg significance level
QUERY 2: Tracking Important Technologies
SELECT
	 distinct SL.TID,
	 avg(SL.Score)
!
FROM Significance_level as SL
!
GROUP BY SL.TID
!
ORDER BY avg(SL.Score) DESC;
(2) find frequency
QUERY 2: Tracking Important Technologies
SELECT
	 distinct SL.TID,
	 count(SL.RID)
!
FROM Significance_level as SL
!
GROUP BY SL.TID
!
ORDER BY count(SL.Score) DESC;
(3) measure how recent it was mentioned
QUERY 2: Tracking Important Technologies
SELECT
	 distinct SL.TID,
	 sum(r.rdate-date())
!
FROM
	 Significance_level as SL,
	 Research as R
!
WHERE R.RID=SL.RID
!
GROUP BY SL.TID
!
ORDER BY sum(r.rdate-date())DESC;
Note: “date()” is going to be updated based on the date the query is run.
(4) measure total size of investments
QUERY 2: Tracking Important Technologies
SELECT
	 distinct IT.TID,
	 sum(I.amount)
!
FROM
	 Investment as I,
	 Investment_involves_technology as IT
!
WHERE I.IID=IT.IID
!
GROUP BY IT.TID
!
ORDER BY sum(I.amount)DESC;
QUERY 2: Tracking Important Technologies
(5) put (1)-(4) in a table
(6) generate final score
(7) rank each technology
QUERY 2: Tracking Important Technologies
(6) generate final score
(7) rank each technology
QUERY 2: Tracking Important Technologies
Overall Scores
Solar
Geothermal
Biofuel
Hydrothermal
Nuclear
0 7.5 15 22.5 30
0
11.6
8
8.8
21.5
IDENTIFYING
FACTORS
IMPACTING
PROJECT
PROFITABILITY
QUERY 3
(1) retrieve cash flow, policy score,
technology score, and GDP
(2) multilinear regression analysis
(3) graphical representation in MATLAB
QUERY 3: Identifying Key Factors in Project Profitability
(1) retrieve cash flow, policy score, technology score, and GDP
Calculating Average Policy Score
SELECT IHC.IID, P.PolID, (Avg(SL.Score)+Count(SL.RID)) AS PolicyScore
FROM Significance_level AS SL, Research AS R, Policy AS P, Policy_Relates_to_Research AS PR, Investment_Has_Country AS IHC,
Country_Has_Policy AS CHP
WHERE ((([PR].[PolID])=[PR].[PolID]) AND PR.RID = R.RID AND R.RID = SL.RID AND ((R.RID)=[SL].[RID] AND
IHC.Country_Code=CHP.Country_Code))
GROUP BY P.PolID, IHC.IID;
!
SELECT A.IID, avg(A.PolicyScore) AS AVGPolicyScore
FROM Query2_Policy AS A
GROUP BY A.IID;
!
Retrieving GDP
SELECT IHC.IID, C.GDP
FROM Investment_Has_Country AS IHC, Country AS C
WHERE IHC.Country_Code=C.Country_Code;
!
Retrieving Tech_Score
SELECT IIT.IID, Q2.score
FROM Investment_Involves_Technology AS IIT, Query2 AS Q2
WHERE IIT.TID=Q2.TID;
!
Exporting Cash Flow, Tech_Score, Policy_Score, GDP
SELECT DISTINCT Query3_Final.IID, Cash_Flow.Amount, Query3_AVGPolicyScore.*, Query3_Final.GDP, Query3_Final.TechScore
FROM Query3_AVGPolicyScore INNER JOIN (Cash_Flow INNER JOIN Query3_Final ON Cash_Flow.IID = Query3_Final.IID) ON
Query3_AVGPolicyScore.IID = Query3_Final.IID
WHERE Cash_Flow.CFYear=2014;
QUERY 3: Identifying Key Factors in Project Profitability
(1) retrieve cash flow, policy score, technology score, and GDP
(2) multilinear regression analysis
QUERY 3: Identifying Key Factors in Project Profitability
CashFlow = a*PolyScore + b*TechScore + c*GDP + k
(2) multilinear regression analysis
QUERY 3: Identifying Key Factors in Project Profitability
CashFlow = a*PolyScore + b*TechScore + c*GDP + k
(3) graphical representation in MATLAB
QUERY 3: Identifying Key Factors in Project Profitability
CashFlow = a*PolyScore + b*TechScore + c*GDP + k
ANALYZING
POLICY EFFECTS
ON PROJECTS
QUERY 4
(1) extract cash flow and cost of capital of

comparable project over past years
(2) perform sensitivity analysis
(3) predict difference in IRR
(4) import into access as attribute of policy
(1) extract cash flow and cost of capital of comparable project over past years
QUERY 4: Analyzing Policy Effects on Projects
SELECT
	 DISTINCT inv.Amount AS Initial_Investment,
	 CF.CFyear,
	 o.Tax_Expense,
	 o.Operating_Cost,
	 o.Interest_Expense,
	 i.Total_inflow,
	 p.Tax_Impact
!
FROM
	 Outflow AS o,
	 Inflow AS i,
	 Policy AS p,
	 Country AS c,
	 Cash_Flow AS CF,
	 Investment AS inv,
	 Investment_Has_Country AS ihc
!
WHERE i.CFID = CF.CFID AND o.CFID = CF.CFID AND CF.IID = ihc.IID AND ihc.Country_Code
= c.Country_Code AND CF.IID = 3 AND p.PolID=1 AND inv.IID = CF.IID;
QUERY 4: Analyzing Policy Effects on Projects
(1) extract cash flow and cost of capital of comparable project over past years
QUERY 4: Analyzing Policy Effects on Projects
(2) perform sensitivity analysis
(3) predict difference in IRR
IDENTIFYING
PROMISING
REGIONS
QUERY 5
(2) evaluate region by investment potential
(1) define pscore
(3) visualize results by plotting pscore on a 

heat map
QUERY 5: Identifying Promising Regions
(1) identify pscore
Pscore = (Electricity cost per kWh)∗[(# of investments)+(# of research articles)]
Higher electricity cost → more
demand for sustainable energy
More investments → higher level of
activity, more potential investors
Another indicator of activity
(2) evaluate region by investment potential
QUERY 5: Identifying Promising Regions
Investment Potential = 2014_Pscore / 2013_Pscore + (# of possible investors)
Increasing trend of activity?
Can projects be readily funded?
(2) evaluate region by investment potential
QUERY 5: Identifying Promising Regions
SELECT	
  rgn.NName,	
  A.PScore/B.PScore	
  +	
  C.NumberInvestors	
  AS	
  InvestmentPoten:al	
  
!
FROM	
  	
  
(SELECT	
  rgn.RgnID,	
  rgn.Electricity_Cost_Per_kWh	
  *	
  (COUNT(i.IID)	
  +	
  COUNT(r.RID)	
  )	
  AS	
  
PScore	
  FROM	
  Investment	
  AS	
  i,	
  Research	
  AS	
  r,	
  Region	
  AS	
  rgn,	
  Country	
  AS	
  cs,	
  
Country_Relates_to_Research	
  AS	
  crr	
  WHERE	
  YEAR(r.Ar:cle_Date)	
  =	
  '2014'	
  AND	
  crr.RID	
  
=	
  r.RID	
  AND	
  crr.Country_Code	
  =	
  cs.Country_Code	
  AND	
  cs.Part_of_RegionID	
  =	
  
rgn.RgnID	
  	
  AND	
  r.Ar:cle_Date	
  <=Date()	
  AND	
  r.Ar:cle_Date	
  >=	
  DateAdd("d",	
  -­‐30,	
  
Date())	
  GROUP	
  BY	
  rgn.RgnID,	
  rgn.NName,	
  rgn.Electricity_Cost_Per_kWh)	
  	
  AS	
  A,	
  	
  
!
(SELECT	
  rgn.RgnID,	
  rgn.Electricity_Cost_Per_kWh	
  *	
  (COUNT(i.IID)	
  +	
  COUNT(r.RID)	
  )	
  AS	
  
PScore	
  FROM	
  Investment	
  AS	
  i,	
  Research	
  AS	
  r,	
  Region	
  AS	
  rgn,	
  Country	
  AS	
  cs,	
  
Country_Relates_to_Research	
  AS	
  crr	
  WHERE	
  YEAR(r.Ar:cle_Date)	
  =	
  '2014'	
  AND	
  crr.RID	
  
=	
  r.RID	
  AND	
  crr.Country_Code	
  =	
  cs.Country_Code	
  AND	
  cs.Part_of_RegionID	
  =	
  
rgn.RgnID	
  	
  AND	
  r.Ar:cle_Date	
  <=Date()	
  AND	
  r.Ar:cle_Date	
  >=	
  DateAdd("yyyy",	
  -­‐1,	
  
Date())	
  GROUP	
  BY	
  rgn.RgnID,	
  rgn.NName,	
  rgn.Electricity_Cost_Per_kWh)	
  	
  AS	
  B,	
  
!
(SELECT	
  r.RgnID,	
  COUNT(pr.SSN)	
  AS	
  NumberInvestors	
  
FROM	
  Region	
  AS	
  r,	
  Person_Lives_In_Region	
  AS	
  pr,	
  Company	
  AS	
  c,	
  Private_Investor	
  AS	
  
pi	
  
WHERE	
  pr.RgnID	
  =	
  r.RgnID	
  AND	
  pr.SSN	
  =	
  pi.SSN	
  AND	
  c.RgnID	
  =	
  r.RgnID	
  
GROUP	
  BY	
  r.RgnID,	
  r.NName)	
  AS	
  C,	
  
!
Region	
  rgn	
  
!
WHERE	
  A.RgnID	
  =	
  B.RgnID	
  AND	
  rgn.RgnID	
  =	
  A.RgnID	
  AND	
  C.RgnID	
  =	
  A.RgnID	
  
GROUP	
  BY	
  A.PScore,	
  B.PScore,	
  rgn.NName,	
  C.NumberInvestors;	
  
Table generated
with 2014 Pscore
Table generated
with 2013 Pscore
Possible Investors
Group entities by
region
(3) visualize results by plotting investment potential on a heat map
QUERY 5: Identifying Promising Regions
GPS Visualizer
form-based entry
password-protected financial dataEXTRA FEATURES
issue
Each research tuple requires data
related to 10 tables:
• “Research” table
• 5 related tables (other entities)
• 4 joining tables (relationships)
solution
Use two queries to produce a subform
capable of updating the related and join
tables
DATA UTILITY: FORM-BASED ENTRY
QUERY 1: Provide Subform With Appropriate Linking Data to the Research Article
being entered
!
SELECT Research_Relates_To_Industry.RID, Research_Relates_To_Industry.IndID,
Industry.IName
!
FROM Industry INNER JOIN (Research INNER JOIN Research_Relates_To_Industry ON
Research.RID = Research_Relates_To_Industry.RID) ON Industry.IndID =
Research_Relates_To_Industry.IndID;
QUERY 2: Populate Dropdown Menu
!
SELECT Industry.IndID, Industry.IName
FROM Industry;
DATA UTILITY: FORM-BASED ENTRY
DATA UTILITY: FORM-BASED ENTRY
PASSWORD-PROTECTED FINANCIAL DATA
NORMALIZATION ANALYSIS
DECOMPOSING TO 1NF
Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population,
GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level, State)
!
Research (RID, Summary, Comment, Date)
multivalued attributes
Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population,
GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level)

Research (RID, Summary, Date)

Research_Comments (RID, Comment)
attribute(s) not fully dependent on composite key
Country_Has_Policy (Country_Code2, PolicyID3, Discount_Rate)
DECOMPOSING TO 2NF
Country_Has_Policy (Country_Code2, PolicyID3, Discount_Rate, CountryName)
Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population,
Primary_Energy_Source, President, Interest_Level)


GDP_Per_Capita_Values (Country_Code, GDP_Per_Capita)
DECOMPOSING TO 3NF
Country (Country_Code, Name, Govt_Type, Area, GDP, RgnID1, Population,
GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level)
Allotrope_Employee (SSN7, Location)
Login (Login, Location)
DECOMPOSING TO BCNF
Allotrope_Employee (SSN7, Location, Login)
Assumption: One person can work in multiple locations
SSN Location Login
123456789 San Francisco Bob
123456789 Los Angeles Bob
234567890 San Francisco Ethan
345678901 Jakarta Philip
MANY THANKS TO…
Bob Hambrecht
Ethan Ravage
Ken Goldberg
Animesh Garg

More Related Content

Viewers also liked

Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...
Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...
Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...OSTHUS
 
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015OSTHUS
 
Best Practice Reference Architecture for Data Curation
Best Practice Reference Architecture for Data CurationBest Practice Reference Architecture for Data Curation
Best Practice Reference Architecture for Data CurationOSTHUS
 
Reasoning over big data
Reasoning over big dataReasoning over big data
Reasoning over big dataOSTHUS
 
5th Forum on Laboratory Informatics
5th Forum on Laboratory Informatics5th Forum on Laboratory Informatics
5th Forum on Laboratory InformaticsAbby Lombardi
 
Why paperless lab is just the first step towards a smart lab
Why paperless lab is just the first step towards a smart labWhy paperless lab is just the first step towards a smart lab
Why paperless lab is just the first step towards a smart labOSTHUS
 
Allotrope foundation vanderwall_and_little_bio_it_world_2016
Allotrope foundation vanderwall_and_little_bio_it_world_2016Allotrope foundation vanderwall_and_little_bio_it_world_2016
Allotrope foundation vanderwall_and_little_bio_it_world_2016OSTHUS
 
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...OSTHUS
 
Pistoia Alliance USA Conference 2016
Pistoia Alliance USA Conference 2016Pistoia Alliance USA Conference 2016
Pistoia Alliance USA Conference 2016Pistoia Alliance
 
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...Pistoia Alliance
 

Viewers also liked (10)

Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...
Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...
Semantics for Integrated Analytical Laboratory Processes – the Allotrope Pers...
 
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015
OSTHUS-Allotrope presents "Laboratory Informatics Strategy" at SmartLab 2015
 
Best Practice Reference Architecture for Data Curation
Best Practice Reference Architecture for Data CurationBest Practice Reference Architecture for Data Curation
Best Practice Reference Architecture for Data Curation
 
Reasoning over big data
Reasoning over big dataReasoning over big data
Reasoning over big data
 
5th Forum on Laboratory Informatics
5th Forum on Laboratory Informatics5th Forum on Laboratory Informatics
5th Forum on Laboratory Informatics
 
Why paperless lab is just the first step towards a smart lab
Why paperless lab is just the first step towards a smart labWhy paperless lab is just the first step towards a smart lab
Why paperless lab is just the first step towards a smart lab
 
Allotrope foundation vanderwall_and_little_bio_it_world_2016
Allotrope foundation vanderwall_and_little_bio_it_world_2016Allotrope foundation vanderwall_and_little_bio_it_world_2016
Allotrope foundation vanderwall_and_little_bio_it_world_2016
 
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...
Demystifying Semantics:Practical Utilization of Semantic Technologies for Rea...
 
Pistoia Alliance USA Conference 2016
Pistoia Alliance USA Conference 2016Pistoia Alliance USA Conference 2016
Pistoia Alliance USA Conference 2016
 
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...
Pistoia Alliance Debates: IDMP: It’s all about the patient: enhancing patient...
 

Similar to Prototype Database for Allotrope Partners

Cross Border VC Syndication. Tibet Presentation
Cross Border VC Syndication. Tibet PresentationCross Border VC Syndication. Tibet Presentation
Cross Border VC Syndication. Tibet PresentationDaniel S. Hain
 
Chapter 7 ror analysis for a single alternative
Chapter 7   ror analysis for a single alternativeChapter 7   ror analysis for a single alternative
Chapter 7 ror analysis for a single alternativeBich Lien Pham
 
Chapter 7 ror analysis for a single alternative
Chapter 7   ror analysis for a single alternativeChapter 7   ror analysis for a single alternative
Chapter 7 ror analysis for a single alternativeBich Lien Pham
 
A Study on Capital Budgeting at Bharathi Cement Ltd
A Study on Capital Budgeting at Bharathi Cement LtdA Study on Capital Budgeting at Bharathi Cement Ltd
A Study on Capital Budgeting at Bharathi Cement Ltdijtsrd
 
[Econ4354] MNC RnD Impacts
[Econ4354] MNC RnD Impacts[Econ4354] MNC RnD Impacts
[Econ4354] MNC RnD Impactshwangja
 
Trc investor presentation final
Trc investor presentation finalTrc investor presentation final
Trc investor presentation finaltrcsolutions
 
Capital Budgeting in Local Government Bodies in India
Capital Budgeting in Local Government Bodies in IndiaCapital Budgeting in Local Government Bodies in India
Capital Budgeting in Local Government Bodies in Indiaijtsrd
 
Feasibility study on Ceiling fan Manufacturing Plant.
Feasibility study on  Ceiling fan Manufacturing Plant.Feasibility study on  Ceiling fan Manufacturing Plant.
Feasibility study on Ceiling fan Manufacturing Plant.Md Ali
 
Cf%20 Capital%20 Budgeting%206
Cf%20 Capital%20 Budgeting%206Cf%20 Capital%20 Budgeting%206
Cf%20 Capital%20 Budgeting%206rajeevgupta
 
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...IndexBox Marketing
 
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...IndexBox Marketing
 
Tracxn - Geo Monthly - Japan Tech - Jan 2022
Tracxn - Geo Monthly - Japan Tech - Jan 2022Tracxn - Geo Monthly - Japan Tech - Jan 2022
Tracxn - Geo Monthly - Japan Tech - Jan 2022Tracxn
 
convadium_economic_study
convadium_economic_studyconvadium_economic_study
convadium_economic_studyKatelyn Allende
 
Air Cooled Condenser Market.pdf
Air Cooled Condenser Market.pdfAir Cooled Condenser Market.pdf
Air Cooled Condenser Market.pdfsagarsingh443888
 
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...SlideTeam
 
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...UNDP Climate
 
BUILDING ECONOMICS in construction indus
BUILDING ECONOMICS in construction indusBUILDING ECONOMICS in construction indus
BUILDING ECONOMICS in construction indusJacquesTwubahimana1
 

Similar to Prototype Database for Allotrope Partners (20)

Cross Border VC Syndication. Tibet Presentation
Cross Border VC Syndication. Tibet PresentationCross Border VC Syndication. Tibet Presentation
Cross Border VC Syndication. Tibet Presentation
 
Chapter 7 ror analysis for a single alternative
Chapter 7   ror analysis for a single alternativeChapter 7   ror analysis for a single alternative
Chapter 7 ror analysis for a single alternative
 
Chapter 7 ror analysis for a single alternative
Chapter 7   ror analysis for a single alternativeChapter 7   ror analysis for a single alternative
Chapter 7 ror analysis for a single alternative
 
A Study on Capital Budgeting at Bharathi Cement Ltd
A Study on Capital Budgeting at Bharathi Cement LtdA Study on Capital Budgeting at Bharathi Cement Ltd
A Study on Capital Budgeting at Bharathi Cement Ltd
 
[Econ4354] MNC RnD Impacts
[Econ4354] MNC RnD Impacts[Econ4354] MNC RnD Impacts
[Econ4354] MNC RnD Impacts
 
Trc investor presentation final
Trc investor presentation finalTrc investor presentation final
Trc investor presentation final
 
Capital Budgeting in Local Government Bodies in India
Capital Budgeting in Local Government Bodies in IndiaCapital Budgeting in Local Government Bodies in India
Capital Budgeting in Local Government Bodies in India
 
FDI Article
FDI ArticleFDI Article
FDI Article
 
Feasibility study on Ceiling fan Manufacturing Plant.
Feasibility study on  Ceiling fan Manufacturing Plant.Feasibility study on  Ceiling fan Manufacturing Plant.
Feasibility study on Ceiling fan Manufacturing Plant.
 
Cf%20 Capital%20 Budgeting%206
Cf%20 Capital%20 Budgeting%206Cf%20 Capital%20 Budgeting%206
Cf%20 Capital%20 Budgeting%206
 
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
 
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
U.S. Fan, Blower And Air Purification Equipment (Industrial And Commercial) M...
 
Tracxn - Geo Monthly - Japan Tech - Jan 2022
Tracxn - Geo Monthly - Japan Tech - Jan 2022Tracxn - Geo Monthly - Japan Tech - Jan 2022
Tracxn - Geo Monthly - Japan Tech - Jan 2022
 
convadium_economic_study
convadium_economic_studyconvadium_economic_study
convadium_economic_study
 
CCP_SEC6_Economic Analysis Statistics and Probability and Risk
CCP_SEC6_Economic Analysis Statistics and Probability and RiskCCP_SEC6_Economic Analysis Statistics and Probability and Risk
CCP_SEC6_Economic Analysis Statistics and Probability and Risk
 
Air Cooled Condenser Market.pdf
Air Cooled Condenser Market.pdfAir Cooled Condenser Market.pdf
Air Cooled Condenser Market.pdf
 
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...
Stock Pitch For Satellite Based Solutions PowerPoint Presentation Ppt Slide T...
 
project risk analysis
project risk analysisproject risk analysis
project risk analysis
 
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...
Thailand UNDP-GIZ workshop on CBA - Enhancing resilience in Thailand through ...
 
BUILDING ECONOMICS in construction indus
BUILDING ECONOMICS in construction indusBUILDING ECONOMICS in construction indus
BUILDING ECONOMICS in construction indus
 

Recently uploaded

TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024
TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024
TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024Fikrie Omar
 
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...soniya singh
 
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...gurkirankumar98700
 
Viet Nam Inclusive Business Accreditation System
Viet Nam Inclusive Business Accreditation SystemViet Nam Inclusive Business Accreditation System
Viet Nam Inclusive Business Accreditation SystemTri Dung, Tran
 
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...LHelferty
 
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girl
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girlDelhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girl
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girlsoniya singh
 
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan
 
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证0622mpom
 
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCRsoniya singh
 
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7dollysharma2066
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...aditipandeya
 
Product Catalog Bandung Home Decor Design Furniture
Product Catalog Bandung Home Decor Design FurnitureProduct Catalog Bandung Home Decor Design Furniture
Product Catalog Bandung Home Decor Design Furniturem3resolve
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...aditipandeya
 
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝soniya singh
 
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCRsoniya singh
 

Recently uploaded (20)

TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024
TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024
TDC Health Limited Nigeria Business Plan Opportunity Presentation 2024
 
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon Rajiv Chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
 
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...
High Profile Call Girls in Lucknow | Whatsapp No 🧑🏼‍❤️‍💋‍🧑🏽 8923113531 𓀇 VIP ...
 
Viet Nam Inclusive Business Accreditation System
Viet Nam Inclusive Business Accreditation SystemViet Nam Inclusive Business Accreditation System
Viet Nam Inclusive Business Accreditation System
 
Pakistani Jumeirah Call Girls # +971559085003 # Pakistani Call Girls In Jumei...
Pakistani Jumeirah Call Girls # +971559085003 # Pakistani Call Girls In Jumei...Pakistani Jumeirah Call Girls # +971559085003 # Pakistani Call Girls In Jumei...
Pakistani Jumeirah Call Girls # +971559085003 # Pakistani Call Girls In Jumei...
 
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...
Report about the AHIABGA-UnityNet UNDRIPDay / Earth-Day 2024 Gathering in Mar...
 
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girl
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girlDelhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girl
Delhi Munirka 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex call girl
 
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
 
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证
办昆士兰大学UQ毕业证书/成绩单GPA修改 - 留学买假毕业证
 
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Siri Fort 🔝 Delhi NCR
 
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7
Call Girls At-( Nearby )-Bhikaji Cama Place, Delhi | ⑧③77⓿⑧76⓿7
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Secunderabad high-profile Cal...
 
Product Catalog Bandung Home Decor Design Furniture
Product Catalog Bandung Home Decor Design FurnitureProduct Catalog Bandung Home Decor Design Furniture
Product Catalog Bandung Home Decor Design Furniture
 
Cheap Rate ➥8448380779 ▻Call Girls In Sector 55 Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Sector 55 GurgaonCheap Rate ➥8448380779 ▻Call Girls In Sector 55 Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Sector 55 Gurgaon
 
Hot Sexy call girls in Rajouri Garden🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rajouri Garden🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rajouri Garden🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rajouri Garden🔝 9953056974 🔝 Delhi escort Service
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Gachibowli high-profile Call ...
 
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Bawana Delhi reach out to us at 🔝8264348440🔝
 
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Khanpur 🔝 Delhi NCR
 
Cheap Rate ➥8448380779 ▻Call Girls In Sector 54 Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Sector 54 GurgaonCheap Rate ➥8448380779 ▻Call Girls In Sector 54 Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Sector 54 Gurgaon
 
🔝9953056974🔝!!-YOUNG BOOK model Call Girls In New friends colony Delhi Escort...
🔝9953056974🔝!!-YOUNG BOOK model Call Girls In New friends colony Delhi Escort...🔝9953056974🔝!!-YOUNG BOOK model Call Girls In New friends colony Delhi Escort...
🔝9953056974🔝!!-YOUNG BOOK model Call Girls In New friends colony Delhi Escort...
 

Prototype Database for Allotrope Partners

  • 1. ALLOTROPE PARTNERS: IEOR115 TEAM 4 FINAL PRESENTATION Andrea Kwan Farzad Kargaran Tanya Lee Austin Lien Nona Penner Philip Su Brad Windsor Yun Zhuang Yirong Fan
  • 3. ALLOTROPE PARTNERS.a specialized merchant bank. supports sustainable energy finances projects around the world invests in companies & technologies
  • 4. EER DIAGRAM & RELATIONAL SCHEMA
  • 5.
  • 6. 1) REGION(RgnID, Name, Population, Political_Environment, Climate, Energy_Source, Electricity_Cost_Per_MW) 2) COUNTRY (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population, GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level) 3) POLICY (PolID, Tax Impact, Purpose, Branch_of_Govt, Date_Proposed, Date_in_Effect, Region) a) Environmental_Regulation (PolID3) b) Tariff_Incentives (PolID3, Incentive_Category, Length_of_Contract) c) Other (PolID3) 4) INVESTMENT (IID, Amount, Date, Stage, Time Frame, Status, Predicted_MW_Output, Predicted_Cost_Per_MW, Return) a) Hard_Asset_Project(IID4, Name, Start_Date, Finish_Date) b) Startup_Company(IID4, Age) 5) FUND (FundID, Amount, Date_In, Date_Out) 6) COMPANY (EIN, Name)
  • 7. 7) PERSON (SSN, Name, Email, Position) a) Representative (SSN7, Company6) b) Private_Investor (SSN7) c) Allotrope_Employee (SSN7) d) Journalist (SSN7) e) Advisor(SSN7) 8) TECHNOLOGY(TID, Name) 9) INDUSTRY (IndID, Name) 10)RESEARCH (RID, Summary, Comments, Date) a) News_article(RID10,URL) b) Conversation(RID10) 11)SIGNIFICANCE_LEVEL (SLID, RID10, TID8, SSN7c, Score, date_of_input) 12)CASH_FLOW (CFID, IID4, CFYear, IRR, F_cash1, F_cash2) a) Inflow (CFID, InflowID, Total_Inflow, Terminal_Value) b) (CFID, OutflowID, Initial_Investment, Operating_Cost, Tax_Expense, Interest_Expense)
 

  • 8. 13)PERSON_LIVES_IN_REGION (RgnID1, SSN7) 14)TECHNOLOGY_RELATES_TO_RESEARCH(TID8, RID10) 15)COUNTRY_HAS_POLICY(Country_Code2, PolicyID3, Discount_Rate) 16)COUNTRY_RELATES_TO_RESEARCH (Country_Code2, RID10) 17)PERSON_HAS_CONVERSATION (SSN7, RID10b) 18)PERSON_HAS_EXPERTISE_IN_INDUSTRY (SSN7, IndID9) 19)PERSON_HAS_EXPERTISE_IN_TECHNOLOGY (SSN7, IndID9) 20)PERSON_WORKS_WITH_INVESTMENT (SSN7, IID4) 21)INVESTMENT_INVOLVES_TECHNOLOGY(IID4, TID8) 22)INDUSTRY_HAS_INVESTMENT (IndID9, IID4) 23)COUNTRY_HAS_INVESTMENT (Country_Code2,IID4) 24)RESEARCH_RELATES_TO_INDUSTRY (RID10,IID4) 25)RESEARCH_RELATES_TO_POLICY (RID10, PolID3) 26)JOURNALIST_WRITES_NEWS_ARTICLE(SSN7d, RID10a)
  • 9. 27)ADVISOR_ADVISES_EMPLOYEES(SSN7e, SSN7c) 28)EMPLOYEE_COLLECTS_RESEARCH (SSN7c,RID10) 29)EMPLOYEE_CONTACTS_REPRESENTATIVES (SSN7a, SSN7c) 30)EMPLOYEE_CONTACTS_PRIVATE_INVESTOR (SSN7b, SSN7c) 31)COMPANY_INVESTS_CAPCONTRIBUTION (EIN6, ContributionID34, Private_investor7b) 32)PRIVATE_INVESTOR_INVESTS_CAPCONTRIBUTION (EIN6, ContributionID34, Private_investor7b) 33)CAPCONTRIBUTION_GOES_INTO_FUND (ContributionID34, Private_investor7b, FundID5, Date, Amount) 34)FUND_INVESTS_IN_INVESTMENT (FundID5, IID4) 35)COMPANY_OWNS_HARD_ASSET_PROJECT(EIN6, IID4a) 36)CAPCONTRIBUTION (ContributionID, Private_investor7b, Amount, Date) 37)RESEARCH_HAS_SIGNIFICANCE LEVEL (RID10, SLID11) 38)ALLOTROPE_EMPLOYEE_ASSIGNS_SIGNIFICANCE_LEVEL (SLID11, SSN7c) 39)COMPANY_IS_IN_REGION (EIN6, RgnID1)
  • 10. QUERIES QUERY 1 Capital Budgeting for Projects QUERY 2 Tracking Important Technologies QUERY 3 Identifying Important Research QUERY 4 Analyzing Policy Effects on Projects QUERY 5 Identifying Promising Regions
  • 11. (3) rank projects by IRR CAPITAL BUDGETING QUERY 1 (1) export cash flows (2) calculate IRR
  • 12. QUERY 1: Capital Budgeting SELECT C.IID, C.Year, I.Total_Inflow+O.Total_Outflow AS Net_Flow IVT.Amount as Initial_Investment ! FROM Cash Flow AS C, Inflow AS I, Outflow AS O, Investment AS IVT ! WHERE C.CFID=I.CFID AND C.CFID=O.CFID AND C.CFYear>2014; (1) export cash flows
  • 13. QUERY 1: Capital Budgeting (2) calculate IRR (3) rank projects by IRR
  • 14. TRACKING IMPORTANT TECHNOLOGIES QUERY 2 (1) find avg significance level (2) find frequency (3) measure how recent it was mentioned (4) measure total size of investments (5) put (1)-(4) in a table (6) generate final score (7) rank each technology
  • 15. (1) find avg significance level QUERY 2: Tracking Important Technologies SELECT distinct SL.TID, avg(SL.Score) ! FROM Significance_level as SL ! GROUP BY SL.TID ! ORDER BY avg(SL.Score) DESC;
  • 16. (2) find frequency QUERY 2: Tracking Important Technologies SELECT distinct SL.TID, count(SL.RID) ! FROM Significance_level as SL ! GROUP BY SL.TID ! ORDER BY count(SL.Score) DESC;
  • 17. (3) measure how recent it was mentioned QUERY 2: Tracking Important Technologies SELECT distinct SL.TID, sum(r.rdate-date()) ! FROM Significance_level as SL, Research as R ! WHERE R.RID=SL.RID ! GROUP BY SL.TID ! ORDER BY sum(r.rdate-date())DESC; Note: “date()” is going to be updated based on the date the query is run.
  • 18. (4) measure total size of investments QUERY 2: Tracking Important Technologies SELECT distinct IT.TID, sum(I.amount) ! FROM Investment as I, Investment_involves_technology as IT ! WHERE I.IID=IT.IID ! GROUP BY IT.TID ! ORDER BY sum(I.amount)DESC;
  • 19. QUERY 2: Tracking Important Technologies (5) put (1)-(4) in a table
  • 20. (6) generate final score (7) rank each technology QUERY 2: Tracking Important Technologies
  • 21. (6) generate final score (7) rank each technology QUERY 2: Tracking Important Technologies Overall Scores Solar Geothermal Biofuel Hydrothermal Nuclear 0 7.5 15 22.5 30 0 11.6 8 8.8 21.5
  • 22. IDENTIFYING FACTORS IMPACTING PROJECT PROFITABILITY QUERY 3 (1) retrieve cash flow, policy score, technology score, and GDP (2) multilinear regression analysis (3) graphical representation in MATLAB
  • 23. QUERY 3: Identifying Key Factors in Project Profitability (1) retrieve cash flow, policy score, technology score, and GDP Calculating Average Policy Score SELECT IHC.IID, P.PolID, (Avg(SL.Score)+Count(SL.RID)) AS PolicyScore FROM Significance_level AS SL, Research AS R, Policy AS P, Policy_Relates_to_Research AS PR, Investment_Has_Country AS IHC, Country_Has_Policy AS CHP WHERE ((([PR].[PolID])=[PR].[PolID]) AND PR.RID = R.RID AND R.RID = SL.RID AND ((R.RID)=[SL].[RID] AND IHC.Country_Code=CHP.Country_Code)) GROUP BY P.PolID, IHC.IID; ! SELECT A.IID, avg(A.PolicyScore) AS AVGPolicyScore FROM Query2_Policy AS A GROUP BY A.IID; ! Retrieving GDP SELECT IHC.IID, C.GDP FROM Investment_Has_Country AS IHC, Country AS C WHERE IHC.Country_Code=C.Country_Code; ! Retrieving Tech_Score SELECT IIT.IID, Q2.score FROM Investment_Involves_Technology AS IIT, Query2 AS Q2 WHERE IIT.TID=Q2.TID; ! Exporting Cash Flow, Tech_Score, Policy_Score, GDP SELECT DISTINCT Query3_Final.IID, Cash_Flow.Amount, Query3_AVGPolicyScore.*, Query3_Final.GDP, Query3_Final.TechScore FROM Query3_AVGPolicyScore INNER JOIN (Cash_Flow INNER JOIN Query3_Final ON Cash_Flow.IID = Query3_Final.IID) ON Query3_AVGPolicyScore.IID = Query3_Final.IID WHERE Cash_Flow.CFYear=2014;
  • 24. QUERY 3: Identifying Key Factors in Project Profitability (1) retrieve cash flow, policy score, technology score, and GDP
  • 25. (2) multilinear regression analysis QUERY 3: Identifying Key Factors in Project Profitability CashFlow = a*PolyScore + b*TechScore + c*GDP + k
  • 26. (2) multilinear regression analysis QUERY 3: Identifying Key Factors in Project Profitability CashFlow = a*PolyScore + b*TechScore + c*GDP + k
  • 27. (3) graphical representation in MATLAB QUERY 3: Identifying Key Factors in Project Profitability CashFlow = a*PolyScore + b*TechScore + c*GDP + k
  • 28. ANALYZING POLICY EFFECTS ON PROJECTS QUERY 4 (1) extract cash flow and cost of capital of
 comparable project over past years (2) perform sensitivity analysis (3) predict difference in IRR (4) import into access as attribute of policy
  • 29. (1) extract cash flow and cost of capital of comparable project over past years QUERY 4: Analyzing Policy Effects on Projects SELECT DISTINCT inv.Amount AS Initial_Investment, CF.CFyear, o.Tax_Expense, o.Operating_Cost, o.Interest_Expense, i.Total_inflow, p.Tax_Impact ! FROM Outflow AS o, Inflow AS i, Policy AS p, Country AS c, Cash_Flow AS CF, Investment AS inv, Investment_Has_Country AS ihc ! WHERE i.CFID = CF.CFID AND o.CFID = CF.CFID AND CF.IID = ihc.IID AND ihc.Country_Code = c.Country_Code AND CF.IID = 3 AND p.PolID=1 AND inv.IID = CF.IID;
  • 30. QUERY 4: Analyzing Policy Effects on Projects (1) extract cash flow and cost of capital of comparable project over past years
  • 31. QUERY 4: Analyzing Policy Effects on Projects (2) perform sensitivity analysis (3) predict difference in IRR
  • 32. IDENTIFYING PROMISING REGIONS QUERY 5 (2) evaluate region by investment potential (1) define pscore (3) visualize results by plotting pscore on a 
 heat map
  • 33. QUERY 5: Identifying Promising Regions (1) identify pscore Pscore = (Electricity cost per kWh)∗[(# of investments)+(# of research articles)] Higher electricity cost → more demand for sustainable energy More investments → higher level of activity, more potential investors Another indicator of activity
  • 34. (2) evaluate region by investment potential QUERY 5: Identifying Promising Regions Investment Potential = 2014_Pscore / 2013_Pscore + (# of possible investors) Increasing trend of activity? Can projects be readily funded?
  • 35. (2) evaluate region by investment potential QUERY 5: Identifying Promising Regions SELECT  rgn.NName,  A.PScore/B.PScore  +  C.NumberInvestors  AS  InvestmentPoten:al   ! FROM     (SELECT  rgn.RgnID,  rgn.Electricity_Cost_Per_kWh  *  (COUNT(i.IID)  +  COUNT(r.RID)  )  AS   PScore  FROM  Investment  AS  i,  Research  AS  r,  Region  AS  rgn,  Country  AS  cs,   Country_Relates_to_Research  AS  crr  WHERE  YEAR(r.Ar:cle_Date)  =  '2014'  AND  crr.RID   =  r.RID  AND  crr.Country_Code  =  cs.Country_Code  AND  cs.Part_of_RegionID  =   rgn.RgnID    AND  r.Ar:cle_Date  <=Date()  AND  r.Ar:cle_Date  >=  DateAdd("d",  -­‐30,   Date())  GROUP  BY  rgn.RgnID,  rgn.NName,  rgn.Electricity_Cost_Per_kWh)    AS  A,     ! (SELECT  rgn.RgnID,  rgn.Electricity_Cost_Per_kWh  *  (COUNT(i.IID)  +  COUNT(r.RID)  )  AS   PScore  FROM  Investment  AS  i,  Research  AS  r,  Region  AS  rgn,  Country  AS  cs,   Country_Relates_to_Research  AS  crr  WHERE  YEAR(r.Ar:cle_Date)  =  '2014'  AND  crr.RID   =  r.RID  AND  crr.Country_Code  =  cs.Country_Code  AND  cs.Part_of_RegionID  =   rgn.RgnID    AND  r.Ar:cle_Date  <=Date()  AND  r.Ar:cle_Date  >=  DateAdd("yyyy",  -­‐1,   Date())  GROUP  BY  rgn.RgnID,  rgn.NName,  rgn.Electricity_Cost_Per_kWh)    AS  B,   ! (SELECT  r.RgnID,  COUNT(pr.SSN)  AS  NumberInvestors   FROM  Region  AS  r,  Person_Lives_In_Region  AS  pr,  Company  AS  c,  Private_Investor  AS   pi   WHERE  pr.RgnID  =  r.RgnID  AND  pr.SSN  =  pi.SSN  AND  c.RgnID  =  r.RgnID   GROUP  BY  r.RgnID,  r.NName)  AS  C,   ! Region  rgn   ! WHERE  A.RgnID  =  B.RgnID  AND  rgn.RgnID  =  A.RgnID  AND  C.RgnID  =  A.RgnID   GROUP  BY  A.PScore,  B.PScore,  rgn.NName,  C.NumberInvestors;   Table generated with 2014 Pscore Table generated with 2013 Pscore Possible Investors Group entities by region
  • 36. (3) visualize results by plotting investment potential on a heat map QUERY 5: Identifying Promising Regions GPS Visualizer
  • 38. issue Each research tuple requires data related to 10 tables: • “Research” table • 5 related tables (other entities) • 4 joining tables (relationships) solution Use two queries to produce a subform capable of updating the related and join tables DATA UTILITY: FORM-BASED ENTRY
  • 39. QUERY 1: Provide Subform With Appropriate Linking Data to the Research Article being entered ! SELECT Research_Relates_To_Industry.RID, Research_Relates_To_Industry.IndID, Industry.IName ! FROM Industry INNER JOIN (Research INNER JOIN Research_Relates_To_Industry ON Research.RID = Research_Relates_To_Industry.RID) ON Industry.IndID = Research_Relates_To_Industry.IndID; QUERY 2: Populate Dropdown Menu ! SELECT Industry.IndID, Industry.IName FROM Industry; DATA UTILITY: FORM-BASED ENTRY
  • 43. DECOMPOSING TO 1NF Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population, GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level, State) ! Research (RID, Summary, Comment, Date) multivalued attributes Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population, GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level)
 Research (RID, Summary, Date)
 Research_Comments (RID, Comment)
  • 44. attribute(s) not fully dependent on composite key Country_Has_Policy (Country_Code2, PolicyID3, Discount_Rate) DECOMPOSING TO 2NF Country_Has_Policy (Country_Code2, PolicyID3, Discount_Rate, CountryName)
  • 45. Country (Country_Code, Name, Govt_Type, Area, GDP, Part_of_RegionID1, Population, Primary_Energy_Source, President, Interest_Level) 
 GDP_Per_Capita_Values (Country_Code, GDP_Per_Capita) DECOMPOSING TO 3NF Country (Country_Code, Name, Govt_Type, Area, GDP, RgnID1, Population, GDP_Per_Capita, Primary_Energy_Source, President, Interest_Level)
  • 46. Allotrope_Employee (SSN7, Location) Login (Login, Location) DECOMPOSING TO BCNF Allotrope_Employee (SSN7, Location, Login) Assumption: One person can work in multiple locations SSN Location Login 123456789 San Francisco Bob 123456789 Los Angeles Bob 234567890 San Francisco Ethan 345678901 Jakarta Philip
  • 47. MANY THANKS TO… Bob Hambrecht Ethan Ravage Ken Goldberg Animesh Garg