Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Druids

Closed Thread
 
LinkBack Thread Tools
Old 11/10/09, 6:41 AM   #2351
ninor
Piston Honda
 
ninor's Avatar
 
Tauren Druid
 
<nam>
Stormscale (EU)
Maybe this is just strategy differences, but I don't understand why people value AoE so highly on Anub hardmode. It's fairly simple to reach the raid AoE dps required for the trash, and I think it's much more important to reduce the length of p3 as much as possible? It just seems a lot more relevant to focus on our single target dps, and let the AoE part of the fight be more of an afterthought. I do maybe 5-6 hurricanes in total in that fight, and I wouldn't swap in 4T9 for that over 2T8.

Last edited by ninor : 11/10/09 at 8:56 AM.


Offline
Old 11/10/09, 8:41 AM   #2352
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Originally Posted by Arawethion View Post
Is Simcraft taking into account the shortened mean cycle length due to WiseEclipse when you have a higher Lunar crit rate?
Could you go into a little more detail here?

There are a couple Moonkin-related items I'd like to see investigated/fixed in SimC:
(1) Using SimC travel mechanics to properly model Wrath.
(2) The effects of lag and spell queuing for uber-hasted Wrath casts that drop below 1sec.


Offline
Old 11/10/09, 8:46 AM   #2353
thedopefishlives
Don Flamenco
 
Dwarf Paladin
 
Baelgun
Originally Posted by dedmonwakeen View Post
Could you go into a little more detail here?

There are a couple Moonkin-related items I'd like to see investigated/fixed in SimC:
(1) Using SimC travel mechanics to properly model Wrath.
(2) The effects of lag and spell queuing for uber-hasted Wrath casts that drop below 1sec.
Basically, what he's saying is that the common practice for most Moonkin (and what's mainly modeled in WC) is that you will cancel your Lunar Eclipse as the last Starfire cast is going off, in order to guarantee a transition into Solar Eclipse. It reduces the duration of Lunar Eclipse slightly, but causes the overall cycle to be shorter, which increases the relative uptime of both Eclipses in total. It appears that neither SimCraft nor Rawr models this effect.

United States Offline
Old 11/10/09, 8:47 AM   #2354
Poromu
Piston Honda
 
Night Elf Druid
 
Windrunner
Originally Posted by ninor View Post
Maybe this is just strategy differences, but I don't understand why people value AoE so highly on Anub. It's fairly simple to reach the raid AoE dps required for the trash, and I think it's much more important to reduce the length of p3 as much as possible? It just seems a lot more relevant to focus on our single target dps, and let the AoE part of the fight be more of an afterthought. I do maybe 5-6 hurricanes in total in that fight, and I wouldn't swap in 4T9 for that over 2T8.
I think you might be understating how adept we can be at AoE dps. Looking through WoL's, the majority of Moonkins are dedicated AoE dps on this fight with single target being an afterthought.

Of course this is a guild by guild basis, another thing that dictates how it goes is tanking strategies. 2 tanks pulling 2 adds seperately to slow the cast time is definately the more common strategy. However 4 adds stacked reduces the time spent AoE'ing a lot. I still don't see how you can only cast 5-6 Hurricanes in the fight. I cast 3 per add spawn. 4 per spawn in p3 typically.

We also use 7 healers, so that could dictate some differences, however I still can't see myself ever using 5-6 per fight.

Unless of course you mean normal mode, in which I don't think I have ever used Hurricane on.

Offline
Old 11/10/09, 9:06 AM   #2355
smallrabbit
Glass Joe
 
smallrabbit's Avatar
 
Worgen Druid
 
Eredar (EU)
In my guild there are some aoe-guys and the other ones are single-dps-guys ... and DKs and Mages are much more stronger in aoe than me, so sometimes i am single-dps too, and then i dont hurricane a lot too

Offline
Old 11/10/09, 9:28 AM   #2356
ninor
Piston Honda
 
ninor's Avatar
 
Tauren Druid
 
<nam>
Stormscale (EU)
It's of course hard mode, I don't think normal mode has been mentioned in this thread at all.

Guess it's mostly raid composition and strategy differences. In p1 we don't AoE the second spawn at all, and I rarely get off more than 2 hurricanes at most vs the first pack. Looking at WoL I see different strategies, some moonkins with hardly any hurricane damage at all and others with hurricane as their by far highest damage ability. I just don't think it's as clear cut that we should focus our gearing towards AoE as this thread might suggest. It really depends on your raid setup.


Offline
Old 11/10/09, 9:43 AM   #2357
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Originally Posted by thedopefishlives View Post
Basically, what he's saying is that the common practice for most Moonkin (and what's mainly modeled in WC) is that you will cancel your Lunar Eclipse as the last Starfire cast is going off, in order to guarantee a transition into Solar Eclipse. It reduces the duration of Lunar Eclipse slightly, but causes the overall cycle to be shorter, which increases the relative uptime of both Eclipses in total. It appears that neither SimCraft nor Rawr models this effect.
If you cancel the buff while Starfire is in mid-cast it does not benefit from the buff, correct?

Can I model this with a cancel_eclipse action?

actions+=...
actions+=/cancel_eclipse <= if starfire/lunar cast cannot finish before buff ends, just cancel it
actions+=/wrath,eclipse=trigger
actions+=/use_some_trinket
actions+=/starfire,eclipse=benefit
actions+=/wrath,eclipse=benefit
actions+=/starfire


Offline
Old 11/10/09, 10:33 AM   #2358
Erdluf
Great Tiger
 
Night Elf Druid
 
Echo Isles
Because of client/server timing issues, you can have a single Starfire

1) Benefit from Lunar Eclipse
2) Proc Solar Eclipse

WiseEclipse consistently does this by doing a /cancelaura as soon as the ?spell-complete? event occurs. CancelAura is not a protected part of the WoW API, so a mod can do this with no action your part.

In sc_druid.cpp, starfire_t::execute, you'd need to change

      if ( result == RESULT_CRIT )
      {
        ...
        if( ! p -> buffs_eclipse_lunar -> check() )
        {
          p -> buffs_eclipse_solar -> trigger();
        }
       }
