I'm working on a very long list of Differential Equations that I will eventually need to fit to experimental data but I'm having an issue getting NDSolve to accept my subscripted variables. Since the equations are incredibly long, I've simply given a sample below, but can anyone direct me to further help? I've already found that I need to use Symbolize and Patten - are there more steps? Also, I apologize for the poor form, copy and paste takes the input form rather than the nice looking one. If a screen shot would be more helpful, let me know. Thanks!
<< Notation`
Symbolize[ParsedBoxWrapper[SubscriptBox["h", "_"]]]
Symbolize[ParsedBoxWrapper[SubscriptBox["R", "_"]]]
Symbolize[ParsedBoxWrapper[SubscriptBox["T", "_"]]]
Symbolize[ParsedBoxWrapper[SubscriptBox["\[Lambda]", "_"]]]
Pattern[Subscript[h, \[Placeholder]], _]
Pattern[Subscript[R, \[Placeholder]], _]
Pattern[Subscript[T, \[Placeholder]], _]
Pattern[Subscript[\[Lambda], \[Placeholder]], _]
model[Subscript[h, 1] _?NumericQ, ...] :=
NDSolve[{Derivative[1][g1][t] ==
Subscript[R, 1]/(
1 + E^(Subscript[h, 1] + g13[t] Subscript[T, 1, 13] +
g15[t] Subscript[T, 1, 15] + g16[t] Subscript[T, 1, 16] +
g22[t] Subscript[T, 1, 22] + g24[t] Subscript[T, 1, 24] +
g25[t] Subscript[T, 1, 25])) - g1[t] Subscript[\[Lambda], 1], ...,
g1[0] == 532.031,...}, {g1, g2, g3, g4, g5, g6, g7,
g8, g9, g10, g11, g12, g13, g14, g15, g16, g17, g18, g19, g20,
g21, g22, g23, g24, g25, g26, g27, g28, g29}, {t, 0, 4}]