to something like (new stuff is pseudo-code)

      if ( result == RESULT_CRIT )
      {
        ...
        if( !p -> buffs_eclipse_lunar -> check() ||
            p->wiseeclipse && starfire_t(p).cast_time() > p->buffs_eclipse_lunar->time_remaining())
        {
          p -> buffs_eclipse_solar -> trigger();
        }
       }
and with a similar change in wrath_t::execute().

As another twist, for lunar->solar, the reaction time check can typically be ignored. When I see that my SF is going to complete with < 1.5s or so remaining in Lunar, I know that Wise Eclipse will kick in, and I've got an almost 100% chance to proc solar. In this case I will go ahead and queue a Wrath while the SF is is still in progress.

United States Offline
Old 11/10/09, 10:55 AM   #2359
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Originally Posted by Erdluf View Post
As another twist, for lunar->solar, the reaction time check can typically be ignored. When I see that my SF is going to complete with < 1.5s or so remaining in Lunar, I know that Wise Eclipse will kick in, and I've got an almost 100% chance to proc solar. In this case I will go ahead and queue a Wrath while the SF is is still in progress.
This will be the harder thing to model. Normally, we use sim_t.reaction_time to delay a player's ability to react to a positive buff. For now, I'll probably simply remove the solar reaction-time check in wrath_t when wise_eclipse=1.


Offline
Old 11/10/09, 12:49 PM   #2360
qae
Piston Honda
 
Night Elf Druid
 
Kirin Tor (EU)
Anub 25 HM thoughts

I posted about talents and glyphs earlier in this thread, and well.. We are still working on downing him but I thought I could share some things.
Last WoL : World of Logs - Real Time Raid Analysis

Now I did some quick math with this logs and considering my numbers I have to admit that my previous statement about Genesis was incorrect. As you can see, the way my guild handle the fight, Dots+Hurricane(with 5/5 genesis and 0/2 Imp MF) do 40%~ of my dmg, when Starfire+Wrath(with 0/3 Imp IS) consistantly do 50%~.

Really quick(and basic) napkin math shows 0.5%dps increase per point on Imp IS, 0.4%dps increase per point on Genesis and 0.3%dps increase per point on Imp MF (2p T9 - and higher NG upgrade that I can't really put into numbers.. but it may be worth more than Genesis).
I know this is quite innacurate since the initial numbers I'm refering to are with 5/5 Genesis 0/2 Imp MF and 0/3 Imp IS, but it only would favor Genesis in the math. As you can see Genesis is inferior to Imp IS anyway, and at least on par with Imp MF.
So.. unless Hurricane is 40%+ of your damages you should use a standard spec with 2/2 Gale Wind, and no additional points in Genesis.

I was hoping to get some use out of this talent, but I was wrong, so please accept my apologies

Offline
Old 11/10/09, 1:01 PM   #2361
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Wise-Eclipse is implemented in revision r3748 of SimulationCraft.

Driven by our T9 BiS config it represents a 140dps increase. Now I feel guilty for not implementing it sooner.....

Erdluf, in regards to auto-queuing Wrath after a "wise-eclipsed" Starfire: If the crit rate for Starfire is over 80% I reset the reaction time of the Solar-Eclipse buff. This isn't perfect, but it is a decent start.

Packing up a new release now......

EDIT: simc-322-3 available for download. Toggle wise_eclipse=1|0 to experiment with/without. (on by default)

Last edited by dedmonwakeen : 11/10/09 at 1:25 PM.


Offline
Old 11/10/09, 6:42 PM   #2362
 Hamlet
<Druid Trainer> Emeritus
 
Hamlet's Avatar
 
Tauren Druid
 
Mal'Ganis
I'm still not as well-versed in SimCraft as I probably should be, but could someone see if that further boosts the advantage of 2T8 as we expected?

Links: Moonkin Resto WoWMath Twitter YouTube
Please don't PM requests for advice on UI or specific gear choices.

United States Online
Old 11/10/09, 8:12 PM   #2363
Starfox
King Hippo
 
Starfox's Avatar
 
Tauren Druid
 
Destromath (EU)
Originally Posted by Arawethion View Post
I'm still not as well-versed in SimCraft as I probably should be, but could someone see if that further boosts the advantage of 2T8 as we expected?
W/O wiseeclipse
SimulationCraft for World of Warcraft release 3.2.2 ( iterations=9999, max_time=300, optimal_raid=1, smooth_rng=0 )

DPS Ranking:
  18994 100.0%  Raid
   9521  50.1%  Druid_T9_58_00_13_2T8_2T9
   9489  49.9%  Druid_T9_58_00_13

Player: Druid_T9_58_00_13 night_elf druid balance 80
  DPS: 9488.9  Error=4.3  Range=856  DPR=30.1  RPS=315.5/313.0  (mana)
  Origin: http://profiler.wowhead.com/?profile=14187592
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1754|1282(1160)  intellect=1746|1329(1160)  spirit=752|549(380)  health=24777|20057  mana=27021|23151
  Spell Stats:  power=4041|3314(3155)  hit=10.14%|10.14%(266)  crit=37.03%|29.53%(905)  penetration=0|0(0)  haste=26.56%|17.02%(443)  mp5=150|121(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.59%|28.37%(905)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=45.31%|17.56%(443)
  Defense Stats:  armor=5967|3623(3427)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.3|14.96sec  DPE= 10822| 8%  DPET=  9827  DPR=  41.1  pDPS= 731  Miss=0.00%  TickCount=138  MissTick=0.0%  Tick=1583|1559|1649
    moonfire               Count= 13.9|22.12sec  DPE= 19967|10%  DPET= 18079  DPR=  29.5  pDPS= 928  Miss=0.00%  Hit= 372| 368| 384  Crit=  778|  769|  802|62.0%  TickCount=96  MissTick=0.0%  Tick=1683|1658|1745  CritTick=3516|3464|3648|62.0%
    reign_of_the_unliving  Count= 66.1|9.02sec  DPE=  2667| 6%  DPET=     1  DPR=   0.0  pDPS= 588  Miss=3.86%  Hit=2188|2059|2316  Crit= 3380| 3181| 3578|47.3%
    starfall               Count=  3.8|96.71sec  DPE= 14472| 2%  DPET= 12774  DPR=  11.1  pDPS= 181  Miss=0.00%  TickCount=72  MissTick=0.0%  Tick=471|148|803  CritTick=984|310|1677|55.7%
    starfire               Count= 68.2|4.20sec  DPE= 15267|37%  DPET=  7681  DPR=  29.9  pDPS=3475  Miss=0.00%  Hit=8115|8016|8491  Crit=16988|16754|17746|80.6%
    wrath                  Count=111.7|2.61sec  DPE=  8917|35%  DPET=  8315  DPR=  25.4  pDPS=3322  Miss=0.00%  Hit=5523|4431|6157  Crit=11545| 9262|12869|56.4%
   treants  (DPS=373.7)
    treant_melee           Count= 42.0|5.12sec  DPE=  1875| 3%  DPET=  1287  DPR=   0.0  pDPS= 263  Miss=0.00%  Hit=1883|1858|1908  Crit= 3766| 3717| 3817|8.2%  Glance=1412|23.9%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=8.6   refresh=0.0    interval= 36.3|36.3   uptime=42%  benefit=72%  trigger=60%
    eclipse_solar         : start=8.0   refresh=0.0    interval= 36.6|36.6   uptime=39%  benefit=71%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.2|62.2   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=64.6   interval=104.4|4.4    uptime=97%  trigger=70%
    natures_grace         : start=31.6  refresh=134.9  interval=  9.4|1.8    uptime=87%  benefit=91%
    omen_of_clarity       : start=12.5  refresh=0.0    interval= 21.9|21.9   uptime= 6%  benefit= 5%  trigger= 6%
  Procs:
    124.7 |   2.79sec : judgement_of_wisdom
     66.1 |   9.02sec : reign_of_the_unliving
  Gains:
     4694.3 : blessing_of_wisdom      (overflow=28.2%)
    26901.0 : initial_mana          
     8478.7 : judgement_of_wisdom     (overflow=2.8%)
    61847.7 : moonkin_form            (overflow=9.6%)
     6830.8 : mp5_regen               (overflow=24.1%)
     5596.4 : omen_of_clarity       
    11962.2 : replenishment           (overflow=26.1%)
        7.1 : spirit_intellect_regen  (overflow=77.2%)

Player: Druid_T9_58_00_13_2T8_2T9 night_elf druid balance 80
  DPS: 9521.4  Error=4.1  Range=877  DPR=30.0  RPS=317.5/315.1  (mana)
  Origin: http://profiler.wowhead.com/?profile=16237439
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1701|1234(1113)  intellect=1690|1283(1115)  spirit=625|434(267)  health=24247|19577  mana=26256|22461
  Spell Stats:  power=3928|3240(3087)  hit=10.14%|10.14%(266)  crit=36.89%|29.45%(914)  penetration=0|0(0)  haste=27.24%|17.65%(463)  mp5=146|118(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.79%|28.57%(914)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=46.29%|18.36%(463)
  Defense Stats:  armor=5875|3531(3335)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.3|14.94sec  DPE= 10586| 8%  DPET=  9632  DPR=  40.2  pDPS= 716  Miss=0.00%  TickCount=139  MissTick=0.0%  Tick=1548|1524|1614
    moonfire               Count= 13.9|22.15sec  DPE= 19555|10%  DPET= 17737  DPR=  29.0  pDPS= 908  Miss=0.00%  Hit= 366| 362| 378  Crit=  766|  757|  790|62.0%  TickCount=96  MissTick=0.0%  Tick=1649|1624|1712  CritTick=3446|3394|3577|61.9%
    reign_of_the_unliving  Count= 69.1|8.63sec  DPE=  2667| 6%  DPET=     1  DPR=   0.0  pDPS= 615  Miss=3.86%  Hit=2188|2059|2316  Crit= 3380| 3181| 3578|47.3%
    starfall               Count=  3.8|96.68sec  DPE= 14341| 2%  DPET= 12698  DPR=  11.0  pDPS= 180  Miss=0.00%  TickCount=72  MissTick=0.0%  Tick=467|147|796  CritTick=976|307|1664|55.4%
    starfire               Count= 68.5|4.18sec  DPE= 15003|36%  DPET=  7633  DPR=  29.4  pDPS=3430  Miss=0.00%  Hit=7615|7533|7990  Crit=15970|15745|16698|88.4%
    wrath                  Count=113.0|2.58sec  DPE=  9054|36%  DPET=  8471  DPR=  25.7  pDPS=3412  Miss=0.00%  Hit=5616|4163|6413  Crit=11740| 8701|13403|56.1%
   treants  (DPS=369.9)
    treant_melee           Count= 42.0|5.12sec  DPE=  1856| 3%  DPET=  1274  DPR=   0.0  pDPS= 260  Miss=0.00%  Hit=1864|1839|1889  Crit= 3728| 3679| 3779|8.2%  Glance=1398|24.0%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=8.6   refresh=0.0    interval= 36.3|36.3   uptime=42%  benefit=72%  trigger=60%
    eclipse_solar         : start=8.0   refresh=0.0    interval= 36.6|36.6   uptime=39%  benefit=71%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.2|62.2   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=64.6   interval=104.5|4.4    uptime=97%  trigger=70%
    natures_grace         : start=29.1  refresh=143.4  interval= 10.3|1.7    uptime=89%  benefit=92%
    omen_of_clarity       : start=12.6  refresh=0.0    interval= 21.8|21.8   uptime= 6%  benefit= 5%  trigger= 6%
  Procs:
    125.7 |   2.77sec : judgement_of_wisdom
     69.1 |   8.63sec : reign_of_the_unliving
  Gains:
     4560.2 : blessing_of_wisdom      (overflow=30.3%)
    26136.0 : initial_mana          
     8540.3 : judgement_of_wisdom     (overflow=2.8%)
    63446.1 : moonkin_form            (overflow=8.9%)
     6617.5 : mp5_regen               (overflow=24.5%)
     5628.1 : omen_of_clarity       
    11284.0 : replenishment           (overflow=28.2%)
        4.0 : spirit_intellect_regen  (overflow=80.5%)

Auras and De-Buffs:
  Constant: abominations_might/arcane_empowerment/battle_shout/bleeding/blood_frenzy/crypt_fever/curse_of_elements
  Constant: devotion_aura/earth_and_moon/elemental_oath/expose_armor/faerie_fire/ferocious_inspiration
  Constant: flametongue_totem/heart_of_the_crusader/hunters_mark/improved_faerie_fire/improved_moonkin
  Constant: improved_scorch/improved_shadow_bolt/infected_wounds/insect_swarm/judgement_of_wisdom
  Constant: judgements_of_the_just/leader_of_the_pack/mana_spring_totem/mangle/master_poisoner/misery/moonkin/poisoned
  Constant: rampage/sanctified_retribution/savage_combat/strength_of_earth/sunder_armor/swift_retribution/thunder_clap
  Constant: totem_of_wrath/totem_of_wrath_debuff/trauma/trueshot/unleashed_rage/windfury_totem/winters_chill
  Constant: wrath_of_air
  Dynamic:

Waiting:
    All players active 100% of the time.

Baseline Performance:
  TotalEvents   = 36239586
  MaxEventQueue = 31
  TargetHealth  = 5692479
  SimSeconds    = 2999905
  CpuSeconds    = 77.523
  SpeedUp       = 38697

RNG global Actual/Expected Roll=0.999718 Range=1.000000 Gauss=1.000000
With
SimulationCraft for World of Warcraft release 3.2.2 ( iterations=9999, max_time=300, optimal_raid=1, smooth_rng=0 )

DPS Ranking:
  19305 100.0%  Raid
   9705  50.2%  Druid_T9_58_00_13_2T8_2T9
   9617  49.8%  Druid_T9_58_00_13

Player: Druid_T9_58_00_13 night_elf druid balance 80
  DPS: 9616.5  Error=4.2  Range=840  DPR=30.2  RPS=317.9/316.1  (mana)
  Origin: http://profiler.wowhead.com/?profile=14187592
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1754|1282(1160)  intellect=1746|1329(1160)  spirit=752|549(380)  health=24777|20057  mana=27021|23151
  Spell Stats:  power=4041|3314(3155)  hit=10.14%|10.14%(266)  crit=37.03%|29.53%(905)  penetration=0|0(0)  haste=26.56%|17.02%(443)  mp5=150|121(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.59%|28.37%(905)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=45.31%|17.56%(443)
  Defense Stats:  armor=5967|3623(3427)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.3|14.91sec  DPE= 10823| 8%  DPET=  9843  DPR=  41.1  pDPS= 733  Miss=0.00%  TickCount=139  MissTick=0.0%  Tick=1582|1559|1649
    moonfire               Count= 14.0|21.99sec  DPE= 20049|10%  DPET= 18211  DPR=  29.7  pDPS= 933  Miss=0.00%  Hit= 373| 368| 384  Crit=  779|  769|  802|62.0%  TickCount=96  MissTick=0.0%  Tick=1684|1658|1745  CritTick=3519|3464|3648|62.0%
    reign_of_the_unliving  Count= 66.3|8.98sec  DPE=  2668| 6%  DPET=     1  DPR=   0.0  pDPS= 591  Miss=3.90%  Hit=2188|2059|2316  Crit= 3380| 3181| 3578|47.5%
    starfall               Count=  3.4|100.03sec  DPE= 14630| 2%  DPET= 12911  DPR=  11.2  pDPS= 164  Miss=0.00%  TickCount=65  MissTick=0.0%  Tick=470|148|803  CritTick=985|310|1677|55.7%
    starfire               Count= 61.5|4.69sec  DPE= 15606|33%  DPET=  7861  DPR=  30.5  pDPS=3202  Miss=0.00%  Hit=8115|8016|8491  Crit=16976|16754|17746|84.5%
    wrath                  Count=124.8|2.34sec  DPE=  8957|39%  DPET=  8359  DPR=  25.5  pDPS=3730  Miss=0.00%  Hit=5549|4431|6157  Crit=11599| 9262|12869|56.3%
   treants  (DPS=373.5)
    treant_melee           Count= 42.0|5.12sec  DPE=  1875| 3%  DPET=  1287  DPR=   0.0  pDPS= 263  Miss=0.00%  Hit=1883|1858|1908  Crit= 3766| 3717| 3817|8.2%  Glance=1412|24.1%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=9.0   refresh=0.0    interval= 34.2|34.2   uptime=42%  benefit=85%  trigger=60%
    eclipse_solar         : start=8.6   refresh=0.0    interval= 34.2|34.2   uptime=40%  benefit=73%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.2|62.2   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=64.9   interval=106.7|4.4    uptime=97%  trigger=70%
    natures_grace         : start=31.3  refresh=135.9  interval=  9.6|1.8    uptime=87%  benefit=92%
    omen_of_clarity       : start=12.8  refresh=0.0    interval= 21.3|21.3   uptime= 6%  benefit= 5%  trigger= 6%
  Procs:
    122.0 |   2.83sec : judgement_of_wisdom
     66.3 |   8.98sec : reign_of_the_unliving
  Gains:
     4642.5 : blessing_of_wisdom      (overflow=29.0%)
    26901.0 : initial_mana          
     8291.2 : judgement_of_wisdom     (overflow=2.8%)
    63141.3 : moonkin_form            (overflow=10.8%)
     6780.7 : mp5_regen               (overflow=24.6%)
     5628.8 : omen_of_clarity       
    11845.9 : replenishment           (overflow=26.8%)
        5.4 : spirit_intellect_regen  (overflow=78.7%)

Player: Druid_T9_58_00_13_2T8_2T9 night_elf druid balance 80
  DPS: 9705.1  Error=3.9  Range=743  DPR=30.3  RPS=320.2/318.4  (mana)
  Origin: http://profiler.wowhead.com/?profile=16237439
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1701|1234(1113)  intellect=1690|1283(1115)  spirit=625|434(267)  health=24247|19577  mana=26256|22461
  Spell Stats:  power=3928|3240(3087)  hit=10.14%|10.14%(266)  crit=36.89%|29.45%(914)  penetration=0|0(0)  haste=27.24%|17.65%(463)  mp5=146|118(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.79%|28.57%(914)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=46.29%|18.36%(463)
  Defense Stats:  armor=5875|3531(3335)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.3|14.88sec  DPE= 10589| 7%  DPET=  9650  DPR=  40.2  pDPS= 719  Miss=0.00%  TickCount=139  MissTick=0.0%  Tick=1548|1524|1614
    moonfire               Count= 13.9|22.03sec  DPE= 19636| 9%  DPET= 17878  DPR=  29.1  pDPS= 913  Miss=0.00%  Hit= 367| 362| 378  Crit=  766|  757|  790|62.1%  TickCount=96  MissTick=0.0%  Tick=1651|1624|1712  CritTick=3450|3394|3577|61.8%
    reign_of_the_unliving  Count= 69.4|8.58sec  DPE=  2667| 6%  DPET=     1  DPR=   0.0  pDPS= 618  Miss=3.84%  Hit=2187|2059|2316  Crit= 3380| 3181| 3578|47.3%
    starfall               Count=  3.3|100.88sec  DPE= 14482| 2%  DPET= 12804  DPR=  11.1  pDPS= 159  Miss=0.00%  TickCount=63  MissTick=0.0%  Tick=466|147|796  CritTick=976|307|1664|55.6%
    starfire               Count= 60.6|4.74sec  DPE= 15503|32%  DPET=  7900  DPR=  30.3  pDPS=3133  Miss=0.00%  Hit=7616|7533|7990  Crit=15955|15745|16698|94.6%
    wrath                  Count=128.4|2.28sec  DPE=  9109|40%  DPET=  8531  DPR=  25.9  pDPS=3904  Miss=0.00%  Hit=5649|4163|6413  Crit=11812| 8701|13403|56.1%
   treants  (DPS=369.6)
    treant_melee           Count= 42.0|5.12sec  DPE=  1855| 3%  DPET=  1274  DPR=   0.0  pDPS= 260  Miss=0.00%  Hit=1864|1839|1889  Crit= 3727| 3679| 3779|8.2%  Glance=1398|24.1%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=9.0   refresh=0.0    interval= 34.0|34.0   uptime=42%  benefit=87%  trigger=60%
    eclipse_solar         : start=8.7   refresh=0.0    interval= 33.9|33.9   uptime=41%  benefit=73%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.2|62.2   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=64.9   interval=105.6|4.4    uptime=97%  trigger=70%
    natures_grace         : start=28.5  refresh=144.8  interval= 10.6|1.7    uptime=90%  benefit=93%
    omen_of_clarity       : start=13.0  refresh=0.0    interval= 21.1|21.1   uptime= 6%  benefit= 5%  trigger= 6%
  Procs:
    122.4 |   2.84sec : judgement_of_wisdom
     69.4 |   8.58sec : reign_of_the_unliving
  Gains:
     4487.7 : blessing_of_wisdom      (overflow=31.4%)
    26136.0 : initial_mana          
     8308.7 : judgement_of_wisdom     (overflow=2.9%)
    64947.6 : moonkin_form            (overflow=10.4%)
     6540.0 : mp5_regen               (overflow=25.3%)
     5685.3 : omen_of_clarity       
    11132.1 : replenishment           (overflow=29.2%)
        2.0 : spirit_intellect_regen  (overflow=87.6%)

Auras and De-Buffs:
  Constant: abominations_might/arcane_empowerment/battle_shout/bleeding/blood_frenzy/crypt_fever/curse_of_elements
  Constant: devotion_aura/earth_and_moon/elemental_oath/expose_armor/faerie_fire/ferocious_inspiration
  Constant: flametongue_totem/heart_of_the_crusader/hunters_mark/improved_faerie_fire/improved_moonkin
  Constant: improved_scorch/improved_shadow_bolt/infected_wounds/insect_swarm/judgement_of_wisdom
  Constant: judgements_of_the_just/leader_of_the_pack/mana_spring_totem/mangle/master_poisoner/misery/moonkin/poisoned
  Constant: rampage/sanctified_retribution/savage_combat/strength_of_earth/sunder_armor/swift_retribution/thunder_clap
  Constant: totem_of_wrath/totem_of_wrath_debuff/trauma/trueshot/unleashed_rage/windfury_totem/winters_chill
  Constant: wrath_of_air
  Dynamic:

Waiting:
    All players active 100% of the time.

Baseline Performance:
  TotalEvents   = 36511667
  MaxEventQueue = 31
  TargetHealth  = 5785792
  SimSeconds    = 2998874
  CpuSeconds    = 53.870
  SpeedUp       = 55669

RNG global Actual/Expected Roll=1.000332 Range=1.000000 Gauss=1.000000

Hello.
Light the fuse.
For all my homies.
Do not run, we are your friends.

Offline
Old 11/10/09, 8:22 PM   #2364
 Hamlet
<Druid Trainer> Emeritus
 
Hamlet's Avatar
 
Tauren Druid
 
Mal'Ganis
Wow, that's surprisingly consistent with WC. That's nice to see.

Out of curiosity, how many trials is that and what's the variance?

Links: Moonkin Resto WoWMath Twitter YouTube
Please don't PM requests for advice on UI or specific gear choices.

United States Online
Old 11/10/09, 8:48 PM   #2365
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Originally Posted by Arawethion View Post
Wow, that's surprisingly consistent with WC. That's nice to see.

Out of curiosity, how many trials is that and what's the variance?
trials = "iterations" so 9999

The "error" value is calculated by ( 2 * std_dev_of_dps / sqrt( iterations ) ).

The "range" value is calculated by ( max_dps - min_dps ) / 2

I believe the GUI represents both of these values in terms of percentages by dividing them by avg_dps.

EDIT: Fix glaring mistake in my "error" description.

Last edited by dedmonwakeen : 11/11/09 at 9:34 AM.


Offline
Old 11/11/09, 12:25 AM   #2366
Erdluf
Great Tiger
 
Night Elf Druid
 
Echo Isles
Originally Posted by dedmonwakeen View Post
The "error" value is calculated by ( std_dev_of_dps / ( iterations ^ 2 ) ).
That would be a lot smaller and converge much faster. It is (sc_sim.cpp)

error = 2*stddev/sqrt(iterations)

error is a measure of "how good" your iteration count was.

range is the measure of how RNG will impact your DPS.

United States Offline
Old 11/11/09, 9:04 AM   #2367
Starfox
King Hippo
 
Starfox's Avatar
 
Tauren Druid
 
Destromath (EU)
Yea 10k iterations on normal runs (50k for scalefactor, 1k if I just want the plot-feature)
Did another run:
T9 => T10
so its 4T10 vs 2T10+2T8 (ilvl 258)
SimulationCraft for World of Warcraft release 3.2.2 ( iterations=9999, max_time=300, optimal_raid=1, smooth_rng=0 )

DPS Ranking:
  19084 100.0%  Raid
   9610  50.3%  Druid_T9_58_00_13_2T8_2T9
   9489  49.7%  Druid_T9_58_00_13

Player: Druid_T9_58_00_13 night_elf druid balance 80
  DPS: 9489.2  Error=4.6  Range=826  DPR=29.9  RPS=317.7/315.9  (mana)
  Origin: http://profiler.wowhead.com/?profile=14187592
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1754|1282(1160)  intellect=1746|1329(1160)  spirit=752|549(380)  health=24777|20057  mana=27021|23151
  Spell Stats:  power=4041|3314(3155)  hit=10.14%|10.14%(266)  crit=37.03%|29.53%(905)  penetration=0|0(0)  haste=26.56%|17.02%(443)  mp5=150|121(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.59%|28.37%(905)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=45.31%|17.56%(443)
  Defense Stats:  armor=5967|3623(3427)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.3|14.91sec  DPE= 11202| 8%  DPET= 10187  DPR=  42.6  pDPS= 759  Miss=0.00%  TickCount=139  MissTick=0.0%  Tick=1639|1559|1896
    moonfire               Count= 14.0|21.98sec  DPE= 12649| 6%  DPET= 11491  DPR=  18.8  pDPS= 589  Miss=0.00%  Hit= 386| 368| 441  Crit=  807|  769|  922|62.0%  TickCount=96  MissTick=0.0%  Tick=1745|1658|2007
    reign_of_the_unliving  Count= 66.3|8.99sec  DPE=  2668| 6%  DPET=     1  DPR=   0.0  pDPS= 590  Miss=3.85%  Hit=2188|2059|2316  Crit= 3380| 3181| 3578|47.4%
    starfall               Count=  3.4|99.99sec  DPE= 15048| 2%  DPET= 13272  DPR=  11.5  pDPS= 169  Miss=0.00%  TickCount=65  MissTick=0.0%  Tick=485|148|923  CritTick=1013|310|1929|55.7%
    starfire               Count= 61.5|4.68sec  DPE= 15343|33%  DPET=  7728  DPR=  30.1  pDPS=3146  Miss=0.00%  Hit=7977|7708|9389  Crit=16699|16110|19623|84.5%
    tier10_4pc_balance     Count=  0.0|0.00sec  DPE=     1| 3%  DPET=     1  DPR=   0.0  pDPS= 259  Miss=0.00%  TickCount=113  MissTick=0.0%  Tick=686|209|3788
    wrath                  Count=124.8|2.34sec  DPE=  8917|39%  DPET=  8321  DPR=  25.4  pDPS=3713  Miss=0.00%  Hit=5525|4261|6809  Crit=11548| 8905|14230|56.3%
   treants  (DPS=373.5)
    treant_melee           Count= 42.0|5.12sec  DPE=  1875| 3%  DPET=  1287  DPR=   0.0  pDPS= 263  Miss=0.00%  Hit=1883|1858|1908  Crit= 3766| 3717| 3817|8.2%  Glance=1412|24.0%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=9.0   refresh=0.0    interval= 34.2|34.2   uptime=42%  benefit=84%  trigger=60%
    eclipse_solar         : start=8.6   refresh=0.0    interval= 34.2|34.2   uptime=41%  benefit=73%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.6|62.6   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=65.0   interval=106.2|4.4    uptime=97%  trigger=70%
    natures_grace         : start=31.3  refresh=135.8  interval=  9.6|1.8    uptime=87%  benefit=93%
    omen_of_clarity       : start=12.9  refresh=0.0    interval= 21.2|21.2   uptime= 6%  benefit= 6%  trigger= 6%
    t10_2pc_balance       : start=10.2  refresh=2.8    interval= 27.5|21.2   uptime=23%  benefit=21%
  Procs:
    122.1 |   2.83sec : judgement_of_wisdom
     66.3 |   8.99sec : reign_of_the_unliving
  Gains:
     4648.8 : blessing_of_wisdom      (overflow=28.9%)
    26901.0 : initial_mana          
     8291.3 : judgement_of_wisdom     (overflow=2.9%)
    63096.0 : moonkin_form            (overflow=10.8%)
     6788.8 : mp5_regen               (overflow=24.5%)
     5673.6 : omen_of_clarity       
    11862.7 : replenishment           (overflow=26.7%)
        5.2 : spirit_intellect_regen  (overflow=80.3%)

Player: Druid_T9_58_00_13_2T8_2T9 night_elf druid balance 80
  DPS: 9610.4  Error=4.2  Range=781  DPR=30.0  RPS=320.0/318.3  (mana)
  Origin: http://profiler.wowhead.com/?profile=16237439
  Core Stats:  strength=365|97(10)  agility=366|98(10)  stamina=1701|1234(1113)  intellect=1690|1283(1115)  spirit=625|434(267)  health=24247|19577  mana=26256|22461
  Spell Stats:  power=3928|3240(3087)  hit=10.14%|10.14%(266)  crit=36.89%|29.45%(914)  penetration=0|0(0)  haste=27.24%|17.65%(463)  mp5=146|118(28)
  Attack Stats  power=1802|334(0)  hit=8.11%|8.11%(266)  crit=36.79%|28.57%(914)  expertise=0.00|0.00(0)  penetration=0.00%|0.00%(0)  haste=46.29%|18.36%(463)
  Defense Stats:  armor=5875|3531(3335)  blockv=0|0(0)  defense=400|400(0)  miss=9.70%|9.70%  dodge=12.96%|7.36%(0)  parry=0.00%|0.00%(0)  block=0.00%|0.00%(0) crit=5.90%|5.90%
  Glyphs: starfire/moonfire/insect_swarm/the_wild/unburdened_rebirth/thorns
  Priorities:
    flask,type=frost_wyrm/food,type=fish_feast/mark_of_the_wild/moonkin_form/snapshot_stats
    faerie_fire/speed_potion/innervate,trigger=-2000/treants/starfall,skip_on_eclipse=1/starfire,instant=1
    moonfire/insect_swarm/wrath,eclipse=trigger/starfire,eclipse=benefit/wrath,eclipse=benefit
    starfire
  Actions:
    insect_swarm           Count= 20.4|14.89sec  DPE= 10959| 8%  DPET=  9987  DPR=  41.7  pDPS= 744  Miss=0.00%  TickCount=139  MissTick=0.0%  Tick=1603|1524|1857
    moonfire               Count= 13.9|22.02sec  DPE= 12414| 6%  DPET= 11301  DPR=  18.4  pDPS= 577  Miss=0.00%  Hit= 380| 362| 434  Crit=  795|  757|  908|61.9%  TickCount=96  MissTick=0.0%  Tick=1712|1624|1968
    reign_of_the_unliving  Count= 69.4|8.58sec  DPE=  2668| 6%  DPET=     1  DPR=   0.0  pDPS= 618  Miss=3.84%  Hit=2187|2059|2316  Crit= 3380| 3181| 3578|47.3%
    starfall               Count=  3.3|100.95sec  DPE= 14931| 2%  DPET= 13202  DPR=  11.4  pDPS= 164  Miss=0.00%  TickCount=64  MissTick=0.0%  Tick=480|147|915  CritTick=1006|307|1913|55.5%
    starfire               Count= 60.6|4.75sec  DPE= 15862|33%  DPET=  8083  DPR=  31.1  pDPS=3205  Miss=0.00%  Hit=7793|7533|9188  Crit=16328|15745|19203|94.5%
    wrath                  Count=128.5|2.28sec  DPE=  9431|42%  DPET=  8833  DPR=  26.8  pDPS=4043  Miss=0.00%  Hit=5847|4163|7375  Crit=12225| 8701|15413|56.2%
   treants  (DPS=369.9)
    treant_melee           Count= 42.0|5.12sec  DPE=  1857| 3%  DPET=  1275  DPR=   0.0  pDPS= 260  Miss=0.00%  Hit=1864|1839|1889  Crit= 3727| 3679| 3779|8.2%  Glance=1398|24.0%  Dodge=2.6%
  Constant Buffs: arcane_brilliance/blessing_of_kings/blessing_of_might/blessing_of_wisdom/divine_spirit/fortitude
  Constant Buffs: mark_of_the_wild/moonkin_form/replenishment
  Dynamic Buffs:
    bloodlust             : start=1.0   refresh=0.0    interval=  0.0|0.0    uptime=13%
    eclipse_lunar         : start=9.0   refresh=0.0    interval= 34.0|34.0   uptime=42%  benefit=87%  trigger=60%
    eclipse_solar         : start=8.7   refresh=0.0    interval= 34.0|34.0   uptime=41%  benefit=73%
    lightweave_embroidery : start=5.0   refresh=0.0    interval= 62.6|62.6   uptime=25%  trigger=35%
    lunary_fury           : start=2.3   refresh=64.8   interval=106.3|4.4    uptime=97%  trigger=70%
    natures_grace         : start=28.6  refresh=144.8  interval= 10.5|1.7    uptime=90%  benefit=93%
    omen_of_clarity       : start=13.1  refresh=0.0    interval= 20.9|20.9   uptime= 6%  benefit= 6%  trigger= 6%
    t10_2pc_balance       : start=10.3  refresh=2.8    interval= 27.2|20.9   uptime=23%  benefit=21%
  Procs:
    122.4 |   2.83sec : judgement_of_wisdom
     69.4 |   8.58sec : reign_of_the_unliving
  Gains:
     4487.7 : blessing_of_wisdom      (overflow=31.4%)
    26136.0 : initial_mana          
     8304.3 : judgement_of_wisdom     (overflow=3.0%)
    64946.7 : moonkin_form            (overflow=10.4%)
     6540.6 : mp5_regen               (overflow=25.4%)
     5743.6 : omen_of_clarity       
    11131.5 : replenishment           (overflow=29.2%)
        2.1 : spirit_intellect_regen  (overflow=87.1%)

Auras and De-Buffs:
  Constant: abominations_might/arcane_empowerment/battle_shout/bleeding/blood_frenzy/crypt_fever/curse_of_elements
  Constant: devotion_aura/earth_and_moon/elemental_oath/expose_armor/faerie_fire/ferocious_inspiration
  Constant: flametongue_totem/heart_of_the_crusader/hunters_mark/improved_faerie_fire/improved_moonkin
  Constant: improved_scorch/improved_shadow_bolt/infected_wounds/insect_swarm/judgement_of_wisdom
  Constant: judgements_of_the_just/leader_of_the_pack/mana_spring_totem/mangle/master_poisoner/misery/moonkin/poisoned
  Constant: rampage/sanctified_retribution/savage_combat/strength_of_earth/sunder_armor/swift_retribution/thunder_clap
  Constant: totem_of_wrath/totem_of_wrath_debuff/trauma/trueshot/unleashed_rage/windfury_totem/winters_chill
  Constant: wrath_of_air
  Dynamic:

Waiting:
    All players active 100% of the time.

Baseline Performance:
  TotalEvents   = 38801627
  MaxEventQueue = 35
  TargetHealth  = 5719443
  SimSeconds    = 3000025
  CpuSeconds    = 66.020
  SpeedUp       = 45441

RNG global Actual/Expected Roll=1.000012 Range=1.000000 Gauss=1.000000

Hello.
Light the fuse.
For all my homies.
Do not run, we are your friends.

Offline
Old 11/11/09, 9:34 AM   #2368
dedmonwakeen
Bald Bull
 
dedmonwakeen
Undead Priest
 
No WoW Account
Originally Posted by Erdluf View Post
That would be a lot smaller and converge much faster. It is (sc_sim.cpp)

error = 2*stddev/sqrt(iterations)

error is a measure of "how good" your iteration count was.

range is the measure of how RNG will impact your DPS.
Bah! 65,000 lines of code and I start to lose track...... Thanks for the catch.

I've edited my post to make sure my mistake does not get propagated.


Offline
Old 11/11/09, 11:02 AM   #2369
thedopefishlives
Don Flamenco
 
Dwarf Paladin
 
Baelgun
I added WiseEclipse support to Rawr and was playing around with it. I discovered something interesting: The reason why 4T9-258 seems to work out better than 2T8+2T9 is actually because at ilevel 258 levels of gear, you are smashing the crit cap, which devalues the 2T8 set bonus. Downgrading to the 2T8 pieces doesn't necessarily remove enough crit rating to improve the value of the set bonus to where it would overpower the stats on the ilevel 258 gear. So if you're fully kitted out in all ilevel 258 gear and have blown over the crit cap (and my example set is 10% over cap), then obviously, 4T9 will be more powerful than 2T8. If you're flirting with the crit cap line or below it, 2T8+2T9 is better than any combination of 4 ilevel 258 pieces you can put together.

United States Offline
Old 11/11/09, 11:34 AM   #2370
 Hamlet
<Druid Trainer> Emeritus
 
Hamlet's Avatar
 
Tauren Druid
 
Mal'Ganis
Originally Posted by thedopefishlives View Post
I added WiseEclipse support to Rawr and was playing around with it. I discovered something interesting: The reason why 4T9-258 seems to work out better than 2T8+2T9 is actually because at ilevel 258 levels of gear, you are smashing the crit cap, which devalues the 2T8 set bonus. Downgrading to the 2T8 pieces doesn't necessarily remove enough crit rating to improve the value of the set bonus to where it would overpower the stats on the ilevel 258 gear. So if you're fully kitted out in all ilevel 258 gear and have blown over the crit cap (and my example set is 10% over cap), then obviously, 4T9 will be more powerful than 2T8. If you're flirting with the crit cap line or below it, 2T8+2T9 is better than any combination of 4 ilevel 258 pieces you can put together.
I've been thinking about this, but I don't think it should be quite so dramatic. Crit typically devalues (just using my own gear) from something around 1.25 DPS/point to 0.8 when you cross the Lunar cap. Assuming the difference between 2T8 and 4T9 is somewhere around 100 DPS (from my post above), we can still estimate that you have to be around 200 crit beyond the cap before it tips the scales. But (barring Focus Magic), that's a good bit farther than most people will get in current gear. My various attempts that juggling BiS sets for that post typically sat at around 800 crit rating--right around the cap.

Links: Moonkin Resto WoWMath Twitter YouTube
Please don't PM requests for advice on UI or specific gear choices.

United States Online
Old 11/11/09, 11:47 AM   #2371
thedopefishlives
Don Flamenco
 
Dwarf Paladin
 
Baelgun
Whereas the full ilevel 258 set I put together with Rawr had a whopping 1019 crit rating, which is so far beyond the cap that the 2T8 bonus loses ~75 dps. It's certainly possible to put together a set with a lot less crit rating and run 2T8+2T9; the Optimizer is far from perfect. I'm just saying, it was an observation that I noticed when playing around with gear sets, and it's certainly achievable with the high item level gear.

United States Offline
Old 11/12/09, 7:54 AM   #2372
Poggen
Glass Joe
 
Night Elf Druid
 
Frostmane (EU)
T10 stats just datamined.

Offline
Old 11/12/09, 10:09 AM   #2373
thedopefishlives
Don Flamenco
 
Dwarf Paladin
 
Baelgun
Originally Posted by Poggen View Post
T10 stats just datamined.
I played around with Rawr and the T10-264 gear. It's probably not a surprise to anyone here, but if you're wearing the 258 level T9, assuming these are the stats and not placeholders, you're still going to be wearing 2T8+2T9 for a while yet. The 4T10 set bonus may be the strongest 4-set out of them all, but the 2T10 is showing so weak and the 2T8 and 2T9 bonuses are so strong that it's just not enough. One interesting thing I did notice, though, is that it dropped the [Legwraps of the Awakening] for the T8 legs and swapped in the T9 gloves, because the T10 helm is overwhelmingly strong.

United States Offline
Old 11/12/09, 12:07 PM   #2374
Boswell
Von Kaiser
 
Night Elf Druid
 
Sen'jin
Originally Posted by ninor View Post
Maybe this is just strategy differences, but I don't understand why people value AoE so highly on Anub hardmode. It's fairly simple to reach the raid AoE dps required for the trash, and I think it's much more important to reduce the length of p3 as much as possible? It just seems a lot more relevant to focus on our single target dps, and let the AoE part of the fight be more of an afterthought. I do maybe 5-6 hurricanes in total in that fight, and I wouldn't swap in 4T9 for that over 2T8.
What you said has some truth but also a lot of emphasis was put on AoE because of the lack of gear people had when they first did the encounter. Now that we've been saturated in >=245 gear to no end, DPS isn't as challenging as it would be in <=239 gear.

Offline
Old 11/12/09, 12:20 PM   #2375
Lord BEEF
Soda Popinski
 
Lord BEEF's Avatar
 
Tauren Druid
 
Mal'Ganis
So it seems we'll have to wait for 4pc t10 before we start breaking the other set bonuses, is that right? Or do we need the higher level T10 set pieces assuming they exist?

Offline
Closed Thread

Go Back   Elitist Jerks » Druids

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Moonkin DPS Spreadsheet Efejel Druids 1925 11/04/08 3:34 PM
Infraction for Moonkin Kai: Grammar Praetorian The Banhammer 0 06/02/08 7:28 PM
Moonkin Arena set in 2.4 nero Player vs. Player 30 05/21/08 5:41 PM
Moonkin DPS Calculator? Aadar Class Mechanics 87 04/16/07 3:31 AM
Raiding with ferals, moonkin, shadowpriests, etc Liandra Public Discussion 74 08/29/06 8:49 PM